/* ===================================================================
   PAGE-SPECIFIC STYLES
   =================================================================== */

/* ---------- Home: hero ---------- */

/* ===================================
   HERO SECTION
=================================== */
button,
a,
.btn,
.hero-panel,
.stat,
.glass{
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              background 0.35s ease;
}
.hero{
    position:relative;
}

.hero-panel{

    display:grid;

    grid-template-columns:1.3fr .7fr;

    gap:40px;

    align-items:center;

    width:100%;

    max-width:1400px;

    padding:40px 50px;
}

.hero.page-hero{


    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:90px;

    padding-bottom:20px;
}


/* LEFT SIDE */

.hero-content h1{

  
    font-size:clamp(2.8rem,4vw,4.5rem);

    line-height:1.05;
    margin-top:16px;
}

.hero-content .accent{

    background:
    linear-gradient(
        135deg,
        #60a5fa,
        #34d399
    );

    background-clip:text;
    -webkit-background-clip:text;

    color:transparent;
}

.hero-content p{

     margin-top:18px;

    max-width:580px;

    font-size:1rem;

    line-height:1.7;
}

.hero-actions{

    display:flex;

    gap:16px;

    margin-top:32px;

    flex-wrap:wrap;
}

.hero-stats{

    display:flex;

    gap:40px;

     margin-top:25px;

    padding-top:20px;

    border-top:
    1px solid rgba(255,255,255,.1);
}

.stat h3{

    font-size:2rem;

    margin-bottom:6px;
}

.stat span{

    opacity:.7;
}

.glass-orb{
  width: 280px;
  height: 280px;
  border-radius: 10%;
  position: relative;
  overflow: hidden;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.45),
    inset 0 0 30px rgba(96,165,250,0.15);

  animation: breathe 5s ease-in-out infinite;
}

/* IMAGE INSIDE */
.glass-orb img{
  width: 100%;
  height: 65%;
  object-fit: contain;
  z-index: 2;

  filter: drop-shadow(0 10px 20px rgba(96,165,250,0.35));
}

/* GLOW LAYER */
.orb-glow{
  position:absolute;
  inset:-20%;
  background: radial-gradient(circle,
    rgba(96,165,250,0.25),
    transparent 60%);
  filter: blur(25px);
  opacity: 0.7;
  animation: glowPulse 4s ease-in-out infinite;
}

/* BREATHING EFFECT */
@keyframes breathe{
  0%,100%{
    transform: scale(1) translateY(0);
  }
  50%{
    transform: scale(1.05) translateY(-8px);
  }
}

/* GLOW PULSE */
@keyframes glowPulse{
  0%,100%{
    opacity: 0.5;
    transform: scale(1);
  }
  50%{
    opacity: 0.9;
    transform: scale(1.1);
  }
}
/* FLOATING CARD */

.floating-card{

    position:relative;
    overflow: hidden;

    width:240px;

    padding:18px;

    border-radius:24px;

    backdrop-filter:
    blur(25px);

    text-align:left;
}

.floating-card h3{

    margin-top:12px;

    margin-bottom:10px;
}

.floating-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-150%;

    width:50%;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:skewX(-25deg);

    animation:
    cardShine 5s linear infinite;
}

.badge{

    display:inline-block;

    padding:8px 14px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);
}

/* ANIMATIONS */

@keyframes floatBig{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }
}
@keyframes cardShine{

    from{
        left:-150%;
    }

    to{
        left:220%;
    }
}
@keyframes floatSmall{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(18px);
    }
}

/* MOBILE */

@media(max-width:900px){

    .hero-panel{

        grid-template-columns:1fr;

        gap:50px;

        padding:40px 25px;
    }

    .hero-visual{

        height: 250px;
    }

    .hero-stats{

        flex-wrap:wrap;

        gap:20px;
    }
}

.stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stat .label {
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  font-family: var(--font-data);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- Category / capability cards ---------- */

.cap-card {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  height: 100%;
}

.cap-card .icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border);
  font-size: 1.3rem;
}

.cap-card h3 {
  font-size: 1.15rem;
  margin-top: var(--sp-1);
}

.cap-card p {
  font-size: var(--fs-small);
}

/* ---------- Featured product strip (home + products page) ---------- */

.featured {
  padding: var(--sp-5);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-5);
  align-items: center;
  overflow: hidden;
}

.featured-image {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.featured-body .pill {
  margin-bottom: var(--sp-2);
}

.featured-body h2 {
  font-size: var(--fs-display-m);
  margin-bottom: var(--sp-2);
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: var(--sp-3) 0;
}

.spec-chip {
  font-family: var(--font-data);
  font-size: var(--fs-tiny);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-s);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border-soft);
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .featured {
    grid-template-columns: 1fr;
  }
}

/* ---------- Products listing page ---------- */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.product-card {
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.product-card .thumb {
  border-radius: var(--radius-s);
  aspect-ratio: 4/3;
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}

.product-card .thumb img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.08);
}

.product-card h3 {
  font-size: 1.05rem;
  margin: 0;
}

.product-card p {
  font-size: var(--fs-small);
  line-height: 1.6;
  margin: 0;
}

.product-card .card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--glass-border-soft);
}

.product-card .card-foot a {
  transition: all 0.3s ease;
}

.product-card:hover .card-foot a {
  transform: translateX(5px);
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card .thumb img {
    max-width: 80%;
    max-height: 80%;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: var(--sp-2);
  }

  .product-card .thumb img {
    max-width: 75%;
    max-height: 75%;
  }
}

/* ---------- Product detail page ---------- */

.product-detail {
  padding-top: calc(var(--nav-h) + var(--sp-5));
}

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: start;
  margin-bottom: var(--sp-6);
}

.product-gallery {
  border-radius: var(--radius-l);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-3));
}

.product-gallery img {
  width: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: var(--fs-display-l);
  margin: var(--sp-2) 0 var(--sp-2);
}

.product-info > p {
  font-size: var(--fs-body-l);
  margin-bottom: var(--sp-3);
}

.spec-sheet {
  margin-top: var(--sp-3);
  padding: var(--sp-3);
}

.spec-sheet .spec-title {
  font-family: var(--font-data);
  font-size: var(--fs-tiny);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-3);
}

.spec-item {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--glass-border-soft);
}

.spec-item .k {
  font-family: var(--font-data);
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.2rem;
}

.spec-item .v {
  font-size: var(--fs-body);
  color: var(--text-primary);
  font-weight: 500;
}

.spec-item .v.tbc {
  color: var(--text-muted);
  font-style: italic;
  font-weight: 400;
}

.note-card {
  margin-top: var(--sp-3);
  padding: var(--sp-3);
  border-left: 3px solid var(--brand-green-light);
  border-radius: var(--radius-s);
  background: rgba(31, 165, 114, 0.07);
}

.note-card p {
  font-size: var(--fs-small);
  margin: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}

.feature-item {
  padding: var(--sp-3);
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}

.feature-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
  background: var(--brand-green-light);
  box-shadow: 0 0 10px var(--brand-green-light);
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: var(--fs-small);
}

@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .spec-list, .feature-list { grid-template-columns: 1fr; }
}

.company-name{

    font-size:2rem;

    font-weight:800;

    line-height:1.1;

    margin:15px 0;

    background:
    linear-gradient(
        135deg,
        #38bdf8,
        #60a5fa,
        #93c5fd,
        #ffffff
    );

    background-size:300% 300%;

    -webkit-background-clip:text;

    background-clip:text;

    color:transparent;

    animation:
    pharmaGradient 6s ease infinite;
}@keyframes pharmaGradient{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }
}

.scroll-top{
  position:fixed;
  bottom:25px;
  left:25px;

  width:50px;
  height:50px;

  border-radius:50%;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border:1px solid rgba(255,255,255,0.15);

  color:white;
  font-size:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  cursor:pointer;

  opacity:0;
  transform:translateY(20px);

  transition: all 0.3s ease;

  box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.scroll-top.show{
  opacity:1;
  transform:translateY(0);
}

.scroll-top:hover{
  transform:translateY(-5px) scale(1.05);
}

.liquid-card{
  width: 280px;
  height: 280px;

  border-radius: 28px;
  overflow: hidden;

  position: relative;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 25px 80px rgba(0,0,0,0.5),
    inset 0 0 40px rgba(96,165,250,0.15);

  transform-style: preserve-3d;

  transition: transform 0.15s ease, border-radius 0.3s ease;
}

.liquid-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-stats2{

    display:flex;
    justify-content:center;
    align-items:center;

    gap:60px;

    margin-top:40px;

    padding:0;

    width:fit-content;

    margin-left:auto;
    margin-right:auto;

    background:none;
    border:none;
    box-shadow:none;
    backdrop-filter:none;

    animation:crystalFloat 6s ease-in-out infinite;
}

.hero-stats2::before{
    display:none;
}

.hero-stats2 .stat{

    text-align:center;

    min-width:110px;

    position:relative;
}

.hero-stats2 .num{

    font-size:clamp(2rem,4vw,3rem);

    font-weight:800;

    line-height:1;

    background:
    linear-gradient(
      135deg,
      #ffffff,
      #7dd3fc
    );

    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-stats2 span{

    display:block;

    margin-top:8px;

    font-size:.85rem;

    opacity:.75;
}

.hero-stats2 .stat:not(:last-child)::after{

    content:"";

    position:absolute;

    top:50%;
    right:-30px;

    width:1px;
    height:40px;

    transform:translateY(-50%);

    background:
    linear-gradient(
      transparent,
      rgba(255,255,255,.25),
      transparent
    );
}

@keyframes crystalFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }
}

@keyframes crystalShine{

    100%{
        transform:translateX(200%);
    }
}


/* ===================================
   PREMIUM DISTRIBUTOR CARDS
=================================== */

.cap-card{

    position:relative;

    overflow:hidden;

    cursor:pointer;

    transform-style:preserve-3d;

    transition:
      transform .55s cubic-bezier(.22,1,.36,1),
      box-shadow .55s cubic-bezier(.22,1,.36,1);

    will-change:transform;
}

/* Smooth Pop Up */

.cap-card:hover{

    transform:
      translateY(-12px)
      scale(1.03);

    box-shadow:
      0 25px 50px rgba(0,0,0,.20),
      0 0 30px rgba(96,165,250,.15);
}

/* Mouse Follow Light */

.cap-card::before{

    content:"";

    position:absolute;

    width:240px;
    height:240px;

    left:var(--mx,50%);
    top:var(--my,50%);

    transform:translate(-50%,-50%);

    background:
      radial-gradient(
        circle,
        rgba(255,255,255,.22),
        transparent 70%
      );

    opacity:0;

    transition:
      opacity .35s ease;

    pointer-events:none;
}

.cap-card:hover::before{
    opacity:1;
}

/* Crystal Shine */

.cap-card::after{

    content:"";

    position:absolute;

    inset:-50%;

    background:
      linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,255,255,.18) 50%,
        transparent 60%
      );

    transform:
      translateX(-150%) rotate(15deg);

    transition:
      transform .9s ease;

    pointer-events:none;
}

.cap-card:hover::after{

    transform:
      translateX(150%) rotate(15deg);
}

/* Text */

.cap-card h3{

    position:relative;

    z-index:2;

    transition:
      transform .4s ease;
}

.cap-card:hover h3{

    transform:
      translateY(-2px);
}


/* ====================================
   SCROLL TO TOP BUTTON
==================================== */

.scroll-top-btn{

    position:fixed;

    right:30px;
    bottom:30px;

    width:58px;
    height:58px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    z-index:9999;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:24px;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.18),
        rgba(255,255,255,.05)
    );

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.18);

    box-shadow:
      0 10px 30px rgba(0,0,0,.18),
      inset 0 1px 0 rgba(255,255,255,.25);

    opacity:0;

    visibility:hidden;

    transform:
    translateY(20px);

    transition:
    all .4s cubic-bezier(.22,1,.36,1);
}

/* Show Button */

.scroll-top-btn.show{

    opacity:1;

    visibility:visible;

    transform:
    translateY(0);
}

/* Hover */

.scroll-top-btn:hover{

    transform:
    translateY(-6px)
    scale(1.08);

    box-shadow:
      0 20px 40px rgba(96,165,250,.25);

}

/* Mobile */

@media(max-width:768px){

    .scroll-top-btn{

        width:50px;
        height:50px;

        right:20px;
        bottom:20px;
    }
}


/* ===================================
   GLOBAL REVEAL ANIMATION SYSTEM
=================================== */

.reveal{

    opacity:0;

    transform:
      translateY(30px)
      scale(.98);

    transition:
      opacity .9s cubic-bezier(.22,1,.36,1),
      transform .9s cubic-bezier(.22,1,.36,1);

    will-change:
      opacity,
      transform;
}

/* Active State */

.reveal.active{

    opacity:1;

    transform:
      translateY(0)
      scale(1);
}

/* ====================================
   PREMIUM CONTACT GLASS CARDS
==================================== */

.contact-card{

    position:relative;

    overflow:hidden;

    cursor:pointer;

    transform-style:preserve-3d;

    transition:
      transform .55s cubic-bezier(.22,1,.36,1),
      box-shadow .55s cubic-bezier(.22,1,.36,1),
      border-color .55s cubic-bezier(.22,1,.36,1);

    will-change:transform;
}

/* Hover State */

.contact-card:hover{

    transform:
      translateY(-10px)
      scale(1.02);

    box-shadow:
      0 25px 50px rgba(0,0,0,.20),
      0 0 35px rgba(96,165,250,.18);

    border-color:
      rgba(255,255,255,.25);
}

/* Mouse Follow Light */

.contact-card::before{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    left:var(--mx,50%);
    top:var(--my,50%);

    transform:translate(-50%,-50%);

    background:
      radial-gradient(
        circle,
        rgba(255,255,255,.22),
        transparent 70%
      );

    opacity:0;

    transition:opacity .35s ease;

    pointer-events:none;
}

.contact-card:hover::before{

    opacity:1;
}

/* Crystal Shine */

.contact-card::after{

    content:"";

    position:absolute;

    inset:-50%;

    background:
      linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,255,255,.16) 50%,
        transparent 60%
      );

    transform:
      translateX(-150%) rotate(18deg);

    transition:
      transform .9s ease;

    pointer-events:none;
}

.contact-card:hover::after{

    transform:
      translateX(150%) rotate(18deg);
}

/* Content stays above effects */

.contact-card > *{

    position:relative;

    z-index:2;
}


/* ====================================
   CONTACT CARD PREMIUM HOVER
==================================== */

.contact-card{

    position:relative;

    overflow:hidden;

    cursor:pointer;

    transition:
      transform .4s cubic-bezier(.22,1,.36,1),
      box-shadow .4s cubic-bezier(.22,1,.36,1);

    will-change:transform;
}

.contact-card:hover{

    transform:
      translateY(-10px);

    box-shadow:
      0 20px 40px rgba(0,0,0,.15);
}

/* Soft Liquid Glow */

.contact-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
      radial-gradient(
        circle at center,
        rgba(255,255,255,.10),
        transparent 70%
      );

    opacity:0;

    transition:
      opacity .4s ease;

    pointer-events:none;
}

.contact-card:hover::before{

    opacity:1;
}

/* ===================================
   CONTACT PAGE LOCATION SECTION
   APPLE STYLE LIQUID GLASS
=================================== */

.location-section{

    margin-top:60px;

    display:flex;

    justify-content:center;
}

/* MAIN GLASS CARD */

.location-card{

    position:relative;

    display:grid;

    grid-template-columns:1fr .8fr;

    gap:20px;

    width:100%;

    max-width:1000px;
    height: 500px;
    padding:20px;

    border-radius:28px;

    overflow:hidden;

    cursor:pointer;

    transition:
      transform .45s cubic-bezier(.22,1,.36,1),
      box-shadow .45s cubic-bezier(.22,1,.36,1);

    will-change:transform;
}


/* HOVER ANIMATION */

.location-card:hover{

    transform:
      translateY(-10px);

    box-shadow:
      0 20px 40px rgba(0,0,0,.15);
}

/* LIQUID GLOW */

.location-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
      radial-gradient(
        circle at center,
        rgba(255,255,255,.08),
        transparent 70%
      );

    opacity:0;

    transition:
      opacity .4s ease;

    pointer-events:none;
}

.location-card:hover::before{

    opacity:1;
}

/* MAP SIDE */

.location-map{

    overflow:hidden;

    border-radius:20px;

    min-height:280px;
}

.location-map iframe{

    width:100%;

    height:100%;

    border:none;

    border-radius:20px;

    transition:
      transform .5s cubic-bezier(.22,1,.36,1);
}

/* MAP ZOOM */

.location-card:hover .location-map iframe{

    transform:scale(1.03);
}

/* INFO SIDE */

.location-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-left:40px;

    gap:12px;
}

.location-info h2{

    margin-top:12px;

    margin-bottom:20px;

    font-size:clamp(1.8rem,2vw,2.4rem);

    line-height:1.2;
}

.location-info p{

    margin-top:0;


    font-size:1rem;

    line-height:1.9;

    max-width:380px;
}

/* MOBILE */

@media(max-width:900px){

    .location-card{

        grid-template-columns:1fr;
    }

    .location-map{

        min-height:250px;
    }

    .location-info{

        text-align:center;

        align-items:center;
    }

    .location-info p{

        max-width:100%;
    }
}


.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper .icon {
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span {
  display: block;
  height: 60px;
  width: 60px;
  color: #000;
  background: #fff;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon span i {
  line-height: 60px;
  font-size: 25px;
}
.wrapper .icon .tooltip {
  position: absolute;
  top: 0;
  z-index: 1;
  background: #fff;
  color: #fff;
  padding: 10px 18px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 25px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip {
  top: -70px;
  opacity: 1;
  pointer-events: auto;
}
.icon .tooltip:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  background: inherit;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
}
.wrapper .icon:hover span {
  color: #fff;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.4);
}
.wrapper .facebook:hover span,
.wrapper .facebook:hover .tooltip {
  background: #3B5999;
}
.wrapper .twitter:hover span,
.wrapper .twitter:hover .tooltip {
  background: #46C1F6;
}
.wrapper .instagram:hover span,
.wrapper .instagram:hover .tooltip {
  background: #e1306c;
}
.wrapper .github:hover span,
.wrapper .github:hover .tooltip {
  background: #333;
}
.wrapper .youtube:hover span,
.wrapper .youtube:hover .tooltip {
  background: #DE463B;
}

.appointment-section{

    padding:30px 30px;
}

.appointment-wrapper{

    display:flex;

    justify-content:center;

    margin-top:55px;
}

.appointment-form-box{

    width:100%;

    max-width:760px; /* pehle 650 tha */

    padding:55px;

    border-radius:38px;
}

#appointmentForm{

    display:flex;

    flex-direction:column;

    gap:22px; /* pehle 18 tha */
}

#appointmentForm input{

    width:100%;

    height:62px;

    padding:0 24px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255, 245, 245, 0.05);

    color:white;

    font-size:1rem;

    transition:.3s ease;
}

#appointmentForm input:hover{

    background:rgba(255,255,255,.08);
}

#appointmentForm input:focus{

    outline:none;

    border-color:
    rgba(255,255,255,.35);

    background:
    rgba(255,255,255,.08);
}


.gift-card-btn-wrap{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:40px;
}


.get-in-touch {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.get-in-touch.show {
    opacity: 1;
    transform: translateY(0);
}

#pageLoader{
    position:fixed;
    inset:0;
    background:#000;
    z-index:999999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.8s ease;
}

#pageLoader.hide{
    opacity:0;
    visibility:hidden;
}

#introVideo{
    width:450px;
    max-width:90%;
}


.submit-btn-box{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:30px;
}

.submit-btn{
    position:relative;
    width:190px;
    height:60px;
    border:none;
    outline:none;
    border-radius:50px;
    cursor:pointer;
    overflow:hidden;

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:2px solid rgba(255,255,255,.25);

    color:#fff;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;

    transition:.4s ease;
    box-shadow:
    0 8px 30px rgba(0,0,0,.25);
}

.submit-btn span{
    position:relative;
    z-index:2;
}

.submit-btn::before{
    content:"";
    position:absolute;
    left:-20%;
    top:0;
    width:0%;
    height:100%;
    background:linear-gradient(90deg,#008cff,#00d4ff);
    border-radius:50px;
    transition:.6s ease;
    z-index:1;
}

.submit-btn:hover::before{
    width:140%;
}

.submit-btn:hover{
    transform:translateY(-5px);
    
}

.submit-btn:active{
    transform:scale(.95);
}

/* ===================================================================
   FAQ SECTION — liquid glass accordion
   =================================================================== */

.faq-section{
    padding: var(--sp-6) 30px;
}

.faq-list{
    max-width: 760px;
    margin: 45px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item{
    border-radius: var(--radius-m);
    overflow: hidden;
    transition: border-color .35s var(--ease-glass), background .35s var(--ease-glass);
}

.faq-item.active{
    border-color: rgba(255,255,255,.28);
}

.faq-question{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background .3s ease;
}

.faq-question:hover{
    background: rgba(255,255,255,.05);
}

.faq-icon{
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    transition: transform .45s var(--ease-glass), background .35s ease;
    position: relative;
}

.faq-icon::before,
.faq-icon::after{
    content:"";
    position:absolute;
    background: var(--text-primary);
    border-radius: 2px;
}

.faq-icon::before{
    width: 13px;
    height: 2px;
}

.faq-icon::after{
    width: 2px;
    height: 13px;
    transition: transform .45s var(--ease-glass);
}

.faq-item.active .faq-icon{
    transform: rotate(180deg);
    background: rgba(255,255,255,.16);
}

.faq-item.active .faq-icon::after{
    transform: scaleY(0);
}

.faq-answer-wrap{
    max-height: 0;
    overflow: hidden;
    transition: max-height .55s var(--ease-glass), opacity .45s ease;
    opacity: 0;
}

.faq-item.active .faq-answer-wrap{
    opacity: 1;
}

.faq-answer{
    padding: 0 28px 24px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.65;
    transform: translateY(-6px);
    opacity: 0;
    transition: transform .5s var(--ease-glass), opacity .5s var(--ease-glass);
}

.faq-item.active .faq-answer{
    transform: translateY(0);
    opacity: 1;
    transition-delay: .08s;
}


.heading1{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 3vw, 1.5rem);
  font-weight: 800;
  line-height: 1.1;
}



#loader-wrapper{
    position:fixed;inset:0;
    display:flex;align-items:center;justify-content:center;
    background:var(--bg);z-index:9999;
  }
 
  .stage{position:relative;display:flex;flex-direction:column;align-items:center;}
 
  /* ---- ECG / pulse line that "draws" then hands off to the text ---- */
  .pulse-wrap{
    width:280px;height:34px;
    clip-path:inset(0 100% 0 0);
    animation:reveal .75s cubic-bezier(.65,0,.35,1) forwards;
    animation-delay:.1s;
  }
  .pulse-wrap svg{display:block;width:100%;height:100%;}
  .pulse-line{
    fill:none;
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke:url(#pulseGradient);
  }
 
  /* leading glow dot that "scans" across, same timing as the wipe */
  .scan-dot{
    position:absolute;
    top:2px;
    left:0;
    width:9px;height:9px;
    border-radius:50%;
    background:var(--red);
    box-shadow:0 0 10px 2px currentColor;
    animation:
      scanMove .75s cubic-bezier(.65,0,.35,1) forwards,
      scanColor .75s linear forwards;
    animation-delay:.1s;
    opacity:0;
  }
  @keyframes scanMove{
    0%{left:0;opacity:1;}
    95%{opacity:1;}
    100%{left:271px;opacity:0;}
  }
  @keyframes scanColor{
    0%{background:var(--red);}
    50%{background:var(--blue);}
    100%{background:var(--green);}
  }
 
  @keyframes reveal{ to{ clip-path:inset(0 0% 0 0); } }
 
  /* ---- wordmark, revealed right behind the pulse ---- */
  .word-wrap{
    margin-top:6px;
    width:280px;
    clip-path:inset(0 100% 0 0);
    animation:reveal .7s cubic-bezier(.65,0,.35,1) forwards;
    animation-delay:.32s;
  }
  .heading0{
    font-size:clamp(26px,6vw,42px);
    font-weight:700;
    letter-spacing:5px;
    color:var(--text);
    white-space:nowrap;
    text-align:center;
  }
 
  /* subtitle types in after the wordmark lands */
  .sub{
    margin-top:8px;
    font-size:12px;
    font-weight:500;
    letter-spacing:0.4em;
    color:var(--muted);
    opacity:0;
    animation:fadeUp .5s ease forwards;
    animation-delay:1.05s;
  }
  @keyframes fadeUp{
    from{opacity:0;transform:translateY(6px);}
    to{opacity:1;transform:translateY(0);}
  }
 
  /* thin gradient underline settles beneath everything */
  .under{
    margin-top:10px;
    width:0;
    height:2px;
    border-radius:2px;
    background:linear-gradient(90deg,var(--red),var(--blue),var(--green));
    animation:growLine .4s ease forwards;
    animation-delay:1.15s;
  }
  @keyframes growLine{ to{width:60px;} }
 
  #loader.exit{ animation:fadeOut .45s ease forwards; }
  @keyframes fadeOut{ to{opacity:0;visibility:hidden;} }
 
  #replay{
    position:fixed;bottom:24px;left:50%;transform:translateX(-50%);
    z-index:10000;background:transparent;border:1px solid #2a2a2e;
    color:#888;font-family:'Poppins',sans-serif;font-size:11px;
    letter-spacing:2px;padding:8px 18px;border-radius:20px;cursor:pointer;
    transition:.2s;
  }

#loader-wrapper.exit{
    animation: fadeOut .5s forwards;
}

@keyframes fadeOut{
    to{
        opacity:0;
        visibility:hidden;
    }
}




.liquid-btn{

    position:relative;
    width:130px;
    height:30px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:60px;

    overflow:hidden;

    text-decoration:none;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.25);

    box-shadow:

    inset 0 1px 1px rgba(255,255,255,.4),

    inset 0 -10px 25px rgba(255,255,255,.03),

    0 15px 35px rgba(0,0,0,.45);

    transition:.55s;

}

.liquid-btn span{

    position:relative;
    z-index:10;

    color:white;

    font-size:15px;

    font-weight:600;

    letter-spacing:.5px;

}

/* Liquid */

.liquid-btn::before{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    background:radial-gradient(circle,#3db7ff,#0048ff);

    border-radius:40%;

    left:-170px;
    top:130px;

    transition:1s cubic-bezier(.19,1,.22,1);

    filter:blur(25px);

}

/* Shine */

.liquid-btn::after{

    content:"";

    position:absolute;

    inset:2px;

    border-radius:60px;

    background:linear-gradient(
    180deg,
    rgba(255,255,255,.45),
    rgba(255,255,255,.05),
    transparent
    );

    pointer-events:none;

}

/* Hover */

.liquid-btn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 0 30px rgba(0,140,255,.4),

    0 25px 60px rgba(0,80,255,.35),

    inset 0 1px 2px rgba(255,255,255,.5);

}

.liquid-btn:hover::before{

    top:-110px;

    left:-40px;

    transform:rotate(360deg);

}

.liquid-btn:hover span{

    text-shadow:0 0 15px #fff;
}



/* ===================================================================
   REVIEWS & RATINGS — About page
   =================================================================== */

.star-rating {
  display: flex;
  gap: 6px;
  margin-top: 0.4rem;
}

.star-rating .star {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: rgba(255,255,255,0.22);
  cursor: pointer;
  padding: 2px;
  transition: color .18s ease, transform .18s ease;
}

.star-rating .star:hover,
.star-rating .star.hover-fill {
  transform: scale(1.15);
}

.star-rating .star.filled,
.star-rating .star.hover-fill {
  color: var(--brand-green, #1FA572);
}

.review-card {
  padding: var(--sp-3);
}

.review-card .review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}

.review-card .review-name {
  font-weight: 600;
  color: var(--text-primary);
}

.review-card .review-date {
  font-size: var(--fs-tiny);
  color: var(--text-muted);
  font-family: var(--font-data);
}

.review-card .review-stars {
  color: var(--brand-green, #1FA572);
  letter-spacing: 2px;
  margin: 0.3rem 0 0.5rem;
  font-size: 0.95rem;
}

.review-card .review-text {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.5;
}

.reviews-empty {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: var(--sp-4) var(--sp-2);
}
