/* ===== Styles from index.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}

    :root{
      --brand-mint:#05afa1;
      --accent:var(--brand-mint);
      --bg-0:#f4fbf9;
      --bg-1:#ffffff;
      --text-0:#0f172a;
      --text-1:#5b6573;
      --panel-0:#ffffff;
      --panel-line:rgba(15,23,42,0.08);
      --line:rgba(15,23,42,0.08);
      --shadow:0 18px 45px rgba(15,23,42,0.08);
    }

    body{
      font-family:'Poppins',sans-serif;
      background:
        radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
        linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
      color:var(--text-0);
      min-height:100%;
      position:relative;
    }

    body.menu-open{ overflow:hidden; }

    /* Navbar */
    .navbar,
    .services-page,
    .footer-section{ position:relative; z-index:1; }

    .navbar{
      position:fixed;
      top:0;
      left:0;
      width:100%;
      height: 90px;
      padding:0 24px;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:24px;
      background:rgba(255,255,255,0.65);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom:1px solid rgba(15,23,42,0.06);
      transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
      z-index:999;
    }

    .navbar-inner{
      width:100%;
      height:100%;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:24px;
      padding:0 64px;
    }

    .navbar.scrolled{
      height: 56px;
      padding:0;
      background:transparent;
      box-shadow:none;
      border-bottom:0;
      backdrop-filter:none;
      -webkit-backdrop-filter:none;
    }

    .navbar.scrolled .navbar-inner{
      width:min(980px, calc(100% - 120px));
      height:56px;
      padding:0 28px;
      background:rgba(255,255,255,0.72);
      border:1px solid rgba(255,255,255,0.65);
      border-radius:16px;
      box-shadow:0 18px 40px rgba(0,0,0,0.12);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .nav-left{
      display:flex;
      align-items:center;
      gap:0px;
      justify-self:start;
      min-width:260px;
    }

    .nav-logo{
      height:82px;
      width:auto;
      max-width:180px;
      object-fit:contain;
      display:block;
    }

    .nav-arrow{
      height:44px;
      width:auto;
      object-fit:contain;
      display:none;
    }

    .navbar.scrolled .nav-logo{
      display:none;
    }

    .navbar.scrolled .nav-arrow{
      display:block;
    }

    .nav-menu{
      justify-self:center;
      display:flex;
      gap:56px;
      font-size:16px;
      font-weight:500;
    }

    .nav-menu a{
      text-decoration:none;
      color:var(--text-0);
      transition:opacity .2s ease, color .2s ease;
    }

    .nav-menu a:hover{ opacity:0.7; }
    .nav-menu a.home{ color:var(--accent); }

    .nav-right{
      display:flex;
      align-items:center;
      gap:16px;
      justify-self:end;
    }

    .nav-call{
      padding:10px 22px;
      border:1px solid var(--accent);
      border-radius:999px;
      color:var(--text-0);
      text-decoration:none;
      font-weight:600;
      transition:background .25s ease, color .25s ease, border .25s ease;
    }

    .nav-call:hover{
      background:var(--accent);
      border-color:var(--accent);
      color:#ffffff;
    }

    .nav-toggle{
      display:none;
      width:42px;
      height:42px;
      border-radius:12px;
      border:1px solid rgba(15,23,42,0.12);
      background:rgba(255,255,255,0.8);
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:6px;
      cursor:pointer;
    }

    .nav-toggle span{
      width:18px;
      height:2px;
      background:var(--text-0);
      transition:transform .3s ease, opacity .3s ease;
    }

    body.menu-open .nav-toggle span:nth-child(1){
      transform:translateY(4px) rotate(45deg);
    }

    body.menu-open .nav-toggle span:nth-child(2){
      transform:translateY(-4px) rotate(-45deg);
    }

    /* Mobile Menu */
    .mobile-menu{
      position:fixed;
      inset:0;
      background:#ffffff;
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      opacity:0;
      pointer-events:none;
      transform:translateY(-14px);
      transition:opacity .35s ease, transform .35s ease;
      z-index:1000;
    }

    .mobile-menu.open{
      opacity:1;
      transform:translateY(0);
      pointer-events:auto;
    }

    .mobile-menu-inner{
      height:100%;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:96px 24px 32px;
      position:relative;
    }

    .mobile-close{
      position:absolute;
      top:24px;
      right:24px;
      width:44px;
      height:30px;
      border-radius:14px;
      border:1px solid rgba(15,23,42,0.15);
      background:#ffffff;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
    }

    .mobile-close span{
      position:absolute;
      width:18px;
      height:2px;
      background:#0f172a;
    }

    .mobile-close span:nth-child(1){ transform:rotate(45deg); }
    .mobile-close span:nth-child(2){ transform:rotate(-45deg); }


    .mobile-links{
      margin-top:0;
      display:flex;
      flex-direction:column;
      gap:22px;
      align-items:center;
    }

    .mobile-links a{
      color:#0f172a;
      text-decoration:none;
      font-size:22px;
      font-weight:500;
      letter-spacing:0.2px;
    }

    .mobile-links a.active{ color:var(--accent); }

    .mobile-links .mobile-cta{
      margin-top:16px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid var(--accent);
      color:var(--accent);
      text-align:center;
      text-decoration:none;
      min-width:220px;
    }

    /* Center animation layer */
    #center-overlay{
      position:fixed;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      z-index:9999;
      pointer-events:none;
    }

    .center-preview{
      width:min(78vw, 420px);
      aspect-ratio:16 / 9;
      border-radius:18px;
      overflow:hidden;
      box-shadow:0 25px 70px rgba(0,0,0,0.35);
      opacity:0;
      transform:scale(0.85);
    }

    .intro-arrow{
      width:min(540px, 72vw);
      height:auto;
      opacity:0;
      transform:translate3d(0,140vh,0) scale(1);
      transition:transform 0.9s ease, opacity 0.6s ease;
      will-change:transform, opacity;
      pointer-events:none;
    }

    body.home.intro-start .intro-arrow{
      opacity:0.22;
      transform:translate3d(0,0,0) scale(1.05);
    }

    body.home.intro-shrink .intro-arrow{
      transform:translate3d(0,0,0) scale(0.74);
      transition:transform 0.7s ease-in;
    }

    body.home.intro-done .intro-arrow{
      opacity:0;
      transition:opacity 0.6s ease;
    }

    /* Hero */
    .services-page{ padding-bottom:90px; }

    .services-hero{
      min-height:100vh;
      padding:clamp(200px, 30vh, 320px) 6vw clamp(150px, 22vh, 260px);
      display:flex;
      align-items:flex-start;
      text-align:left;
      position:relative;
      overflow:hidden;
    }

    .services-hero::after{
      content:"";
      position:absolute;
      right:-6%;
      top:52%;
      width:clamp(480px, 68vw, 1040px);
      height:clamp(480px, 68vw, 1040px);
      background:url("images/arrow.png") no-repeat center/contain;
      opacity:0.08;
      filter:blur(2px);
      transform:translateY(-50%);
      pointer-events:none;
    }

    .hero-inner{
      max-width:min(1380px, 84vw);
      margin:0;
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:40px;
      opacity:0;
      transform:translateY(24px);
      transition:opacity 1s ease, transform 1s ease;
    }

    .hero-eyebrow{
      display:block;
      font-size:clamp(16px,1.4vw,19px);
      letter-spacing:0.02em;
      text-transform:none;
      color:var(--text-1);
      margin:0;
      font-weight:500;
    }

    body.page-loaded .hero-inner{
      opacity:1;
      transform:translateY(0);
    }

    .services-hero h1{
      font-size:clamp(34px,4.4vw,68px);
      font-weight:800;
      letter-spacing:-0.02em;
      line-height:1.38;
      color:var(--text-0);
      margin:0;
    }

    .services-hero p{
      margin:0;
      font-size:clamp(16px,1.6vw,21px);
      color:var(--text-1);
      line-height:1.8;
      max-width:1120px;
    }

    .hero-rotate{
      position:relative;
      display:inline-block;
      width:9ch;
      min-height:1em;
      margin-left:10px;
      white-space:nowrap;
      color:var(--accent);
      vertical-align:baseline;
    }

    .hero-rotate span{
      position:absolute;
      left:0;
      top:0;
      opacity:0;
      transform:translate3d(0,12px,0);
      animation:heroSwap 9s infinite;
      will-change:transform, opacity;
      background:linear-gradient(90deg, #00a899, #7be6dc);
      -webkit-background-clip:text;
      color:transparent;
    }

    .hero-rotate span:nth-child(1){ animation-delay:0s; }
    .hero-rotate span:nth-child(2){ animation-delay:3s; }
    .hero-rotate span:nth-child(3){ animation-delay:6s; }

    @keyframes heroSwap{
      0%{ opacity:0; transform:translate3d(0,12px,0); }
      10%{ opacity:1; transform:translate3d(0,0,0); }
      30%{ opacity:1; transform:translate3d(0,0,0); }
      40%{ opacity:0; transform:translate3d(0,-10px,0); }
      100%{ opacity:0; transform:translate3d(0,-10px,0); }
    }

    .hero-sub{
      color:var(--text-0);
      font-weight:600;
      letter-spacing:-0.01em;
    }

    @media (prefers-reduced-motion: reduce){
      .hero-rotate span{
        animation:none;
        opacity:0;
        transform:none;
        position:static;
        display:none;
      }
      .hero-rotate span:first-child{
        display:inline;
        opacity:1;
      }
    }

    .intro-section{
      width:min(1160px, 90vw);
      margin:0 auto;
      padding:12px 0 48px;
      text-align:left;
    }

    .intro-wrap{
      display:grid;
      grid-template-columns:1fr;
      align-items:center;
      gap:20px;
    }

    .intro-content{
      display:flex;
      flex-direction:column;
      gap:20px;
      color:var(--text-1);
      font-size:clamp(16px,1.5vw,20px);
      line-height:1.85;
      max-width:none;
      padding-left:16px;
    }

    .intro-title{
      margin:0;
      font-size:clamp(18px,1.7vw,22px);
      font-weight:600;
      letter-spacing:0.02em;
      color:var(--text-0);
    }

    .intro-content p{
      margin:0;
    }

    .intro-content .intro-copy{
      margin:0;
      font:inherit;
      color:inherit;
    }

    .intro-media{
      width:100%;
      display:flex;
      justify-content:flex-end;
    }

    .intro-media img{
      width:100%;
      max-width:520px;
      height:auto;
      border-radius:18px;
      box-shadow:0 18px 45px rgba(15,23,42,0.12);
      object-fit:cover;
    }

    .intro-reveal{
      opacity:0;
      transform:translate3d(0,26px,0);
      transition:opacity 1.2s ease, transform 1.2s ease;
      will-change:transform, opacity;
    }

    .intro-reveal.in-view{
      opacity:1;
      transform:translate3d(0,0,0);
    }

    @media (max-width: 700px){
      .intro-section{
        width:min(100%, 92vw);
        padding:6px 0 32px;
      }
      .intro-wrap{
        grid-template-columns:1fr;
        gap:28px;
      }
      .intro-media{
        justify-content:flex-start;
      }
      .intro-media img{
        max-width:100%;
      }
      .intro-content{
        font-size:16px;
        line-height:1.8;
      }
    }

    @media (prefers-reduced-motion: reduce){
      .intro-reveal{
        opacity:1;
        transform:none;
        transition:none;
      }
    }

    .pillars-section{
      width:min(1160px, 90vw);
      margin:0 auto;
      padding:16px 0 28px;
      text-align:left;
    }

    .pillars-header{
      font-size:clamp(26px,3.2vw,40px);
      font-weight:700;
      letter-spacing:-0.01em;
      color:var(--text-0);
      margin:0 0 12px 0;
      padding-left:16px;
      opacity:0;
      transform:translate3d(0,20px,0);
      transition:opacity 1s ease, transform 1s ease;
      will-change:transform, opacity;
    }

    .pillars-header.in-view{
      opacity:1;
      transform:translate3d(0,0,0);
    }

    .pillars-panels{
      display:flex;
      gap:2px;
      align-items:stretch;
      width:100%;
      opacity:0;
      transform:translate3d(0,20px,0);
      transition:opacity 1s ease, transform 1s ease;
      will-change:transform, opacity;
    }

    .pillars-panels.in-view{
      opacity:1;
      transform:translate3d(0,0,0);
    }

    .pillar-panel{
      flex:1;
      min-width:56px;
      min-height:280px;
      background:var(--panel-0);
      border:1px solid var(--panel-line);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:16px 14px;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      transition:flex 0.275s ease-in-out, opacity 0.275s ease, border-color 0.275s ease;
      opacity:0.78;
    }

    .pillar-panel::before{
      content:"";
      position:absolute;
      inset:-8% -6% -6% -6%;
      background:
        radial-gradient(55% 55% at 70% 32%, rgba(0,168,153,0.10), transparent 62%),
        radial-gradient(38% 38% at 62% 50%, rgba(0,168,153,0.06), transparent 66%);
      opacity:0;
      z-index:0;
      transition:opacity 0.225s ease;
      pointer-events:none;
    }

    .pillar-panel::after{
      content:"";
      position:absolute;
      inset:-6% -4%;
      background:url("images/GroMatrix Color Tranceperant logo.png") no-repeat 100% 52%/460px auto;
      opacity:0.16;
      filter:blur(3px);
      transform:translate3d(0,0,0) scale(1.02);
      z-index:0;
      transition:opacity 0.225s ease;
      pointer-events:none;
    }

    .pillar-panel[data-tilt="a"]::after{ background-position:100% 52%; }
    .pillar-panel[data-tilt="b"]::after{ background-position:100% 54%; }
    .pillar-panel[data-tilt="c"]::after{ background-position:100% 50%; }

    .pillar-panel.is-active::before,
    .pillar-panel:hover::before{
      opacity:0.12;
    }

    .pillar-panel.is-active::after,
    .pillar-panel:hover::after{
      opacity:0.28;
    }

    .pillar-panel > *{
      position:relative;
      z-index:1;
    }

    .pillar-panel.is-active{
      flex:14;
      opacity:1;
    }

    .pillar-panel[data-accent="mint"]{ border-color:rgba(5,175,161,0.45); }
    .pillar-panel[data-accent="orange"]{ border-color:rgba(255,142,90,0.45); }
    .pillar-panel[data-accent="blue"]{ border-color:rgba(87,150,255,0.45); }

    .pillar-label{
      position:absolute;
      left:50%;
      top:50%;
      margin:0;
      padding:0;
      border:none;
      background:transparent;
      color:var(--text-1);
      font-weight:600;
      font-size:16px;
      letter-spacing:0.04em;
      writing-mode:vertical-rl;
      text-orientation:mixed;
      transform:translate(-50%, -50%) rotate(180deg);
      cursor:pointer;
      transition:opacity 0.2s ease, transform 0.2s ease;
      text-align:center;
    }

    .pillar-panel.is-active .pillar-label{
      opacity:0;
      transform:translate(-50%, -50%) rotate(180deg) translate3d(0,-8px,0);
    }

    .pillar-body{
      display:flex;
      flex-direction:column;
      gap:8px;
      margin:0;
      margin-left:64px;
      margin-right:auto;
      max-width:520px;
      text-align:left;
      opacity:0;
      transform:translate3d(0,8px,0);
      transition:opacity 0.225s ease, transform 0.225s ease;
      transition-delay:0.2s;
    }

    .pillar-panel.is-active .pillar-body{
      opacity:1;
      transform:translate3d(0,0,0);
    }

    .pillar-title{
      font-size:clamp(18px,1.6vw,24px);
      font-weight:700;
      color:var(--text-0);
      margin:0;
    }

    .pillar-desc{
      margin:0;
      color:var(--text-1);
      font-size:clamp(15px,1.1vw,17px);
      line-height:1.75;
    }

    .pillar-body h3.pillar-desc{
      font-weight:400;
    }

    @media (max-width: 768px){
      .pillar-panel::after{
        background:none;
        opacity:0;
        filter:none;
      }

      .pillars-section{
        width:min(100%, 92vw);
        padding:20px 0 44px;
      }

      .pillars-header{ margin-bottom:14px; }

      .pillars-panels{
        flex-direction:column;
        gap:12px;
      }

      .pillar-panel{
        min-height:auto;
        align-items:stretch;
        opacity:1;
        flex:1;
        padding:16px 18px;
        cursor:pointer;
        flex-direction:column;
      }

      .pillar-panel.is-active{
        flex:1;
      }

      .pillar-panel.is-active .pillar-label{
        opacity:0;
        transform:translateY(-6px);
      }

      .pillar-label{
        position:static;
        writing-mode:horizontal-tb;
        transform:none;
        font-size:clamp(12px, 3.4vw, 15px);
        text-align:center;
        opacity:1;
        width:100%;
        padding:12px 8px;
        display:flex;
        align-items:center;
        justify-content:center;
        white-space:nowrap;
        word-break:normal;
        overflow-wrap:normal;
        line-height:1.4;
      }

      .pillar-body{
        margin-left:0;
        margin-right:0;
        max-width:none;
        width:100%;
        align-self:stretch;
        max-height:0;
        overflow:hidden;
        opacity:0;
        transform:translate3d(0,6px,0);
        transition:max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
        text-align:left;
        padding:0 12px 12px;
        box-sizing:border-box;
      }

      .pillar-panel.is-active .pillar-body{
        max-height:300px;
        opacity:1;
        transform:translate3d(0,0,0);
      }

      .pillar-title{
        text-align:left;
        margin-left:0;
        margin-right:0;
        width:100%;
      }

      .pillar-desc{
        text-align:left;
        margin-left:0;
        margin-right:0;
        width:100%;
      }
    }

    @media (prefers-reduced-motion: reduce){
      .pillars-header,
      .pillar-panel,
      .pillars-panels{
        opacity:1;
        transform:none;
        transition:none;
      }
      .pillar-body{
        opacity:1;
        transform:none;
        transition:none;
      }
      .pillar-panel{
        flex:1;
        opacity:1;
      }
      .pillar-label{
        opacity:1;
        transform:none;
      }
    }

    .hw-section{
      width:min(1040px, 88vw);
      margin:0 auto;
      padding:24px 0 70px;
      text-align:left;
    }

    .hw-heading{
      font-size:clamp(26px,3.2vw,40px);
      font-weight:700;
      letter-spacing:-0.01em;
      color:var(--text-0);
      margin:0 0 22px 0;
      opacity:0;
      transform:translate3d(0,18px,0);
      transition:opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
      will-change:transform, opacity;
    }

    .hw-heading.in-view{
      opacity:1;
      transform:translate3d(0,0,0);
    }

    .hw-timeline{
      position:relative;
      display:flex;
      flex-direction:column;
      gap:28px;
      padding:10px 0;
    }

    .hw-timeline::before{
      content:"";
      position:absolute;
      top:0;
      bottom:0;
      left:50%;
      width:2px;
      background:rgba(5,175,161,0.18);
      transform:translateX(-50%);
    }

    .hw-timeline-item{
      display:grid;
      grid-template-columns:1fr 52px 1fr;
      align-items:center;
      position:relative;
    }

    .hw-spacer{
      min-height:1px;
    }

    .hw-dot{
      grid-column:2;
      justify-self:center;
      width:20px;
      height:20px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 8px rgba(5,175,161,0.12);
      opacity:0;
      transform:scale(0.6);
      transition:opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .hw-content{
      background:#ffffff;
      border:1px solid rgba(15,23,42,0.12);
      border-radius:24px;
      padding:26px 30px;
      box-shadow:0 16px 40px rgba(15,23,42,0.08);
      display:flex;
      flex-direction:column;
      gap:10px;
      opacity:0;
      will-change:transform, opacity;
    }

    .hw-title,
    .hw-desc{
      opacity:0;
      transform:translate3d(0,8px,0);
      transition:opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .hw-title{
      font-size:clamp(18px,1.5vw,22px);
      font-weight:700;
      color:var(--text-0);
      margin:0;
    }

    .hw-desc{
      margin:0;
      color:var(--text-1);
      font-size:clamp(15px,1.1vw,17px);
      line-height:1.7;
      max-width:820px;
    }

    .hw-content h3.hw-desc{
      font-weight:400;
    }

    .hw-timeline-item.left .hw-content{
      grid-column:1;
      transform:translate3d(-120vw,0,0);
    }
    .hw-timeline-item.left .hw-spacer{ grid-column:3; }
    .hw-timeline-item.right .hw-content{
      grid-column:3;
      transform:translate3d(120vw,0,0);
    }
    .hw-timeline-item.right .hw-spacer{ grid-column:1; }

    .hw-timeline-item.in-view .hw-content{
      opacity:1;
    }

    .hw-timeline-item.in-view.left .hw-content{
      animation:hwInLeft 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      animation-delay:var(--hw-delay, 0ms);
    }

    .hw-timeline-item.in-view.right .hw-content{
      animation:hwInRight 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      animation-delay:var(--hw-delay, 0ms);
    }

    @keyframes hwInLeft{
      0%{ opacity:0; transform:translate3d(-120vw,0,0); }
      70%{ opacity:1; transform:translate3d(12px,0,0); }
      100%{ opacity:1; transform:translate3d(0,0,0); }
    }

    @keyframes hwInRight{
      0%{ opacity:0; transform:translate3d(120vw,0,0); }
      70%{ opacity:1; transform:translate3d(-12px,0,0); }
      100%{ opacity:1; transform:translate3d(0,0,0); }
    }

    .hw-timeline-item.in-view .hw-dot{
      opacity:1;
      transform:scale(1);
    }

    .hw-timeline-item.in-view .hw-title{
      opacity:1;
      transform:translate3d(0,0,0);
      transition-delay:0.08s;
    }

    .hw-timeline-item.in-view .hw-desc{
      opacity:1;
      transform:translate3d(0,0,0);
      transition-delay:0.16s;
    }

    @media (max-width: 900px){
      .hw-timeline{
        gap:20px;
      }
      .hw-timeline::before{
        left:14px;
        transform:none;
      }
      .hw-timeline-item{
        display:block;
        position:relative;
        padding-left:42px;
      }
      .hw-dot{
        position:absolute;
        left:14px;
        top:50%;
        margin:0;
        width:16px;
        height:16px;
        box-shadow:0 0 0 6px rgba(5,175,161,0.12);
        transform:translate(-50%, -50%) scale(0.6);
      }
      .hw-content{
        width:100%;
        opacity:0;
        transform:translate3d(0,18px,0);
      }
      .hw-timeline-item.left .hw-content,
      .hw-timeline-item.right .hw-content{
        transform:translate3d(0,18px,0);
      }
      .hw-timeline-item .hw-spacer{ display:none; }

      .hw-timeline-item.in-view .hw-dot{
        transform:translate(-50%, -50%) scale(1);
      }

      .hw-timeline-item.in-view .hw-content{
        animation:hwBounceIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        animation-delay:var(--hw-delay, 0ms);
      }
      .hw-timeline-item.in-view.left .hw-content,
      .hw-timeline-item.in-view.right .hw-content{
        animation:hwBounceIn 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
        animation-delay:var(--hw-delay, 0ms);
      }
    }

    @keyframes hwInUp{
      0%{ opacity:0; transform:translate3d(0,50px,0); }
      70%{ opacity:1; transform:translate3d(0,-8px,0); }
      100%{ opacity:1; transform:translate3d(0,0,0); }
    }

    @keyframes hwInRightMobile{
      0%{ opacity:0; transform:translate3d(120vw,0,0); }
      70%{ opacity:1; transform:translate3d(-10px,0,0); }
      100%{ opacity:1; transform:translate3d(0,0,0); }
    }
    
    @keyframes hwBounceIn{
      0%{ opacity:0; transform:translate3d(0,24px,0); }
      70%{ opacity:1; transform:translate3d(0,-6px,0); }
      100%{ opacity:1; transform:translate3d(0,0,0); }
    }

    @media (max-width: 700px){
      .hw-section{
        width:min(100%, 88vw);
        padding:18px 0 52px;
      }
      .hw-heading,
      .hw-content{ transform:translate3d(0,14px,0); }
    }

    @media (prefers-reduced-motion: reduce){
      .hw-heading,
      .hw-content,
      .hw-title,
      .hw-desc,
      .hw-dot{
        opacity:1;
        transform:none;
        transition:none;
        animation:none;
      }
    }

    .why-section{
      width:min(1040px, 88vw);
      margin:0 auto;
      padding:24px 0 70px;
      text-align:left;
    }

    .faq-section{
      width:min(1120px, 92vw);
      margin:0 auto;
      padding:22px 0 24px;
    }

    .faq-section{
      width:min(1180px, 92vw);
      margin:0 auto;
      padding:28px 0 20px;
    }

    .why-block-title,
    .faq-block-title{
      font-size:clamp(26px,3.2vw,40px);
      font-weight:700;
      letter-spacing:-0.01em;
      color:var(--text-0);
      margin:0 0 18px 0;
    }

    .why-list{
      display:flex;
      flex-direction:column;
      gap:16px;
    }

    .why-item{
      background:#ffffff;
      border:1px solid rgba(15,23,42,0.12);
      border-radius:24px;
      padding:26px 30px;
      box-shadow:0 16px 40px rgba(15,23,42,0.08);
      display:flex;
      flex-direction:column;
      gap:10px;
      opacity:0;
      transform:translate3d(0,16px,0);
      transition:opacity 0.95s ease, transform 0.95s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
      will-change:transform, opacity;
    }

    .why-title{
      font-size:clamp(18px,1.5vw,22px);
      font-weight:700;
      color:var(--text-0);
      margin:0;
    }

    .why-desc{
      margin:0;
      color:var(--text-1);
      font-size:clamp(15px,1.1vw,17px);
      line-height:1.7;
      max-width:820px;
    }

    .why-item h3.why-desc{
      font-weight:400;
    }

    .why-item.in-view{
      opacity:1;
      transform:translate3d(0,0,0);
    }

    .why-item:hover{
      transform:translate3d(0,-8px,0);
      border-color:rgba(5,175,161,0.4);
      box-shadow:0 26px 60px rgba(15,23,42,0.16);
      background:rgba(5,175,161,0.06);
    }

    .faq-list{
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    .faq-item{
      border:1px solid rgba(15,23,42,0.10);
      border-radius:22px;
      background:#ffffff;
      overflow:hidden;
      box-shadow:0 16px 40px rgba(15,23,42,0.06);
      transition:background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    }

    .faq-item.active{
      background:linear-gradient(135deg, rgba(5,175,161,0.12), rgba(255,255,255,0.95));
      border-color:rgba(5,175,161,0.35);
      box-shadow:0 18px 45px rgba(5,175,161,0.12);
    }

    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:22px 26px;
      background:transparent;
      border:none;
      text-align:left;
      font-size:clamp(16px,1.25vw,19px);
      font-weight:600;
      color:var(--text-0);
      cursor:pointer;
    }

    .faq-question span:first-child{
      flex:1;
      font-size:clamp(16px,1.3vw,20px);
      line-height:1.5;
    }

    .faq-icon{
      width:30px;
      height:30px;
      border-radius:50%;
      border:1px solid rgba(15,23,42,0.12);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:20px;
      color:var(--text-0);
      transition:transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
      flex-shrink:0;
    }

    .faq-item.active .faq-icon{
      transform:rotate(45deg);
      color:var(--accent);
      border-color:rgba(5,175,161,0.45);
    }

    .faq-answer{
      padding:0 26px;
      max-height:0;
      overflow:hidden;
      opacity:0;
      transform:translate3d(0,8px,0);
      transition:max-height 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
    }

    .faq-item.active .faq-answer{
      max-height:320px;
      opacity:1;
      transform:translate3d(0,0,0);
      padding-bottom:20px;
    }

    .faq-answer p{
      margin:0;
      color:var(--text-1);
      font-size:clamp(15px,1.2vw,18px);
      line-height:1.75;
    }

    .why-faq-reveal{
      opacity:0;
      transform:translate3d(0,14px,0);
      transition:opacity 0.9s ease, transform 0.9s ease;
      will-change:transform, opacity;
    }

    .why-faq-reveal.in-view{
      opacity:1;
      transform:translate3d(0,0,0);
    }

    .quote-cta-section{
      width:100%;
      padding:32px 6vw 36px;
    }

    .quote-cta-inner{
      width:min(860px, 90vw);
      margin:0 auto;
    }

    .quote-cta-card{
      padding:clamp(18px,2.4vw,32px) clamp(16px,3.2vw,44px);
      border-radius:22px;
      background:#eef9f7;
      text-align:center;
    }

    .quote-cta-text{
      margin:0;
      font-size:clamp(14px,1.2vw,18px);
      font-weight:600;
      letter-spacing:0.006em;
      line-height:1.55;
      color:var(--text-0);
    }

    .quote-cta-action{
      margin:8px 0 0;
      font-size:clamp(10px,0.8vw,12px);
      font-weight:500;
      letter-spacing:0.04em;
      line-height:1.6;
      color:var(--text-1);
    }

    @media (max-width: 900px){
      .why-block-title{ text-align:left; }
      .faq-block-title{ text-align:center; }
      .why-list{ gap:12px; }
      .why-item{
        padding:22px 24px;
        text-align:left;
      }
      .why-desc{ margin:0; }
      .faq-question{ text-align:left; }
      .hero-cta{
        position:static;
        left:0;
      }

      .quote-cta-section{
        padding:28px 6vw 32px;
      }

      .quote-cta-card{
        border-radius:18px;
        padding:18px 16px;
      }
    }

    @media (prefers-reduced-motion: reduce){
      .why-faq-reveal{
        opacity:1;
        transform:none;
        transition:none;
      }
      .faq-answer{
        transition:none;
      }
      .why-item{
        opacity:1;
        transform:none;
        transition:none;
      }
    }

    /* Services blocks */
    .services-list{
      width:min(1160px,90vw);
      margin:0 auto;
      display:flex;
      flex-direction:column;
      gap:28px;
    }

    .service-block{
      background:var(--panel-0);
      border:1px solid var(--panel-line);
      border-radius:26px;
      padding:64px 68px;
      display:grid;
      grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
      gap:60px;
      box-shadow:var(--shadow);
      color:var(--text-0);
      position:relative;
    }

    .service-block::after{
      content:"";
      position:absolute;
      left:68px;
      right:68px;
      bottom:0;
      height:1px;
      background:var(--line);
      opacity:0.6;
    }

    .service-block:last-child::after{ display:none; }

    .service-left{
      display:flex;
      flex-direction:column;
      gap:18px;
    }

    .service-icon{
      width:46px;
      height:46px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(5,175,161,0.12);
      border:1px solid rgba(5,175,161,0.35);
      color:var(--accent);
      font-size:20px;
    }

    .service-title{
      font-size:clamp(28px,3vw,42px);
      font-weight:700;
      letter-spacing:-0.01em;
      color:var(--text-0);
    }

    .service-tagline{
      color:var(--text-1);
      font-size:clamp(16px,1.2vw,19px);
      line-height:1.7;
      max-width:460px;
    }

    .service-right{ display:flex; align-items:flex-start; }

    .service-list{
      list-style:none;
      display:flex;
      flex-direction:column;
      gap:12px;
      color:var(--text-1);
      font-size:16px;
      line-height:1.7;
    }

    .service-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
    }

    .service-list li::before{
      content:"";
      width:6px;
      height:6px;
      border-radius:50%;
      border:1px solid rgba(5,175,161,0.7);
      margin-top:10px;
      flex-shrink:0;
    }

    .service-list li.outcome{
      color:var(--text-0);
      font-weight:600;
      margin-top:6px;
      border-radius:999px;
      padding:6px 14px;
      transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
    }

    .service-list li.outcome::before{
      background:var(--accent);
      border-color:var(--accent);
    }

    .service-block.in-view .service-list li.outcome{
      color:var(--text-0);
      background:rgba(5,175,161,0.12);
      box-shadow:
        0 0 0 1px rgba(5,175,161,0.35),
        0 10px 24px rgba(5,175,161,0.18);
      transform:translateY(-2px);
    }

    /* Scroll reveal */
    .service-block .reveal{
      opacity:0;
      transform:translateY(30px);
      transition:opacity 0.9s ease, transform 0.9s ease;
    }

    .service-block .reveal-icon{ transition-delay:0.04s; }
    .service-block .reveal-title{ transition-delay:0.12s; }
    .service-block .reveal-desc{ transition-delay:0.22s; }
    .service-block .reveal-list{ transition-delay:0.28s; }

    .service-block .reveal-list li{
      opacity:0;
      transform:translateY(16px);
      transition:opacity 0.6s ease, transform 0.6s ease;
    }

    .service-block.in-view .reveal{
      opacity:1;
      transform:translateY(0);
    }

    .service-block.in-view .reveal-list li{
      opacity:1;
      transform:translateY(0);
    }

    .service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
    .service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
    .service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
    .service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
    .service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
    .service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
    .service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
    .service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
    .service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
    .service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
    .service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
    .service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

    @media (max-width: 1024px){
      .nav-menu{
        justify-self:center;
        display:flex;
        gap:56px;
        font-size:16px;
        font-weight:500;
      }
      .service-block{ padding:56px; gap:40px; }
    }

    @media (max-width: 980px){
      .nav-call{ display:none; }
      .nav-toggle{ display:flex; }
      
      .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


      .navbar{ padding:0 8px; }
      .navbar.scrolled{ padding:0 8px; }
      .navbar-inner{ width:100%; padding:0 16px; }
      .navbar.scrolled .navbar-inner{
        width:100%;
        height: 56px;
        border-radius:14px;
        padding:0 16px;
      }
    }

    @media (max-width: 900px){
      .service-block{ grid-template-columns:1fr; }
      .service-tagline{ max-width:none; }
    }

    @media (max-width: 700px){
      .navbar{ padding:12px 20px; }
      .navbar.scrolled{ padding:8px 18px; }
      .navbar.scrolled .navbar-inner{
        width:calc(100% - 24px);
        height: 56px;
        border-radius:14px;
        padding:0 18px;
      }
      .nav-menu,
      .nav-call{
        display:none !important;
      }
      .services-hero{
        min-height:100svh;
        min-height:100dvh;
        padding:clamp(100px, 16vh, 140px) 7vw clamp(48px, 10vh, 90px);
      }
      .services-hero::after{
        left:50%;
        right:auto;
        top:56%;
        width:clamp(320px, 90vw, 560px);
        height:clamp(320px, 90vw, 560px);
        opacity:0.07;
        filter:blur(3px);
        transform:translate(-50%, -50%);
      }
      .hero-inner{ max-width:100%; }
      .hero-eyebrow{ letter-spacing:0.02em; }
      .services-hero h1{ font-size:clamp(34px,9vw,48px); }
      .hero-rotate{ transform:translateX(-9px); }
      .hero-cta{
        align-self:center;
        margin:0 auto;
        width:auto;
        max-width:none;
        justify-content:center;
        position:static;
        left:0;
      }
      .services-hero p{ font-size:16px; }
      .why-section{
        width:min(100%, 88vw);
        padding:18px 0 52px;
      }
      .why-list{ gap:12px; }
      .why-item{ padding:20px 22px; }
      .service-block{ padding:44px 24px; }
      .service-block::after{ left:24px; right:24px; }
      .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
      .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }
    }

    @media (max-width: 768px){
      .footer-row{
        flex-direction:column;
        gap:14px;
      }

      .footer-logo img{ transform: scale(1.3); }
    }

    .footer-section{
      width:100%;
      background:#ffffff;
      border-top:1px solid #e7e7e7;
      padding:24px 4vw;
    }

    .footer-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    .footer-copy{
      font-size:14px;
      color:#2C325A;
      opacity:0.8;
    }

    .footer-logo img{
      width:90px;
      transform: scale(1.6);
    }

    .footer-follow{
      text-align:center;
    }

    .footer-follow-title{
      font-size:15px;
      font-weight:600;
      margin-bottom:8px;
      color:#1c2640;
    }

    .footer-icons{
      display:flex;
      gap:18px;
      justify-content:center;
    }

    .footer-icons a{
      width:30px;
      height:30px;
      background: rgba(0,168,153,0.12);
      border-radius:6px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#00a899;
      font-size:18px;
      transition:.25s ease;
    }

    .footer-icons a:hover{
      transform:translateY(-2px);
      background:rgba(0,168,153,0.2);
    }

    .footer-section{
      border-top:1px solid var(--line);
      background:var(--bg-1);
    }

    .cta-band{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:0 6vw 6px;
      margin-top:-6px;
    }

    .cta-button{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:14px 26px;
      border-radius:999px;
      border:1px solid var(--accent);
      background:rgba(5,175,161,0.08);
      color:var(--text-0);
      font-weight:600;
      text-decoration:none;
      transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
      box-shadow:0 10px 30px rgba(5,175,161,0.18);
    }

    .cta-arrow{
      font-size:18px;
      transition:transform .25s ease;
    }

    .cta-button:hover{
      background:var(--accent);
      color:#ffffff;
      transform:translateY(-2px);
      box-shadow:0 16px 36px rgba(5,175,161,0.28);
    }

    .cta-button:hover .cta-arrow{
      transform:translateX(4px);
    }

    .hero-cta{
      align-self:center;
      margin:0 auto;
      position:relative;
      left:24px;
    }

    @media (max-width: 900px){
      .hero-cta{
        left:0;
        position:static;
        margin:0 auto;
        align-self:center;
      }
    }

    .footer-copy,
    .footer-follow-title{ color:var(--text-1); }

    .footer-icons a{ color:var(--text-0); }

    /* Navbar alignment (match services page) */
    @media (min-width: 981px){
      .navbar-inner{
        grid-template-columns:1fr auto 1fr;
      }
      .nav-left{
        min-width:260px;
      }
      .nav-menu{
        justify-self:center;
        display:flex;
        gap:56px;
        font-size:16px;
        font-weight:500;
        width:auto;
      }
      .nav-right{
        justify-self:end;
      }
    }
  /* Mobile navbar fix */
@media (max-width: 980px){
  .navbar-inner{ grid-template-columns:auto 1fr auto; align-items:center; padding:0 16px; }
  .nav-left{ min-width:0; justify-self:start; }
  .nav-right{ justify-self:end; }
  .nav-menu,
  .nav-call{ display:none !important; }
  .nav-toggle{ display:flex; }
  .nav-logo{ height:44px; width:auto; max-width:150px; }
  .nav-arrow{ height:28px; width:auto; }
}
@media (max-width: 700px){
  .navbar{ height:60px; }
  .nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }
}


.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }

/* Mobile menu alignment for wp_nav_menu output */
@media (max-width: 980px){
  .mobile-links{
    width:100%;
    max-width:360px;
    margin:0 auto;
    padding:0;
    gap:26px;
    text-align:center;
  }

  .mobile-menu-list{
    list-style:none;
    margin:0;
    padding:0;
    width:100%;
  }

  .mobile-menu-list li{
    width:100%;
  }

  .mobile-menu-list li + li{
    margin-top:12px;
  }

  .mobile-links a,
  .mobile-menu-list a{
    display:block;
    width:100%;
    text-align:center;
    font-size:24px;
    line-height:1.75;
    letter-spacing:0.2px;
  }

  .mobile-links .mobile-cta{
    margin:18px auto 0;
    max-width:260px;
    font-size:20px;
    line-height:1.45;
  }
}

.seo-hidden-content {
    position: absolute;
    left: -9999px;
    height: 1px;
    overflow: hidden;
}


/* Front-page FAQ pattern override (Easy Accordion) */
.home .faq-section .faq-block-title{
  font-size:clamp(26px, 3.2vw, 40px);
  font-weight:700;
  letter-spacing:-0.01em;
  margin:0 0 22px 0;
  color:var(--text-0);
}

.home .faq-section .faq-list--accordion{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.home .faq-section .faq-list--accordion :is(.sp-ea-single, .sp-ea-one, .ea-card, .ea-accordion-item){
  border:1px solid rgba(15,23,42,0.12) !important;
  border-radius:34px !important;
  background:#f7f8fa !important;
  box-shadow:none !important;
  overflow:hidden !important;
  opacity:0;
  transform:translate3d(0,14px,0);
  transition:opacity 0.5s ease, transform 0.5s ease, background 0.35s ease, border-color 0.35s ease !important;
}

.home .faq-section .faq-list--accordion.in-view :is(.sp-ea-single, .sp-ea-one, .ea-card, .ea-accordion-item){
  opacity:1;
  transform:translate3d(0,0,0);
}

.home .faq-section .faq-list--accordion :is(.sp-ea-single.active, .sp-ea-single.ea-active, .sp-ea-single.ea-expand, .sp-ea-one.active, .sp-ea-one.ea-active, .sp-ea-one.ea-expand, .ea-card.active, .ea-card.ea-active, .ea-accordion-item.active),
.home .faq-section .faq-list--accordion :is(.sp-ea-single, .sp-ea-one, .ea-card, .ea-accordion-item):has(:is(button, a)[aria-expanded="true"]){
  border-color:rgba(5,175,161,0.45) !important;
  background:linear-gradient(135deg, rgba(5,175,161,0.10), rgba(255,255,255,0.94)) !important;
}

.home .faq-section .faq-list--accordion :is(.ea-header, .sp-ea-header, .sp-ea-toggler, .sp-ea-question, [class*="ea-header"]){
  width:100% !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:16px !important;
  padding:26px 30px !important;
  margin:0 !important;
  border:none !important;
  background:transparent !important;
  text-align:left !important;
  color:var(--text-0) !important;
  font-size:clamp(16px, 1.25vw, 19px) !important;
  font-weight:700 !important;
  line-height:1.35 !important;
}

.home .faq-section .faq-list--accordion :is(.ea-header, .sp-ea-header, .sp-ea-toggler, .sp-ea-question, [class*="ea-header"]) > :first-child{
  flex:1;
}

.home .faq-section .faq-list--accordion :is(.ea-header button, .ea-header a, .sp-ea-header button, .sp-ea-header a, .sp-ea-toggler, .sp-ea-question){
  position:relative;
  padding-right:72px !important;
}

.home .faq-section .faq-list--accordion :is(.ea-expand-icon, .sp-ea-icon, [class*="expand-icon"], [class*="ea-icon"]){
  display:none !important;
}

.home .faq-section .faq-list--accordion :is(.ea-header button, .ea-header a, .sp-ea-header button, .sp-ea-header a, .sp-ea-toggler, .sp-ea-question)::after{
  content:"+";
  position:absolute;
  right:28px;
  top:50%;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(15,23,42,0.18);
  color:var(--text-0);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:500;
  line-height:1;
  transform:translateY(-50%);
  box-sizing:border-box;
}

.home .faq-section .faq-list--accordion :is(.ea-header button[aria-expanded="true"], .ea-header a[aria-expanded="true"], .sp-ea-header button[aria-expanded="true"], .sp-ea-header a[aria-expanded="true"], .sp-ea-toggler[aria-expanded="true"], .sp-ea-question[aria-expanded="true"])::after{
  content:"x";
  color:var(--accent);
  border-color:rgba(5,175,161,0.55);
}

.home .faq-section .faq-list--accordion :is(.sp-ea-single.active, .sp-ea-single.ea-active, .sp-ea-single.ea-expand, .sp-ea-one.active, .sp-ea-one.ea-active, .sp-ea-one.ea-expand, .ea-card.active, .ea-card.ea-active, .ea-accordion-item.active) :is(.ea-header button, .ea-header a, .sp-ea-header button, .sp-ea-header a, .sp-ea-toggler, .sp-ea-question)::after{
  content:"x";
  color:var(--accent);
  border-color:rgba(5,175,161,0.55);
}

.home .faq-section .faq-list--accordion :is(.ea-body, .sp-ea-body, .sp-ea-content, .ea-collapse, .ea-content, [class*="ea-body"]){
  padding:0 30px 26px !important;
}

.home .faq-section .faq-list--accordion :is(.ea-body p, .sp-ea-body p, .sp-ea-content p, .ea-content p, [class*="ea-body"] p){
  margin:0;
  color:var(--text-1);
  font-size:clamp(15px, 1.2vw, 18px);
  line-height:1.55;
}

@media (max-width: 900px){
  .home .faq-section .faq-block-title{
    font-size:clamp(24px, 6.2vw, 34px);
    margin-bottom:16px;
  }

  .home .faq-section .faq-list--accordion{
    gap:14px;
  }

  .home .faq-section .faq-list--accordion :is(.sp-ea-single, .sp-ea-one, .ea-card, .ea-accordion-item){
    border-radius:24px !important;
  }

  .home .faq-section .faq-list--accordion :is(.ea-header, .sp-ea-header, .sp-ea-toggler, .sp-ea-question, [class*="ea-header"]){
    padding:18px 18px !important;
    font-size:clamp(16px, 4.8vw, 22px) !important;
  }

  .home .faq-section .faq-list--accordion :is(.ea-header button, .ea-header a, .sp-ea-header button, .sp-ea-header a, .sp-ea-toggler, .sp-ea-question){
    padding-right:58px !important;
  }

  .home .faq-section .faq-list--accordion :is(.ea-header button, .ea-header a, .sp-ea-header button, .sp-ea-header a, .sp-ea-toggler, .sp-ea-question)::after{
    right:14px;
    width:34px;
    height:34px;
    font-size:28px;
  }

  .home .faq-section .faq-list--accordion :is(.ea-body, .sp-ea-body, .sp-ea-content, .ea-collapse, .ea-content, [class*="ea-body"]){
    padding:0 18px 18px !important;
  }

  .home .faq-section .faq-list--accordion :is(.ea-body p, .sp-ea-body p, .sp-ea-content p, .ea-content p, [class*="ea-body"] p){
    font-size:clamp(15px, 4.2vw, 18px);
    line-height:1.6;
  }
}

/* FAQ shortcode: apply legacy front-page FAQ card styling/effects */
.faq-list--accordion{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-list--accordion :is(.sp-ea-single, .sp-ea-one){
  border:1px solid rgba(15,23,42,0.10);
  border-radius:22px;
  background:#ffffff;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(15,23,42,0.06);
  transition:background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, opacity 0.55s ease;
  opacity:0;
  transform:translate3d(0,14px,0);
}

.faq-list--accordion.in-view :is(.sp-ea-single, .sp-ea-one){
  opacity:1;
  transform:translate3d(0,0,0);
}

.faq-list--accordion.in-view :is(.sp-ea-single, .sp-ea-one):nth-child(1){ transition-delay:0.06s; }
.faq-list--accordion.in-view :is(.sp-ea-single, .sp-ea-one):nth-child(2){ transition-delay:0.12s; }
.faq-list--accordion.in-view :is(.sp-ea-single, .sp-ea-one):nth-child(3){ transition-delay:0.18s; }
.faq-list--accordion.in-view :is(.sp-ea-single, .sp-ea-one):nth-child(4){ transition-delay:0.24s; }
.faq-list--accordion.in-view :is(.sp-ea-single, .sp-ea-one):nth-child(5){ transition-delay:0.30s; }
.faq-list--accordion.in-view :is(.sp-ea-single, .sp-ea-one):nth-child(6){ transition-delay:0.36s; }

.faq-list--accordion :is(.sp-ea-single.active, .sp-ea-single.ea-active, .sp-ea-single.ea-expand, .sp-ea-one.active, .sp-ea-one.ea-active, .sp-ea-one.ea-expand){
  background:linear-gradient(135deg, rgba(5,175,161,0.12), rgba(255,255,255,0.95));
  border-color:rgba(5,175,161,0.35);
  box-shadow:0 18px 45px rgba(5,175,161,0.12);
}

.faq-list--accordion :is(.ea-header, .sp-ea-header, .sp-ea-toggler, .sp-ea-question, [class*="ea-header"]){
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 26px !important;
  margin:0 !important;
  background:transparent !important;
  border:none !important;
  text-align:left !important;
  font-size:clamp(16px,1.25vw,19px);
  font-weight:600;
  color:var(--text-0);
  cursor:pointer;
}

.faq-list--accordion :is(.ea-header, .sp-ea-header, .sp-ea-toggler, .sp-ea-question, [class*="ea-header"]) > :first-child{
  flex:1;
  font-size:clamp(16px,1.3vw,20px);
  line-height:1.5;
}

.faq-list--accordion :is(.ea-expand-icon, .sp-ea-icon, [class*="expand-icon"], [class*="ea-icon"]){
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid rgba(15,23,42,0.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:var(--text-0);
  transition:transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  flex-shrink:0;
}

.faq-list--accordion :is(.sp-ea-single.active, .sp-ea-single.ea-active, .sp-ea-single.ea-expand, .sp-ea-one.active, .sp-ea-one.ea-active, .sp-ea-one.ea-expand) :is(.ea-expand-icon, .sp-ea-icon, [class*="expand-icon"], [class*="ea-icon"]){
  transform:rotate(45deg);
  color:var(--accent);
  border-color:rgba(5,175,161,0.45);
}

.faq-list--accordion :is(.ea-body, .sp-ea-body, .sp-ea-content, [class*="ea-body"]){
  padding:0 26px 20px !important;
}

.faq-list--accordion :is(.ea-body p, .sp-ea-body p, .sp-ea-content p, [class*="ea-body"] p){
  margin:0 0 12px 0;
  color:var(--text-1);
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.75;
}

.faq-list--accordion :is(.ea-body p:last-child, .sp-ea-body p:last-child, .sp-ea-content p:last-child, [class*="ea-body"] p:last-child){
  margin-bottom:0;
}

/* Global scroll reveal baseline */
:where(.reveal){
  opacity:0;
  transform:translateY(30px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change:opacity, transform;
}

:where(.reveal.active){
  opacity:1;
  transform:translateY(0);
}

/* How We Work: force natural height and page-level scrolling */
.hw-section--auto,
.hw-section--auto .hw-timeline--auto,
.hw-section--auto .hw-timeline-item,
.hw-section--auto .hw-content{
  height:auto;
  min-height:0;
  max-height:none;
  overflow-y:visible;
}

@media (prefers-reduced-motion: reduce){
  :where(.reveal){
    opacity:1;
    transform:none;
    transition:none;
  }
}


/* ===== Styles from about.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;color:#111;
}

/* ======================================================
   NAVBAR (Same as About Page)
====================================================== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  height: 90px;
  padding:14px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;

  background: linear-gradient(
    90deg,
    rgba(162,244,230,0.08),
    rgba(216,255,251,0.08)
  );
  backdrop-filter: blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.25);
  opacity:1;
  transition: opacity 1s ease, box-shadow .35s ease;
  font-family: 'Poppins', sans-serif;
}
.navbar a{
  text-decoration: none;
  color: inherit;
}
.navbar.shadow{
  box-shadow:0 5px 18px rgba(0,0,0,0.18);
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



.nav-menu{
  justify-self:center;
  display:flex;
  gap:56px;
  font-size:16px;
  font-weight:500;
}

.nav-menu a{
  text-decoration:none;
  color:#2C325A;
  font-weight:500;
}

.nav-menu a:hover{ opacity:.6; }

.nav-call{
  padding:8px 22px;
  border:2px solid #2C325A;
  border-radius:8px;
  color:#2C325A;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.nav-call:hover{
  background:#2C325A;
  color:white;
}


/* ======================================================
   MEGA MENU (Hover Only)
====================================================== */
.mega-menu{
    position:absolute;top:100%;left:0;width:100%;
    display:none;z-index:999;
}
.mega-container{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    max-height:80vh;
    overflow-y:auto;
    padding:55px 65px;
    margin-top:12px;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:65px;position:relative;
}
.mega-col{
    padding:28px;border-radius:18px;
    position:relative;overflow:hidden;
}
.mega-col h3{font-size:17px;font-weight:700;margin-bottom:16px;color:#000;}
.mega-col ul{list-style:none;padding:0;margin:0;}
.mega-col ul li{
    padding:8px 0;font-size:14px;
    opacity:0.85;transition:.2s;
}
.mega-col ul li:hover{opacity:1;color:#00A899;transform:translateX(6px);cursor:pointer;}

.mega-col::before{
    content:"";position:absolute;inset:0;
    background-size:cover;background-position:center;opacity:0.45;
}
.mega-col::after{
    content:"";position:absolute;top:0;left:0;width:100%;height:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0.20),rgba(0,0,0,0.35));
    border-radius:inherit;z-index:0;
}
.mega-col *{position:relative;z-index:1;}
.mega-col:hover{
    border:1px solid rgba(0,168,153,0.18);
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,0.15);
}

.mega-container:before,
.mega-container:after{
    content:"";position:absolute;top:18%;
    width:1px;height:64%;
    background:rgba(0,0,0,0.06);
}
.mega-container:before{left:36%;}
.mega-container:after{left:69%;}

.nav-menu a.services:hover + .mega-menu,
.mega-menu:hover{display:block;}

.mega-col:nth-child(1)::before{background-image:url("images/marketing-bg.jpeg");}
.mega-col:nth-child(2)::before{background-image:url("images/advertising.png");}
.mega-col:nth-child(3)::before{background-image:url("images/automation-bg.png");}
.mega-col:nth-child(4)::before{background-image:url("images/Ui-bg.jpg");}
.mega-col:nth-child(5)::before{background-image:url("images/dev-bg.png");}
.mega-col:nth-child(6)::before{background-image:url("images/strategy-bg.png");}

/* ======================================================
   SERVICES HERO (MATCH ABOUT STYLE)
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px); /* navbar height + spacing */
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;   /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ KEY FIX */
  
}
.services-hero h1{
  font-size:clamp(40px,4vw,65px);
  font-weight:800;
  color:#000;
  opacity:1;
  transform:none;
}


/* ======================================================
   SERVICE ROWS
====================================================== */
.service-section {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* image | content */
  gap: 60px;
  padding: 0 8vw;
  align-items: center;
}

.service-section.visible{
    opacity:1;transform:translateY(0);
}
.service-section:hover{
    transform:translateY(-9px);
}
.service-section:first-of-type{
  margin-top: 40px;
}


/* Make outcome bold */
/* Remove tick ONLY for outcome */
ul li.outcome::before {
  content: "" !important;
  display: none !important;
}

/* Emphasize outcome */
ul li.outcome {
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}
.service-img,
.service-img img {
  will-change: transform, opacity;
  transform: translateZ(0);
}



/* IMAGE BLOCK */
.service-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section:hover .service-img img{
    transform:scale(1.1);
}

/* CONTENT BLOCK */
/* CONTENT BLOCK ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â LOCKED BY DEFAULT */
.service-content{
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
}

/* CONTENT ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â REVEALED AFTER GSAP */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
    font-size:clamp(24px,2.4vw,38px);
    font-weight:700;margin-bottom:8px;
    color:#12263D;
}
.service-content p{
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.55;margin-bottom:14px;
}
.service-content ul{
    list-style:none;
    font-size:clamp(14px,1.05vw,17px);
    line-height:1.55;
}
.service-content ul li{
    margin-bottom:6px;
    display:flex;
    align-items:flex-start;
}
.service-content ul li:before{
    content:"ÃƒÂ¢Ã…â€œÃ¢â‚¬Â";
    font-size:15px;
    color:#00A899;
    margin-right:10px;
    margin-top:2px;
    font-weight:600;
}
.reverse{flex-direction:row-reverse;}
.service-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  perspective: 1200px;
}
/* ======================================================
   SERVICES HERO
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px);
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;
}


/* ======================================================
   SERVICE LAYOUT
====================================================== */
.service-section{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  padding:0 8vw;
  align-items:center;
  margin-top:40px;
}

/* ======================================================
   IMAGE BLOCK
====================================================== */
.service-img{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  will-change:transform, opacity;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translateZ(0);
}

/* ======================================================
   CONTENT BLOCK (VISIBLE AFTER GSAP)
====================================================== */
/* CONTENT BLOCK ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â LOCKED BY DEFAULT */
.service-content{
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CONTENT ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â UNLOCKED AFTER ANIMATION */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
  font-size:clamp(24px,2.4vw,38px);
  font-weight:700;
  margin-bottom:8px;
  color:#12263D;
}

.service-content p{
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;
  margin-bottom:14px;
}

.service-content ul{
  list-style:none;
  font-size:clamp(14px,1.05vw,17px);
  line-height:1.55;
}

.service-content ul li{
  margin-bottom:6px;
  display:flex;
}

.service-content ul li::before{
  content:"ÃƒÂ¢Ã…â€œÃ¢â‚¬Â";
  color:#00A899;
  margin-right:10px;
  font-weight:600;
}

.service-content ul li.outcome::before{
  content:"";
}

.service-content ul li.outcome{
  font-weight:700;
}

/* ======================================================
   CAROUSEL (ONE LEFT + ONE RIGHT ARROW)
====================================================== */
.services-carousel{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:visible;
  width:100%;
}

.carousel-track{
  display:flex;
  transition:transform 0.45s ease;
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:5;
}

.carousel-arrow.left{ left:20px; }
.carousel-arrow.right{ right:20px; }

.carousel-arrow i{
  font-size:22px;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){
  .service-section{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-img{
    height:260px;
  }
}

.footer-section{
  width:100%;
  background:#ffffff;
  border-top:1px solid #e7e7e7;
  padding:24px 4vw;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-copy{
  font-size:14px;
  color:#2C325A;
  opacity:0.8;
}

.footer-logo img{
  width:90px;
  transform: scale(1.6);
}

.footer-follow{
  text-align:center;
}

.footer-follow-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
  color:#1c2640;
}

.footer-icons{
  display:flex;
  gap:18px;
  justify-content:center;
}

.footer-icons a{
  width:30px;
  height:30px;
  background: rgba(0,168,153,0.12);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00a899;
  font-size:18px;
  transition:.25s ease;
}

.footer-icons a:hover{
  transform:translateY(-2px);
  background:rgba(0,168,153,0.2);
}
.item-list {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.item {
  width: 200px;
  cursor: pointer;
}

/* Image */
.item-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content hidden by default */
.item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

/* Active state */
.item.active .item-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* GPU safety */
.service-img img {
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Center animation layer */
#center-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.center-preview {
  width: min(78vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.85);
}

/* ==============================
   STRIP NAVIGATION ARROWS
================================ */



.nav-btn:hover {
  background: #00A899;
  color: #fff;
  border-color: #00A899;
}

@media (max-width: 768px) {
  .services-nav {
    display: none; /* touch scroll only on mobile */
  }
}
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.9;
}

.carousel-arrow.left {
 left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow i {
  font-size: 22px;
}

/* ======================================================
   ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ SERVICES PAGE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â MOBILE FINAL FIX
   ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¤768px ONLY | Desktop Safe
====================================================== */
@media (max-width:768px){

  /* GLOBAL SAFETY */
  body{
    overflow-x: clip;
  }

  /* ================= NAVBAR ================= */
  .navbar{
    height: 90px;
    padding:8px 14px;
    opacity:1 !important;
  }

  .nav-menu,
  .nav-call{
    display:none !important;
  }

  /* ================= HERO ================= */
  .services-hero{
    padding-top:76px;   /* navbar + breathing space */
    padding-bottom:24px;
    min-height:auto;
  }

  .services-hero h1{
    font-size:28px;
  }


  /* ================= CAROUSEL ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬â„¢ STACK ================= */
  .services-carousel{
    overflow:visible;
  }

  .carousel-arrow{
    display:none !important;
  }

  .carousel-track{
    display:flex;
    flex-direction:column;
    transform:none !important;
    gap:32px;
  }

  /* ================= SERVICE SECTIONS ================= */
  .service-section{
    grid-template-columns:1fr;
    padding:0 14px;
    gap:18px;
    transform:none !important;
  }

  .service-section.reverse{
    flex-direction:column;
  }

  /* ================= IMAGES ================= */
  .service-img{
    height:220px;
    border-radius:14px;
  }

  .service-img img{
    transform:none !important;
  }

  /* ================= CONTENT ================= */
  .service-content{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .service-content h2{
    font-size:22px;
  }

  .service-content p{
    font-size:15px;
  }

  .service-content ul{
    font-size:14px;
  }

  /* ================= REMOVE HOVER EFFECTS ================= */
  .service-section:hover,
  .service-section:hover .service-img img{
    transform:none !important;
  }

  /* ================= FOOTER ================= */
  .footer-row{
    flex-direction:column;
    gap:14px;
  }

  .footer-logo img{ transform: scale(1.3);
  }
}
/* Intro animation removed */


/* ======================================================
   GRO-MATRIX SERVICES THEME
====================================================== */
:root{
  --brand-mint:#05afa1;
  --accent:var(--brand-mint);
  --bg-0:#f4fbf9;
  --bg-1:#ffffff;
  --text-0:#0f172a;
  --text-1:#5b6573;
  --panel-0:#ffffff;
  --panel-line:rgba(15,23,42,0.08);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 45px rgba(15,23,42,0.08);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
  color:var(--text-0);
  min-height:100%;
  position:relative;
}

body.menu-open{ overflow:hidden; }

/* Navbar */
.navbar,
.services-page,
.footer-section{ position:relative; z-index:1; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 90px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(15,23,42,0.06);
  transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
  z-index:999;
}

.navbar-inner{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 64px;
}

.navbar.scrolled{
  height: 56px;
  padding:0;
  background:transparent;
  box-shadow:none;
  border-bottom:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.navbar.scrolled .navbar-inner{
  width:min(980px, calc(100% - 120px));
  height:56px;
  padding:0 28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:0px;
  justify-self:start;
  min-width:260px;
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}





.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.nav-menu{
  justify-self:center;
  display:flex;
  gap:56px;
  font-size:16px;
  font-weight:500;
}

.nav-menu a{
  text-decoration:none;
  color:var(--text-0);
  transition:opacity .2s ease, color .2s ease;
}

.nav-menu a:hover{ opacity:0.7; }
.nav-menu a.services{ color:var(--accent); }

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
  justify-self:end;
}

.nav-call{
  padding:10px 22px;
  border:1px solid var(--accent);
  border-radius:999px;
  color:var(--text-0);
  text-decoration:none;
  font-weight:600;
  transition:background .25s ease, color .25s ease, border .25s ease;
}

.nav-call:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.8);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--text-0);
  transition:transform .3s ease, opacity .3s ease;
}

body.menu-open .nav-toggle span:nth-child(1){
  transform:translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2){
  transform:translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  z-index:1000;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-menu-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 24px 32px;
  position:relative;
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:30px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.15);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-close span{
  position:absolute;
  width:18px;
  height:2px;
  background:#0f172a;
}

.mobile-close span:nth-child(1){ transform:rotate(45deg); }
.mobile-close span:nth-child(2){ transform:rotate(-45deg); }


.mobile-links{
  margin-top:0;
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:center;
}

.mobile-links a{
  color:#0f172a;
  text-decoration:none;
  font-size:22px;
  font-weight:500;
  letter-spacing:0.2px;
}

.mobile-links a.active{ color:var(--accent); }

.mobile-links .mobile-cta{
  margin-top:16px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-align:center;
  text-decoration:none;
  min-width:220px;
}

/* Hero */
.services-page{ padding-bottom:60px; }

.services-hero{
  min-height:100vh;
  padding:0 6vw;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.services-hero::after{
  content:"";
  position:absolute;
  right:-6%;
  top:52%;
  width:clamp(480px, 68vw, 1040px);
  height:clamp(480px, 68vw, 1040px);
  background:url("images/arrow.png") no-repeat center/contain;
  opacity:0.08;
  filter:blur(2px);
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-inner{
  max-width:min(1380px, 84vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s ease, transform 1s ease;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:0;
  font-size:15px;
  letter-spacing:0.02em;
  text-transform:none;
  color:var(--text-1);
  margin:0;
  font-weight:500;
}

.hero-eyebrow .eyebrow-arrow{
    height:36px;
    width:auto;
    vertical-align:middle;
    margin-left:0;
    opacity:0.9;
  }

body.page-loaded .hero-inner{
  opacity:1;
  transform:translateY(0);
}

.services-hero h1{
  font-size:clamp(34px,4.4vw,68px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.38;
  color:var(--text-0);
  margin:0;
}

.hero-rotate{
  position:relative;
  display:inline-block;
  min-width:9ch;
  min-height:1em;
  margin-left:10px;
  white-space:nowrap;
  vertical-align:baseline;
}

.hero-rotate span{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translate3d(0,12px,0);
  animation:heroSwap 9s infinite;
  will-change:transform, opacity;
  background:linear-gradient(90deg, #00a899, #7be6dc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-rotate span:nth-child(1){ animation-delay:0s; }
.hero-rotate span:nth-child(2){ animation-delay:3s; }
.hero-rotate span:nth-child(3){ animation-delay:6s; }

@keyframes heroSwap{
  0%{ opacity:0; transform:translate3d(0,12px,0); }
  10%{ opacity:1; transform:translate3d(0,0,0); }
  30%{ opacity:1; transform:translate3d(0,0,0); }
  40%{ opacity:0; transform:translate3d(0,-10px,0); }
  100%{ opacity:0; transform:translate3d(0,-10px,0); }
}

.services-hero p{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  color:var(--text-1);
  line-height:1.8;
  max-width:1120px;
}

/* Services blocks */
.services-list{
  width:min(1160px,90vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.service-block{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:26px;
  padding:64px 68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:60px;
  box-shadow:var(--shadow);
  color:var(--text-0);
  position:relative;
}

.service-block::after{
  content:"";
  position:absolute;
  left:68px;
  right:68px;
  bottom:0;
  height:1px;
  background:var(--line);
  opacity:0.6;
}

.service-block:last-child::after{ display:none; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,175,161,0.12);
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  font-size:20px;
}

.service-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
}

.service-tagline{
  color:var(--text-1);
  font-size:clamp(16px,1.2vw,19px);
  line-height:1.7;
  max-width:460px;
}

.service-right{ display:flex; align-items:flex-start; }

.service-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-1);
  font-size:16px;
  line-height:1.7;
}

.service-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.service-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.7);
  margin-top:10px;
  flex-shrink:0;
}

.service-list li.outcome{
  color:var(--text-0);
  font-weight:600;
  margin-top:6px;
  border-radius:999px;
  padding:6px 14px;
  transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.service-list li.outcome::before{
  background:var(--accent);
  border-color:var(--accent);
}

.service-block.in-view .service-list li.outcome{
  color:var(--text-0);
  background:rgba(5,175,161,0.12);
  box-shadow:
    0 0 0 1px rgba(5,175,161,0.35),
    0 10px 24px rgba(5,175,161,0.18);
  transform:translateY(-2px);
}

/* Scroll reveal */
.service-block .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}

.service-block .reveal-icon{ transition-delay:0.04s; }
.service-block .reveal-title{ transition-delay:0.12s; }
.service-block .reveal-desc{ transition-delay:0.22s; }
.service-block .reveal-list{ transition-delay:0.28s; }

.service-block .reveal-list li{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

.service-block.in-view .reveal{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
.service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
.service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
.service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
.service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
.service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
.service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
.service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
.service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
.service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
.service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
.service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

.service-block.about-block{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  grid-template-columns:1fr;
}

.service-block.about-block::after{ display:none; }

.about-section-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 12px 0;
}

.about-paragraph{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

.about-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:1100px;
}

.about-approach-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin:18px auto 10px;
  max-width:760px;
  justify-items:stretch;
}

.about-combines{
  font-weight:600;
  color:var(--text-0);
}

.about-approach-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,0.08);
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  transition:transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  opacity:0;
  transform:translate3d(0,12px,0);
  width:100%;
  text-align:center;
}

.about-approach-item.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.about-approach-title{
  font-size:clamp(16px,1.2vw,19px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

@media (hover:hover) and (pointer:fine){
  .about-approach-grid:hover .about-approach-item{
    opacity:0.7;
  }
  .about-approach-item:hover{
    opacity:1;
    transform:translate3d(0,-4px,0);
    border-color:rgba(5,175,161,0.35);
    background:rgba(5,175,161,0.04);
  }
  .about-approach-item:hover .about-approach-title{
    color:var(--accent);
  }
}

@media (max-width: 900px){
  .about-approach-grid{
    grid-template-columns:1fr;
    gap:12px;
    max-width:420px;
  }
}

.mission-vision{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:26px 0 70px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:36px;
  position:relative;
}

.mission-vision-block{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay:var(--mv-delay, 0ms);
}

.mission-vision-block.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.mission-vision::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background:rgba(15,23,42,0.12);
  transform:scaleY(0);
  transform-origin:top;
  opacity:0;
  transition:transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mission-vision.in-view::before{
  transform:scaleY(1);
  opacity:1;
}

.mission-vision-block:first-child{
  padding-right:24px;
}

.mission-vision-block:last-child{
  padding-left:24px;
}

.mission-vision-label{
  font-size:15px;
  letter-spacing:0.06em;
  text-transform:none;
  color:var(--text-1);
  font-weight:900;
  margin:0;
}

.mission-vision-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

.faq-section{
  width:min(1180px, 92vw);
  margin:0 auto;
  padding:28px 0 20px;
}

.faq-block-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 18px 0;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  border:1px solid rgba(15,23,42,0.10);
  border-radius:22px;
  background:#ffffff;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(15,23,42,0.06);
  transition:background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item.active{
  background:linear-gradient(135deg, rgba(5,175,161,0.12), rgba(255,255,255,0.95));
  border-color:rgba(5,175,161,0.35);
  box-shadow:0 18px 45px rgba(5,175,161,0.12);
}

.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 26px;
  background:transparent;
  border:none;
  text-align:left;
  font-size:clamp(16px,1.25vw,19px);
  font-weight:600;
  color:var(--text-0);
  cursor:pointer;
}

.faq-question span:first-child{
  flex:1;
  font-size:clamp(16px,1.3vw,20px);
  line-height:1.5;
}

.faq-icon{
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid rgba(15,23,42,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:var(--text-0);
  transition:transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  flex-shrink:0;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
  color:var(--accent);
  border-color:rgba(5,175,161,0.45);
}

.faq-answer{
  padding:0 26px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translate3d(0,8px,0);
  transition:max-height 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}

.faq-item.active .faq-answer{
  max-height:320px;
  opacity:1;
  transform:translate3d(0,0,0);
  padding-bottom:20px;
}

.faq-answer p{
  margin:0;
  color:var(--text-1);
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.75;
}

@media (max-width: 800px){
  .mission-vision{
    grid-template-columns:1fr;
    gap:20px;
  }
  .mission-vision::before{
    display:none;
  }
  .mission-vision-block{
    --mv-delay:0ms;
    padding:0;
  }
  .mission-vision-block:first-child,
  .mission-vision-block:last-child{
    padding-left:0;
    padding-right:0;
  }
  .mission-vision-block::before{
    content:"";
    width:56px;
    height:1px;
    background:rgba(15,23,42,0.12);
    transform:scaleX(0);
    transform-origin:left;
    opacity:0;
    transition:transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mission-vision-block.in-view::before{
    transform:scaleX(1);
    opacity:1;
  }
}

.belief-quote{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:0;
}

.belief-quote-box{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:28px 30px;
  text-align:center;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.belief-quote-box.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-quote-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-0);
  font-weight:500;
}

.belief-quote-attribution{
  margin:12px 0 0;
  font-size:14px;
  letter-spacing:0.04em;
  color:var(--text-1);
  font-weight:500;
}

@media (max-width: 800px){
  .belief-quote{
    width:min(100%, 90vw);
    padding:0;
  }
  .belief-quote-box{
    padding:24px 22px;
  }
}

.beliefs-section{
  width:100%;
  padding:50px 0 90px;
  background:#ffffff;
}

.beliefs-inner{
  width:min(1160px, 92vw);
  margin:0 auto;
}

.beliefs-title{
  font-size:clamp(30px,3.6vw,48px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 28px 0;
}

.beliefs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:34px;
  align-items:end;
}

.belief-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,251,250,0.95));
  border-radius:0;
  padding:44px 40px 34px;
  box-shadow:0 30px 80px rgba(15,23,42,0.18);
  min-height:520px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,12px,0);
  transition:opacity 0.8s ease, transform 0.8s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow:hidden;
  --fold:56px;
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
}

.belief-card:nth-child(1),
.belief-card:nth-child(3){
  min-height:560px;
}

.belief-card:nth-child(2),
.belief-card:nth-child(4){
  min-height:500px;
}

.belief-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:var(--fold);
  height:var(--fold);
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(5,175,161,0.10));
  border-bottom-left-radius:16px;
  -webkit-mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  box-shadow:-8px 8px 16px rgba(15,23,42,0.14);
  opacity:0.55;
  transition:opacity 0.35s ease, box-shadow 0.35s ease;
}

.belief-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:0;
  border:1px solid rgba(5,175,161,0.22);
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
  pointer-events:none;
}

.belief-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-title{
  font-size:clamp(22px,1.8vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

.belief-desc{
  margin:0;
  color:var(--text-1);
  font-size:clamp(17px,1.3vw,19px);
  line-height:1.8;
}

.belief-icon{
  margin-top:auto;
  width:150px;
  height:150px;
  opacity:0.75;
}

.belief-card:nth-child(1),
.belief-card:nth-child(2),
.belief-card:nth-child(3),
.belief-card:nth-child(4){ border-left:none; }

@media (hover:hover) and (pointer:fine){
  .belief-card:hover{
    transform:translate3d(0,-4px,0);
    background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(5,175,161,0.08));
    box-shadow:0 22px 60px rgba(15,23,42,0.16);
  }
  .belief-card:hover::before{
    opacity:0.7;
    box-shadow:-10px 10px 18px rgba(15,23,42,0.18);
  }
  .belief-card:hover::after{
    border-color:rgba(5,175,161,0.4);
  }
}

@media (max-width: 1024px){
  .beliefs-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px){
  .beliefs-grid{ grid-template-columns:1fr; }
  .belief-icon{ width:120px; height:120px; }
}

@media (max-width: 1024px){
  .nav-menu{
    justify-self:center;
    display:flex;
    gap:56px;
    font-size:16px;
    font-weight:500;
  }
  .service-block{ padding:56px; gap:40px; }
}

@media (max-width: 980px){
  .nav-menu{
    justify-self:center;
    display:flex;
    gap:56px;
    font-size:16px;
    font-weight:500;
  }
  .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  
  .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


  .navbar{ padding:0 8px; }
  .navbar.scrolled{ padding:0 8px; }
  .navbar-inner{ width:100%; padding:0 16px; }
  .navbar.scrolled .navbar-inner{
    width:100%;
    height: 56px;
    border-radius:14px;
    padding:0 16px;
  }
}

@media (max-width: 900px){
  .service-block{ grid-template-columns:1fr; }
  .service-tagline{ max-width:none; }
}

@media (max-width: 700px){
  .navbar{ padding:12px 20px; }
  .navbar.scrolled{ padding:8px 18px; }
  .navbar.scrolled .navbar-inner{
    width:calc(100% - 24px);
    height: 56px;
    border-radius:14px;
    padding:0 18px;
  }
  .services-hero{
    min-height:100svh;
    min-height:100dvh;
    padding:0 7vw;
  }
  .services-hero::after{
    left:50%;
    right:auto;
    top:56%;
    width:clamp(320px, 90vw, 560px);
    height:clamp(320px, 90vw, 560px);
    opacity:0.07;
    filter:blur(3px);
    transform:translate(-50%, -50%);
  }
  .hero-inner{ max-width:100%; }
  .hero-eyebrow{ letter-spacing:0.02em; }
  .hero-rotate{
    margin-left:0;
    transform:translateX(2px);
  }
  .services-hero h1{ font-size:clamp(34px,9vw,48px); }
  .services-hero p{ font-size:16px; }
  .service-block{ padding:44px 24px; }
  .service-block::after{ left:24px; right:24px; }
  .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
  .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }

  .service-block.about-block{ text-align:center; }
  .about-stack{ margin:0 auto; }
  .about-approach-item{ text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate span{
    animation:none;
    opacity:0;
    transform:none;
    position:static;
    display:none;
  }
  .hero-rotate span:first-child{
    display:inline;
    opacity:1;
  }
  .about-approach-item{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-card{
    opacity:1;
    transform:none;
    transition:none;
  }
  .mission-vision-block{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-quote-box{
    opacity:1;
    transform:none;
    transition:none;
  }
}

@media (max-width: 900px){
  .faq-block-title{ text-align:center; }
  .faq-question{ text-align:left; }
}

@media (prefers-reduced-motion: reduce){
  .faq-answer{ transition:none; }
}

.footer-section{
  border-top:1px solid var(--line);
  background:var(--bg-1);
}

.cta-band{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6vw 10px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 10px 30px rgba(5,175,161,0.18);
}

.cta-arrow{
  font-size:18px;
  transition:transform .25s ease;
}

.cta-button:hover{
  background:var(--accent);
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(5,175,161,0.28);
}

.cta-button:hover .cta-arrow{
  transform:translateX(4px);
}

.footer-copy,
.footer-follow-title{ color:var(--text-1); }

.footer-icons a{ color:var(--text-0); }

/* Tighten eyebrow image spacing */
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:0;
}
.hero-eyebrow .eyebrow-arrow{
  margin-left:0;
}
/* Mobile navbar fix */
@media (max-width: 980px){
  .navbar-inner{ grid-template-columns:auto 1fr auto; align-items:center; padding:0 16px; }
  .nav-left{ min-width:0; justify-self:start; }
  .nav-right{ justify-self:end; }
  .nav-menu,
  .nav-call{ display:none !important; }
  .nav-toggle{ display:flex; }
  .nav-logo{ height:44px; width:auto; max-width:150px; }
  .nav-arrow{ height:28px; width:auto; }
}
@media (max-width: 700px){
  .navbar{ height:60px; }
  .nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }
}.nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }


.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }

/* ===== Styles from services.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;color:#111;
}

/* ======================================================
   NAVBAR (Same as About Page)
====================================================== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  height: 90px;
  padding:14px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;

  background: linear-gradient(
    90deg,
    rgba(162,244,230,0.08),
    rgba(216,255,251,0.08)
  );
  backdrop-filter: blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.25);
  opacity:1;
  transition: opacity 1s ease, box-shadow .35s ease;
  font-family: 'Poppins', sans-serif;
}
.navbar a{
  text-decoration: none;
  color: inherit;
}
.navbar.shadow{
  box-shadow:0 5px 18px rgba(0,0,0,0.18);
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



.nav-menu{
  justify-self:center;
  display:flex;
  gap:56px;
  font-size:16px;
  font-weight:500;
}

.nav-menu a{
  text-decoration:none;
  color:#2C325A;
  font-weight:500;
}

.nav-menu a:hover{ opacity:.6; }

.nav-call{
  padding:8px 22px;
  border:2px solid #2C325A;
  border-radius:8px;
  color:#2C325A;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.nav-call:hover{
  background:#2C325A;
  color:white;
}


/* ======================================================
   MEGA MENU (Hover Only)
====================================================== */
.mega-menu{
    position:absolute;top:100%;left:0;width:100%;
    display:none;z-index:999;
}
.mega-container{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    max-height:80vh;
    overflow-y:auto;
    padding:55px 65px;
    margin-top:12px;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:65px;position:relative;
}
.mega-col{
    padding:28px;border-radius:18px;
    position:relative;overflow:hidden;
}
.mega-col h3{font-size:17px;font-weight:700;margin-bottom:16px;color:#000;}
.mega-col ul{list-style:none;padding:0;margin:0;}
.mega-col ul li{
    padding:8px 0;font-size:14px;
    opacity:0.85;transition:.2s;
}
.mega-col ul li:hover{opacity:1;color:#00A899;transform:translateX(6px);cursor:pointer;}

.mega-col::before{
    content:"";position:absolute;inset:0;
    background-size:cover;background-position:center;opacity:0.45;
}
.mega-col::after{
    content:"";position:absolute;top:0;left:0;width:100%;height:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0.20),rgba(0,0,0,0.35));
    border-radius:inherit;z-index:0;
}
.mega-col *{position:relative;z-index:1;}
.mega-col:hover{
    border:1px solid rgba(0,168,153,0.18);
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,0.15);
}

.mega-container:before,
.mega-container:after{
    content:"";position:absolute;top:18%;
    width:1px;height:64%;
    background:rgba(0,0,0,0.06);
}
.mega-container:before{left:36%;}
.mega-container:after{left:69%;}

.nav-menu a.services:hover + .mega-menu,
.mega-menu:hover{display:block;}

.mega-col:nth-child(1)::before{background-image:url("images/marketing-bg.jpeg");}
.mega-col:nth-child(2)::before{background-image:url("images/advertising.png");}
.mega-col:nth-child(3)::before{background-image:url("images/automation-bg.png");}
.mega-col:nth-child(4)::before{background-image:url("images/Ui-bg.jpg");}
.mega-col:nth-child(5)::before{background-image:url("images/dev-bg.png");}
.mega-col:nth-child(6)::before{background-image:url("images/strategy-bg.png");}

/* ======================================================
   SERVICES HERO (MATCH ABOUT STYLE)
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px); /* navbar height + spacing */
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;   /* ÃƒÂ°Ã…Â¸Ã¢â‚¬ÂÃ‚Â¥ KEY FIX */
  
}
.services-hero h1{
  font-size:clamp(40px,4vw,65px);
  font-weight:800;
  color:#000;
  opacity:1;
  transform:none;
}

.hero-accent{
  background:linear-gradient(90deg, #00a899, #7be6dc);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}


/* ======================================================
   SERVICE ROWS
====================================================== */
.service-section {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* image | content */
  gap: 60px;
  padding: 0 8vw;
  align-items: center;
}

.service-section.visible{
    opacity:1;transform:translateY(0);
}
.service-section:hover{
    transform:translateY(-9px);
}
.service-section:first-of-type{
  margin-top: 40px;
}


/* Make outcome bold */
/* Remove tick ONLY for outcome */
ul li.outcome::before {
  content: "" !important;
  display: none !important;
}

/* Emphasize outcome */
ul li.outcome {
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}
.service-img,
.service-img img {
  will-change: transform, opacity;
  transform: translateZ(0);
}



/* IMAGE BLOCK */
.service-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section:hover .service-img img{
    transform:scale(1.1);
}

/* CONTENT BLOCK */
/* CONTENT BLOCK ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â LOCKED BY DEFAULT */
.service-content{
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
}

/* CONTENT ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â REVEALED AFTER GSAP */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
    font-size:clamp(24px,2.4vw,38px);
    font-weight:700;margin-bottom:8px;
    color:#12263D;
}
.service-content p{
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.55;margin-bottom:14px;
}
.service-content ul{
    list-style:none;
    font-size:clamp(14px,1.05vw,17px);
    line-height:1.55;
}
.service-content ul li{
    margin-bottom:6px;
    display:flex;
    align-items:flex-start;
}
.service-content ul li:before{
    content:"ÃƒÂ¢Ã…â€œÃ¢â‚¬Â";
    font-size:15px;
    color:#00A899;
    margin-right:10px;
    margin-top:2px;
    font-weight:600;
}
.reverse{flex-direction:row-reverse;}
.service-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  perspective: 1200px;
}
/* ======================================================
   SERVICES HERO
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px);
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;
}


/* ======================================================
   SERVICE LAYOUT
====================================================== */
.service-section{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  padding:0 8vw;
  align-items:center;
  margin-top:40px;
}

/* ======================================================
   IMAGE BLOCK
====================================================== */
.service-img{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  will-change:transform, opacity;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translateZ(0);
}

/* ======================================================
   CONTENT BLOCK (VISIBLE AFTER GSAP)
====================================================== */
/* CONTENT BLOCK ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â LOCKED BY DEFAULT */
.service-content{
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CONTENT ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â UNLOCKED AFTER ANIMATION */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
  font-size:clamp(24px,2.4vw,38px);
  font-weight:700;
  margin-bottom:8px;
  color:#12263D;
}

.service-content p{
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;
  margin-bottom:14px;
}

.service-content ul{
  list-style:none;
  font-size:clamp(14px,1.05vw,17px);
  line-height:1.55;
}

.service-content ul li{
  margin-bottom:6px;
  display:flex;
}

.service-content ul li::before{
  content:"ÃƒÂ¢Ã…â€œÃ¢â‚¬Â";
  color:#00A899;
  margin-right:10px;
  font-weight:600;
}

.service-content ul li.outcome::before{
  content:"";
}

.service-content ul li.outcome{
  font-weight:700;
}

/* ======================================================
   CAROUSEL (ONE LEFT + ONE RIGHT ARROW)
====================================================== */
.services-carousel{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:visible;
  width:100%;
}

.carousel-track{
  display:flex;
  transition:transform 0.45s ease;
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:5;
}

.carousel-arrow.left{ left:20px; }
.carousel-arrow.right{ right:20px; }

.carousel-arrow i{
  font-size:22px;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){
  .service-section{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-img{
    height:260px;
  }
}

.footer-section{
  width:100%;
  background:#ffffff;
  border-top:1px solid #e7e7e7;
  padding:24px 4vw;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-copy{
  font-size:14px;
  color:#2C325A;
  opacity:0.8;
}

.footer-logo img{
  width:90px;
  transform: scale(1.6);
}

.footer-follow{
  text-align:center;
}

.footer-follow-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
  color:#1c2640;
}

.footer-icons{
  display:flex;
  gap:18px;
  justify-content:center;
}

.footer-icons a{
  width:30px;
  height:30px;
  background: rgba(0,168,153,0.12);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00a899;
  font-size:18px;
  transition:.25s ease;
}

.footer-icons a:hover{
  transform:translateY(-2px);
  background:rgba(0,168,153,0.2);
}
.item-list {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.item {
  width: 200px;
  cursor: pointer;
}

/* Image */
.item-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content hidden by default */
.item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

/* Active state */
.item.active .item-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* GPU safety */
.service-img img {
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Center animation layer */
#center-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.center-preview {
  width: min(78vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.85);
}

/* ==============================
   STRIP NAVIGATION ARROWS
================================ */



.nav-btn:hover {
  background: #00A899;
  color: #fff;
  border-color: #00A899;
}

@media (max-width: 768px) {
  .services-nav {
    display: none; /* touch scroll only on mobile */
  }
}
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.9;
}

.carousel-arrow.left {
 left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow i {
  font-size: 22px;
}

/* ======================================================
   ÃƒÂ¢Ã…â€œÃ¢â‚¬Â¦ SERVICES PAGE ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â MOBILE FINAL FIX
   ÃƒÂ¢Ã¢â‚¬Â°Ã‚Â¤768px ONLY | Desktop Safe
====================================================== */
@media (max-width:768px){

  /* GLOBAL SAFETY */
  body{
    overflow-x: clip;
  }

  /* ================= NAVBAR ================= */
  .navbar{
    height: 90px;
    padding:8px 14px;
    opacity:1 !important;
  }

  .nav-menu,
  .nav-call{
    display:none !important;
  }

  /* ================= HERO ================= */
  .services-hero{
    padding-top:76px;   /* navbar + breathing space */
    padding-bottom:24px;
    min-height:auto;
  }

  .services-hero h1{
    font-size:28px;
  }


  /* ================= CAROUSEL ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬â„¢ STACK ================= */
  .services-carousel{
    overflow:visible;
  }

  .carousel-arrow{
    display:none !important;
  }

  .carousel-track{
    display:flex;
    flex-direction:column;
    transform:none !important;
    gap:32px;
  }

  /* ================= SERVICE SECTIONS ================= */
  .service-section{
    grid-template-columns:1fr;
    padding:0 14px;
    gap:18px;
    transform:none !important;
  }

  .service-section.reverse{
    flex-direction:column;
  }

  /* ================= IMAGES ================= */
  .service-img{
    height:220px;
    border-radius:14px;
  }

  .service-img img{
    transform:none !important;
  }

  /* ================= CONTENT ================= */
  .service-content{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .service-content h2{
    font-size:22px;
  }

  .service-content p{
    font-size:15px;
  }

  .service-content ul{
    font-size:14px;
  }

  /* ================= REMOVE HOVER EFFECTS ================= */
  .service-section:hover,
  .service-section:hover .service-img img{
    transform:none !important;
  }

  /* ================= FOOTER ================= */
  .footer-row{
    flex-direction:column;
    gap:14px;
  }

  .footer-logo img{ transform: scale(1.3);
  }
}
/* Intro animation removed */


/* ======================================================
   GRO-MATRIX SERVICES THEME
====================================================== */
:root{
  --brand-mint:#05afa1;
  --accent:var(--brand-mint);
  --bg-0:#f4fbf9;
  --bg-1:#ffffff;
  --text-0:#0f172a;
  --text-1:#5b6573;
  --panel-0:#ffffff;
  --panel-line:rgba(15,23,42,0.08);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 45px rgba(15,23,42,0.08);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
  color:var(--text-0);
  min-height:100%;
  position:relative;
}

body.menu-open{ overflow:hidden; }

/* Navbar */
.navbar,
.services-page,
.footer-section{ position:relative; z-index:1; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 90px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(15,23,42,0.06);
  transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
  z-index:999;
}

.navbar-inner{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 64px;
}

.navbar.scrolled{
  height: 56px;
  padding:0;
  background:transparent;
  box-shadow:none;
  border-bottom:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.navbar.scrolled .navbar-inner{
  width:min(980px, calc(100% - 120px));
  height:56px;
  padding:0 28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:0px;
  justify-self:start;
  min-width:260px;
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}





.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.nav-menu{
  justify-self:center;
  display:flex;
  gap:56px;
  font-size:16px;
  font-weight:500;
}

.nav-menu a{
  text-decoration:none;
  color:var(--text-0);
  transition:opacity .2s ease, color .2s ease;
}

.nav-menu a:hover{ opacity:0.7; }
.nav-menu a.services{ color:var(--accent); }

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
  justify-self:end;
}

.nav-call{
  padding:10px 22px;
  border:1px solid var(--accent);
  border-radius:999px;
  color:var(--text-0);
  text-decoration:none;
  font-weight:600;
  transition:background .25s ease, color .25s ease, border .25s ease;
}

.nav-call:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.8);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--text-0);
  transition:transform .3s ease, opacity .3s ease;
}

body.menu-open .nav-toggle span:nth-child(1){
  transform:translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2){
  transform:translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  z-index:1000;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-menu-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 24px 32px;
  position:relative;
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:30px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.15);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-close span{
  position:absolute;
  width:18px;
  height:2px;
  background:#0f172a;
}

.mobile-close span:nth-child(1){ transform:rotate(45deg); }
.mobile-close span:nth-child(2){ transform:rotate(-45deg); }


.mobile-links{
  margin-top:0;
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:center;
}

.mobile-links a{
  color:#0f172a;
  text-decoration:none;
  font-size:22px;
  font-weight:500;
  letter-spacing:0.2px;
}

.mobile-links a.active{ color:var(--accent); }

.mobile-links .mobile-cta{
  margin-top:16px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-align:center;
  text-decoration:none;
  min-width:220px;
}

/* Hero */
.services-page{ padding-bottom:120px; }

.services-hero{
  min-height:100vh;
  padding:clamp(200px, 30vh, 320px) 6vw clamp(150px, 22vh, 260px);
  display:flex;
  align-items:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.services-hero::after{
  content:"";
  position:absolute;
  right:-6%;
  top:52%;
  width:clamp(480px, 68vw, 1040px);
  height:clamp(480px, 68vw, 1040px);
  background:url("images/arrow.png") no-repeat center/contain;
  opacity:0.08;
  filter:blur(2px);
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-inner{
  max-width:min(1380px, 84vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:40px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s ease, transform 1s ease;
}

.hero-eyebrow{
  display:block;
  font-size:clamp(16px,1.4vw,19px);
  letter-spacing:0.02em;
  text-transform:none;
  color:var(--text-1);
  margin:0;
  font-weight:500;
}

body.page-loaded .hero-inner{
  opacity:1;
  transform:translateY(0);
}

.services-hero h1{
  font-size:clamp(34px,4.4vw,68px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.38;
  color:var(--text-0);
  margin:0;
}

.services-hero p{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  color:var(--text-1);
  line-height:1.8;
  max-width:1120px;
}

/* Services blocks */
.services-list{
  width:min(1160px,90vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.service-block{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:26px;
  padding:64px 68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:60px;
  box-shadow:var(--shadow);
  color:var(--text-0);
  position:relative;
}

.service-block::after{
  content:"";
  position:absolute;
  left:68px;
  right:68px;
  bottom:0;
  height:1px;
  background:var(--line);
  opacity:0.6;
}

.service-block:last-child::after{ display:none; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,175,161,0.12);
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  font-size:20px;
}

.service-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
}

.service-tagline{
  color:var(--text-1);
  font-size:clamp(16px,1.2vw,19px);
  line-height:1.7;
  max-width:460px;
}

.service-right{ display:flex; align-items:flex-start; }

.service-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-1);
  font-size:16px;
  line-height:1.7;
}

.faq-section{
  width:min(1180px, 92vw);
  margin:0 auto;
  padding:28px 0 20px;
}

.faq-block-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 18px 0;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  border:1px solid rgba(15,23,42,0.10);
  border-radius:22px;
  background:#ffffff;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(15,23,42,0.06);
  transition:background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item.active{
  background:linear-gradient(135deg, rgba(5,175,161,0.12), rgba(255,255,255,0.95));
  border-color:rgba(5,175,161,0.35);
  box-shadow:0 18px 45px rgba(5,175,161,0.12);
}

.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 26px;
  background:transparent;
  border:none;
  text-align:left;
  font-size:clamp(16px,1.25vw,19px);
  font-weight:600;
  color:var(--text-0);
  cursor:pointer;
}

.faq-question span:first-child{
  flex:1;
  font-size:clamp(16px,1.3vw,20px);
  line-height:1.5;
}

.faq-icon{
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid rgba(15,23,42,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:var(--text-0);
  transition:transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  flex-shrink:0;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
  color:var(--accent);
  border-color:rgba(5,175,161,0.45);
}

.faq-answer{
  padding:0 26px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translate3d(0,8px,0);
  transition:max-height 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}

.faq-item.active .faq-answer{
  max-height:320px;
  opacity:1;
  transform:translate3d(0,0,0);
  padding-bottom:20px;
}

.faq-answer p{
  margin:0;
  color:var(--text-1);
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.75;
}

.service-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.service-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.7);
  margin-top:10px;
  flex-shrink:0;
}

.service-list li.outcome{
  color:var(--text-0);
  font-weight:600;
  margin-top:6px;
  border-radius:999px;
  padding:6px 14px;
  transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.service-list li.outcome::before{
  background:var(--accent);
  border-color:var(--accent);
}

.service-block.in-view .service-list li.outcome{
  color:var(--text-0);
  background:rgba(5,175,161,0.12);
  box-shadow:
    0 0 0 1px rgba(5,175,161,0.35),
    0 10px 24px rgba(5,175,161,0.18);
  transform:translateY(-2px);
}

/* Scroll reveal */
.service-block .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}

.service-block .reveal-icon{ transition-delay:0.04s; }
.service-block .reveal-title{ transition-delay:0.12s; }
.service-block .reveal-desc{ transition-delay:0.22s; }
.service-block .reveal-list{ transition-delay:0.28s; }

.service-block .reveal-list li{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

.service-block.in-view .reveal{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
.service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
.service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
.service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
.service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
.service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
.service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
.service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
.service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
.service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
.service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
.service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

@media (max-width: 1024px){
  .nav-menu{
    justify-self:center;
    display:flex;
    gap:56px;
    font-size:16px;
    font-weight:500;
  }
  .service-block{ padding:56px; gap:40px; }
}

@media (max-width: 980px){
  .nav-menu{
    justify-self:center;
    display:flex;
    gap:56px;
    font-size:16px;
    font-weight:500;
  }
  .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  
  .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


  .navbar{ padding:0 8px; }
  .navbar.scrolled{ padding:0 8px; }
  .navbar-inner{ width:100%; padding:0 16px; }
  .navbar.scrolled .navbar-inner{
    width:100%;
    height: 56px;
    border-radius:14px;
    padding:0 16px;
  }
}

@media (max-width: 900px){
  .service-block{ grid-template-columns:1fr; }
  .service-tagline{ max-width:none; }
  .faq-block-title{ text-align:center; }
  .faq-question{ text-align:left; }
}

@media (max-width: 700px){
  .navbar{ padding:12px 20px; }
  .navbar.scrolled{ padding:8px 18px; }
  .navbar.scrolled .navbar-inner{
    width:calc(100% - 24px);
    height: 56px;
    border-radius:14px;
    padding:0 18px;
  }
  .services-hero{
    min-height:100svh;
    min-height:100dvh;
    padding:clamp(100px, 16vh, 140px) 7vw clamp(48px, 10vh, 90px);
  }
  .services-hero::after{
    left:50%;
    right:auto;
    top:56%;
    width:clamp(320px, 90vw, 560px);
    height:clamp(320px, 90vw, 560px);
    opacity:0.07;
    filter:blur(3px);
    transform:translate(-50%, -50%);
  }
  .hero-inner{ max-width:100%; }
  .hero-eyebrow{ letter-spacing:0.02em; }
  .services-hero h1{ font-size:clamp(34px,9vw,48px); }
  .services-hero p{ font-size:16px; }
  .service-block{ padding:44px 24px; }
  .service-block::after{ left:24px; right:24px; }
  .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
  .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }
}

.footer-section{
  border-top:1px solid var(--line);
  background:var(--bg-1);
}

.cta-band{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 6vw 10px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 10px 30px rgba(5,175,161,0.18);
}

.cta-arrow{
  font-size:18px;
  transition:transform .25s ease;
}

.cta-button:hover{
  background:var(--accent);
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(5,175,161,0.28);
}

.cta-button:hover .cta-arrow{
  transform:translateX(4px);
}

.footer-copy,
.footer-follow-title{ color:var(--text-1); }

.footer-icons a{ color:var(--text-0); }/* Mobile navbar fix */
@media (max-width: 980px){
  .navbar-inner{ grid-template-columns:auto 1fr auto; align-items:center; padding:0 16px; }
  .nav-left{ min-width:0; justify-self:start; }
  .nav-right{ justify-self:end; }
  .nav-menu,
  .nav-call{ display:none !important; }
  .nav-toggle{ display:flex; }
  .nav-logo{ height:44px; width:auto; max-width:150px; }
  .nav-arrow{ height:28px; width:auto; }
}
@media (max-width: 700px){
  .navbar{ height:60px; }
  .nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }
}.nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }


.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }

/* ===== Styles from blogs.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;color:#111;
}

/* ======================================================
   NAVBAR (Same as About Page)
====================================================== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  height: 90px;
  padding:14px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;

  background: linear-gradient(
    90deg,
    rgba(162,244,230,0.08),
    rgba(216,255,251,0.08)
  );
  backdrop-filter: blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.25);
  opacity:1;
  transition: opacity 1s ease, box-shadow .35s ease;
  font-family: 'Poppins', sans-serif;
}
.navbar a{
  text-decoration: none;
  color: inherit;
}
.navbar.shadow{
  box-shadow:0 5px 18px rgba(0,0,0,0.18);
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



.nav-menu{  justify-self:center;
    display:flex;
      gap:56px;
        font-size:16px;
          font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:#2C325A;
  font-weight:500;
}

.nav-menu a:hover{ opacity:.6; }

.nav-call{
  padding:8px 22px;
  border:2px solid #2C325A;
  border-radius:8px;
  color:#2C325A;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.nav-call:hover{
  background:#2C325A;
  color:white;
}


/* ======================================================
   MEGA MENU (Hover Only)
====================================================== */
.mega-menu{
    position:absolute;top:100%;left:0;width:100%;
    display:none;z-index:999;
}
.mega-container{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    max-height:80vh;
    overflow-y:auto;
    padding:55px 65px;
    margin-top:12px;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:65px;position:relative;
}
.mega-col{
    padding:28px;border-radius:18px;
    position:relative;overflow:hidden;
}
.mega-col h3{font-size:17px;font-weight:700;margin-bottom:16px;color:#000;}
.mega-col ul{list-style:none;padding:0;margin:0;}
.mega-col ul li{
    padding:8px 0;font-size:14px;
    opacity:0.85;transition:.2s;
}
.mega-col ul li:hover{opacity:1;color:#00A899;transform:translateX(6px);cursor:pointer;}

.mega-col::before{
    content:"";position:absolute;inset:0;
    background-size:cover;background-position:center;opacity:0.45;
}
.mega-col::after{
    content:"";position:absolute;top:0;left:0;width:100%;height:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0.20),rgba(0,0,0,0.35));
    border-radius:inherit;z-index:0;
}
.mega-col *{position:relative;z-index:1;}
.mega-col:hover{
    border:1px solid rgba(0,168,153,0.18);
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,0.15);
}

.mega-container:before,
.mega-container:after{
    content:"";position:absolute;top:18%;
    width:1px;height:64%;
    background:rgba(0,0,0,0.06);
}
.mega-container:before{left:36%;}
.mega-container:after{left:69%;}

.nav-menu a.services:hover + .mega-menu,
.mega-menu:hover{display:block;}

.mega-col:nth-child(1)::before{background-image:url("images/marketing-bg.jpeg");}
.mega-col:nth-child(2)::before{background-image:url("images/advertising.png");}
.mega-col:nth-child(3)::before{background-image:url("images/automation-bg.png");}
.mega-col:nth-child(4)::before{background-image:url("images/Ui-bg.jpg");}
.mega-col:nth-child(5)::before{background-image:url("images/dev-bg.png");}
.mega-col:nth-child(6)::before{background-image:url("images/strategy-bg.png");}

/* ======================================================
   SERVICES HERO (MATCH ABOUT STYLE)
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px); /* navbar height + spacing */
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;   /* Ã°Å¸â€Â¥ KEY FIX */
  
}
.services-hero h1{
  font-size:clamp(40px,4vw,65px);
  font-weight:800;
  color:#000;
  opacity:1;
  transform:none;
}


/* ======================================================
   SERVICE ROWS
====================================================== */
.service-section {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* image | content */
  gap: 60px;
  padding: 0 8vw;
  align-items: center;
}

.service-section.visible{
    opacity:1;transform:translateY(0);
}
.service-section:hover{
    transform:translateY(-9px);
}
.service-section:first-of-type{
  margin-top: 40px;
}


/* Make outcome bold */
/* Remove tick ONLY for outcome */
ul li.outcome::before {
  content: "" !important;
  display: none !important;
}

/* Emphasize outcome */
ul li.outcome {
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}
.service-img,
.service-img img {
  will-change: transform, opacity;
  transform: translateZ(0);
}



/* IMAGE BLOCK */
.service-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section:hover .service-img img{
    transform:scale(1.1);
}

/* CONTENT BLOCK */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
}

/* CONTENT Ã¢â‚¬â€ REVEALED AFTER GSAP */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
    font-size:clamp(24px,2.4vw,38px);
    font-weight:700;margin-bottom:8px;
    color:#12263D;
}
.service-content p{
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.55;margin-bottom:14px;
}
.service-content ul{
    list-style:none;
    font-size:clamp(14px,1.05vw,17px);
    line-height:1.55;
}
.service-content ul li{
    margin-bottom:6px;
    display:flex;
    align-items:flex-start;
}
.service-content ul li:before{
    content:"Ã¢Å“â€";
    font-size:15px;
    color:#00A899;
    margin-right:10px;
    margin-top:2px;
    font-weight:600;
}
.reverse{flex-direction:row-reverse;}
.service-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  perspective: 1200px;
}
/* ======================================================
   SERVICES HERO
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px);
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;
}


/* ======================================================
   SERVICE LAYOUT
====================================================== */
.service-section{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  padding:0 8vw;
  align-items:center;
  margin-top:40px;
}

/* ======================================================
   IMAGE BLOCK
====================================================== */
.service-img{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  will-change:transform, opacity;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translateZ(0);
}

/* ======================================================
   CONTENT BLOCK (VISIBLE AFTER GSAP)
====================================================== */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CONTENT Ã¢â‚¬â€ UNLOCKED AFTER ANIMATION */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
  font-size:clamp(24px,2.4vw,38px);
  font-weight:700;
  margin-bottom:8px;
  color:#12263D;
}

.service-content p{
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;
  margin-bottom:14px;
}

.service-content ul{
  list-style:none;
  font-size:clamp(14px,1.05vw,17px);
  line-height:1.55;
}

.service-content ul li{
  margin-bottom:6px;
  display:flex;
}

.service-content ul li::before{
  content:"Ã¢Å“â€";
  color:#00A899;
  margin-right:10px;
  font-weight:600;
}

.service-content ul li.outcome::before{
  content:"";
}

.service-content ul li.outcome{
  font-weight:700;
}

/* ======================================================
   CAROUSEL (ONE LEFT + ONE RIGHT ARROW)
====================================================== */
.services-carousel{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:visible;
  width:100%;
}

.carousel-track{
  display:flex;
  transition:transform 0.45s ease;
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:5;
}

.carousel-arrow.left{ left:20px; }
.carousel-arrow.right{ right:20px; }

.carousel-arrow i{
  font-size:22px;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){
  .service-section{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-img{
    height:260px;
  }
}

.footer-section{
  width:100%;
  background:#ffffff;
  border-top:1px solid #e7e7e7;
  padding:24px 4vw;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-copy{
  font-size:14px;
  color:#2C325A;
  opacity:0.8;
}

.footer-logo img{
  width:90px;
  transform: scale(1.6);
}

.footer-follow{
  text-align:center;
}

.footer-follow-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
  color:#1c2640;
}

.footer-icons{
  display:flex;
  gap:18px;
  justify-content:center;
}

.footer-icons a{
  width:30px;
  height:30px;
  background: rgba(0,168,153,0.12);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00a899;
  font-size:18px;
  transition:.25s ease;
}

.footer-icons a:hover{
  transform:translateY(-2px);
  background:rgba(0,168,153,0.2);
}
.item-list {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.item {
  width: 200px;
  cursor: pointer;
}

/* Image */
.item-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content hidden by default */
.item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

/* Active state */
.item.active .item-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* GPU safety */
.service-img img {
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Center animation layer */
#center-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.center-preview {
  width: min(78vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.85);
}

/* ==============================
   STRIP NAVIGATION ARROWS
================================ */



.nav-btn:hover {
  background: #00A899;
  color: #fff;
  border-color: #00A899;
}

@media (max-width: 768px) {
  .services-nav {
    display: none; /* touch scroll only on mobile */
  }
}
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.9;
}

.carousel-arrow.left {
 left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow i {
  font-size: 22px;
}

/* ======================================================
   Ã¢Å“â€¦ SERVICES PAGE Ã¢â‚¬â€ MOBILE FINAL FIX
   Ã¢â€°Â¤768px ONLY | Desktop Safe
====================================================== */
@media (max-width:768px){

  /* GLOBAL SAFETY */
  body{
    overflow-x: clip;
  }

  /* ================= NAVBAR ================= */
  .navbar{
    height: 90px;
    padding:8px 14px;
    opacity:1 !important;
  }

  .nav-menu,
  .nav-call{
    display:none !important;
  }

  /* ================= HERO ================= */
  .services-hero{
    padding-top:76px;   /* navbar + breathing space */
    padding-bottom:24px;
    min-height:auto;
  }

  .services-hero h1{
    font-size:28px;
  }


  /* ================= CAROUSEL Ã¢â€ â€™ STACK ================= */
  .services-carousel{
    overflow:visible;
  }

  .carousel-arrow{
    display:none !important;
  }

  .carousel-track{
    display:flex;
    flex-direction:column;
    transform:none !important;
    gap:32px;
  }

  /* ================= SERVICE SECTIONS ================= */
  .service-section{
    grid-template-columns:1fr;
    padding:0 14px;
    gap:18px;
    transform:none !important;
  }

  .service-section.reverse{
    flex-direction:column;
  }

  /* ================= IMAGES ================= */
  .service-img{
    height:220px;
    border-radius:14px;
  }

  .service-img img{
    transform:none !important;
  }

  /* ================= CONTENT ================= */
  .service-content{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .service-content h2{
    font-size:22px;
  }

  .service-content p{
    font-size:15px;
  }

  .service-content ul{
    font-size:14px;
  }

  /* ================= REMOVE HOVER EFFECTS ================= */
  .service-section:hover,
  .service-section:hover .service-img img{
    transform:none !important;
  }

  /* ================= FOOTER ================= */
  .footer-row{
    flex-direction:column;
    gap:14px;
  }

  .footer-logo img{ transform: scale(1.3);
  }
}
/* Intro animation removed */


/* ======================================================
   GRO-MATRIX SERVICES THEME
====================================================== */
:root{
  --brand-mint:#05afa1;
  --accent:var(--brand-mint);
  --bg-0:#f4fbf9;
  --bg-1:#ffffff;
  --text-0:#0f172a;
  --text-1:#5b6573;
  --panel-0:#ffffff;
  --panel-line:rgba(15,23,42,0.08);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 45px rgba(15,23,42,0.08);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
  color:var(--text-0);
  min-height:100%;
  position:relative;
}

body.menu-open{ overflow:hidden; }

/* Navbar */
.navbar,
.services-page,
.footer-section{ position:relative; z-index:1; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 90px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(15,23,42,0.06);
  transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
  z-index:999;
}

.navbar-inner{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 64px;
}

.navbar.scrolled{
  height: 56px;
  padding:0;
  background:transparent;
  box-shadow:none;
  border-bottom:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.navbar.scrolled .navbar-inner{
  width:min(980px, calc(100% - 120px));
  height:56px;
  padding:0 28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:0px;
  justify-self:start;
 min-width:260px;}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}





.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:var(--text-0);
  transition:opacity .2s ease, color .2s ease;
}

.nav-menu a:hover{ opacity:0.7; }
.nav-menu a.services{ color:var(--accent); }

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
  justify-self:end;
}

.nav-call{
  padding:10px 22px;
  border:1px solid var(--accent);
  border-radius:999px;
  color:var(--text-0);
  text-decoration:none;
  font-weight:600;
  transition:background .25s ease, color .25s ease, border .25s ease;
}

.nav-call:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.8);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--text-0);
  transition:transform .3s ease, opacity .3s ease;
}

body.menu-open .nav-toggle span:nth-child(1){
  transform:translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2){
  transform:translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  z-index:1000;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-menu-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 24px 32px;
  position:relative;
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:30px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.15);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-close span{
  position:absolute;
  width:18px;
  height:2px;
  background:#0f172a;
}

.mobile-close span:nth-child(1){ transform:rotate(45deg); }
.mobile-close span:nth-child(2){ transform:rotate(-45deg); }


.mobile-links{
  margin-top:0;
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:center;
}

.mobile-links a{
  color:#0f172a;
  text-decoration:none;
  font-size:22px;
  font-weight:500;
  letter-spacing:0.2px;
}

.mobile-links a.active{ color:var(--accent); }

.mobile-links .mobile-cta{
  margin-top:16px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-align:center;
  text-decoration:none;
  min-width:220px;
}

/* Hero */
.services-page{ padding-bottom:60px; }

.services-hero{
  min-height:100vh;
  padding:clamp(200px, 30vh, 320px) 6vw clamp(150px, 22vh, 260px);
  display:flex;
  align-items:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.services-hero.blog-hero{
  align-items:center;
  justify-content:center;
  text-align:center;
}

.services-hero::after{
  content:"";
  position:absolute;
  right:-6%;
  top:52%;
  width:clamp(480px, 68vw, 1040px);
  height:clamp(480px, 68vw, 1040px);
  background:url("images/arrow.png") no-repeat center/contain;
  opacity:0.08;
  filter:blur(2px);
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-inner{
  max-width:min(1380px, 84vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:40px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s ease, transform 1s ease;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:2px;
  font-size:15px;
  letter-spacing:0.02em;
  text-transform:none;
  color:var(--text-1);
  margin:0;
  font-weight:500;
}

.hero-eyebrow .eyebrow-arrow{
    height:144px;
    width:auto;
    vertical-align:middle;
    margin-left:0;
    opacity:0.9;
  }

body.page-loaded .hero-inner{
  opacity:1;
  transform:translateY(0);
}

.services-hero h1{
  font-size:clamp(34px,4.4vw,68px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.38;
  color:var(--text-0);
  margin:0;
}

.hero-rotate{
  position:relative;
  display:inline-block;
  min-width:9ch;
  min-height:1em;
  margin-left:10px;
  white-space:nowrap;
  vertical-align:baseline;
}

.hero-rotate span{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translate3d(0,12px,0);
  animation:heroSwap 9s infinite;
  will-change:transform, opacity;
  background:linear-gradient(90deg, #00a899, #7be6dc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-rotate span:nth-child(1){ animation-delay:0s; }
.hero-rotate span:nth-child(2){ animation-delay:3s; }
.hero-rotate span:nth-child(3){ animation-delay:6s; }

@keyframes heroSwap{
  0%{ opacity:0; transform:translate3d(0,12px,0); }
  10%{ opacity:1; transform:translate3d(0,0,0); }
  30%{ opacity:1; transform:translate3d(0,0,0); }
  40%{ opacity:0; transform:translate3d(0,-10px,0); }
  100%{ opacity:0; transform:translate3d(0,-10px,0); }
}

.services-hero p{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  color:var(--text-1);
  line-height:1.8;
  max-width:1120px;
}

/* Services blocks */
.services-list{
  width:min(1160px,90vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.service-block{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:26px;
  padding:64px 68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:60px;
  box-shadow:var(--shadow);
  color:var(--text-0);
  position:relative;
}

.service-block::after{
  content:"";
  position:absolute;
  left:68px;
  right:68px;
  bottom:0;
  height:1px;
  background:var(--line);
  opacity:0.6;
}

.service-block:last-child::after{ display:none; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,175,161,0.12);
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  font-size:20px;
}

.service-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
}

.service-tagline{
  color:var(--text-1);
  font-size:clamp(16px,1.2vw,19px);
  line-height:1.7;
  max-width:460px;
}

.service-right{ display:flex; align-items:flex-start; }

.service-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-1);
  font-size:16px;
  line-height:1.7;
}

.service-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.service-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.7);
  margin-top:10px;
  flex-shrink:0;
}

.service-list li.outcome{
  color:var(--text-0);
  font-weight:600;
  margin-top:6px;
  border-radius:999px;
  padding:6px 14px;
  transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.service-list li.outcome::before{
  background:var(--accent);
  border-color:var(--accent);
}

.service-block.in-view .service-list li.outcome{
  color:var(--text-0);
  background:rgba(5,175,161,0.12);
  box-shadow:
    0 0 0 1px rgba(5,175,161,0.35),
    0 10px 24px rgba(5,175,161,0.18);
  transform:translateY(-2px);
}

/* Scroll reveal */
.service-block .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}

.service-block .reveal-icon{ transition-delay:0.04s; }
.service-block .reveal-title{ transition-delay:0.12s; }
.service-block .reveal-desc{ transition-delay:0.22s; }
.service-block .reveal-list{ transition-delay:0.28s; }

.service-block .reveal-list li{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

.service-block.in-view .reveal{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
.service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
.service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
.service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
.service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
.service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
.service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
.service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
.service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
.service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
.service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
.service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

.service-block.about-block{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  grid-template-columns:1fr;
}

.service-block.about-block::after{ display:none; }

.about-section-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 12px 0;
}

.about-paragraph{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

.about-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:1100px;
}

.about-approach-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin:10px auto;
  max-width:420px;
  justify-items:center;
}

.about-combines{
  font-weight:600;
  color:var(--text-0);
}

.about-approach-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,0.08);
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  transition:transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  opacity:0;
  transform:translate3d(0,12px,0);
  width:100%;
  text-align:center;
}

.about-approach-item.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}


/* Blog listing */
.blog-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.blog-hero .services-hero p{
  max-width:900px;
}

.blog-listing{
  width:min(1200px, 92vw);
  margin:0 auto;
  padding:10px 0 80px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:28px;
}

.blog-card{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:20px;
  overflow:hidden;
  transition:transform .25s ease;
  opacity:0;
  transform:translate3d(0,16px,0);
}

.blog-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.blog-card-link{
  display:flex;
  flex-direction:column;
  height:100%;
  text-decoration:none;
  color:inherit;
}

.blog-image{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  margin:16px 16px 0;
}

.blog-image img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.blog-card h3{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  color:var(--text-0);
  margin:18px 18px 10px;
  line-height:1.35;
}

.blog-excerpt{
  margin:0 18px 18px;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

.blog-read{
  margin:0 18px 22px;
  font-size:14px;
  font-weight:600;
  color:var(--accent);
  display:inline-flex;
  gap:6px;
  align-items:center;
  text-decoration:none;
}

@media (hover:hover) and (pointer:fine){
  .blog-card:hover{
    transform:translate3d(0,-4px,0);
  }
  .blog-card:hover .blog-image img{
    transform:scale(1.03);
  }
  .blog-card:hover .blog-read{
    text-decoration:underline;
    text-underline-offset:3px;
  }
}

@media (max-width: 1024px){
  .blog-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px){
  .blog-grid{ grid-template-columns:1fr; }
  .blog-image img{ height:190px; }
}
.about-approach-title{
  font-size:clamp(16px,1.2vw,19px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

@media (hover:hover) and (pointer:fine){
  .about-approach-grid:hover .about-approach-item{
    opacity:0.7;
  }
  .about-approach-item:hover{
    opacity:1;
    transform:translate3d(0,-4px,0);
    border-color:rgba(5,175,161,0.35);
    background:rgba(5,175,161,0.04);
  }
  .about-approach-item:hover 
/* Blog listing */
.blog-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.blog-hero .services-hero p{
  max-width:900px;
}

.blog-listing{
  width:min(1200px, 92vw);
  margin:0 auto;
  padding:10px 0 80px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:28px;
}

.blog-card{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:20px;
  overflow:hidden;
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  opacity:0;
  transform:translate3d(0,16px,0);
}

.blog-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.blog-card-link{
  display:flex;
  flex-direction:column;
  height:100%;
  text-decoration:none;
  color:inherit;
}

.blog-image{
  width:100%;
  border-radius:16px;
  overflow:hidden;
  margin:16px 16px 0;
}

.blog-image img{
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.blog-card h3{
  font-size:clamp(20px,2.1vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:18px 18px 10px;
  line-height:1.35;
}

.blog-excerpt{
  margin:0 18px 18px;
  font-size:16px;
  line-height:1.7;
  color:var(--text-1);
}

.blog-read{
  margin:0 18px 22px;
  font-size:14px;
  font-weight:600;
  color:var(--accent);
  display:inline-flex;
  gap:6px;
  align-items:center;
}

@media (hover:hover) and (pointer:fine){
  .blog-card:hover{
    transform:translate3d(0,-4px,0);
    box-shadow:0 18px 38px rgba(15,23,42,0.12);
    border-color:rgba(5,175,161,0.25);
  }
  .blog-card:hover .blog-image img{
    transform:scale(1.03);
  }
}

@media (max-width: 1024px){
  .blog-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px){
  .blog-grid{ grid-template-columns:1fr; }
  .blog-image img{ height:190px; }
}
.about-approach-title{
    color:var(--accent);
  }
}

@media (max-width: 900px){
  .about-approach-grid{
    grid-template-columns:1fr;
    gap:12px;
    max-width:420px;
  }
}

.mission-vision{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:26px 0 70px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:36px;
  position:relative;
}

.mission-vision-block{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay:var(--mv-delay, 0ms);
}

.mission-vision-block.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.mission-vision::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background:rgba(15,23,42,0.12);
  transform:scaleY(0);
  transform-origin:top;
  opacity:0;
  transition:transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mission-vision.in-view::before{
  transform:scaleY(1);
  opacity:1;
}

.mission-vision-block:first-child{
  padding-right:24px;
}

.mission-vision-block:last-child{
  padding-left:24px;
}

.mission-vision-label{
  font-size:15px;
  letter-spacing:0.06em;
  text-transform:none;
  color:var(--text-1);
  font-weight:900;
  margin:0;
}

.mission-vision-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

@media (max-width: 800px){
  .mission-vision{
    grid-template-columns:1fr;
    gap:20px;
  }
  .mission-vision::before{
    display:none;
  }
  .mission-vision-block{
    --mv-delay:0ms;
    padding:0;
  }
  .mission-vision-block::before{
    content:"";
    width:56px;
    height:1px;
    background:rgba(15,23,42,0.12);
    transform:scaleX(0);
    transform-origin:left;
    opacity:0;
    transition:transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mission-vision-block.in-view::before{
    transform:scaleX(1);
    opacity:1;
  }
}

.belief-quote{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:0;
}

.belief-quote-box{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:28px 30px;
  text-align:center;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.belief-quote-box.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-quote-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-0);
  font-weight:500;
}

.belief-quote-attribution{
  margin:12px 0 0;
  font-size:14px;
  letter-spacing:0.04em;
  color:var(--text-1);
  font-weight:500;
}

@media (max-width: 800px){
  .belief-quote{
    width:min(100%, 90vw);
    padding:0;
  }
  .belief-quote-box{
    padding:24px 22px;
  }
}

.beliefs-section{
  width:100%;
  padding:50px 0 90px;
  background:#ffffff;
}

.beliefs-inner{
  width:min(1160px, 92vw);
  margin:0 auto;
}

.beliefs-title{
  font-size:clamp(30px,3.6vw,48px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 28px 0;
}

.beliefs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:34px;
  align-items:end;
}

.belief-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,251,250,0.95));
  border-radius:0;
  padding:44px 40px 34px;
  box-shadow:0 30px 80px rgba(15,23,42,0.18);
  min-height:520px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,12px,0);
  transition:opacity 0.8s ease, transform 0.8s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow:hidden;
  --fold:56px;
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
}

.belief-card:nth-child(1),
.belief-card:nth-child(3){
  min-height:560px;
}

.belief-card:nth-child(2),
.belief-card:nth-child(4){
  min-height:500px;
}

.belief-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:var(--fold);
  height:var(--fold);
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(5,175,161,0.10));
  border-bottom-left-radius:16px;
  -webkit-mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  box-shadow:-8px 8px 16px rgba(15,23,42,0.14);
  opacity:0.55;
  transition:opacity 0.35s ease, box-shadow 0.35s ease;
}

.belief-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:0;
  border:1px solid rgba(5,175,161,0.22);
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
  pointer-events:none;
}

.belief-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-title{
  font-size:clamp(22px,1.8vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

.belief-desc{
  margin:0;
  color:var(--text-1);
  font-size:clamp(17px,1.3vw,19px);
  line-height:1.8;
}

.belief-icon{
  margin-top:auto;
  width:150px;
  height:150px;
  opacity:0.75;
}

.belief-card:nth-child(1),
.belief-card:nth-child(2),
.belief-card:nth-child(3),
.belief-card:nth-child(4){ border-left:none; }

@media (hover:hover) and (pointer:fine){
  .belief-card:hover{
    transform:translate3d(0,-4px,0);
    background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(5,175,161,0.08));
    box-shadow:0 22px 60px rgba(15,23,42,0.16);
  }
  .belief-card:hover::before{
    opacity:0.7;
    box-shadow:-10px 10px 18px rgba(15,23,42,0.18);
  }
  .belief-card:hover::after{
    border-color:rgba(5,175,161,0.4);
  }
}

@media (max-width: 1024px){
  .beliefs-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px){
  .beliefs-grid{ grid-template-columns:1fr; }
  .belief-icon{ width:120px; height:120px; }
}

@media (max-width: 1024px){
  .nav-menu{  justify-self:center;  display:flex; gap:56px; font-size:16px; font-weight:500; }
  .service-block{ padding:56px; gap:40px; }
}

@media (max-width: 980px){
  .nav-menu{  justify-self:center;  display:flex; gap:56px; font-size:16px; font-weight:500; }
  .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  
  .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


  .navbar{ padding:0 8px; }
  .navbar.scrolled{ padding:0 8px; }
  .navbar-inner{ width:100%; padding:0 16px; }
  .navbar.scrolled .navbar-inner{
    width:100%;
    height: 56px;
    border-radius:14px;
    padding:0 16px;
  }
}

@media (max-width: 900px){
  .service-block{ grid-template-columns:1fr; }
  .service-tagline{ max-width:none; }
}

@media (max-width: 700px){
  .navbar{ padding:12px 20px; }
  .navbar.scrolled{ padding:8px 18px; }
  .navbar.scrolled .navbar-inner{
    width:calc(100% - 24px);
    height: 56px;
    border-radius:14px;
    padding:0 18px;
  }
  .services-hero{
    min-height:100svh;
    min-height:100dvh;
    padding:clamp(100px, 16vh, 140px) 7vw clamp(48px, 10vh, 90px);
  }
  .services-hero::after{
    left:50%;
    right:auto;
    top:56%;
    width:clamp(320px, 90vw, 560px);
    height:clamp(320px, 90vw, 560px);
    opacity:0.07;
    filter:blur(3px);
    transform:translate(-50%, -50%);
  }
  .hero-inner{ max-width:100%; }
  .hero-eyebrow{ letter-spacing:0.02em; }
  .services-hero h1{ font-size:clamp(34px,9vw,48px); }
  .services-hero p{ font-size:16px; }
  .service-block{ padding:44px 24px; }
  .service-block::after{ left:24px; right:24px; }
  .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
  .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }

  .service-block.about-block{ text-align:center; }
  .about-stack{ margin:0 auto; }
  .about-approach-item{ text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate span{
    animation:none;
    opacity:0;
    transform:none;
    position:static;
    display:none;
  }
  .hero-rotate span:first-child{
    display:inline;
    opacity:1;
  }
  .about-approach-item{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-card{
    opacity:1;
    transform:none;
    transition:none;
  }
  .mission-vision-block{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-quote-box{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.footer-section{
  border-top:1px solid var(--line);
  background:var(--bg-1);
}

.cta-band{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6vw 10px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 10px 30px rgba(5,175,161,0.18);
}

.cta-arrow{
  font-size:18px;
  transition:transform .25s ease;
}

.cta-button:hover{
  background:var(--accent);
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(5,175,161,0.28);
}

.cta-button:hover .cta-arrow{
  transform:translateX(4px);
}

.footer-copy,
.footer-follow-title{ color:var(--text-1); }

.footer-icons a{ color:var(--text-0); }
/* Mobile navbar fix */
@media (max-width: 980px){
  .navbar-inner{ grid-template-columns:auto 1fr auto; align-items:center; padding:0 16px; }
  .nav-left{ min-width:0; justify-self:start; }
  .nav-right{ justify-self:end; }
  .nav-menu,
  .nav-call{ display:none !important; }
  .nav-toggle{ display:flex; }
  .nav-logo{ height:44px; width:auto; max-width:150px; }
  .nav-arrow{ height:28px; width:auto; }
}
@media (max-width: 700px){
  .navbar{ height:60px; }
  .nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }
}.nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }


.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }

/* ===== Styles from contact.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;color:#111;
}

/* ======================================================
   NAVBAR (Same as About Page)
====================================================== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  height: 90px;
  padding:14px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;

  background: linear-gradient(
    90deg,
    rgba(162,244,230,0.08),
    rgba(216,255,251,0.08)
  );
  backdrop-filter: blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.25);
  opacity:1;
  transition: opacity 1s ease, box-shadow .35s ease;
  font-family: 'Poppins', sans-serif;
}
.navbar a{
  text-decoration: none;
  color: inherit;
}
.navbar.shadow{
  box-shadow:0 5px 18px rgba(0,0,0,0.18);
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:#2C325A;
  font-weight:500;
}

.nav-menu a:hover{ opacity:.6; }

.nav-call{
  padding:8px 22px;
  border:2px solid #2C325A;
  border-radius:8px;
  color:#2C325A;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.nav-call:hover{
  background:#2C325A;
  color:white;
}


/* ======================================================
   MEGA MENU (Hover Only)
====================================================== */
.mega-menu{
    position:absolute;top:100%;left:0;width:100%;
    display:none;z-index:999;
}
.mega-container{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    max-height:80vh;
    overflow-y:auto;
    padding:55px 65px;
    margin-top:12px;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:65px;position:relative;
}
.mega-col{
    padding:28px;border-radius:18px;
    position:relative;overflow:hidden;
}
.mega-col h3{font-size:17px;font-weight:700;margin-bottom:16px;color:#000;}
.mega-col ul{list-style:none;padding:0;margin:0;}
.mega-col ul li{
    padding:8px 0;font-size:14px;
    opacity:0.85;transition:.2s;
}
.mega-col ul li:hover{opacity:1;color:#00A899;transform:translateX(6px);cursor:pointer;}

.mega-col::before{
    content:"";position:absolute;inset:0;
    background-size:cover;background-position:center;opacity:0.45;
}
.mega-col::after{
    content:"";position:absolute;top:0;left:0;width:100%;height:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0.20),rgba(0,0,0,0.35));
    border-radius:inherit;z-index:0;
}
.mega-col *{position:relative;z-index:1;}
.mega-col:hover{
    border:1px solid rgba(0,168,153,0.18);
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,0.15);
}

.mega-container:before,
.mega-container:after{
    content:"";position:absolute;top:18%;
    width:1px;height:64%;
    background:rgba(0,0,0,0.06);
}
.mega-container:before{left:36%;}
.mega-container:after{left:69%;}

.nav-menu a.services:hover + .mega-menu,
.mega-menu:hover{display:block;}

.mega-col:nth-child(1)::before{background-image:url("images/marketing-bg.jpeg");}
.mega-col:nth-child(2)::before{background-image:url("images/advertising.png");}
.mega-col:nth-child(3)::before{background-image:url("images/automation-bg.png");}
.mega-col:nth-child(4)::before{background-image:url("images/Ui-bg.jpg");}
.mega-col:nth-child(5)::before{background-image:url("images/dev-bg.png");}
.mega-col:nth-child(6)::before{background-image:url("images/strategy-bg.png");}

/* ======================================================
   SERVICES HERO (MATCH ABOUT STYLE)
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px); /* navbar height + spacing */
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;   /* Ã°Å¸â€Â¥ KEY FIX */
  
}
.services-hero h1{
  font-size:clamp(40px,4vw,65px);
  font-weight:800;
  color:#000;
  opacity:1;
  transform:none;
}


/* ======================================================
   SERVICE ROWS
====================================================== */
.service-section {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* image | content */
  gap: 60px;
  padding: 0 8vw;
  align-items: center;
}

.service-section.visible{
    opacity:1;transform:translateY(0);
}
.service-section:hover{
    transform:translateY(-9px);
}
.service-section:first-of-type{
  margin-top: 40px;
}


/* Make outcome bold */
/* Remove tick ONLY for outcome */
ul li.outcome::before {
  content: "" !important;
  display: none !important;
}

/* Emphasize outcome */
ul li.outcome {
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}
.service-img,
.service-img img {
  will-change: transform, opacity;
  transform: translateZ(0);
}



/* IMAGE BLOCK */
.service-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section:hover .service-img img{
    transform:scale(1.1);
}

/* CONTENT BLOCK */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
}

/* CONTENT Ã¢â‚¬â€ REVEALED AFTER GSAP */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
    font-size:clamp(24px,2.4vw,38px);
    font-weight:700;margin-bottom:8px;
    color:#12263D;
}
.service-content p{
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.55;margin-bottom:14px;
}
.service-content ul{
    list-style:none;
    font-size:clamp(14px,1.05vw,17px);
    line-height:1.55;
}
.service-content ul li{
    margin-bottom:6px;
    display:flex;
    align-items:flex-start;
}
.service-content ul li:before{
    content:"Ã¢Å“â€";
    font-size:15px;
    color:#00A899;
    margin-right:10px;
    margin-top:2px;
    font-weight:600;
}
.reverse{flex-direction:row-reverse;}
.service-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  perspective: 1200px;
}
/* ======================================================
   SERVICES HERO
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px);
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;
}


/* ======================================================
   SERVICE LAYOUT
====================================================== */
.service-section{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  padding:0 8vw;
  align-items:center;
  margin-top:40px;
}

/* ======================================================
   IMAGE BLOCK
====================================================== */
.service-img{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  will-change:transform, opacity;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translateZ(0);
}

/* ======================================================
   CONTENT BLOCK (VISIBLE AFTER GSAP)
====================================================== */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CONTENT Ã¢â‚¬â€ UNLOCKED AFTER ANIMATION */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
  font-size:clamp(24px,2.4vw,38px);
  font-weight:700;
  margin-bottom:8px;
  color:#12263D;
}

.service-content p{
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;
  margin-bottom:14px;
}

.service-content ul{
  list-style:none;
  font-size:clamp(14px,1.05vw,17px);
  line-height:1.55;
}

.service-content ul li{
  margin-bottom:6px;
  display:flex;
}

.service-content ul li::before{
  content:"Ã¢Å“â€";
  color:#00A899;
  margin-right:10px;
  font-weight:600;
}

.service-content ul li.outcome::before{
  content:"";
}

.service-content ul li.outcome{
  font-weight:700;
}

/* ======================================================
   CAROUSEL (ONE LEFT + ONE RIGHT ARROW)
====================================================== */
.services-carousel{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:visible;
  width:100%;
}

.carousel-track{
  display:flex;
  transition:transform 0.45s ease;
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:5;
}

.carousel-arrow.left{ left:20px; }
.carousel-arrow.right{ right:20px; }

.carousel-arrow i{
  font-size:22px;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){
  .service-section{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-img{
    height:260px;
  }
}

.footer-section{
  width:100%;
  background:#ffffff;
  border-top:1px solid #e7e7e7;
  padding:24px 4vw;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-copy{
  font-size:14px;
  color:#2C325A;
  opacity:0.8;
}

.footer-logo img{
  width:90px;
  transform: scale(1.6);
}

.footer-follow{
  text-align:center;
}

.footer-follow-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
  color:#1c2640;
}

.footer-icons{
  display:flex;
  gap:18px;
  justify-content:center;
}

.footer-icons a{
  width:30px;
  height:30px;
  background: rgba(0,168,153,0.12);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00a899;
  font-size:18px;
  transition:.25s ease;
}

.footer-icons a:hover{
  transform:translateY(-2px);
  background:rgba(0,168,153,0.2);
}
.item-list {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.item {
  width: 200px;
  cursor: pointer;
}

/* Image */
.item-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content hidden by default */
.item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

/* Active state */
.item.active .item-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* GPU safety */
.service-img img {
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Center animation layer */
#center-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.center-preview {
  width: min(78vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.85);
}

/* ==============================
   STRIP NAVIGATION ARROWS
================================ */



.nav-btn:hover {
  background: #00A899;
  color: #fff;
  border-color: #00A899;
}

@media (max-width: 768px) {
  .services-nav {
    display: none; /* touch scroll only on mobile */
  }
}
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.9;
}

.carousel-arrow.left {
 left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow i {
  font-size: 22px;
}

/* ======================================================
   Ã¢Å“â€¦ SERVICES PAGE Ã¢â‚¬â€ MOBILE FINAL FIX
   Ã¢â€°Â¤768px ONLY | Desktop Safe
====================================================== */
@media (max-width:768px){

  /* GLOBAL SAFETY */
  body{
    overflow-x: clip;
  }

  /* ================= NAVBAR ================= */
  .navbar{
    height: 90px;
    padding:8px 14px;
    opacity:1 !important;
  }

  .nav-menu,
  .nav-call{
    display:none !important;
  }

  /* ================= HERO ================= */
  .services-hero{
    padding-top:76px;   /* navbar + breathing space */
    padding-bottom:24px;
    min-height:auto;
  }

  .services-hero h1{
    font-size:28px;
  }


  /* ================= CAROUSEL Ã¢â€ â€™ STACK ================= */
  .services-carousel{
    overflow:visible;
  }

  .carousel-arrow{
    display:none !important;
  }

  .carousel-track{
    display:flex;
    flex-direction:column;
    transform:none !important;
    gap:32px;
  }

  /* ================= SERVICE SECTIONS ================= */
  .service-section{
    grid-template-columns:1fr;
    padding:0 14px;
    gap:18px;
    transform:none !important;
  }

  .service-section.reverse{
    flex-direction:column;
  }

  /* ================= IMAGES ================= */
  .service-img{
    height:220px;
    border-radius:14px;
  }

  .service-img img{
    transform:none !important;
  }

  /* ================= CONTENT ================= */
  .service-content{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .service-content h2{
    font-size:22px;
  }

  .service-content p{
    font-size:15px;
  }

  .service-content ul{
    font-size:14px;
  }

  /* ================= REMOVE HOVER EFFECTS ================= */
  .service-section:hover,
  .service-section:hover .service-img img{
    transform:none !important;
  }

  /* ================= FOOTER ================= */
  .footer-row{
    flex-direction:column;
    gap:14px;
  }

  .footer-logo img{ transform: scale(1.3);
  }
}
/* Intro animation removed */


/* ======================================================
   GRO-MATRIX SERVICES THEME
====================================================== */
:root{
  --brand-mint:#05afa1;
  --accent:var(--brand-mint);
  --bg-0:#f4fbf9;
  --bg-1:#ffffff;
  --text-0:#0f172a;
  --text-1:#5b6573;
  --panel-0:#ffffff;
  --panel-line:rgba(15,23,42,0.08);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 45px rgba(15,23,42,0.08);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
  color:var(--text-0);
  min-height:100%;
  position:relative;
}

body.menu-open{ overflow:hidden; }

/* Navbar */
.navbar,
.services-page,
.footer-section{ position:relative; z-index:1; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 90px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(15,23,42,0.06);
  transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
  z-index:999;
}

.navbar-inner{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 64px;
}

.navbar.scrolled{
  height: 56px;
  padding:0;
  background:transparent;
  box-shadow:none;
  border-bottom:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.navbar.scrolled .navbar-inner{
  width:min(980px, calc(100% - 120px));
  height:56px;
  padding:0 28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:0px;
  justify-self:start; min-width:260px;}

    .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



    .navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 



.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:var(--text-0);
  transition:opacity .2s ease, color .2s ease;
}

.nav-menu a:hover{ opacity:0.7; }
.nav-menu a.services{ color:var(--accent); }

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
  justify-self:end;
}

.nav-call{
  padding:10px 22px;
  border:1px solid var(--accent);
  border-radius:999px;
  color:var(--text-0);
  text-decoration:none;
  font-weight:600;
  transition:background .25s ease, color .25s ease, border .25s ease;
}

.nav-call:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.8);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--text-0);
  transition:transform .3s ease, opacity .3s ease;
}

body.menu-open .nav-toggle span:nth-child(1){
  transform:translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2){
  transform:translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  z-index:1000;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-menu-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 24px 32px;
  position:relative;
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:30px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.15);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-close span{
  position:absolute;
  width:18px;
  height:2px;
  background:#0f172a;
}

.mobile-close span:nth-child(1){ transform:rotate(45deg); }
.mobile-close span:nth-child(2){ transform:rotate(-45deg); }


.mobile-links{
  margin-top:0;
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:center;
}

.mobile-links a{
  color:#0f172a;
  text-decoration:none;
  font-size:22px;
  font-weight:500;
  letter-spacing:0.2px;
}

.mobile-links a.active{ color:var(--accent); }

.mobile-links .mobile-cta{
  margin-top:16px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-align:center;
  text-decoration:none;
  min-width:220px;
}

/* Hero */
.services-page{ padding-bottom:60px; }

.services-hero{
  min-height:100vh;
  padding:clamp(200px, 30vh, 320px) 6vw clamp(150px, 22vh, 260px);
  display:flex;
  align-items:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.services-hero::after{
  content:"";
  position:absolute;
  right:-6%;
  top:52%;
  width:clamp(480px, 68vw, 1040px);
  height:clamp(480px, 68vw, 1040px);
  background:url("images/arrow.png") no-repeat center/contain;
  opacity:0.08;
  filter:blur(2px);
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-inner{
  max-width:min(1380px, 84vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:40px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s ease, transform 1s ease;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:2px;
  font-size:15px;
  letter-spacing:0.02em;
  text-transform:none;
  color:var(--text-1);
  margin:0;
  font-weight:500;
}

.hero-eyebrow .eyebrow-arrow{
    height:144px;
    width:auto;
    vertical-align:middle;
    margin-left:0;
    opacity:0.9;
  }

body.page-loaded .hero-inner{
  opacity:1;
  transform:translateY(0);
}

.services-hero h1{
  font-size:clamp(34px,4.4vw,68px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.38;
  color:var(--text-0);
  margin:0;
}

.hero-rotate{
  position:relative;
  display:inline-block;
  min-width:9ch;
  min-height:1em;
  margin-left:10px;
  white-space:nowrap;
  vertical-align:baseline;
}

.hero-rotate span{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translate3d(0,12px,0);
  animation:heroSwap 9s infinite;
  will-change:transform, opacity;
  background:linear-gradient(90deg, #00a899, #7be6dc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-rotate span:nth-child(1){ animation-delay:0s; }
.hero-rotate span:nth-child(2){ animation-delay:3s; }
.hero-rotate span:nth-child(3){ animation-delay:6s; }

@keyframes heroSwap{
  0%{ opacity:0; transform:translate3d(0,12px,0); }
  10%{ opacity:1; transform:translate3d(0,0,0); }
  30%{ opacity:1; transform:translate3d(0,0,0); }
  40%{ opacity:0; transform:translate3d(0,-10px,0); }
  100%{ opacity:0; transform:translate3d(0,-10px,0); }
}

.services-hero p{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  color:var(--text-1);
  line-height:1.8;
  max-width:1120px;
}

/* Services blocks */
.services-list{
  width:min(1160px,90vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.service-block{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:26px;
  padding:64px 68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:60px;
  box-shadow:var(--shadow);
  color:var(--text-0);
  position:relative;
}

.service-block::after{
  content:"";
  position:absolute;
  left:68px;
  right:68px;
  bottom:0;
  height:1px;
  background:var(--line);
  opacity:0.6;
}

.service-block:last-child::after{ display:none; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,175,161,0.12);
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  font-size:20px;
}

.service-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
}

.service-tagline{
  color:var(--text-1);
  font-size:clamp(16px,1.2vw,19px);
  line-height:1.7;
  max-width:460px;
}

.service-right{ display:flex; align-items:flex-start; }

.service-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-1);
  font-size:16px;
  line-height:1.7;
}

.service-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.service-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.7);
  margin-top:10px;
  flex-shrink:0;
}

.service-list li.outcome{
  color:var(--text-0);
  font-weight:600;
  margin-top:6px;
  border-radius:999px;
  padding:6px 14px;
  transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.service-list li.outcome::before{
  background:var(--accent);
  border-color:var(--accent);
}

.service-block.in-view .service-list li.outcome{
  color:var(--text-0);
  background:rgba(5,175,161,0.12);
  box-shadow:
    0 0 0 1px rgba(5,175,161,0.35),
    0 10px 24px rgba(5,175,161,0.18);
  transform:translateY(-2px);
}

/* Scroll reveal */
.service-block .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}

.service-block .reveal-icon{ transition-delay:0.04s; }
.service-block .reveal-title{ transition-delay:0.12s; }
.service-block .reveal-desc{ transition-delay:0.22s; }
.service-block .reveal-list{ transition-delay:0.28s; }

.service-block .reveal-list li{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

.service-block.in-view .reveal{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
.service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
.service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
.service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
.service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
.service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
.service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
.service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
.service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
.service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
.service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
.service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

.service-block.about-block{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  grid-template-columns:1fr;
}

.service-block.about-block::after{ display:none; }

.about-section-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 12px 0;
}

.about-paragraph{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

.about-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:1100px;
}

.about-approach-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin:10px auto;
  max-width:420px;
  justify-items:center;
}

.about-combines{
  font-weight:600;
  color:var(--text-0);
}

.about-approach-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,0.08);
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  transition:transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  opacity:0;
  transform:translate3d(0,12px,0);
  width:100%;
  text-align:center;
}

.about-approach-item.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}


/* Contact */
.contact-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.contact-hero .services-hero h1{
  max-width:980px;
  margin:0 auto;
}

.contact-hero .services-hero p{
  max-width:860px;
}

.contact-wrap{
  width:min(760px, 90vw);
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-label{
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--text-1);
  font-weight:600;
}

.contact-input{
  width:100%;
  border:1px solid rgba(15,23,42,0.1);
  border-radius:14px;
  padding:14px 16px;
  font-size:clamp(16px,1.4vw,18px);
  font-family:inherit;
  color:var(--text-0);
  background:#ffffff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-input:focus{
  outline:none;
  border-color:rgba(5,175,161,0.45);
  box-shadow:0 0 0 3px rgba(5,175,161,0.12);
}

.contact-textarea{
  resize:vertical;
}

.contact-submit{
  align-self:flex-start;
}

.cta-button.secondary{
  background:transparent;
  color:var(--text-0);
  border:1px solid var(--accent);
  box-shadow:none;
}

.cta-button.secondary:hover{
  background:var(--accent);
  color:#ffffff;
}

.contact-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-socials{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.contact-socials a{
  color:var(--text-1);
  text-decoration:none;
  font-weight:500;
}

.contact-socials a:hover{
  color:var(--accent);
}

.contact-cta{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
}

.contact-cta-title{
  margin:0;
  font-size:clamp(20px,2.2vw,28px);
  font-weight:600;
  color:var(--text-0);
}

@media (max-width: 700px){
  .contact-wrap{ width:100%; }
  .contact-submit{ align-self:stretch; }
}\n
/* Contact layout */
.contact-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:14px;
}

.contact-eyebrow{
  margin:0;
  font-size:13px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--text-1);
  font-weight:600;
}

.contact-subtitle{
  margin:0;
  font-size:clamp(18px,1.8vw,24px);
  color:var(--text-0);
  font-weight:600;
}

.contact-list{ margin-top:-40px; }

.contact-block{ padding:0; }

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);
  gap:56px;
  align-items:start;
}

.contact-copy{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.contact-trust-title{
  margin:0 0 10px 0;
  font-size:clamp(16px,1.4vw,20px);
  font-weight:600;
  color:var(--text-0);
}

.contact-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.contact-badges span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-size:14px;
  font-weight:600;
}

.contact-steps{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-step{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text-1);
  font-size:clamp(16px,1.4vw,20px);
}

.contact-step-num{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-weight:600;
}

.contact-form-wrap{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-label{
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--text-1);
  font-weight:600;
}

.contact-input{
  width:100%;
  border:1px solid rgba(15,23,42,0.1);
  border-radius:14px;
  padding:14px 16px;
  font-size:clamp(16px,1.4vw,18px);
  font-family:inherit;
  color:var(--text-0);
  background:#ffffff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-input:focus{
  outline:none;
  border-color:rgba(5,175,161,0.45);
  box-shadow:0 0 0 3px rgba(5,175,161,0.12);
}

.contact-textarea{ resize:vertical; }

.contact-submit{ align-self:flex-start; }

.contact-details{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--text-1);
  font-size:clamp(16px,1.4vw,20px);
}

.contact-detail-label{
  display:inline-block;
  min-width:90px;
  font-weight:600;
  color:var(--text-0);
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns:1fr; }
  .contact-submit{ align-self:stretch; }
}\n.about-approach-title{
  font-size:clamp(16px,1.2vw,19px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

@media (hover:hover) and (pointer:fine){
  .about-approach-grid:hover .about-approach-item{
    opacity:0.7;
  }
  .about-approach-item:hover{
    opacity:1;
    transform:translate3d(0,-4px,0);
    border-color:rgba(5,175,161,0.35);
    background:rgba(5,175,161,0.04);
  }
  .about-approach-item:hover 
/* Contact */
.contact-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.contact-hero .services-hero h1{
  max-width:980px;
  margin:0 auto;
}

.contact-hero .services-hero p{
  max-width:860px;
}

.contact-wrap{
  width:min(760px, 90vw);
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-label{
  font-size:14px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--text-1);
  font-weight:600;
}

.contact-input{
  width:100%;
  border:1px solid rgba(15,23,42,0.1);
  border-radius:14px;
  padding:14px 16px;
  font-size:clamp(16px,1.4vw,18px);
  font-family:inherit;
  color:var(--text-0);
  background:#ffffff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-input:focus{
  outline:none;
  border-color:rgba(5,175,161,0.45);
  box-shadow:0 0 0 3px rgba(5,175,161,0.12);
}

.contact-textarea{
  resize:vertical;
}

.contact-submit{
  align-self:flex-start;
}

.cta-button.secondary{
  background:transparent;
  color:var(--text-0);
  border:1px solid var(--accent);
  box-shadow:none;
}

.cta-button.secondary:hover{
  background:var(--accent);
  color:#ffffff;
}

.contact-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-socials{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}

.contact-socials a{
  color:var(--text-1);
  text-decoration:none;
  font-weight:500;
}

.contact-socials a:hover{
  color:var(--accent);
}

.contact-cta{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
}

.contact-cta-title{
  margin:0;
  font-size:clamp(20px,2.2vw,28px);
  font-weight:600;
  color:var(--text-0);
}

@media (max-width: 700px){
  .contact-wrap{ width:100%; }
  .contact-submit{ align-self:stretch; }
}\n
/* Contact layout */
.contact-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:14px;
}

.contact-eyebrow{
  margin:0;
  font-size:13px;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--text-1);
  font-weight:600;
}

.contact-subtitle{
  margin:0;
  font-size:clamp(18px,1.8vw,24px);
  color:var(--text-0);
  font-weight:600;
}

.contact-list{ margin-top:-40px; }

.contact-block{ padding:0; }

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.1fr);
  gap:56px;
  align-items:start;
}

.contact-copy{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.contact-trust-title{
  margin:0 0 10px 0;
  font-size:clamp(16px,1.4vw,20px);
  font-weight:600;
  color:var(--text-0);
}

.contact-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.contact-badges span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-size:14px;
  font-weight:600;
}

.contact-steps{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.contact-step{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text-1);
  font-size:clamp(16px,1.4vw,20px);
}

.contact-step-num{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-weight:600;
}

.contact-form-wrap{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.contact-label{
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--text-1);
  font-weight:600;
}

.contact-input{
  width:100%;
  border:1px solid rgba(15,23,42,0.1);
  border-radius:14px;
  padding:14px 16px;
  font-size:clamp(16px,1.4vw,18px);
  font-family:inherit;
  color:var(--text-0);
  background:#ffffff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-input:focus{
  outline:none;
  border-color:rgba(5,175,161,0.45);
  box-shadow:0 0 0 3px rgba(5,175,161,0.12);
}

.contact-textarea{ resize:vertical; }

.contact-submit{ align-self:flex-start; }

.contact-details{
  display:flex;
  flex-direction:column;
  gap:8px;
  color:var(--text-1);
  font-size:clamp(16px,1.4vw,20px);
}

.contact-detail-label{
  display:inline-block;
  min-width:90px;
  font-weight:600;
  color:var(--text-0);
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns:1fr; }
  .contact-submit{ align-self:stretch; }
}\n.about-approach-title{
    color:var(--accent);
  }
}

@media (max-width: 900px){
  .about-approach-grid{
    grid-template-columns:1fr;
    gap:12px;
    max-width:420px;
  }
}

.mission-vision{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:26px 0 70px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:36px;
  position:relative;
}

.mission-vision-block{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay:var(--mv-delay, 0ms);
}

.mission-vision-block.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.mission-vision::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background:rgba(15,23,42,0.12);
  transform:scaleY(0);
  transform-origin:top;
  opacity:0;
  transition:transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mission-vision.in-view::before{
  transform:scaleY(1);
  opacity:1;
}

.mission-vision-block:first-child{
  padding-right:24px;
}

.mission-vision-block:last-child{
  padding-left:24px;
}

.mission-vision-label{
  font-size:15px;
  letter-spacing:0.06em;
  text-transform:none;
  color:var(--text-1);
  font-weight:900;
  margin:0;
}

.mission-vision-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

@media (max-width: 800px){
  .mission-vision{
    grid-template-columns:1fr;
    gap:20px;
  }
  .mission-vision::before{
    display:none;
  }
  .mission-vision-block{
    --mv-delay:0ms;
    padding:0;
  }
  .mission-vision-block::before{
    content:"";
    width:56px;
    height:1px;
    background:rgba(15,23,42,0.12);
    transform:scaleX(0);
    transform-origin:left;
    opacity:0;
    transition:transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mission-vision-block.in-view::before{
    transform:scaleX(1);
    opacity:1;
  }
}

.belief-quote{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:0;
}

.belief-quote-box{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:28px 30px;
  text-align:center;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.belief-quote-box.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-quote-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-0);
  font-weight:500;
}

.belief-quote-attribution{
  margin:12px 0 0;
  font-size:14px;
  letter-spacing:0.04em;
  color:var(--text-1);
  font-weight:500;
}

@media (max-width: 800px){
  .belief-quote{
    width:min(100%, 90vw);
    padding:0;
  }
  .belief-quote-box{
    padding:24px 22px;
  }
}

.beliefs-section{
  width:100%;
  padding:50px 0 90px;
  background:#ffffff;
}

.beliefs-inner{
  width:min(1160px, 92vw);
  margin:0 auto;
}

.beliefs-title{
  font-size:clamp(30px,3.6vw,48px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 28px 0;
}

.beliefs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:34px;
  align-items:end;
}

.belief-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,251,250,0.95));
  border-radius:0;
  padding:44px 40px 34px;
  box-shadow:0 30px 80px rgba(15,23,42,0.18);
  min-height:520px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,12px,0);
  transition:opacity 0.8s ease, transform 0.8s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow:hidden;
  --fold:56px;
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
}

.belief-card:nth-child(1),
.belief-card:nth-child(3){
  min-height:560px;
}

.belief-card:nth-child(2),
.belief-card:nth-child(4){
  min-height:500px;
}

.belief-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:var(--fold);
  height:var(--fold);
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(5,175,161,0.10));
  border-bottom-left-radius:16px;
  -webkit-mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  box-shadow:-8px 8px 16px rgba(15,23,42,0.14);
  opacity:0.55;
  transition:opacity 0.35s ease, box-shadow 0.35s ease;
}

.belief-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:0;
  border:1px solid rgba(5,175,161,0.22);
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
  pointer-events:none;
}

.belief-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-title{
  font-size:clamp(22px,1.8vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

.belief-desc{
  margin:0;
  color:var(--text-1);
  font-size:clamp(17px,1.3vw,19px);
  line-height:1.8;
}

.belief-icon{
  margin-top:auto;
  width:150px;
  height:150px;
  opacity:0.75;
}

.belief-card:nth-child(1),
.belief-card:nth-child(2),
.belief-card:nth-child(3),
.belief-card:nth-child(4){ border-left:none; }

@media (hover:hover) and (pointer:fine){
  .belief-card:hover{
    transform:translate3d(0,-4px,0);
    background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(5,175,161,0.08));
    box-shadow:0 22px 60px rgba(15,23,42,0.16);
  }
  .belief-card:hover::before{
    opacity:0.7;
    box-shadow:-10px 10px 18px rgba(15,23,42,0.18);
  }
  .belief-card:hover::after{
    border-color:rgba(5,175,161,0.4);
  }
}

@media (max-width: 1024px){
  .beliefs-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px){
  .beliefs-grid{ grid-template-columns:1fr; }
  .belief-icon{ width:120px; height:120px; }
}

@media (max-width: 1024px){
  .nav-menu{  justify-self:center;  display:flex;  gap:56px;  font-size:16px;  font-weight:500; }
  .service-block{ padding:56px; gap:40px; }
}

@media (max-width: 980px){
  .nav-menu{  justify-self:center;  display:flex;  gap:56px;  font-size:16px;  font-weight:500; }
  .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  
  .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


  .navbar{ padding:0 8px; }
  .navbar.scrolled{ padding:0 8px; }
  .navbar-inner{ width:100%; padding:0 16px; }
  .navbar.scrolled .navbar-inner{
    width:100%;
    height: 56px;
    border-radius:14px;
    padding:0 16px;
  }
}

@media (max-width: 900px){
  .service-block{ grid-template-columns:1fr; }
  .service-tagline{ max-width:none; }
}

@media (max-width: 700px){
  .navbar{ padding:12px 20px; }
  .navbar.scrolled{ padding:8px 18px; }
  .navbar.scrolled .navbar-inner{
    width:calc(100% - 24px);
    height: 56px;
    border-radius:14px;
    padding:0 18px;
  }
  .services-hero{
    min-height:100svh;
    min-height:100dvh;
    padding:clamp(100px, 16vh, 140px) 7vw clamp(48px, 10vh, 90px);
  }
  .services-hero.contact-hero{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 7vw;
  }
  .services-hero::after{
    left:50%;
    right:auto;
    top:56%;
    width:clamp(320px, 90vw, 560px);
    height:clamp(320px, 90vw, 560px);
    opacity:0.07;
    filter:blur(3px);
    transform:translate(-50%, -50%);
  }
  .hero-inner{ max-width:100%; }
  .hero-eyebrow{ letter-spacing:0.02em; }
  .services-hero h1{ font-size:clamp(34px,9vw,48px); }
  .services-hero p{ font-size:16px; }
  .service-block{ padding:44px 24px; }
  .service-block::after{ left:24px; right:24px; }
  .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
  .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }

  .service-block.about-block{ text-align:center; }
  .about-stack{ margin:0 auto; }
  .about-approach-item{ text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate span{
    animation:none;
    opacity:0;
    transform:none;
    position:static;
    display:none;
  }
  .hero-rotate span:first-child{
    display:inline;
    opacity:1;
  }
  .about-approach-item{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-card{
    opacity:1;
    transform:none;
    transition:none;
  }
  .mission-vision-block{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-quote-box{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.footer-section{
  border-top:1px solid var(--line);
  background:var(--bg-1);
}

.cta-band{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6vw 10px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 10px 30px rgba(5,175,161,0.18);
}

.cta-arrow{
  font-size:18px;
  transition:transform .25s ease;
}

.cta-button:hover{
  background:var(--accent);
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(5,175,161,0.28);
}

.cta-button:hover .cta-arrow{
  transform:translateX(4px);
}

.footer-copy,
.footer-follow-title{ color:var(--text-1); }

.footer-icons a{ color:var(--text-0); }

/* ======================================================
   CONTACT PAGE ? SKETCHBRAHMA-INSPIRED LAYOUT
====================================================== */
.contact-hero .hero-inner{
  align-items:flex-start;
  text-align:left;
  gap:18px;
}

.contact-eyebrow{
  font-size:13px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
  margin:0;
}

.contact-subtitle{
  font-size:clamp(16px,1.6vw,20px);
  color:var(--text-0);
  font-weight:600;
  margin:0;
}

.contact-list{ margin-top:clamp(24px, 6vh, 80px); }

.contact-block{ padding:0; }

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,0.9fr);
  gap:72px;
  align-items:start;
}

.contact-form-wrap{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.contact-section-title{
  font-size:clamp(16px,1.3vw,18px);
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--text-0);
  margin:0;
}

.contact-section-note{
  margin:0;
  font-size:clamp(16px,1.6vw,20px);
  line-height:1.8;
  color:var(--text-1);
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:16px;
}

.contact-label{
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:600;
  color:var(--text-1);
}

.contact-input{
  border:0;
  border-bottom:1px solid rgba(15,23,42,0.16);
  border-radius:0;
  padding:10px 0 12px;
  background:transparent;
  color:var(--text-0);
  font-size:clamp(16px,1.4vw,19px);
}

select.contact-input{
  padding-left:10px;
}

select.contact-input option{
  padding-left:10px;
}

.contact-input:focus{
  outline:none;
  border-bottom-color:var(--accent);
  box-shadow:none;
}

.contact-input::placeholder{
  color:rgba(15,23,42,0.35);
}

.contact-input select,
select.contact-input{
  appearance:none;
  -webkit-appearance:none;
  background:transparent;
}

.contact-textarea{
  resize:vertical;
  min-height:120px;
}

.contact-submit{
  align-self:flex-start;
  padding:12px 28px;
  border-radius:10px;
  border:none;
  background:var(--accent);
  color:#ffffff;
  font-weight:600;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(5,175,161,0.2);
}

.contact-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(5,175,161,0.25);
}

.contact-info{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.contact-info-group h3{
  margin:0 0 8px;
  font-size:clamp(18px,1.5vw,22px);
  font-weight:600;
  color:var(--text-0);
}

.contact-info-group p{
  margin:0;
  font-size:clamp(15px,1.4vw,18px);
  line-height:1.7;
  color:var(--text-1);
}

.contact-link{
  display:inline-flex;
  margin-top:6px;
  font-size:clamp(14px,1.2vw,16px);
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}

.contact-link:hover{
  text-decoration:underline;
}

.contact-socials{
  display:flex;
  gap:12px;
  align-items:center;
}

.contact-socials a{
  width:36px;
  height:36px;
  border-radius:8px;
  background:rgba(5,175,161,0.12);
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease, background .2s ease;
}

.contact-socials a:hover{
  transform:translateY(-2px);
  background:rgba(5,175,161,0.2);
}

.contact-chat{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.contact-chat:hover{
  background:rgba(5,175,161,0.12);
  transform:translateY(-2px);
}

/* CTA + Map (Above Footer) */
.contact-map-section{
  width:min(1160px, 92vw);
  margin:30px auto 40px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.contact-map-title{
  font-size:clamp(28px,3.6vw,46px);
  font-weight:800;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0;
}

.contact-map-subtitle{
  font-size:clamp(16px,1.6vw,20px);
  color:var(--text-1);
  margin:0;
}

.contact-map-cta{
  align-self:center;
  margin-top:6px;
}

.contact-map-frame{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,0.08);
  box-shadow:0 18px 45px rgba(15,23,42,0.08);
}

.contact-map-frame iframe{
  width:100%;
  height:380px;
  border:0;
  display:block;
}

.faq-section{
  width:min(1180px, 92vw);
  margin:0 auto 40px;
  padding:28px 0 20px;
}

.faq-block-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 18px 0;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.faq-item{
  border:1px solid rgba(15,23,42,0.10);
  border-radius:22px;
  background:#ffffff;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(15,23,42,0.06);
  transition:background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item.active{
  background:linear-gradient(135deg, rgba(5,175,161,0.12), rgba(255,255,255,0.95));
  border-color:rgba(5,175,161,0.35);
  box-shadow:0 18px 45px rgba(5,175,161,0.12);
}

.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 26px;
  background:transparent;
  border:none;
  text-align:left;
  font-size:clamp(16px,1.25vw,19px);
  font-weight:600;
  color:var(--text-0);
  cursor:pointer;
}

.faq-question span:first-child{
  flex:1;
  font-size:clamp(16px,1.3vw,20px);
  line-height:1.5;
}

.faq-icon{
  width:30px;
  height:30px;
  border-radius:50%;
  border:1px solid rgba(15,23,42,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:var(--text-0);
  transition:transform 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  flex-shrink:0;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
  color:var(--accent);
  border-color:rgba(5,175,161,0.45);
}

.faq-answer{
  padding:0 26px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translate3d(0,8px,0);
  transition:max-height 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
}

.faq-item.active .faq-answer{
  max-height:320px;
  opacity:1;
  transform:translate3d(0,0,0);
  padding-bottom:20px;
}

.faq-answer p{
  margin:0;
  color:var(--text-1);
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.75;
}

@media (max-width: 700px){
  .contact-map-frame iframe{
    height:300px;
  }
}

@media (max-width: 900px){
  .contact-grid{ grid-template-columns:1fr; }
  .contact-hero .hero-inner{ align-items:center; text-align:center; }
  .contact-submit{ align-self:stretch; }
  .contact-info{ align-items:center; text-align:center; }
  .contact-info-group,
  .contact-info-group p,
  .contact-info-group h3{
    text-align:center;
  }
  .contact-socials{
    justify-content:center;
  }
  .contact-link{
    justify-content:center;
  }
  .faq-block-title{ text-align:center; }
  .faq-question{ text-align:left; }
}

@media (prefers-reduced-motion: reduce){
  .faq-answer{ transition:none; }
}

/* Mobile navbar fix */
@media (max-width: 980px){
  .navbar-inner{ grid-template-columns:auto 1fr auto; align-items:center; padding:0 16px; }
  .nav-left{ min-width:0; justify-self:start; }
  .nav-right{ justify-self:end; }
  .nav-menu,
  .nav-call{ display:none !important; }
  .nav-toggle{ display:flex; }
  .nav-logo{ height:44px; width:auto; max-width:150px; }
  .nav-arrow{ height:28px; width:auto; }
}
@media (max-width: 700px){
  .navbar{ height:60px; }
  .nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }
}.nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }


.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }

/* ===== Styles from blog.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;color:#111;
}

/* ======================================================
   NAVBAR (Same as About Page)
====================================================== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  height: 90px;
  padding:14px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;

  background: linear-gradient(
    90deg,
    rgba(162,244,230,0.08),
    rgba(216,255,251,0.08)
  );
  backdrop-filter: blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.25);
  opacity:1;
  transition: opacity 1s ease, box-shadow .35s ease;
  font-family: 'Poppins', sans-serif;
}
.navbar a{
  text-decoration: none;
  color: inherit;
}
.navbar.shadow{
  box-shadow:0 5px 18px rgba(0,0,0,0.18);
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



.nav-menu{  justify-self:center;  display:flex; gap:56px; font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:#2C325A;
  font-weight:500;
}

.nav-menu a:hover{ opacity:.6; }

.nav-call{
  padding:8px 22px;
  border:2px solid #2C325A;
  border-radius:8px;
  color:#2C325A;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.nav-call:hover{
  background:#2C325A;
  color:white;
}


/* ======================================================
   MEGA MENU (Hover Only)
====================================================== */
.mega-menu{
    position:absolute;top:100%;left:0;width:100%;
    display:none;z-index:999;
}
.mega-container{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    max-height:80vh;
    overflow-y:auto;
    padding:55px 65px;
    margin-top:12px;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:65px;position:relative;
}
.mega-col{
    padding:28px;border-radius:18px;
    position:relative;overflow:hidden;
}
.mega-col h3{font-size:17px;font-weight:700;margin-bottom:16px;color:#000;}
.mega-col ul{list-style:none;padding:0;margin:0;}
.mega-col ul li{
    padding:8px 0;font-size:14px;
    opacity:0.85;transition:.2s;
}
.mega-col ul li:hover{opacity:1;color:#00A899;transform:translateX(6px);cursor:pointer;}

.mega-col::before{
    content:"";position:absolute;inset:0;
    background-size:cover;background-position:center;opacity:0.45;
}
.mega-col::after{
    content:"";position:absolute;top:0;left:0;width:100%;height:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0.20),rgba(0,0,0,0.35));
    border-radius:inherit;z-index:0;
}
.mega-col *{position:relative;z-index:1;}
.mega-col:hover{
    border:1px solid rgba(0,168,153,0.18);
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,0.15);
}

.mega-container:before,
.mega-container:after{
    content:"";position:absolute;top:18%;
    width:1px;height:64%;
    background:rgba(0,0,0,0.06);
}
.mega-container:before{left:36%;}
.mega-container:after{left:69%;}

.nav-menu a.services:hover + .mega-menu,
.mega-menu:hover{display:block;}

.mega-col:nth-child(1)::before{background-image:url("images/marketing-bg.jpeg");}
.mega-col:nth-child(2)::before{background-image:url("images/advertising.png");}
.mega-col:nth-child(3)::before{background-image:url("images/automation-bg.png");}
.mega-col:nth-child(4)::before{background-image:url("images/Ui-bg.jpg");}
.mega-col:nth-child(5)::before{background-image:url("images/dev-bg.png");}
.mega-col:nth-child(6)::before{background-image:url("images/strategy-bg.png");}

/* ======================================================
   SERVICES HERO (MATCH ABOUT STYLE)
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px); /* navbar height + spacing */
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;   /* Ã°Å¸â€Â¥ KEY FIX */
  
}
.services-hero h1{
  font-size:clamp(40px,4vw,65px);
  font-weight:800;
  color:#000;
  opacity:1;
  transform:none;
}


/* ======================================================
   SERVICE ROWS
====================================================== */
.service-section {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* image | content */
  gap: 60px;
  padding: 0 8vw;
  align-items: center;
}

.service-section.visible{
    opacity:1;transform:translateY(0);
}
.service-section:hover{
    transform:translateY(-9px);
}
.service-section:first-of-type{
  margin-top: 40px;
}


/* Make outcome bold */
/* Remove tick ONLY for outcome */
ul li.outcome::before {
  content: "" !important;
  display: none !important;
}

/* Emphasize outcome */
ul li.outcome {
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}
.service-img,
.service-img img {
  will-change: transform, opacity;
  transform: translateZ(0);
}



/* IMAGE BLOCK */
.service-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section:hover .service-img img{
    transform:scale(1.1);
}

/* CONTENT BLOCK */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
}

/* CONTENT Ã¢â‚¬â€ REVEALED AFTER GSAP */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
    font-size:clamp(24px,2.4vw,38px);
    font-weight:700;margin-bottom:8px;
    color:#12263D;
}
.service-content p{
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.55;margin-bottom:14px;
}
.service-content ul{
    list-style:none;
    font-size:clamp(14px,1.05vw,17px);
    line-height:1.55;
}
.service-content ul li{
    margin-bottom:6px;
    display:flex;
    align-items:flex-start;
}
.service-content ul li:before{
    content:"Ã¢Å“â€";
    font-size:15px;
    color:#00A899;
    margin-right:10px;
    margin-top:2px;
    font-weight:600;
}
.reverse{flex-direction:row-reverse;}
.service-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  perspective: 1200px;
}
/* ======================================================
   SERVICES HERO
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px);
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;
}


/* ======================================================
   SERVICE LAYOUT
====================================================== */
.service-section{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  padding:0 8vw;
  align-items:center;
  margin-top:40px;
}

/* ======================================================
   IMAGE BLOCK
====================================================== */
.service-img{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  will-change:transform, opacity;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translateZ(0);
}

/* ======================================================
   CONTENT BLOCK (VISIBLE AFTER GSAP)
====================================================== */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CONTENT Ã¢â‚¬â€ UNLOCKED AFTER ANIMATION */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
  font-size:clamp(24px,2.4vw,38px);
  font-weight:700;
  margin-bottom:8px;
  color:#12263D;
}

.service-content p{
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;
  margin-bottom:14px;
}

.service-content ul{
  list-style:none;
  font-size:clamp(14px,1.05vw,17px);
  line-height:1.55;
}

.service-content ul li{
  margin-bottom:6px;
  display:flex;
}

.service-content ul li::before{
  content:"Ã¢Å“â€";
  color:#00A899;
  margin-right:10px;
  font-weight:600;
}

.service-content ul li.outcome::before{
  content:"";
}

.service-content ul li.outcome{
  font-weight:700;
}

/* ======================================================
   CAROUSEL (ONE LEFT + ONE RIGHT ARROW)
====================================================== */
.services-carousel{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:visible;
  width:100%;
}

.carousel-track{
  display:flex;
  transition:transform 0.45s ease;
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:5;
}

.carousel-arrow.left{ left:20px; }
.carousel-arrow.right{ right:20px; }

.carousel-arrow i{
  font-size:22px;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){
  .service-section{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-img{
    height:260px;
  }
}

.footer-section{
  width:100%;
  background:#ffffff;
  border-top:1px solid #e7e7e7;
  padding:24px 4vw;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-copy{
  font-size:14px;
  color:#2C325A;
  opacity:0.8;
}

.footer-logo img{
  width:90px;
  transform: scale(1.6);
}

.footer-follow{
  text-align:center;
}

.footer-follow-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
  color:#1c2640;
}

.footer-icons{
  display:flex;
  gap:18px;
  justify-content:center;
}

.footer-icons a{
  width:30px;
  height:30px;
  background: rgba(0,168,153,0.12);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00a899;
  font-size:18px;
  transition:.25s ease;
}

.footer-icons a:hover{
  transform:translateY(-2px);
  background:rgba(0,168,153,0.2);
}
.item-list {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.item {
  width: 200px;
  cursor: pointer;
}

/* Image */
.item-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content hidden by default */
.item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

/* Active state */
.item.active .item-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* GPU safety */
.service-img img {
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Center animation layer */
#center-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.center-preview {
  width: min(78vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.85);
}

/* ==============================
   STRIP NAVIGATION ARROWS
================================ */



.nav-btn:hover {
  background: #00A899;
  color: #fff;
  border-color: #00A899;
}

@media (max-width: 768px) {
  .services-nav {
    display: none; /* touch scroll only on mobile */
  }
}
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.9;
}

.carousel-arrow.left {
 left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow i {
  font-size: 22px;
}

/* ======================================================
   Ã¢Å“â€¦ SERVICES PAGE Ã¢â‚¬â€ MOBILE FINAL FIX
   Ã¢â€°Â¤768px ONLY | Desktop Safe
====================================================== */
@media (max-width:768px){

  /* GLOBAL SAFETY */
  body{
    overflow-x: clip;
  }

  /* ================= NAVBAR ================= */
  .navbar{
    height: 90px;
    padding:8px 14px;
    opacity:1 !important;
  }

  .nav-menu,
  .nav-call{
    display:none !important;
  }

  /* ================= HERO ================= */
  .services-hero{
    padding-top:76px;   /* navbar + breathing space */
    padding-bottom:24px;
    min-height:auto;
  }

  .services-hero h1{
    font-size:28px;
  }


  /* ================= CAROUSEL Ã¢â€ â€™ STACK ================= */
  .services-carousel{
    overflow:visible;
  }

  .carousel-arrow{
    display:none !important;
  }

  .carousel-track{
    display:flex;
    flex-direction:column;
    transform:none !important;
    gap:32px;
  }

  /* ================= SERVICE SECTIONS ================= */
  .service-section{
    grid-template-columns:1fr;
    padding:0 14px;
    gap:18px;
    transform:none !important;
  }

  .service-section.reverse{
    flex-direction:column;
  }

  /* ================= IMAGES ================= */
  .service-img{
    height:220px;
    border-radius:14px;
  }

  .service-img img{
    transform:none !important;
  }

  /* ================= CONTENT ================= */
  .service-content{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .service-content h2{
    font-size:22px;
  }

  .service-content p{
    font-size:15px;
  }

  .service-content ul{
    font-size:14px;
  }

  /* ================= REMOVE HOVER EFFECTS ================= */
  .service-section:hover,
  .service-section:hover .service-img img{
    transform:none !important;
  }

  /* ================= FOOTER ================= */
  .footer-row{
    flex-direction:column;
    gap:14px;
  }

  .footer-logo img{ transform: scale(1.3);
  }
}
/* Intro animation removed */


/* ======================================================
   GRO-MATRIX SERVICES THEME
====================================================== */
:root{
  --brand-mint:#05afa1;
  --accent:var(--brand-mint);
  --bg-0:#f4fbf9;
  --bg-1:#ffffff;
  --text-0:#0f172a;
  --text-1:#5b6573;
  --panel-0:#ffffff;
  --panel-line:rgba(15,23,42,0.08);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 45px rgba(15,23,42,0.08);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
  color:var(--text-0);
  min-height:100%;
  position:relative;
}

body.menu-open{ overflow:hidden; }

/* Navbar */
.navbar,
.services-page,
.footer-section{ position:relative; z-index:1; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 90px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(15,23,42,0.06);
  transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
  z-index:999;
}

.navbar-inner{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 64px;
}

.navbar.scrolled{
  height: 56px;
  padding:0;
  background:transparent;
  box-shadow:none;
  border-bottom:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.navbar.scrolled .navbar-inner{
  width:min(980px, calc(100% - 120px));
  height:56px;
  padding:0 28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:0px;
  justify-self:start;
  min-width:260px;}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}





.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.nav-menu{
  justify-self:center;
  display:flex;
  gap:56px;
  font-size:16px;
  font-weight:500;
}

.nav-menu a{
  text-decoration:none;
  color:var(--text-0);
  transition:opacity .2s ease, color .2s ease;
}

.nav-menu a:hover{ opacity:0.7; }
.nav-menu a.services{ color:var(--accent); }

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
  justify-self:end;
}

.nav-call{
  padding:10px 22px;
  border:1px solid var(--accent);
  border-radius:999px;
  color:var(--text-0);
  text-decoration:none;
  font-weight:600;
  transition:background .25s ease, color .25s ease, border .25s ease;
}

.nav-call:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.8);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--text-0);
  transition:transform .3s ease, opacity .3s ease;
}

body.menu-open .nav-toggle span:nth-child(1){
  transform:translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2){
  transform:translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  z-index:1000;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-menu-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 24px 32px;
  position:relative;
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:30px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.15);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-close span{
  position:absolute;
  width:18px;
  height:2px;
  background:#0f172a;
}

.mobile-close span:nth-child(1){ transform:rotate(45deg); }
.mobile-close span:nth-child(2){ transform:rotate(-45deg); }


.mobile-links{
  margin-top:0;
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:center;
}

.mobile-links a{
  color:#0f172a;
  text-decoration:none;
  font-size:22px;
  font-weight:500;
  letter-spacing:0.2px;
}

.mobile-links a.active{ color:var(--accent); }

.mobile-links .mobile-cta{
  margin-top:16px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-align:center;
  text-decoration:none;
  min-width:220px;
}

/* Hero */
.services-page{ padding-bottom:60px; }

.services-hero{
  min-height:100vh;
  padding:clamp(200px, 30vh, 320px) 6vw clamp(150px, 22vh, 260px);
  display:flex;
  align-items:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.services-hero::after{
  content:"";
  position:absolute;
  right:-6%;
  top:52%;
  width:clamp(480px, 68vw, 1040px);
  height:clamp(480px, 68vw, 1040px);
  background:url("images/arrow.png") no-repeat center/contain;
  opacity:0.08;
  filter:blur(2px);
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-inner{
  max-width:min(1380px, 84vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:40px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s ease, transform 1s ease;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:2px;
  font-size:15px;
  letter-spacing:0.02em;
  text-transform:none;
  color:var(--text-1);
  margin:0;
  font-weight:500;
}

.hero-eyebrow .eyebrow-arrow{
    height:144px;
    width:auto;
    vertical-align:middle;
    margin-left:0;
    opacity:0.9;
  }

body.page-loaded .hero-inner{
  opacity:1;
  transform:translateY(0);
}

.services-hero h1{
  font-size:clamp(34px,4.4vw,68px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.38;
  color:var(--text-0);
  margin:0;
}

.hero-rotate{
  position:relative;
  display:inline-block;
  min-width:9ch;
  min-height:1em;
  margin-left:10px;
  white-space:nowrap;
  vertical-align:baseline;
}

.hero-rotate span{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translate3d(0,12px,0);
  animation:heroSwap 9s infinite;
  will-change:transform, opacity;
  background:linear-gradient(90deg, #00a899, #7be6dc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-rotate span:nth-child(1){ animation-delay:0s; }
.hero-rotate span:nth-child(2){ animation-delay:3s; }
.hero-rotate span:nth-child(3){ animation-delay:6s; }

@keyframes heroSwap{
  0%{ opacity:0; transform:translate3d(0,12px,0); }
  10%{ opacity:1; transform:translate3d(0,0,0); }
  30%{ opacity:1; transform:translate3d(0,0,0); }
  40%{ opacity:0; transform:translate3d(0,-10px,0); }
  100%{ opacity:0; transform:translate3d(0,-10px,0); }
}

.services-hero p{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  color:var(--text-1);
  line-height:1.8;
  max-width:1120px;
}

/* Services blocks */
.services-list{
  width:min(1160px,90vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.service-block{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:26px;
  padding:64px 68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:60px;
  box-shadow:var(--shadow);
  color:var(--text-0);
  position:relative;
}

.service-block::after{
  content:"";
  position:absolute;
  left:68px;
  right:68px;
  bottom:0;
  height:1px;
  background:var(--line);
  opacity:0.6;
}

.service-block:last-child::after{ display:none; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,175,161,0.12);
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  font-size:20px;
}

.service-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
}

.service-tagline{
  color:var(--text-1);
  font-size:clamp(16px,1.2vw,19px);
  line-height:1.7;
  max-width:460px;
}

.service-right{ display:flex; align-items:flex-start; }

.service-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-1);
  font-size:16px;
  line-height:1.7;
}

.service-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.service-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.7);
  margin-top:10px;
  flex-shrink:0;
}

.service-list li.outcome{
  color:var(--text-0);
  font-weight:600;
  margin-top:6px;
  border-radius:999px;
  padding:6px 14px;
  transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.service-list li.outcome::before{
  background:var(--accent);
  border-color:var(--accent);
}

.service-block.in-view .service-list li.outcome{
  color:var(--text-0);
  background:rgba(5,175,161,0.12);
  box-shadow:
    0 0 0 1px rgba(5,175,161,0.35),
    0 10px 24px rgba(5,175,161,0.18);
  transform:translateY(-2px);
}

/* Scroll reveal */
.service-block .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}

.service-block .reveal-icon{ transition-delay:0.04s; }
.service-block .reveal-title{ transition-delay:0.12s; }
.service-block .reveal-desc{ transition-delay:0.22s; }
.service-block .reveal-list{ transition-delay:0.28s; }

.service-block .reveal-list li{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

.service-block.in-view .reveal{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
.service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
.service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
.service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
.service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
.service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
.service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
.service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
.service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
.service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
.service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
.service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

.service-block.about-block{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  grid-template-columns:1fr;
}

.service-block.about-block::after{ display:none; }

.about-section-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 12px 0;
}

.about-paragraph{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

.about-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:1100px;
}

.about-approach-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin:10px auto;
  max-width:420px;
  justify-items:center;
}

.about-combines{
  font-weight:600;
  color:var(--text-0);
}

.about-approach-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,0.08);
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  transition:transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  opacity:0;
  transform:translate3d(0,12px,0);
  width:100%;
  text-align:center;
}

.about-approach-item.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.about-approach-title{
  font-size:clamp(16px,1.2vw,19px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

/* Blog list */
.blog-list{
  width:min(1160px,90vw);
  margin:0 auto;
  padding:10px 0 80px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:28px;
}

.blog-card{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:20px;
  padding:26px 24px;
  box-shadow:0 14px 34px rgba(15,23,42,0.08);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  opacity:0;
  transform:translate3d(0,16px,0);
}

.blog-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.blog-card-link{
  display:flex;
  flex-direction:column;
  gap:12px;
  text-decoration:none;
  color:inherit;
  height:100%;
}

.blog-kicker{
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--text-1);
  margin:0;
}

.blog-title{
  font-size:clamp(20px,2.1vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
  line-height:1.35;
}

.blog-excerpt{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:var(--text-1);
}

.blog-read{
  margin-top:auto;
  font-size:14px;
  font-weight:600;
  color:var(--accent);
  display:inline-flex;
  gap:6px;
  align-items:center;
}

@media (hover:hover) and (pointer:fine){
  .blog-card:hover{
    transform:translate3d(0,-4px,0);
    box-shadow:0 20px 40px rgba(15,23,42,0.12);
    border-color:rgba(5,175,161,0.25);
  }
}

@media (max-width: 1024px){
  .blog-list{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px){
  .blog-list{ grid-template-columns:1fr; }
}

@media (hover:hover) and (pointer:fine){
  .about-approach-grid:hover .about-approach-item{
    opacity:0.7;
  }
  .about-approach-item:hover{
    opacity:1;
    transform:translate3d(0,-4px,0);
    border-color:rgba(5,175,161,0.35);
    background:rgba(5,175,161,0.04);
  }
  .about-approach-item:hover .about-approach-title{
    color:var(--accent);
  }
}

@media (max-width: 900px){
  .about-approach-grid{
    grid-template-columns:1fr;
    gap:12px;
    max-width:420px;
  }
}

.mission-vision{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:26px 0 70px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:36px;
  position:relative;
}

.mission-vision-block{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay:var(--mv-delay, 0ms);
}

.mission-vision-block.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.mission-vision::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background:rgba(15,23,42,0.12);
  transform:scaleY(0);
  transform-origin:top;
  opacity:0;
  transition:transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mission-vision.in-view::before{
  transform:scaleY(1);
  opacity:1;
}

.mission-vision-block:first-child{
  padding-right:24px;
}

.mission-vision-block:last-child{
  padding-left:24px;
}

.mission-vision-label{
  font-size:15px;
  letter-spacing:0.06em;
  text-transform:none;
  color:var(--text-1);
  font-weight:900;
  margin:0;
}

.mission-vision-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

@media (max-width: 800px){
  .mission-vision{
    grid-template-columns:1fr;
    gap:20px;
  }
  .mission-vision::before{
    display:none;
  }
  .mission-vision-block{
    --mv-delay:0ms;
    padding:0;
  }
  .mission-vision-block::before{
    content:"";
    width:56px;
    height:1px;
    background:rgba(15,23,42,0.12);
    transform:scaleX(0);
    transform-origin:left;
    opacity:0;
    transition:transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mission-vision-block.in-view::before{
    transform:scaleX(1);
    opacity:1;
  }
}

.belief-quote{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:0;
}

.belief-quote-box{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:28px 30px;
  text-align:center;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.belief-quote-box.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-quote-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-0);
  font-weight:500;
}

.belief-quote-attribution{
  margin:12px 0 0;
  font-size:14px;
  letter-spacing:0.04em;
  color:var(--text-1);
  font-weight:500;
}

@media (max-width: 800px){
  .belief-quote{
    width:min(100%, 90vw);
    padding:0;
  }
  .belief-quote-box{
    padding:24px 22px;
  }
}

.beliefs-section{
  width:100%;
  padding:50px 0 90px;
  background:#ffffff;
}

.beliefs-inner{
  width:min(1160px, 92vw);
  margin:0 auto;
}

.beliefs-title{
  font-size:clamp(30px,3.6vw,48px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 28px 0;
}

.beliefs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:34px;
  align-items:end;
}

.belief-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,251,250,0.95));
  border-radius:0;
  padding:44px 40px 34px;
  box-shadow:0 30px 80px rgba(15,23,42,0.18);
  min-height:520px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,12px,0);
  transition:opacity 0.8s ease, transform 0.8s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow:hidden;
  --fold:56px;
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
}

.belief-card:nth-child(1),
.belief-card:nth-child(3){
  min-height:560px;
}

.belief-card:nth-child(2),
.belief-card:nth-child(4){
  min-height:500px;
}

.belief-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:var(--fold);
  height:var(--fold);
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(5,175,161,0.10));
  border-bottom-left-radius:16px;
  -webkit-mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  box-shadow:-8px 8px 16px rgba(15,23,42,0.14);
  opacity:0.55;
  transition:opacity 0.35s ease, box-shadow 0.35s ease;
}

.belief-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:0;
  border:1px solid rgba(5,175,161,0.22);
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
  pointer-events:none;
}

.belief-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-title{
  font-size:clamp(22px,1.8vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

.belief-desc{
  margin:0;
  color:var(--text-1);
  font-size:clamp(17px,1.3vw,19px);
  line-height:1.8;
}

.belief-icon{
  margin-top:auto;
  width:150px;
  height:150px;
  opacity:0.75;
}

.belief-card:nth-child(1),
.belief-card:nth-child(2),
.belief-card:nth-child(3),
.belief-card:nth-child(4){ border-left:none; }

@media (hover:hover) and (pointer:fine){
  .belief-card:hover{
    transform:translate3d(0,-4px,0);
    background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(5,175,161,0.08));
    box-shadow:0 22px 60px rgba(15,23,42,0.16);
  }
  .belief-card:hover::before{
    opacity:0.7;
    box-shadow:-10px 10px 18px rgba(15,23,42,0.18);
  }
  .belief-card:hover::after{
    border-color:rgba(5,175,161,0.4);
  }
}

@media (max-width: 1024px){
  .beliefs-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px){
  .beliefs-grid{ grid-template-columns:1fr; }
  .belief-icon{ width:120px; height:120px; }
}

@media (max-width: 1024px){
  .nav-menu{ justify-self:center; display:flex; gap:56px; font-size:16px; font-weight:500; }
  .service-block{ padding:56px; gap:40px; }
}

@media (max-width: 980px){
  .nav-menu{ justify-self:center; display:flex; gap:56px; font-size:16px; font-weight:500; }
  .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  
  .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


  .navbar{ padding:0 8px; }
  .navbar.scrolled{ padding:0 8px; }
  .navbar-inner{ width:100%; padding:0 16px; }
  .navbar.scrolled .navbar-inner{
    width:100%;
    height: 56px;
    border-radius:14px;
    padding:0 16px;
  }
}

@media (max-width: 900px){
  .service-block{ grid-template-columns:1fr; }
  .service-tagline{ max-width:none; }
}

@media (max-width: 700px){
  .navbar{ padding:12px 20px; }
  .navbar.scrolled{ padding:8px 18px; }
  .navbar.scrolled .navbar-inner{
    width:calc(100% - 24px);
    height: 56px;
    border-radius:14px;
    padding:0 18px;
  }
  .services-hero{
    min-height:100svh;
    min-height:100dvh;
    padding:clamp(100px, 16vh, 140px) 7vw clamp(48px, 10vh, 90px);
  }
  .services-hero::after{
    left:50%;
    right:auto;
    top:56%;
    width:clamp(320px, 90vw, 560px);
    height:clamp(320px, 90vw, 560px);
    opacity:0.07;
    filter:blur(3px);
    transform:translate(-50%, -50%);
  }
  .hero-inner{ max-width:100%; }
  .hero-eyebrow{ letter-spacing:0.02em; }
  .services-hero h1{ font-size:clamp(34px,9vw,48px); }
  .services-hero p{ font-size:16px; }
  .service-block{ padding:44px 24px; }
  .service-block::after{ left:24px; right:24px; }
  .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
  .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }

  .service-block.about-block{ text-align:center; }
  .about-stack{ margin:0 auto; }
  .about-approach-item{ text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate span{
    animation:none;
    opacity:0;
    transform:none;
    position:static;
    display:none;
  }
  .hero-rotate span:first-child{
    display:inline;
    opacity:1;
  }
  .about-approach-item{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-card{
    opacity:1;
    transform:none;
    transition:none;
  }
  .mission-vision-block{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-quote-box{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.footer-section{
  border-top:1px solid var(--line);
  background:var(--bg-1);
}

.cta-band{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6vw 10px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 10px 30px rgba(5,175,161,0.18);
}

.cta-arrow{
  font-size:18px;
  transition:transform .25s ease;
}

.cta-button:hover{
  background:var(--accent);
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(5,175,161,0.28);
}

.cta-button:hover .cta-arrow{
  transform:translateX(4px);
}

.footer-copy,
.footer-follow-title{ color:var(--text-1); }

.footer-icons a{ color:var(--text-0); }\r\n
.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }

/* ===== Styles from blog1.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;color:#111;
}

/* ======================================================
   NAVBAR (Same as About Page)
====================================================== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  height: 90px;
  padding:14px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;

  background: linear-gradient(
    90deg,
    rgba(162,244,230,0.08),
    rgba(216,255,251,0.08)
  );
  backdrop-filter: blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.25);
  opacity:1;
  transition: opacity 1s ease, box-shadow .35s ease;
  font-family: 'Poppins', sans-serif;
}
.navbar a{
  text-decoration: none;
  color: inherit;
}
.navbar.shadow{
  box-shadow:0 5px 18px rgba(0,0,0,0.18);
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:#2C325A;
  font-weight:500;
}

.nav-menu a:hover{ opacity:.6; }

.nav-call{
  padding:8px 22px;
  border:2px solid #2C325A;
  border-radius:8px;
  color:#2C325A;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.nav-call:hover{
  background:#2C325A;
  color:white;
}


/* ======================================================
   MEGA MENU (Hover Only)
====================================================== */
.mega-menu{
    position:absolute;top:100%;left:0;width:100%;
    display:none;z-index:999;
}
.mega-container{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    max-height:80vh;
    overflow-y:auto;
    padding:55px 65px;
    margin-top:12px;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:65px;position:relative;
}
.mega-col{
    padding:28px;border-radius:18px;
    position:relative;overflow:hidden;
}
.mega-col h3{font-size:17px;font-weight:700;margin-bottom:16px;color:#000;}
.mega-col ul{list-style:none;padding:0;margin:0;}
.mega-col ul li{
    padding:8px 0;font-size:14px;
    opacity:0.85;transition:.2s;
}
.mega-col ul li:hover{opacity:1;color:#00A899;transform:translateX(6px);cursor:pointer;}

.mega-col::before{
    content:"";position:absolute;inset:0;
    background-size:cover;background-position:center;opacity:0.45;
}
.mega-col::after{
    content:"";position:absolute;top:0;left:0;width:100%;height:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0.20),rgba(0,0,0,0.35));
    border-radius:inherit;z-index:0;
}
.mega-col *{position:relative;z-index:1;}
.mega-col:hover{
    border:1px solid rgba(0,168,153,0.18);
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,0.15);
}

.mega-container:before,
.mega-container:after{
    content:"";position:absolute;top:18%;
    width:1px;height:64%;
    background:rgba(0,0,0,0.06);
}
.mega-container:before{left:36%;}
.mega-container:after{left:69%;}

.nav-menu a.services:hover + .mega-menu,
.mega-menu:hover{display:block;}

.mega-col:nth-child(1)::before{background-image:url("images/marketing-bg.jpeg");}
.mega-col:nth-child(2)::before{background-image:url("images/advertising.png");}
.mega-col:nth-child(3)::before{background-image:url("images/automation-bg.png");}
.mega-col:nth-child(4)::before{background-image:url("images/Ui-bg.jpg");}
.mega-col:nth-child(5)::before{background-image:url("images/dev-bg.png");}
.mega-col:nth-child(6)::before{background-image:url("images/strategy-bg.png");}

/* ======================================================
   SERVICES HERO (MATCH ABOUT STYLE)
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px); /* navbar height + spacing */
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;   /* Ã°Å¸â€Â¥ KEY FIX */
  
}
.services-hero h1{
  font-size:clamp(40px,4vw,65px);
  font-weight:800;
  color:#000;
  opacity:1;
  transform:none;
}


/* ======================================================
   SERVICE ROWS
====================================================== */
.service-section {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* image | content */
  gap: 60px;
  padding: 0 8vw;
  align-items: center;
}

.service-section.visible{
    opacity:1;transform:translateY(0);
}
.service-section:hover{
    transform:translateY(-9px);
}
.service-section:first-of-type{
  margin-top: 40px;
}


/* Make outcome bold */
/* Remove tick ONLY for outcome */
ul li.outcome::before {
  content: "" !important;
  display: none !important;
}

/* Emphasize outcome */
ul li.outcome {
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}
.service-img,
.service-img img {
  will-change: transform, opacity;
  transform: translateZ(0);
}



/* IMAGE BLOCK */
.service-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section:hover .service-img img{
    transform:scale(1.1);
}

/* CONTENT BLOCK */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
}

/* CONTENT Ã¢â‚¬â€ REVEALED AFTER GSAP */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
    font-size:clamp(24px,2.4vw,38px);
    font-weight:700;margin-bottom:8px;
    color:#12263D;
}
.service-content p{
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.55;margin-bottom:14px;
}
.service-content ul{
    list-style:none;
    font-size:clamp(14px,1.05vw,17px);
    line-height:1.55;
}
.service-content ul li{
    margin-bottom:6px;
    display:flex;
    align-items:flex-start;
}
.service-content ul li:before{
    content:"Ã¢Å“â€";
    font-size:15px;
    color:#00A899;
    margin-right:10px;
    margin-top:2px;
    font-weight:600;
}
.reverse{flex-direction:row-reverse;}
.service-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  perspective: 1200px;
}
/* ======================================================
   SERVICES HERO
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px);
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;
}


/* ======================================================
   SERVICE LAYOUT
====================================================== */
.service-section{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  padding:0 8vw;
  align-items:center;
  margin-top:40px;
}

/* ======================================================
   IMAGE BLOCK
====================================================== */
.service-img{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  will-change:transform, opacity;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translateZ(0);
}

/* ======================================================
   CONTENT BLOCK (VISIBLE AFTER GSAP)
====================================================== */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CONTENT Ã¢â‚¬â€ UNLOCKED AFTER ANIMATION */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
  font-size:clamp(24px,2.4vw,38px);
  font-weight:700;
  margin-bottom:8px;
  color:#12263D;
}

.service-content p{
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;
  margin-bottom:14px;
}

.service-content ul{
  list-style:none;
  font-size:clamp(14px,1.05vw,17px);
  line-height:1.55;
}

.service-content ul li{
  margin-bottom:6px;
  display:flex;
}

.service-content ul li::before{
  content:"Ã¢Å“â€";
  color:#00A899;
  margin-right:10px;
  font-weight:600;
}

.service-content ul li.outcome::before{
  content:"";
}

.service-content ul li.outcome{
  font-weight:700;
}

/* ======================================================
   CAROUSEL (ONE LEFT + ONE RIGHT ARROW)
====================================================== */
.services-carousel{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:visible;
  width:100%;
}

.carousel-track{
  display:flex;
  transition:transform 0.45s ease;
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:5;
}

.carousel-arrow.left{ left:20px; }
.carousel-arrow.right{ right:20px; }

.carousel-arrow i{
  font-size:22px;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){
  .service-section{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-img{
    height:260px;
  }
}

.footer-section{
  width:100%;
  background:#ffffff;
  border-top:1px solid #e7e7e7;
  padding:24px 4vw;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-copy{
  font-size:14px;
  color:#2C325A;
  opacity:0.8;
}

.footer-logo img{
  width:90px;
  transform: scale(1.6);
}

.footer-follow{
  text-align:center;
}

.footer-follow-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
  color:#1c2640;
}

.footer-icons{
  display:flex;
  gap:18px;
  justify-content:center;
}

.footer-icons a{
  width:30px;
  height:30px;
  background: rgba(0,168,153,0.12);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00a899;
  font-size:18px;
  transition:.25s ease;
}

.footer-icons a:hover{
  transform:translateY(-2px);
  background:rgba(0,168,153,0.2);
}
.item-list {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.item {
  width: 200px;
  cursor: pointer;
}

/* Image */
.item-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content hidden by default */
.item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

/* Active state */
.item.active .item-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* GPU safety */
.service-img img {
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Center animation layer */
#center-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.center-preview {
  width: min(78vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.85);
}

/* ==============================
   STRIP NAVIGATION ARROWS
================================ */



.nav-btn:hover {
  background: #00A899;
  color: #fff;
  border-color: #00A899;
}

@media (max-width: 768px) {
  .services-nav {
    display: none; /* touch scroll only on mobile */
  }
}
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.9;
}

.carousel-arrow.left {
 left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow i {
  font-size: 22px;
}

/* ======================================================
   Ã¢Å“â€¦ SERVICES PAGE Ã¢â‚¬â€ MOBILE FINAL FIX
   Ã¢â€°Â¤768px ONLY | Desktop Safe
====================================================== */
@media (max-width:768px){

  /* GLOBAL SAFETY */
  body{
    overflow-x: clip;
  }

  /* ================= NAVBAR ================= */
  .navbar{
    height: 90px;
    padding:8px 14px;
    opacity:1 !important;
  }

  .nav-menu,
  .nav-call{
    display:none !important;
  }

  /* ================= HERO ================= */
  .services-hero{
    padding-top:76px;   /* navbar + breathing space */
    padding-bottom:24px;
    min-height:auto;
  }

  .services-hero h1{
    font-size:28px;
  }


  /* ================= CAROUSEL Ã¢â€ â€™ STACK ================= */
  .services-carousel{
    overflow:visible;
  }

  .carousel-arrow{
    display:none !important;
  }

  .carousel-track{
    display:flex;
    flex-direction:column;
    transform:none !important;
    gap:32px;
  }

  /* ================= SERVICE SECTIONS ================= */
  .service-section{
    grid-template-columns:1fr;
    padding:0 14px;
    gap:18px;
    transform:none !important;
  }

  .service-section.reverse{
    flex-direction:column;
  }

  /* ================= IMAGES ================= */
  .service-img{
    height:220px;
    border-radius:14px;
  }

  .service-img img{
    transform:none !important;
  }

  /* ================= CONTENT ================= */
  .service-content{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .service-content h2{
    font-size:22px;
  }

  .service-content p{
    font-size:15px;
  }

  .service-content ul{
    font-size:14px;
  }

  /* ================= REMOVE HOVER EFFECTS ================= */
  .service-section:hover,
  .service-section:hover .service-img img{
    transform:none !important;
  }

  /* ================= FOOTER ================= */
  .footer-row{
    flex-direction:column;
    gap:14px;
  }

  .footer-logo img{ transform: scale(1.3);
  }
}
/* Intro animation removed */


/* ======================================================
   GRO-MATRIX SERVICES THEME
====================================================== */
:root{
  --brand-mint:#05afa1;
  --accent:var(--brand-mint);
  --bg-0:#f4fbf9;
  --bg-1:#ffffff;
  --text-0:#0f172a;
  --text-1:#5b6573;
  --panel-0:#ffffff;
  --panel-line:rgba(15,23,42,0.08);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 45px rgba(15,23,42,0.08);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
  color:var(--text-0);
  min-height:100%;
  position:relative;
}

body.menu-open{ overflow:hidden; }

/* Navbar */
.navbar,
.services-page,
.footer-section{ position:relative; z-index:1; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 90px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(15,23,42,0.06);
  transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
  z-index:999;
}

.navbar-inner{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 64px;
}

.navbar.scrolled{
  height: 56px;
  padding:0;
  background:transparent;
  box-shadow:none;
  border-bottom:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.navbar.scrolled .navbar-inner{
  width:min(980px, calc(100% - 120px));
  height:56px;
  padding:0 28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:0px;
  justify-self:start;  min-width:260px;}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}





.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:var(--text-0);
  transition:opacity .2s ease, color .2s ease;
}

.nav-menu a:hover{ opacity:0.7; }
.nav-menu a.services{ color:var(--accent); }

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
  justify-self:end;
}

.nav-call{
  padding:10px 22px;
  border:1px solid var(--accent);
  border-radius:999px;
  color:var(--text-0);
  text-decoration:none;
  font-weight:600;
  transition:background .25s ease, color .25s ease, border .25s ease;
}

.nav-call:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.8);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--text-0);
  transition:transform .3s ease, opacity .3s ease;
}

body.menu-open .nav-toggle span:nth-child(1){
  transform:translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2){
  transform:translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  z-index:1000;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-menu-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 24px 32px;
  position:relative;
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:30px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.15);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-close span{
  position:absolute;
  width:18px;
  height:2px;
  background:#0f172a;
}

.mobile-close span:nth-child(1){ transform:rotate(45deg); }
.mobile-close span:nth-child(2){ transform:rotate(-45deg); }


.mobile-links{
  margin-top:0;
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:center;
}

.mobile-links a{
  color:#0f172a;
  text-decoration:none;
  font-size:22px;
  font-weight:500;
  letter-spacing:0.2px;
}

.mobile-links a.active{ color:var(--accent); }

.mobile-links .mobile-cta{
  margin-top:16px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-align:center;
  text-decoration:none;
  min-width:220px;
}

/* Hero */
.services-page{ padding-bottom:60px; }

.services-hero{
  min-height:100vh;
  padding:clamp(200px, 30vh, 320px) 6vw clamp(150px, 22vh, 260px);
  display:flex;
  align-items:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.services-hero.blog-hero{
  align-items:center;
  justify-content:center;
  text-align:center;
}

.services-hero::after{
  content:"";
  position:absolute;
  right:-6%;
  top:52%;
  width:clamp(480px, 68vw, 1040px);
  height:clamp(480px, 68vw, 1040px);
  background:url("images/arrow.png") no-repeat center/contain;
  opacity:0.08;
  filter:blur(2px);
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-inner{
  max-width:min(1380px, 84vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:40px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s ease, transform 1s ease;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:2px;
  font-size:15px;
  letter-spacing:0.02em;
  text-transform:none;
  color:var(--text-1);
  margin:0;
  font-weight:500;
}

.hero-eyebrow .eyebrow-arrow{
    height:144px;
    width:auto;
    vertical-align:middle;
    margin-left:0;
    opacity:0.9;
  }

body.page-loaded .hero-inner{
  opacity:1;
  transform:translateY(0);
}

.services-hero h1{
  font-size:clamp(34px,4.4vw,68px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.38;
  color:var(--text-0);
  margin:0;
}

.hero-rotate{
  position:relative;
  display:inline-block;
  min-width:9ch;
  min-height:1em;
  margin-left:10px;
  white-space:nowrap;
  vertical-align:baseline;
}

.hero-rotate span{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translate3d(0,12px,0);
  animation:heroSwap 9s infinite;
  will-change:transform, opacity;
  background:linear-gradient(90deg, #00a899, #7be6dc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-rotate span:nth-child(1){ animation-delay:0s; }
.hero-rotate span:nth-child(2){ animation-delay:3s; }
.hero-rotate span:nth-child(3){ animation-delay:6s; }

@keyframes heroSwap{
  0%{ opacity:0; transform:translate3d(0,12px,0); }
  10%{ opacity:1; transform:translate3d(0,0,0); }
  30%{ opacity:1; transform:translate3d(0,0,0); }
  40%{ opacity:0; transform:translate3d(0,-10px,0); }
  100%{ opacity:0; transform:translate3d(0,-10px,0); }
}

.services-hero p{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  color:var(--text-1);
  line-height:1.8;
  max-width:1120px;
}

/* Services blocks */
.services-list{
  width:min(1160px,90vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.service-block{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:26px;
  padding:64px 68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:60px;
  box-shadow:var(--shadow);
  color:var(--text-0);
  position:relative;
}

.service-block::after{
  content:"";
  position:absolute;
  left:68px;
  right:68px;
  bottom:0;
  height:1px;
  background:var(--line);
  opacity:0.6;
}

.service-block:last-child::after{ display:none; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,175,161,0.12);
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  font-size:20px;
}

.service-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
}

.service-tagline{
  color:var(--text-1);
  font-size:clamp(16px,1.2vw,19px);
  line-height:1.7;
  max-width:460px;
}

.service-right{ display:flex; align-items:flex-start; }

.service-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-1);
  font-size:16px;
  line-height:1.7;
}

.service-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.service-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.7);
  margin-top:10px;
  flex-shrink:0;
}

.service-list li.outcome{
  color:var(--text-0);
  font-weight:600;
  margin-top:6px;
  border-radius:999px;
  padding:6px 14px;
  transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.service-list li.outcome::before{
  background:var(--accent);
  border-color:var(--accent);
}

.service-block.in-view .service-list li.outcome{
  color:var(--text-0);
  background:rgba(5,175,161,0.12);
  box-shadow:
    0 0 0 1px rgba(5,175,161,0.35),
    0 10px 24px rgba(5,175,161,0.18);
  transform:translateY(-2px);
}

/* Scroll reveal */
.service-block .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}

.service-block .reveal-icon{ transition-delay:0.04s; }
.service-block .reveal-title{ transition-delay:0.12s; }
.service-block .reveal-desc{ transition-delay:0.22s; }
.service-block .reveal-list{ transition-delay:0.28s; }

.service-block .reveal-list li{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

.service-block.in-view .reveal{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
.service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
.service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
.service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
.service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
.service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
.service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
.service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
.service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
.service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
.service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
.service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

.service-block.about-block{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  grid-template-columns:1fr;
}

.service-block.about-block::after{ display:none; }

.about-section-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 12px 0;
}

.about-paragraph{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

.about-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:1100px;
}

.about-approach-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin:10px auto;
  max-width:420px;
  justify-items:center;
}

.about-combines{
  font-weight:600;
  color:var(--text-0);
}

.about-approach-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,0.08);
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  transition:transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  opacity:0;
  transform:translate3d(0,12px,0);
  width:100%;
  text-align:center;
}

.about-approach-item.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}


/* Blog article */
.blog-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.blog-hero .services-hero h1{
  max-width:980px;
  margin:0 auto;
}

.blog-article{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:10px 0 80px;
}

.blog-cover{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--panel-line);
  margin-bottom:26px;
}

.blog-cover img{
  width:100%;
  height:auto;
  display:block;
}

.blog-prose{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.blog-ol,
.blog-ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-1);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.9;
}

.blog-cta{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:22px 24px;
  color:var(--text-0);
}

.blog-cta p{
  margin:0;
  font-size:clamp(16px,1.6vw,20px);
  line-height:1.8;
}

.blog-reveal{
  opacity:0;
  transform:translate3d(0,16px,0);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.blog-reveal.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.blog-conclusion-cta{
  background:rgba(5,175,161,0.08);
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.blog-conclusion-line{
  margin:0;
  font-size:clamp(16px,1.6vw,20px);
  line-height:1.7;
  color:var(--text-0);
  font-weight:500;
}

.blog-cta-button{
  align-self:center;
  padding:12px 28px;
  border-radius:10px;
  background:var(--accent);
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(5,175,161,0.18);
}

.blog-cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(5,175,161,0.22);
}

.blog-next{
  border-top:1px solid rgba(15,23,42,0.08);
  padding-top:22px;
  text-align:center;
}

.blog-next a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}

.blog-next a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}
.about-approach-title{
  font-size:clamp(16px,1.2vw,19px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

@media (hover:hover) and (pointer:fine){
  .about-approach-grid:hover .about-approach-item{
    opacity:0.7;
  }
  .about-approach-item:hover{
    opacity:1;
    transform:translate3d(0,-4px,0);
    border-color:rgba(5,175,161,0.35);
    background:rgba(5,175,161,0.04);
  }
  .about-approach-item:hover {
    color:var(--accent);
  }
}

/* Blog article */
.blog-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.blog-hero .services-hero h1{
  max-width:980px;
  margin:0 auto;
}

.blog-article{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:10px 0 80px;
}

.blog-cover{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--panel-line);
  margin-bottom:26px;
}

.blog-cover img{
  width:100%;
  height:auto;
  display:block;
}

.blog-prose{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.blog-ol,
.blog-ul{
  margin:0;
  padding-left:20px;
  color:var(--text-1);
  font-size:clamp(16px,1.5vw,20px);
  line-height:1.9;
}

.blog-cta{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:22px 24px;
  color:var(--text-0);
}

.blog-cta p{
  margin:0;
  font-size:clamp(16px,1.6vw,20px);
  line-height:1.8;
}

.blog-reveal{
  opacity:0;
  transform:translate3d(0,16px,0);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.blog-reveal.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}
.about-approach-title{
    color:var(--accent);
  }


@media (max-width: 900px){
  .about-approach-grid{
    grid-template-columns:1fr;
    gap:12px;
    max-width:420px;
  }
}

.mission-vision{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:26px 0 70px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:36px;
  position:relative;
}

.mission-vision-block{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay:var(--mv-delay, 0ms);
}

.mission-vision-block.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.mission-vision::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background:rgba(15,23,42,0.12);
  transform:scaleY(0);
  transform-origin:top;
  opacity:0;
  transition:transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mission-vision.in-view::before{
  transform:scaleY(1);
  opacity:1;
}

.mission-vision-block:first-child{
  padding-right:24px;
}

.mission-vision-block:last-child{
  padding-left:24px;
}

.mission-vision-label{
  font-size:15px;
  letter-spacing:0.06em;
  text-transform:none;
  color:var(--text-1);
  font-weight:900;
  margin:0;
}

.mission-vision-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

@media (max-width: 800px){
  .mission-vision{
    grid-template-columns:1fr;
    gap:20px;
  }
  .mission-vision::before{
    display:none;
  }
  .mission-vision-block{
    --mv-delay:0ms;
    padding:0;
  }
  .mission-vision-block::before{
    content:"";
    width:56px;
    height:1px;
    background:rgba(15,23,42,0.12);
    transform:scaleX(0);
    transform-origin:left;
    opacity:0;
    transition:transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mission-vision-block.in-view::before{
    transform:scaleX(1);
    opacity:1;
  }
}

.belief-quote{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:0;
}

.belief-quote-box{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:28px 30px;
  text-align:center;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.belief-quote-box.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-quote-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-0);
  font-weight:500;
}

.belief-quote-attribution{
  margin:12px 0 0;
  font-size:14px;
  letter-spacing:0.04em;
  color:var(--text-1);
  font-weight:500;
}

@media (max-width: 800px){
  .belief-quote{
    width:min(100%, 90vw);
    padding:0;
  }
  .belief-quote-box{
    padding:24px 22px;
  }
}

.beliefs-section{
  width:100%;
  padding:50px 0 90px;
  background:#ffffff;
}

.beliefs-inner{
  width:min(1160px, 92vw);
  margin:0 auto;
}

.beliefs-title{
  font-size:clamp(30px,3.6vw,48px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 28px 0;
}

.beliefs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:34px;
  align-items:end;
}

.belief-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,251,250,0.95));
  border-radius:0;
  padding:44px 40px 34px;
  box-shadow:0 30px 80px rgba(15,23,42,0.18);
  min-height:520px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,12px,0);
  transition:opacity 0.8s ease, transform 0.8s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow:hidden;
  --fold:56px;
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
}

.belief-card:nth-child(1),
.belief-card:nth-child(3){
  min-height:560px;
}

.belief-card:nth-child(2),
.belief-card:nth-child(4){
  min-height:500px;
}

.belief-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:var(--fold);
  height:var(--fold);
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(5,175,161,0.10));
  border-bottom-left-radius:16px;
  -webkit-mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  box-shadow:-8px 8px 16px rgba(15,23,42,0.14);
  opacity:0.55;
  transition:opacity 0.35s ease, box-shadow 0.35s ease;
}

.belief-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:0;
  border:1px solid rgba(5,175,161,0.22);
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
  pointer-events:none;
}

.belief-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-title{
  font-size:clamp(22px,1.8vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

.belief-desc{
  margin:0;
  color:var(--text-1);
  font-size:clamp(17px,1.3vw,19px);
  line-height:1.8;
}

.belief-icon{
  margin-top:auto;
  width:150px;
  height:150px;
  opacity:0.75;
}

.belief-card:nth-child(1),
.belief-card:nth-child(2),
.belief-card:nth-child(3),
.belief-card:nth-child(4){ border-left:none; }

@media (hover:hover) and (pointer:fine){
  .belief-card:hover{
    transform:translate3d(0,-4px,0);
    background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(5,175,161,0.08));
    box-shadow:0 22px 60px rgba(15,23,42,0.16);
  }
  .belief-card:hover::before{
    opacity:0.7;
    box-shadow:-10px 10px 18px rgba(15,23,42,0.18);
  }
  .belief-card:hover::after{
    border-color:rgba(5,175,161,0.4);
  }
}

@media (max-width: 1024px){
  .beliefs-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px){
  .beliefs-grid{ grid-template-columns:1fr; }
  .belief-icon{ width:120px; height:120px; }
}

@media (max-width: 1024px){
  .nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}
  .service-block{ padding:56px; gap:40px; }
}

@media (max-width: 980px){
  .nav-menu{  justify-self:center;  display:flex; gap:56px; font-size:16px; font-weight:500; }
  .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  
  .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


  .navbar{ padding:0 8px; }
  .navbar.scrolled{ padding:0 8px; }
  .navbar-inner{ width:100%; padding:0 16px; }
  .navbar.scrolled .navbar-inner{
    width:100%;
    height: 56px;
    border-radius:14px;
    padding:0 16px;
  }
}

@media (max-width: 900px){
  .service-block{ grid-template-columns:1fr; }
  .service-tagline{ max-width:none; }
}

@media (max-width: 700px){
  .navbar{ padding:12px 20px; }
  .navbar.scrolled{ padding:8px 18px; }
  .navbar.scrolled .navbar-inner{
    width:calc(100% - 24px);
    height: 56px;
    border-radius:14px;
    padding:0 18px;
  }
  .services-hero{
    min-height:100svh;
    min-height:100dvh;
    padding:clamp(100px, 16vh, 140px) 7vw clamp(48px, 10vh, 90px);
  }
  .services-hero::after{
    left:50%;
    right:auto;
    top:56%;
    width:clamp(320px, 90vw, 560px);
    height:clamp(320px, 90vw, 560px);
    opacity:0.07;
    filter:blur(3px);
    transform:translate(-50%, -50%);
  }
  .hero-inner{ max-width:100%; }
  .hero-eyebrow{ letter-spacing:0.02em; }
  .services-hero h1{ font-size:clamp(34px,9vw,48px); }
  .services-hero p{ font-size:16px; }
  .service-block{ padding:44px 24px; }
  .service-block::after{ left:24px; right:24px; }
  .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
  .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }

  .service-block.about-block{ text-align:center; }
  .about-stack{ margin:0 auto; }
  .about-approach-item{ text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate span{
    animation:none;
    opacity:0;
    transform:none;
    position:static;
    display:none;
  }
  .hero-rotate span:first-child{
    display:inline;
    opacity:1;
  }
  .about-approach-item{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-card{
    opacity:1;
    transform:none;
    transition:none;
  }
  .mission-vision-block{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-quote-box{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.footer-section{
  border-top:1px solid var(--line);
  background:var(--bg-1);
}

.cta-band{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6vw 10px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 10px 30px rgba(5,175,161,0.18);
}

.cta-arrow{
  font-size:18px;
  transition:transform .25s ease;
}

.cta-button:hover{
  background:var(--accent);
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(5,175,161,0.28);
}

.cta-button:hover .cta-arrow{
  transform:translateX(4px);
}

.footer-copy,
.footer-follow-title{ color:var(--text-1); }

.footer-icons a{ color:var(--text-0); }
/* Mobile navbar fix */
@media (max-width: 980px){
  .navbar-inner{ grid-template-columns:auto 1fr auto; align-items:center; padding:0 16px; }
  .nav-left{ min-width:0; justify-self:start; }
  .nav-right{ justify-self:end; }
  .nav-menu,
  .nav-call{ display:none !important; }
  .nav-toggle{ display:flex; }
  .nav-logo{ height:44px; width:auto; max-width:150px; }
  .nav-arrow{ height:28px; width:auto; }
}
@media (max-width: 700px){
  .navbar{ height:60px; }
  .nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }
}.nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }


.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }

/* ===== Styles from blog2.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;color:#111;
}

/* ======================================================
   NAVBAR (Same as About Page)
====================================================== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  height: 90px;
  padding:14px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;

  background: linear-gradient(
    90deg,
    rgba(162,244,230,0.08),
    rgba(216,255,251,0.08)
  );
  backdrop-filter: blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.25);
  opacity:1;
  transition: opacity 1s ease, box-shadow .35s ease;
  font-family: 'Poppins', sans-serif;
}
.navbar a{
  text-decoration: none;
  color: inherit;
}
.navbar.shadow{
  box-shadow:0 5px 18px rgba(0,0,0,0.18);
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:#2C325A;
  font-weight:500;
}

.nav-menu a:hover{ opacity:.6; }

.nav-call{
  padding:8px 22px;
  border:2px solid #2C325A;
  border-radius:8px;
  color:#2C325A;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.nav-call:hover{
  background:#2C325A;
  color:white;
}


/* ======================================================
   MEGA MENU (Hover Only)
====================================================== */
.mega-menu{
    position:absolute;top:100%;left:0;width:100%;
    display:none;z-index:999;
}
.mega-container{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    max-height:80vh;
    overflow-y:auto;
    padding:55px 65px;
    margin-top:12px;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:65px;position:relative;
}
.mega-col{
    padding:28px;border-radius:18px;
    position:relative;overflow:hidden;
}
.mega-col h3{font-size:17px;font-weight:700;margin-bottom:16px;color:#000;}
.mega-col ul{list-style:none;padding:0;margin:0;}
.mega-col ul li{
    padding:8px 0;font-size:14px;
    opacity:0.85;transition:.2s;
}
.mega-col ul li:hover{opacity:1;color:#00A899;transform:translateX(6px);cursor:pointer;}

.mega-col::before{
    content:"";position:absolute;inset:0;
    background-size:cover;background-position:center;opacity:0.45;
}
.mega-col::after{
    content:"";position:absolute;top:0;left:0;width:100%;height:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0.20),rgba(0,0,0,0.35));
    border-radius:inherit;z-index:0;
}
.mega-col *{position:relative;z-index:1;}
.mega-col:hover{
    border:1px solid rgba(0,168,153,0.18);
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,0.15);
}

.mega-container:before,
.mega-container:after{
    content:"";position:absolute;top:18%;
    width:1px;height:64%;
    background:rgba(0,0,0,0.06);
}
.mega-container:before{left:36%;}
.mega-container:after{left:69%;}

.nav-menu a.services:hover + .mega-menu,
.mega-menu:hover{display:block;}

.mega-col:nth-child(1)::before{background-image:url("images/marketing-bg.jpeg");}
.mega-col:nth-child(2)::before{background-image:url("images/advertising.png");}
.mega-col:nth-child(3)::before{background-image:url("images/automation-bg.png");}
.mega-col:nth-child(4)::before{background-image:url("images/Ui-bg.jpg");}
.mega-col:nth-child(5)::before{background-image:url("images/dev-bg.png");}
.mega-col:nth-child(6)::before{background-image:url("images/strategy-bg.png");}

/* ======================================================
   SERVICES HERO (MATCH ABOUT STYLE)
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px); /* navbar height + spacing */
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;   /* Ã°Å¸â€Â¥ KEY FIX */
  
}
.services-hero h1{
  font-size:clamp(40px,4vw,65px);
  font-weight:800;
  color:#000;
  opacity:1;
  transform:none;
}


/* ======================================================
   SERVICE ROWS
====================================================== */
.service-section {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* image | content */
  gap: 60px;
  padding: 0 8vw;
  align-items: center;
}

.service-section.visible{
    opacity:1;transform:translateY(0);
}
.service-section:hover{
    transform:translateY(-9px);
}
.service-section:first-of-type{
  margin-top: 40px;
}


/* Make outcome bold */
/* Remove tick ONLY for outcome */
ul li.outcome::before {
  content: "" !important;
  display: none !important;
}

/* Emphasize outcome */
ul li.outcome {
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}
.service-img,
.service-img img {
  will-change: transform, opacity;
  transform: translateZ(0);
}



/* IMAGE BLOCK */
.service-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section:hover .service-img img{
    transform:scale(1.1);
}

/* CONTENT BLOCK */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
}

/* CONTENT Ã¢â‚¬â€ REVEALED AFTER GSAP */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
    font-size:clamp(24px,2.4vw,38px);
    font-weight:700;margin-bottom:8px;
    color:#12263D;
}
.service-content p{
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.55;margin-bottom:14px;
}
.service-content ul{
    list-style:none;
    font-size:clamp(14px,1.05vw,17px);
    line-height:1.55;
}
.service-content ul li{
    margin-bottom:6px;
    display:flex;
    align-items:flex-start;
}
.service-content ul li:before{
    content:"Ã¢Å“â€";
    font-size:15px;
    color:#00A899;
    margin-right:10px;
    margin-top:2px;
    font-weight:600;
}
.reverse{flex-direction:row-reverse;}
.service-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  perspective: 1200px;
}
/* ======================================================
   SERVICES HERO
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px);
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;
}


/* ======================================================
   SERVICE LAYOUT
====================================================== */
.service-section{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  padding:0 8vw;
  align-items:center;
  margin-top:40px;
}

/* ======================================================
   IMAGE BLOCK
====================================================== */
.service-img{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  will-change:transform, opacity;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translateZ(0);
}

/* ======================================================
   CONTENT BLOCK (VISIBLE AFTER GSAP)
====================================================== */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CONTENT Ã¢â‚¬â€ UNLOCKED AFTER ANIMATION */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
  font-size:clamp(24px,2.4vw,38px);
  font-weight:700;
  margin-bottom:8px;
  color:#12263D;
}

.service-content p{
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;
  margin-bottom:14px;
}

.service-content ul{
  list-style:none;
  font-size:clamp(14px,1.05vw,17px);
  line-height:1.55;
}

.service-content ul li{
  margin-bottom:6px;
  display:flex;
}

.service-content ul li::before{
  content:"Ã¢Å“â€";
  color:#00A899;
  margin-right:10px;
  font-weight:600;
}

.service-content ul li.outcome::before{
  content:"";
}

.service-content ul li.outcome{
  font-weight:700;
}

/* ======================================================
   CAROUSEL (ONE LEFT + ONE RIGHT ARROW)
====================================================== */
.services-carousel{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:visible;
  width:100%;
}

.carousel-track{
  display:flex;
  transition:transform 0.45s ease;
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:5;
}

.carousel-arrow.left{ left:20px; }
.carousel-arrow.right{ right:20px; }

.carousel-arrow i{
  font-size:22px;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){
  .service-section{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-img{
    height:260px;
  }
}

.footer-section{
  width:100%;
  background:#ffffff;
  border-top:1px solid #e7e7e7;
  padding:24px 4vw;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-copy{
  font-size:14px;
  color:#2C325A;
  opacity:0.8;
}

.footer-logo img{
  width:90px;
  transform: scale(1.6);
}

.footer-follow{
  text-align:center;
}

.footer-follow-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
  color:#1c2640;
}

.footer-icons{
  display:flex;
  gap:18px;
  justify-content:center;
}

.footer-icons a{
  width:30px;
  height:30px;
  background: rgba(0,168,153,0.12);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00a899;
  font-size:18px;
  transition:.25s ease;
}

.footer-icons a:hover{
  transform:translateY(-2px);
  background:rgba(0,168,153,0.2);
}
.item-list {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.item {
  width: 200px;
  cursor: pointer;
}

/* Image */
.item-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content hidden by default */
.item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

/* Active state */
.item.active .item-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* GPU safety */
.service-img img {
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Center animation layer */
#center-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.center-preview {
  width: min(78vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.85);
}

/* ==============================
   STRIP NAVIGATION ARROWS
================================ */



.nav-btn:hover {
  background: #00A899;
  color: #fff;
  border-color: #00A899;
}

@media (max-width: 768px) {
  .services-nav {
    display: none; /* touch scroll only on mobile */
  }
}
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.9;
}

.carousel-arrow.left {
 left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow i {
  font-size: 22px;
}

/* ======================================================
   Ã¢Å“â€¦ SERVICES PAGE Ã¢â‚¬â€ MOBILE FINAL FIX
   Ã¢â€°Â¤768px ONLY | Desktop Safe
====================================================== */
@media (max-width:768px){

  /* GLOBAL SAFETY */
  body{
    overflow-x: clip;
  }

  /* ================= NAVBAR ================= */
  .navbar{
    height: 90px;
    padding:8px 14px;
    opacity:1 !important;
  }

  .nav-menu,
  .nav-call{
    display:none !important;
  }

  /* ================= HERO ================= */
  .services-hero{
    padding-top:76px;   /* navbar + breathing space */
    padding-bottom:24px;
    min-height:auto;
  }

  .services-hero h1{
    font-size:28px;
  }


  /* ================= CAROUSEL Ã¢â€ â€™ STACK ================= */
  .services-carousel{
    overflow:visible;
  }

  .carousel-arrow{
    display:none !important;
  }

  .carousel-track{
    display:flex;
    flex-direction:column;
    transform:none !important;
    gap:32px;
  }

  /* ================= SERVICE SECTIONS ================= */
  .service-section{
    grid-template-columns:1fr;
    padding:0 14px;
    gap:18px;
    transform:none !important;
  }

  .service-section.reverse{
    flex-direction:column;
  }

  /* ================= IMAGES ================= */
  .service-img{
    height:220px;
    border-radius:14px;
  }

  .service-img img{
    transform:none !important;
  }

  /* ================= CONTENT ================= */
  .service-content{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .service-content h2{
    font-size:22px;
  }

  .service-content p{
    font-size:15px;
  }

  .service-content ul{
    font-size:14px;
  }

  /* ================= REMOVE HOVER EFFECTS ================= */
  .service-section:hover,
  .service-section:hover .service-img img{
    transform:none !important;
  }

  /* ================= FOOTER ================= */
  .footer-row{
    flex-direction:column;
    gap:14px;
  }

  .footer-logo img{ transform: scale(1.3);
  }
}
/* Intro animation removed */


/* ======================================================
   GRO-MATRIX SERVICES THEME
====================================================== */
:root{
  --brand-mint:#05afa1;
  --accent:var(--brand-mint);
  --bg-0:#f4fbf9;
  --bg-1:#ffffff;
  --text-0:#0f172a;
  --text-1:#5b6573;
  --panel-0:#ffffff;
  --panel-line:rgba(15,23,42,0.08);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 45px rgba(15,23,42,0.08);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
  color:var(--text-0);
  min-height:100%;
  position:relative;
}

body.menu-open{ overflow:hidden; }

/* Navbar */
.navbar,
.services-page,
.footer-section{ position:relative; z-index:1; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 90px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(15,23,42,0.06);
  transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
  z-index:999;
}

.navbar-inner{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 64px;
}

.navbar.scrolled{
  height: 56px;
  padding:0;
  background:transparent;
  box-shadow:none;
  border-bottom:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.navbar.scrolled .navbar-inner{
  width:min(980px, calc(100% - 120px));
  height:56px;
  padding:0 28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:0px;
  justify-self:start;  min-width:260px;}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}





.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:var(--text-0);
  transition:opacity .2s ease, color .2s ease;
}

.nav-menu a:hover{ opacity:0.7; }
.nav-menu a.services{ color:var(--accent); }

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
  justify-self:end;
}

.nav-call{
  padding:10px 22px;
  border:1px solid var(--accent);
  border-radius:999px;
  color:var(--text-0);
  text-decoration:none;
  font-weight:600;
  transition:background .25s ease, color .25s ease, border .25s ease;
}

.nav-call:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.8);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--text-0);
  transition:transform .3s ease, opacity .3s ease;
}

body.menu-open .nav-toggle span:nth-child(1){
  transform:translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2){
  transform:translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  z-index:1000;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-menu-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 24px 32px;
  position:relative;
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:30px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.15);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-close span{
  position:absolute;
  width:18px;
  height:2px;
  background:#0f172a;
}

.mobile-close span:nth-child(1){ transform:rotate(45deg); }
.mobile-close span:nth-child(2){ transform:rotate(-45deg); }


.mobile-links{
  margin-top:0;
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:center;
}

.mobile-links a{
  color:#0f172a;
  text-decoration:none;
  font-size:22px;
  font-weight:500;
  letter-spacing:0.2px;
}

.mobile-links a.active{ color:var(--accent); }

.mobile-links .mobile-cta{
  margin-top:16px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-align:center;
  text-decoration:none;
  min-width:220px;
}

/* Hero */
.services-page{ padding-bottom:60px; }

.services-hero{
  min-height:100vh;
  padding:clamp(200px, 30vh, 320px) 6vw clamp(150px, 22vh, 260px);
  display:flex;
  align-items:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.services-hero.blog-hero{
  align-items:center;
  justify-content:center;
  text-align:center;
}

.services-hero::after{
  content:"";
  position:absolute;
  right:-6%;
  top:52%;
  width:clamp(480px, 68vw, 1040px);
  height:clamp(480px, 68vw, 1040px);
  background:url("images/arrow.png") no-repeat center/contain;
  opacity:0.08;
  filter:blur(2px);
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-inner{
  max-width:min(1380px, 84vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:40px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s ease, transform 1s ease;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:2px;
  font-size:15px;
  letter-spacing:0.02em;
  text-transform:none;
  color:var(--text-1);
  margin:0;
  font-weight:500;
}

.hero-eyebrow .eyebrow-arrow{
    height:144px;
    width:auto;
    vertical-align:middle;
    margin-left:0;
    opacity:0.9;
  }

body.page-loaded .hero-inner{
  opacity:1;
  transform:translateY(0);
}

.services-hero h1{
  font-size:clamp(34px,4.4vw,68px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.38;
  color:var(--text-0);
  margin:0;
}

.hero-rotate{
  position:relative;
  display:inline-block;
  min-width:9ch;
  min-height:1em;
  margin-left:10px;
  white-space:nowrap;
  vertical-align:baseline;
}

.hero-rotate span{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translate3d(0,12px,0);
  animation:heroSwap 9s infinite;
  will-change:transform, opacity;
  background:linear-gradient(90deg, #00a899, #7be6dc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-rotate span:nth-child(1){ animation-delay:0s; }
.hero-rotate span:nth-child(2){ animation-delay:3s; }
.hero-rotate span:nth-child(3){ animation-delay:6s; }

@keyframes heroSwap{
  0%{ opacity:0; transform:translate3d(0,12px,0); }
  10%{ opacity:1; transform:translate3d(0,0,0); }
  30%{ opacity:1; transform:translate3d(0,0,0); }
  40%{ opacity:0; transform:translate3d(0,-10px,0); }
  100%{ opacity:0; transform:translate3d(0,-10px,0); }
}

.services-hero p{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  color:var(--text-1);
  line-height:1.8;
  max-width:1120px;
}

/* Services blocks */
.services-list{
  width:min(1160px,90vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.service-block{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:26px;
  padding:64px 68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:60px;
  box-shadow:var(--shadow);
  color:var(--text-0);
  position:relative;
}

.service-block::after{
  content:"";
  position:absolute;
  left:68px;
  right:68px;
  bottom:0;
  height:1px;
  background:var(--line);
  opacity:0.6;
}

.service-block:last-child::after{ display:none; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,175,161,0.12);
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  font-size:20px;
}

.service-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
}

.service-tagline{
  color:var(--text-1);
  font-size:clamp(16px,1.2vw,19px);
  line-height:1.7;
  max-width:460px;
}

.service-right{ display:flex; align-items:flex-start; }

.service-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-1);
  font-size:16px;
  line-height:1.7;
}

.service-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.service-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.7);
  margin-top:10px;
  flex-shrink:0;
}

.service-list li.outcome{
  color:var(--text-0);
  font-weight:600;
  margin-top:6px;
  border-radius:999px;
  padding:6px 14px;
  transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.service-list li.outcome::before{
  background:var(--accent);
  border-color:var(--accent);
}

.service-block.in-view .service-list li.outcome{
  color:var(--text-0);
  background:rgba(5,175,161,0.12);
  box-shadow:
    0 0 0 1px rgba(5,175,161,0.35),
    0 10px 24px rgba(5,175,161,0.18);
  transform:translateY(-2px);
}

/* Scroll reveal */
.service-block .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}

.service-block .reveal-icon{ transition-delay:0.04s; }
.service-block .reveal-title{ transition-delay:0.12s; }
.service-block .reveal-desc{ transition-delay:0.22s; }
.service-block .reveal-list{ transition-delay:0.28s; }

.service-block .reveal-list li{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

.service-block.in-view .reveal{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
.service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
.service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
.service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
.service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
.service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
.service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
.service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
.service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
.service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
.service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
.service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

.service-block.about-block{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  grid-template-columns:1fr;
}

.service-block.about-block::after{ display:none; }

.about-section-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 12px 0;
}

.about-paragraph{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.95;
  color:var(--text-1);
}

.about-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:1100px;
}

.about-approach-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin:10px auto;
  max-width:420px;
  justify-items:center;
}

.about-combines{
  font-weight:600;
  color:var(--text-0);
}

.about-approach-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,0.08);
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  transition:transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  opacity:0;
  transform:translate3d(0,12px,0);
  width:100%;
  text-align:center;
}

.about-approach-item.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}


/* Blog article */
.blog-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.blog-hero .services-hero h1{
  max-width:980px;
  margin:0 auto;
}

.blog-article{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:10px 0 80px;
}

.blog-cover{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--panel-line);
  margin-bottom:26px;
}

.blog-cover img{
  width:100%;
  height:auto;
  display:block;
}

.blog-prose{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.blog-ol,
.blog-ul{
  margin:0;
  padding-left:20px;
  color:var(--text-1);
  font-size:clamp(16px,1.5vw,20px);
  line-height:1.9;
}

.blog-table{
  width:100%;
  border-collapse:collapse;
  font-size:clamp(15px,1.3vw,18px);
  color:var(--text-1);
}

.blog-table th,
.blog-table td{
  text-align:left;
  padding:12px 8px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}

.blog-table th{
  color:var(--text-0);
  font-weight:600;
}

.blog-cta{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:22px 24px;
  color:var(--text-0);
}

.blog-cta p{
  margin:0;
  font-size:clamp(16px,1.6vw,20px);
  line-height:1.8;
}

.blog-reveal{
  opacity:0;
  transform:translate3d(0,16px,0);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.blog-reveal.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.blog-conclusion-cta{
  background:rgba(5,175,161,0.08);
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.blog-cta-button{
  align-self:center;
  padding:12px 28px;
  border-radius:10px;
  background:var(--accent);
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(5,175,161,0.18);
}

.blog-cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(5,175,161,0.22);
}

.blog-next{
  border-top:1px solid rgba(15,23,42,0.08);
  padding-top:22px;
  text-align:center;
}

.blog-next a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}

.blog-next a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}\n.about-approach-title{
  font-size:clamp(16px,1.2vw,19px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

@media (hover:hover) and (pointer:fine){
  .about-approach-grid:hover .about-approach-item{
    opacity:0.7;
  }
  .about-approach-item:hover{
    opacity:1;
    transform:translate3d(0,-4px,0);
    border-color:rgba(5,175,161,0.35);
    background:rgba(5,175,161,0.04);
  }
  .about-approach-item:hover 
/* Blog article */
.blog-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.blog-hero .services-hero h1{
  max-width:980px;
  margin:0 auto;
}

.blog-article{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:10px 0 80px;
}

.blog-cover{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--panel-line);
  margin-bottom:26px;
}

.blog-cover img{
  width:100%;
  height:auto;
  display:block;
}

.blog-prose{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.blog-ol,
.blog-ul{
  margin:0;
  padding-left:20px;
  color:var(--text-1);
  font-size:clamp(16px,1.5vw,20px);
  line-height:1.9;
}

.blog-table{
  width:100%;
  border-collapse:collapse;
  font-size:clamp(15px,1.3vw,18px);
  color:var(--text-1);
}

.blog-table th,
.blog-table td{
  text-align:left;
  padding:12px 8px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}

.blog-table th{
  color:var(--text-0);
  font-weight:600;
}

.blog-cta{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:22px 24px;
  color:var(--text-0);
}

.blog-cta p{
  margin:0;
  font-size:clamp(16px,1.6vw,20px);
  line-height:1.8;
}

.blog-reveal{
  opacity:0;
  transform:translate3d(0,16px,0);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.blog-reveal.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.blog-conclusion-cta{
  background:rgba(5,175,161,0.08);
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.blog-cta-button{
  align-self:center;
  padding:12px 28px;
  border-radius:10px;
  background:var(--accent);
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(5,175,161,0.18);
}

.blog-cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(5,175,161,0.22);
}

.blog-next{
  border-top:1px solid rgba(15,23,42,0.08);
  padding-top:22px;
  text-align:center;
}

.blog-next a{
  color:var(--accent);
  text-decoration:none;
  font-weight:600;
}

.blog-next a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}\n.about-approach-title{
    color:var(--accent);
  }
}

@media (max-width: 900px){
  .about-approach-grid{
    grid-template-columns:1fr;
    gap:12px;
    max-width:420px;
  }
}

.mission-vision{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:26px 0 70px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:36px;
  position:relative;
}

.mission-vision-block{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay:var(--mv-delay, 0ms);
}

.mission-vision-block.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.mission-vision::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background:rgba(15,23,42,0.12);
  transform:scaleY(0);
  transform-origin:top;
  opacity:0;
  transition:transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mission-vision.in-view::before{
  transform:scaleY(1);
  opacity:1;
}

.mission-vision-block:first-child{
  padding-right:24px;
}

.mission-vision-block:last-child{
  padding-left:24px;
}

.mission-vision-label{
  font-size:15px;
  letter-spacing:0.06em;
  text-transform:none;
  color:var(--text-1);
  font-weight:900;
  margin:0;
}

.mission-vision-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

@media (max-width: 800px){
  .mission-vision{
    grid-template-columns:1fr;
    gap:20px;
  }
  .mission-vision::before{
    display:none;
  }
  .mission-vision-block{
    --mv-delay:0ms;
    padding:0;
  }
  .mission-vision-block::before{
    content:"";
    width:56px;
    height:1px;
    background:rgba(15,23,42,0.12);
    transform:scaleX(0);
    transform-origin:left;
    opacity:0;
    transition:transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mission-vision-block.in-view::before{
    transform:scaleX(1);
    opacity:1;
  }
}

.belief-quote{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:0;
}

.belief-quote-box{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:28px 30px;
  text-align:center;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.belief-quote-box.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-quote-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-0);
  font-weight:500;
}

.belief-quote-attribution{
  margin:12px 0 0;
  font-size:14px;
  letter-spacing:0.04em;
  color:var(--text-1);
  font-weight:500;
}

@media (max-width: 800px){
  .belief-quote{
    width:min(100%, 90vw);
    padding:0;
  }
  .belief-quote-box{
    padding:24px 22px;
  }
}

.beliefs-section{
  width:100%;
  padding:50px 0 90px;
  background:#ffffff;
}

.beliefs-inner{
  width:min(1160px, 92vw);
  margin:0 auto;
}

.beliefs-title{
  font-size:clamp(30px,3.6vw,48px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 28px 0;
}

.beliefs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:34px;
  align-items:end;
}

.belief-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,251,250,0.95));
  border-radius:0;
  padding:44px 40px 34px;
  box-shadow:0 30px 80px rgba(15,23,42,0.18);
  min-height:520px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,12px,0);
  transition:opacity 0.8s ease, transform 0.8s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow:hidden;
  --fold:56px;
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
}

.belief-card:nth-child(1),
.belief-card:nth-child(3){
  min-height:560px;
}

.belief-card:nth-child(2),
.belief-card:nth-child(4){
  min-height:500px;
}

.belief-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:var(--fold);
  height:var(--fold);
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(5,175,161,0.10));
  border-bottom-left-radius:16px;
  -webkit-mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  box-shadow:-8px 8px 16px rgba(15,23,42,0.14);
  opacity:0.55;
  transition:opacity 0.35s ease, box-shadow 0.35s ease;
}

.belief-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:0;
  border:1px solid rgba(5,175,161,0.22);
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
  pointer-events:none;
}

.belief-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-title{
  font-size:clamp(22px,1.8vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

.belief-desc{
  margin:0;
  color:var(--text-1);
  font-size:clamp(17px,1.3vw,19px);
  line-height:1.8;
}

.belief-icon{
  margin-top:auto;
  width:150px;
  height:150px;
  opacity:0.75;
}

.belief-card:nth-child(1),
.belief-card:nth-child(2),
.belief-card:nth-child(3),
.belief-card:nth-child(4){ border-left:none; }

@media (hover:hover) and (pointer:fine){
  .belief-card:hover{
    transform:translate3d(0,-4px,0);
    background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(5,175,161,0.08));
    box-shadow:0 22px 60px rgba(15,23,42,0.16);
  }
  .belief-card:hover::before{
    opacity:0.7;
    box-shadow:-10px 10px 18px rgba(15,23,42,0.18);
  }
  .belief-card:hover::after{
    border-color:rgba(5,175,161,0.4);
  }
}

@media (max-width: 1024px){
  .beliefs-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px){
  .beliefs-grid{ grid-template-columns:1fr; }
  .belief-icon{ width:120px; height:120px; }
}

@media (max-width: 1024px){
  .nav-menu{  justify-self:center;  display:flex;  gap:56px;  font-size:16px;  font-weight:500; }
  .service-block{ padding:56px; gap:40px; }
}

@media (max-width: 980px){
  .nav-menu{  justify-self:center;  display:flex;  gap:56px;  font-size:16px;  font-weight:500; }
  .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  
  .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


  .navbar{ padding:0 8px; }
  .navbar.scrolled{ padding:0 8px; }
  .navbar-inner{ width:100%; padding:0 16px; }
  .navbar.scrolled .navbar-inner{
    width:100%;
    height: 56px;
    border-radius:14px;
    padding:0 16px;
  }
}

@media (max-width: 900px){
  .service-block{ grid-template-columns:1fr; }
  .service-tagline{ max-width:none; }
}

@media (max-width: 700px){
  .navbar{ padding:12px 20px; }
  .navbar.scrolled{ padding:8px 18px; }
  .navbar.scrolled .navbar-inner{
    width:calc(100% - 24px);
    height: 56px;
    border-radius:14px;
    padding:0 18px;
  }
  .services-hero{
    min-height:100svh;
    min-height:100dvh;
    padding:clamp(100px, 16vh, 140px) 7vw clamp(48px, 10vh, 90px);
  }
  .services-hero::after{
    left:50%;
    right:auto;
    top:56%;
    width:clamp(320px, 90vw, 560px);
    height:clamp(320px, 90vw, 560px);
    opacity:0.07;
    filter:blur(3px);
    transform:translate(-50%, -50%);
  }
  .hero-inner{ max-width:100%; }
  .hero-eyebrow{ letter-spacing:0.02em; }
  .services-hero h1{ font-size:clamp(34px,9vw,48px); }
  .services-hero p{ font-size:16px; }
  .service-block{ padding:44px 24px; }
  .service-block::after{ left:24px; right:24px; }
  .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
  .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }

  .service-block.about-block{ text-align:center; }
  .about-stack{ margin:0 auto; }
  .about-approach-item{ text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate span{
    animation:none;
    opacity:0;
    transform:none;
    position:static;
    display:none;
  }
  .hero-rotate span:first-child{
    display:inline;
    opacity:1;
  }
  .about-approach-item{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-card{
    opacity:1;
    transform:none;
    transition:none;
  }
  .mission-vision-block{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-quote-box{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.footer-section{
  border-top:1px solid var(--line);
  background:var(--bg-1);
}

.cta-band{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6vw 10px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 10px 30px rgba(5,175,161,0.18);
}

.cta-arrow{
  font-size:18px;
  transition:transform .25s ease;
}

.cta-button:hover{
  background:var(--accent);
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(5,175,161,0.28);
}

.cta-button:hover .cta-arrow{
  transform:translateX(4px);
}

.footer-copy,
.footer-follow-title{ color:var(--text-1); }

.footer-icons a{ color:var(--text-0); }
/* Mobile navbar fix */
@media (max-width: 980px){
  .navbar-inner{ grid-template-columns:auto 1fr auto; align-items:center; padding:0 16px; }
  .nav-left{ min-width:0; justify-self:start; }
  .nav-right{ justify-self:end; }
  .nav-menu,
  .nav-call{ display:none !important; }
  .nav-toggle{ display:flex; }
  .nav-logo{ height:44px; width:auto; max-width:150px; }
  .nav-arrow{ height:28px; width:auto; }
}
@media (max-width: 700px){
  .navbar{ height:60px; }
  .nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }
}.nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }


.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }

/* ===== Styles from blog3.php ===== */
*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;color:#111;
}

/* ======================================================
   NAVBAR (Same as About Page)
====================================================== */
.navbar{
  position:fixed;
  top:0; left:0;
  width:100%;
  height: 90px;
  padding:14px 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:999;

  background: linear-gradient(
    90deg,
    rgba(162,244,230,0.08),
    rgba(216,255,251,0.08)
  );
  backdrop-filter: blur(18px);

  border-bottom:1px solid rgba(255,255,255,0.25);
  opacity:1;
  transition: opacity 1s ease, box-shadow .35s ease;
  font-family: 'Poppins', sans-serif;
}
.navbar a{
  text-decoration: none;
  color: inherit;
}
.navbar.shadow{
  box-shadow:0 5px 18px rgba(0,0,0,0.18);
}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}



.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:#2C325A;
  font-weight:500;
}

.nav-menu a:hover{ opacity:.6; }

.nav-call{
  padding:8px 22px;
  border:2px solid #2C325A;
  border-radius:8px;
  color:#2C325A;
  background:transparent;
  cursor:pointer;
  transition:.25s ease;
}

.nav-call:hover{
  background:#2C325A;
  color:white;
}


/* ======================================================
   MEGA MENU (Hover Only)
====================================================== */
.mega-menu{
    position:absolute;top:100%;left:0;width:100%;
    display:none;z-index:999;
}
.mega-container{
    background:#ffffff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:26px;
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
    max-height:80vh;
    overflow-y:auto;
    padding:55px 65px;
    margin-top:12px;
    display:grid;grid-template-columns:repeat(3,1fr);
    gap:65px;position:relative;
}
.mega-col{
    padding:28px;border-radius:18px;
    position:relative;overflow:hidden;
}
.mega-col h3{font-size:17px;font-weight:700;margin-bottom:16px;color:#000;}
.mega-col ul{list-style:none;padding:0;margin:0;}
.mega-col ul li{
    padding:8px 0;font-size:14px;
    opacity:0.85;transition:.2s;
}
.mega-col ul li:hover{opacity:1;color:#00A899;transform:translateX(6px);cursor:pointer;}

.mega-col::before{
    content:"";position:absolute;inset:0;
    background-size:cover;background-position:center;opacity:0.45;
}
.mega-col::after{
    content:"";position:absolute;top:0;left:0;width:100%;height:100%;
    background:linear-gradient(180deg,rgba(0,0,0,0.20),rgba(0,0,0,0.35));
    border-radius:inherit;z-index:0;
}
.mega-col *{position:relative;z-index:1;}
.mega-col:hover{
    border:1px solid rgba(0,168,153,0.18);
    transform:translateY(-6px);
    box-shadow:0 8px 28px rgba(0,0,0,0.15);
}

.mega-container:before,
.mega-container:after{
    content:"";position:absolute;top:18%;
    width:1px;height:64%;
    background:rgba(0,0,0,0.06);
}
.mega-container:before{left:36%;}
.mega-container:after{left:69%;}

.nav-menu a.services:hover + .mega-menu,
.mega-menu:hover{display:block;}

.mega-col:nth-child(1)::before{background-image:url("images/marketing-bg.jpeg");}
.mega-col:nth-child(2)::before{background-image:url("images/advertising.png");}
.mega-col:nth-child(3)::before{background-image:url("images/automation-bg.png");}
.mega-col:nth-child(4)::before{background-image:url("images/Ui-bg.jpg");}
.mega-col:nth-child(5)::before{background-image:url("images/dev-bg.png");}
.mega-col:nth-child(6)::before{background-image:url("images/strategy-bg.png");}

/* ======================================================
   SERVICES HERO (MATCH ABOUT STYLE)
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px); /* navbar height + spacing */
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;   /* Ã°Å¸â€Â¥ KEY FIX */
  
}
.services-hero h1{
  font-size:clamp(40px,4vw,65px);
  font-weight:800;
  color:#000;
  opacity:1;
  transform:none;
}


/* ======================================================
   SERVICE ROWS
====================================================== */
.service-section {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* image | content */
  gap: 60px;
  padding: 0 8vw;
  align-items: center;
}

.service-section.visible{
    opacity:1;transform:translateY(0);
}
.service-section:hover{
    transform:translateY(-9px);
}
.service-section:first-of-type{
  margin-top: 40px;
}


/* Make outcome bold */
/* Remove tick ONLY for outcome */
ul li.outcome::before {
  content: "" !important;
  display: none !important;
}

/* Emphasize outcome */
ul li.outcome {
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}
.service-img,
.service-img img {
  will-change: transform, opacity;
  transform: translateZ(0);
}



/* IMAGE BLOCK */
.service-img {
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section:hover .service-img img{
    transform:scale(1.1);
}

/* CONTENT BLOCK */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
}

/* CONTENT Ã¢â‚¬â€ REVEALED AFTER GSAP */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
    font-size:clamp(24px,2.4vw,38px);
    font-weight:700;margin-bottom:8px;
    color:#12263D;
}
.service-content p{
    font-size:clamp(15px,1.2vw,18px);
    line-height:1.55;margin-bottom:14px;
}
.service-content ul{
    list-style:none;
    font-size:clamp(14px,1.05vw,17px);
    line-height:1.55;
}
.service-content ul li{
    margin-bottom:6px;
    display:flex;
    align-items:flex-start;
}
.service-content ul li:before{
    content:"Ã¢Å“â€";
    font-size:15px;
    color:#00A899;
    margin-right:10px;
    margin-top:2px;
    font-weight:600;
}
.reverse{flex-direction:row-reverse;}
.service-img {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  perspective: 1200px;
}
/* ======================================================
   SERVICES HERO
====================================================== */
.services-hero{
  padding-top: calc(90px + 60px);
  padding-bottom: 70px;
  width:100%;
  text-align:center;
  background: linear-gradient(90deg, #E6FFFB, #fff);
  min-height: 280px;
}


/* ======================================================
   SERVICE LAYOUT
====================================================== */
.service-section{
  flex:0 0 100%;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  padding:0 8vw;
  align-items:center;
  margin-top:40px;
}

/* ======================================================
   IMAGE BLOCK
====================================================== */
.service-img{
  height:420px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  will-change:transform, opacity;
}

.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:translateZ(0);
}

/* ======================================================
   CONTENT BLOCK (VISIBLE AFTER GSAP)
====================================================== */
/* CONTENT BLOCK Ã¢â‚¬â€ LOCKED BY DEFAULT */
.service-content{
  opacity: 1;
  transform: none;
  visibility: visible;
}

/* CONTENT Ã¢â‚¬â€ UNLOCKED AFTER ANIMATION */
.service-content.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: opacity .6s ease, transform .6s ease;
}


.service-content h2{
  font-size:clamp(24px,2.4vw,38px);
  font-weight:700;
  margin-bottom:8px;
  color:#12263D;
}

.service-content p{
  font-size:clamp(15px,1.2vw,18px);
  line-height:1.55;
  margin-bottom:14px;
}

.service-content ul{
  list-style:none;
  font-size:clamp(14px,1.05vw,17px);
  line-height:1.55;
}

.service-content ul li{
  margin-bottom:6px;
  display:flex;
}

.service-content ul li::before{
  content:"Ã¢Å“â€";
  color:#00A899;
  margin-right:10px;
  font-weight:600;
}

.service-content ul li.outcome::before{
  content:"";
}

.service-content ul li.outcome{
  font-weight:700;
}

/* ======================================================
   CAROUSEL (ONE LEFT + ONE RIGHT ARROW)
====================================================== */
.services-carousel{
  position:relative;
  width:100%;
}

.carousel-viewport{
  overflow:visible;
  width:100%;
}

.carousel-track{
  display:flex;
  transition:transform 0.45s ease;
}

.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  border:none;
  background:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,0.18);
  cursor:pointer;
  z-index:5;
}

.carousel-arrow.left{ left:20px; }
.carousel-arrow.right{ right:20px; }

.carousel-arrow i{
  font-size:22px;
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){
  .service-section{
    grid-template-columns:1fr;
    gap:30px;
  }

  .service-img{
    height:260px;
  }
}

.footer-section{
  width:100%;
  background:#ffffff;
  border-top:1px solid #e7e7e7;
  padding:24px 4vw;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.footer-copy{
  font-size:14px;
  color:#2C325A;
  opacity:0.8;
}

.footer-logo img{
  width:90px;
  transform: scale(1.6);
}

.footer-follow{
  text-align:center;
}

.footer-follow-title{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
  color:#1c2640;
}

.footer-icons{
  display:flex;
  gap:18px;
  justify-content:center;
}

.footer-icons a{
  width:30px;
  height:30px;
  background: rgba(0,168,153,0.12);
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#00a899;
  font-size:18px;
  transition:.25s ease;
}

.footer-icons a:hover{
  transform:translateY(-2px);
  background:rgba(0,168,153,0.2);
}
.item-list {
  display: flex;
  gap: 16px;
  padding: 20px;
}

.item {
  width: 200px;
  cursor: pointer;
}

/* Image */
.item-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Content hidden by default */
.item-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s ease;
}

/* Active state */
.item.active .item-content {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  margin-top: 12px;
}

/* GPU safety */
.service-img img {
  transform: translateZ(0);
  will-change: transform, opacity;
}

/* Center animation layer */
#center-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}

.center-preview {
  width: min(78vw, 420px);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
  opacity: 0;
  transform: scale(0.85);
}

/* ==============================
   STRIP NAVIGATION ARROWS
================================ */



.nav-btn:hover {
  background: #00A899;
  color: #fff;
  border-color: #00A899;
}

@media (max-width: 768px) {
  .services-nav {
    display: none; /* touch scroll only on mobile */
  }
}
.carousel-section {
  position: relative;
  width: 100%;
  padding: 60px 6vw;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
}

.carousel-item {
  flex: 0 0 calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.9;
}

.carousel-arrow.left {
 left: 20px;
}

.carousel-arrow.right {
  right: 20px;
}

.carousel-arrow i {
  font-size: 22px;
}

/* ======================================================
   Ã¢Å“â€¦ SERVICES PAGE Ã¢â‚¬â€ MOBILE FINAL FIX
   Ã¢â€°Â¤768px ONLY | Desktop Safe
====================================================== */
@media (max-width:768px){

  /* GLOBAL SAFETY */
  body{
    overflow-x: clip;
  }

  /* ================= NAVBAR ================= */
  .navbar{
    height: 90px;
    padding:8px 14px;
    opacity:1 !important;
  }

  .nav-menu,
  .nav-call{
    display:none !important;
  }

  /* ================= HERO ================= */
  .services-hero{
    padding-top:76px;   /* navbar + breathing space */
    padding-bottom:24px;
    min-height:auto;
  }

  .services-hero h1{
    font-size:28px;
  }


  /* ================= CAROUSEL Ã¢â€ â€™ STACK ================= */
  .services-carousel{
    overflow:visible;
  }

  .carousel-arrow{
    display:none !important;
  }

  .carousel-track{
    display:flex;
    flex-direction:column;
    transform:none !important;
    gap:32px;
  }

  /* ================= SERVICE SECTIONS ================= */
  .service-section{
    grid-template-columns:1fr;
    padding:0 14px;
    gap:18px;
    transform:none !important;
  }

  .service-section.reverse{
    flex-direction:column;
  }

  /* ================= IMAGES ================= */
  .service-img{
    height:220px;
    border-radius:14px;
  }

  .service-img img{
    transform:none !important;
  }

  /* ================= CONTENT ================= */
  .service-content{
    opacity:1 !important;
    transform:none !important;
    visibility:visible !important;
    pointer-events:auto !important;
  }

  .service-content h2{
    font-size:22px;
  }

  .service-content p{
    font-size:15px;
  }

  .service-content ul{
    font-size:14px;
  }

  /* ================= REMOVE HOVER EFFECTS ================= */
  .service-section:hover,
  .service-section:hover .service-img img{
    transform:none !important;
  }

  /* ================= FOOTER ================= */
  .footer-row{
    flex-direction:column;
    gap:14px;
  }

  .footer-logo img{ transform: scale(1.3);
  }
}
/* Intro animation removed */


/* ======================================================
   GRO-MATRIX SERVICES THEME
====================================================== */
:root{
  --brand-mint:#05afa1;
  --accent:var(--brand-mint);
  --bg-0:#f4fbf9;
  --bg-1:#ffffff;
  --text-0:#0f172a;
  --text-1:#5b6573;
  --panel-0:#ffffff;
  --panel-line:rgba(15,23,42,0.08);
  --line:rgba(15,23,42,0.08);
  --shadow:0 18px 45px rgba(15,23,42,0.08);
}

body{
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(5,175,161,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 55%);
  color:var(--text-0);
  min-height:100%;
  position:relative;
}

body.menu-open{ overflow:hidden; }

/* Navbar */
.navbar,
.services-page,
.footer-section{ position:relative; z-index:1; }

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height: 90px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  background:rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(15,23,42,0.06);
  transition:height .35s ease, padding .35s ease, box-shadow .35s ease, background .35s ease;
  z-index:999;
}

.navbar-inner{
  width:100%;
  height:100%;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  padding:0 64px;
}

.navbar.scrolled{
  height: 56px;
  padding:0;
  background:transparent;
  box-shadow:none;
  border-bottom:0;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.navbar.scrolled .navbar-inner{
  width:min(980px, calc(100% - 120px));
  height:56px;
  padding:0 28px;
  background:rgba(255,255,255,0.72);
  border:1px solid rgba(255,255,255,0.65);
  border-radius:16px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-left{
  display:flex;
  align-items:center;
  gap:0px;
  justify-self:start;  min-width:260px;}

.nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}





.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.navbar.scrolled .nav-logo{
  display:none;
}

.navbar.scrolled .nav-arrow{
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}

.navbar.scrolled 


.nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}

.nav-menu a{
  text-decoration:none;
  color:var(--text-0);
  transition:opacity .2s ease, color .2s ease;
}

.nav-menu a:hover{ opacity:0.7; }
.nav-menu a.services{ color:var(--accent); }

.nav-right{
  display:flex;
  align-items:center;
  gap:16px;
  justify-self:end;
}

.nav-call{
  padding:10px 22px;
  border:1px solid var(--accent);
  border-radius:999px;
  color:var(--text-0);
  text-decoration:none;
  font-weight:600;
  transition:background .25s ease, color .25s ease, border .25s ease;
}

.nav-call:hover{
  background:var(--accent);
  border-color:var(--accent);
  color:#ffffff;
}

.nav-toggle{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,0.12);
  background:rgba(255,255,255,0.8);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  background:var(--text-0);
  transition:transform .3s ease, opacity .3s ease;
}

body.menu-open .nav-toggle span:nth-child(1){
  transform:translateY(4px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2){
  transform:translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu{
  position:fixed;
  inset:0;
  background:#ffffff;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity:0;
  pointer-events:none;
  transform:translateY(-14px);
  transition:opacity .35s ease, transform .35s ease;
  z-index:1000;
}

.mobile-menu.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.mobile-menu-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:96px 24px 32px;
  position:relative;
}

.mobile-close{
  position:absolute;
  top:24px;
  right:24px;
  width:44px;
  height:30px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,0.15);
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.mobile-close span{
  position:absolute;
  width:18px;
  height:2px;
  background:#0f172a;
}

.mobile-close span:nth-child(1){ transform:rotate(45deg); }
.mobile-close span:nth-child(2){ transform:rotate(-45deg); }


.mobile-links{
  margin-top:0;
  display:flex;
  flex-direction:column;
  gap:22px;
  align-items:center;
}

.mobile-links a{
  color:#0f172a;
  text-decoration:none;
  font-size:22px;
  font-weight:500;
  letter-spacing:0.2px;
}

.mobile-links a.active{ color:var(--accent); }

.mobile-links .mobile-cta{
  margin-top:16px;
  padding:12px 20px;
  border-radius:999px;
  border:1px solid var(--accent);
  color:var(--accent);
  text-align:center;
  text-decoration:none;
  min-width:220px;
}

/* Hero */
.services-page{ padding-bottom:60px; }

.services-hero{
  min-height:100vh;
  padding:clamp(200px, 30vh, 320px) 6vw clamp(150px, 22vh, 260px);
  display:flex;
  align-items:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;
}

.services-hero.blog-hero{
  align-items:center;
  justify-content:center;
  text-align:center;
}

.services-hero::after{
  content:"";
  position:absolute;
  right:-6%;
  top:52%;
  width:clamp(480px, 68vw, 1040px);
  height:clamp(480px, 68vw, 1040px);
  background:url("images/arrow.png") no-repeat center/contain;
  opacity:0.08;
  filter:blur(2px);
  transform:translateY(-50%);
  pointer-events:none;
}

.hero-inner{
  max-width:min(1380px, 84vw);
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:40px;
  opacity:0;
  transform:translateY(24px);
  transition:opacity 1s ease, transform 1s ease;
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:2px;
  font-size:15px;
  letter-spacing:0.02em;
  text-transform:none;
  color:var(--text-1);
  margin:0;
  font-weight:500;
}

.hero-eyebrow .eyebrow-arrow{
    height:144px;
    width:auto;
    vertical-align:middle;
    margin-left:0;
    opacity:0.9;
  }

body.page-loaded .hero-inner{
  opacity:1;
  transform:translateY(0);
}

.services-hero h1{
  font-size:clamp(34px,4.4vw,68px);
  font-weight:800;
  letter-spacing:-0.02em;
  line-height:1.38;
  color:var(--text-0);
  margin:0;
}

.hero-rotate{
  position:relative;
  display:inline-block;
  min-width:9ch;
  min-height:1em;
  margin-left:10px;
  white-space:nowrap;
  vertical-align:baseline;
}

.hero-rotate span{
  position:absolute;
  left:0;
  top:0;
  opacity:0;
  transform:translate3d(0,12px,0);
  animation:heroSwap 9s infinite;
  will-change:transform, opacity;
  background:linear-gradient(90deg, #00a899, #7be6dc);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-rotate span:nth-child(1){ animation-delay:0s; }
.hero-rotate span:nth-child(2){ animation-delay:3s; }
.hero-rotate span:nth-child(3){ animation-delay:6s; }

@keyframes heroSwap{
  0%{ opacity:0; transform:translate3d(0,12px,0); }
  10%{ opacity:1; transform:translate3d(0,0,0); }
  30%{ opacity:1; transform:translate3d(0,0,0); }
  40%{ opacity:0; transform:translate3d(0,-10px,0); }
  100%{ opacity:0; transform:translate3d(0,-10px,0); }
}

.services-hero p{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  color:var(--text-1);
  line-height:1.8;
  max-width:1120px;
}

/* Services blocks */
.services-list{
  width:min(1160px,90vw);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:28px;
}

.service-block{
  background:var(--panel-0);
  border:1px solid var(--panel-line);
  border-radius:26px;
  padding:64px 68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1.2fr);
  gap:60px;
  box-shadow:var(--shadow);
  color:var(--text-0);
  position:relative;
}

.service-block::after{
  content:"";
  position:absolute;
  left:68px;
  right:68px;
  bottom:0;
  height:1px;
  background:var(--line);
  opacity:0.6;
}

.service-block:last-child::after{ display:none; }

.service-left{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.service-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(5,175,161,0.12);
  border:1px solid rgba(5,175,161,0.35);
  color:var(--accent);
  font-size:20px;
}

.service-title{
  font-size:clamp(28px,3vw,42px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
}

.service-tagline{
  color:var(--text-1);
  font-size:clamp(16px,1.2vw,19px);
  line-height:1.7;
  max-width:460px;
}

.service-right{ display:flex; align-items:flex-start; }

.service-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  color:var(--text-1);
  font-size:16px;
  line-height:1.7;
}

.service-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.service-list li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  border:1px solid rgba(5,175,161,0.7);
  margin-top:10px;
  flex-shrink:0;
}

.service-list li.outcome{
  color:var(--text-0);
  font-weight:600;
  margin-top:6px;
  border-radius:999px;
  padding:6px 14px;
  transition:color .4s ease, background .4s ease, box-shadow .4s ease, transform .4s ease;
}

.service-list li.outcome::before{
  background:var(--accent);
  border-color:var(--accent);
}

.service-block.in-view .service-list li.outcome{
  color:var(--text-0);
  background:rgba(5,175,161,0.12);
  box-shadow:
    0 0 0 1px rgba(5,175,161,0.35),
    0 10px 24px rgba(5,175,161,0.18);
  transform:translateY(-2px);
}

/* Scroll reveal */
.service-block .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity 0.9s ease, transform 0.9s ease;
}

.service-block .reveal-icon{ transition-delay:0.04s; }
.service-block .reveal-title{ transition-delay:0.12s; }
.service-block .reveal-desc{ transition-delay:0.22s; }
.service-block .reveal-list{ transition-delay:0.28s; }

.service-block .reveal-list li{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 0.6s ease, transform 0.6s ease;
}

.service-block.in-view .reveal{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li{
  opacity:1;
  transform:translateY(0);
}

.service-block.in-view .reveal-list li:nth-child(1){ transition-delay:0.32s; }
.service-block.in-view .reveal-list li:nth-child(2){ transition-delay:0.40s; }
.service-block.in-view .reveal-list li:nth-child(3){ transition-delay:0.48s; }
.service-block.in-view .reveal-list li:nth-child(4){ transition-delay:0.56s; }
.service-block.in-view .reveal-list li:nth-child(5){ transition-delay:0.64s; }
.service-block.in-view .reveal-list li:nth-child(6){ transition-delay:0.72s; }
.service-block.in-view .reveal-list li:nth-child(7){ transition-delay:0.80s; }
.service-block.in-view .reveal-list li:nth-child(8){ transition-delay:0.88s; }
.service-block.in-view .reveal-list li:nth-child(9){ transition-delay:0.96s; }
.service-block.in-view .reveal-list li:nth-child(10){ transition-delay:1.04s; }
.service-block.in-view .reveal-list li:nth-child(11){ transition-delay:1.12s; }
.service-block.in-view .reveal-list li:nth-child(12){ transition-delay:1.20s; }

.service-block.about-block{
  background:transparent;
  border:0;
  box-shadow:none;
  padding:0;
  grid-template-columns:1fr;
}

.service-block.about-block::after{ display:none; }

.about-section-title{
  font-size:clamp(26px,3.2vw,40px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 12px 0;
}

.about-paragraph{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.95;
  color:var(--text-1);
}

.about-stack{
  display:flex;
  flex-direction:column;
  gap:14px;
  max-width:1100px;
}

.about-approach-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin:10px auto;
  max-width:420px;
  justify-items:center;
}

.about-combines{
  font-weight:600;
  color:var(--text-0);
}

.about-approach-item{
  padding:16px 18px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,0.08);
  background:#ffffff;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  transition:transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, opacity 0.35s ease;
  opacity:0;
  transform:translate3d(0,12px,0);
  width:100%;
  text-align:center;
}

.about-approach-item.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}


/* Blog article */
.blog-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.blog-hero .services-hero h1{
  max-width:980px;
  margin:0 auto;
}

.blog-article{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:10px 0 80px;
}

.blog-cover{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--panel-line);
  margin-bottom:26px;
}

.blog-cover img{
  width:100%;
  height:auto;
  display:block;
}

.blog-prose{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.blog-ol,
.blog-ul{
  margin:0;
  padding-left:20px;
  color:var(--text-1);
  font-size:clamp(16px,1.5vw,20px);
  line-height:1.9;
}

.funnel-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.funnel-stage{
  padding:14px 16px;
  border:1px solid var(--panel-line);
  border-radius:14px;
  text-align:center;
  font-weight:600;
  color:var(--text-0);
  background:#ffffff;
}

.blog-table{
  width:100%;
  border-collapse:collapse;
  font-size:clamp(15px,1.3vw,18px);
  color:var(--text-1);
}

.blog-table th,
.blog-table td{
  text-align:left;
  padding:12px 8px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}

.blog-table th{
  color:var(--text-0);
  font-weight:600;
}

.blog-cta{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:22px 24px;
  color:var(--text-0);
}

.blog-cta p{
  margin:0;
  font-size:clamp(16px,1.6vw,20px);
  line-height:1.8;
}

.blog-reveal{
  opacity:0;
  transform:translate3d(0,16px,0);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.blog-reveal.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

@media (max-width: 760px){
  .funnel-grid{ grid-template-columns:1fr; }
}
.blog-conclusion-cta{
  background:rgba(5,175,161,0.08);
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.blog-cta-button{
  align-self:center;
  padding:12px 28px;
  border-radius:10px;
  background:var(--accent);
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(5,175,161,0.18);
}

.blog-cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(5,175,161,0.22);
}\n.about-approach-title{
  font-size:clamp(16px,1.2vw,19px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

@media (hover:hover) and (pointer:fine){
  .about-approach-grid:hover .about-approach-item{
    opacity:0.7;
  }
  .about-approach-item:hover{
    opacity:1;
    transform:translate3d(0,-4px,0);
    border-color:rgba(5,175,161,0.35);
    background:rgba(5,175,161,0.04);
  }
  .about-approach-item:hover 
/* Blog article */
.blog-hero .hero-inner{
  align-items:center;
  text-align:center;
  gap:18px;
}

.blog-hero .services-hero h1{
  max-width:980px;
  margin:0 auto;
}

.blog-article{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:10px 0 80px;
}

.blog-cover{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--panel-line);
  margin-bottom:26px;
}

.blog-cover img{
  width:100%;
  height:auto;
  display:block;
}

.blog-prose{
  display:flex;
  flex-direction:column;
  gap:28px;
}

.blog-ol,
.blog-ul{
  margin:0;
  padding-left:20px;
  color:var(--text-1);
  font-size:clamp(16px,1.5vw,20px);
  line-height:1.9;
}

.funnel-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.funnel-stage{
  padding:14px 16px;
  border:1px solid var(--panel-line);
  border-radius:14px;
  text-align:center;
  font-weight:600;
  color:var(--text-0);
  background:#ffffff;
}

.blog-table{
  width:100%;
  border-collapse:collapse;
  font-size:clamp(15px,1.3vw,18px);
  color:var(--text-1);
}

.blog-table th,
.blog-table td{
  text-align:left;
  padding:12px 8px;
  border-bottom:1px solid rgba(15,23,42,0.08);
}

.blog-table th{
  color:var(--text-0);
  font-weight:600;
}

.blog-cta{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:22px 24px;
  color:var(--text-0);
}

.blog-cta p{
  margin:0;
  font-size:clamp(16px,1.6vw,20px);
  line-height:1.8;
}

.blog-reveal{
  opacity:0;
  transform:translate3d(0,16px,0);
  transition:opacity 0.8s ease, transform 0.8s ease;
}

.blog-reveal.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

@media (max-width: 760px){
  .funnel-grid{ grid-template-columns:1fr; }
}
.blog-conclusion-cta{
  background:rgba(5,175,161,0.08);
  border-radius:18px;
  padding:28px 24px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.blog-cta-button{
  align-self:center;
  padding:12px 28px;
  border-radius:10px;
  background:var(--accent);
  color:#ffffff;
  text-decoration:none;
  font-weight:600;
  transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 10px 24px rgba(5,175,161,0.18);
}

.blog-cta-button:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(5,175,161,0.22);
}\n.about-approach-title{
    color:var(--accent);
  }
}

@media (max-width: 900px){
  .about-approach-grid{
    grid-template-columns:1fr;
    gap:12px;
    max-width:420px;
  }
}

.mission-vision{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:26px 0 70px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:36px;
  position:relative;
}

.mission-vision-block{
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay:var(--mv-delay, 0ms);
}

.mission-vision-block.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.mission-vision::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:1px;
  height:100%;
  background:rgba(15,23,42,0.12);
  transform:scaleY(0);
  transform-origin:top;
  opacity:0;
  transition:transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.mission-vision.in-view::before{
  transform:scaleY(1);
  opacity:1;
}

.mission-vision-block:first-child{
  padding-right:24px;
}

.mission-vision-block:last-child{
  padding-left:24px;
}

.mission-vision-label{
  font-size:15px;
  letter-spacing:0.06em;
  text-transform:none;
  color:var(--text-1);
  font-weight:900;
  margin:0;
}

.mission-vision-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-1);
}

@media (max-width: 800px){
  .mission-vision{
    grid-template-columns:1fr;
    gap:20px;
  }
  .mission-vision::before{
    display:none;
  }
  .mission-vision-block{
    --mv-delay:0ms;
    padding:0;
  }
  .mission-vision-block::before{
    content:"";
    width:56px;
    height:1px;
    background:rgba(15,23,42,0.12);
    transform:scaleX(0);
    transform-origin:left;
    opacity:0;
    transition:transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .mission-vision-block.in-view::before{
    transform:scaleX(1);
    opacity:1;
  }
}

.belief-quote{
  width:min(1100px, 90vw);
  margin:0 auto;
  padding:0;
}

.belief-quote-box{
  background:linear-gradient(135deg, rgba(5,175,161,0.08), rgba(255,255,255,0.9));
  border-radius:16px;
  padding:28px 30px;
  text-align:center;
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.belief-quote-box.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-quote-text{
  margin:0;
  font-size:clamp(16px,1.6vw,21px);
  line-height:1.8;
  color:var(--text-0);
  font-weight:500;
}

.belief-quote-attribution{
  margin:12px 0 0;
  font-size:14px;
  letter-spacing:0.04em;
  color:var(--text-1);
  font-weight:500;
}

@media (max-width: 800px){
  .belief-quote{
    width:min(100%, 90vw);
    padding:0;
  }
  .belief-quote-box{
    padding:24px 22px;
  }
}

.beliefs-section{
  width:100%;
  padding:50px 0 90px;
  background:#ffffff;
}

.beliefs-inner{
  width:min(1160px, 92vw);
  margin:0 auto;
}

.beliefs-title{
  font-size:clamp(30px,3.6vw,48px);
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--text-0);
  margin:0 0 28px 0;
}

.beliefs-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:34px;
  align-items:end;
}

.belief-card{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,0.95), rgba(245,251,250,0.95));
  border-radius:0;
  padding:44px 40px 34px;
  box-shadow:0 30px 80px rgba(15,23,42,0.18);
  min-height:520px;
  display:flex;
  flex-direction:column;
  gap:10px;
  opacity:0;
  transform:translate3d(0,12px,0);
  transition:opacity 0.8s ease, transform 0.8s ease, box-shadow 0.35s ease, background 0.35s ease;
  overflow:hidden;
  --fold:56px;
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
}

.belief-card:nth-child(1),
.belief-card:nth-child(3){
  min-height:560px;
}

.belief-card:nth-child(2),
.belief-card:nth-child(4){
  min-height:500px;
}

.belief-card::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:var(--fold);
  height:var(--fold);
  background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(5,175,161,0.10));
  border-bottom-left-radius:16px;
  -webkit-mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  mask:linear-gradient(135deg, transparent 0 49%, #000 50%);
  box-shadow:-8px 8px 16px rgba(15,23,42,0.14);
  opacity:0.55;
  transition:opacity 0.35s ease, box-shadow 0.35s ease;
}

.belief-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:0;
  border:1px solid rgba(5,175,161,0.22);
  clip-path:polygon(0 0, calc(100% - var(--fold)) 0, 100% var(--fold), 100% 100%, 0 100%);
  pointer-events:none;
}

.belief-card.in-view{
  opacity:1;
  transform:translate3d(0,0,0);
}

.belief-title{
  font-size:clamp(22px,1.8vw,26px);
  font-weight:700;
  color:var(--text-0);
  margin:0;
}

.belief-desc{
  margin:0;
  color:var(--text-1);
  font-size:clamp(17px,1.3vw,19px);
  line-height:1.8;
}

.belief-icon{
  margin-top:auto;
  width:150px;
  height:150px;
  opacity:0.75;
}

.belief-card:nth-child(1),
.belief-card:nth-child(2),
.belief-card:nth-child(3),
.belief-card:nth-child(4){ border-left:none; }

@media (hover:hover) and (pointer:fine){
  .belief-card:hover{
    transform:translate3d(0,-4px,0);
    background:linear-gradient(180deg, rgba(255,255,255,0.98), rgba(5,175,161,0.08));
    box-shadow:0 22px 60px rgba(15,23,42,0.16);
  }
  .belief-card:hover::before{
    opacity:0.7;
    box-shadow:-10px 10px 18px rgba(15,23,42,0.18);
  }
  .belief-card:hover::after{
    border-color:rgba(5,175,161,0.4);
  }
}

@media (max-width: 1024px){
  .beliefs-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
}

@media (max-width: 700px){
  .beliefs-grid{ grid-template-columns:1fr; }
  .belief-icon{ width:120px; height:120px; }
}

@media (max-width: 1024px){
  .nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}
  .service-block{ padding:56px; gap:40px; }
}

@media (max-width: 980px){
  .nav-menu{  justify-self:center; display:flex;  gap:56px;  font-size:16px;  font-weight:500;}
  .nav-call{ display:none; }
  .nav-toggle{ display:flex; }
  
  .nav-logo{
  height:82px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
}

.nav-arrow{
  height:44px;
  width:auto;
  object-fit:contain;
  display:none;
}


  .navbar{ padding:0 8px; }
  .navbar.scrolled{ padding:0 8px; }
  .navbar-inner{ width:100%; padding:0 16px; }
  .navbar.scrolled .navbar-inner{
    width:100%;
    height: 56px;
    border-radius:14px;
    padding:0 16px;
  }
}

@media (max-width: 900px){
  .service-block{ grid-template-columns:1fr; }
  .service-tagline{ max-width:none; }
}

@media (max-width: 700px){
  .navbar{ padding:12px 20px; }
  .navbar.scrolled{ padding:8px 18px; }
  .navbar.scrolled .navbar-inner{
    width:calc(100% - 24px);
    height: 56px;
    border-radius:14px;
    padding:0 18px;
  }
  .services-hero{
    min-height:100svh;
    min-height:100dvh;
    padding:clamp(100px, 16vh, 140px) 7vw clamp(48px, 10vh, 90px);
  }
  .services-hero::after{
    left:50%;
    right:auto;
    top:56%;
    width:clamp(320px, 90vw, 560px);
    height:clamp(320px, 90vw, 560px);
    opacity:0.07;
    filter:blur(3px);
    transform:translate(-50%, -50%);
  }
  .hero-inner{ max-width:100%; }
  .hero-eyebrow{ letter-spacing:0.02em; }
  .services-hero h1{ font-size:clamp(34px,9vw,48px); }
  .services-hero p{ font-size:16px; }
  .service-block{ padding:44px 24px; }
  .service-block::after{ left:24px; right:24px; }
  .service-block .reveal{ transform:translateY(18px); transition-duration:0.6s; }
  .service-block .reveal-list li{ transform:translateY(10px); transition-duration:0.45s; }

  .service-block.about-block{ text-align:center; }
  .about-stack{ margin:0 auto; }
  .about-approach-item{ text-align:center; }
}

@media (prefers-reduced-motion: reduce){
  .hero-rotate span{
    animation:none;
    opacity:0;
    transform:none;
    position:static;
    display:none;
  }
  .hero-rotate span:first-child{
    display:inline;
    opacity:1;
  }
  .about-approach-item{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-card{
    opacity:1;
    transform:none;
    transition:none;
  }
  .mission-vision-block{
    opacity:1;
    transform:none;
    transition:none;
  }
  .belief-quote-box{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.footer-section{
  border-top:1px solid var(--line);
  background:var(--bg-1);
}

.cta-band{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 6vw 10px;
}

.cta-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 26px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:rgba(5,175,161,0.08);
  color:var(--text-0);
  font-weight:600;
  text-decoration:none;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  box-shadow:0 10px 30px rgba(5,175,161,0.18);
}

.cta-arrow{
  font-size:18px;
  transition:transform .25s ease;
}

.cta-button:hover{
  background:var(--accent);
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(5,175,161,0.28);
}

.cta-button:hover .cta-arrow{
  transform:translateX(4px);
}

.footer-copy,
.footer-follow-title{ color:var(--text-1); }

.footer-icons a{ color:var(--text-0); }
/* Mobile navbar fix */
@media (max-width: 980px){
  .navbar-inner{ grid-template-columns:auto 1fr auto; align-items:center; padding:0 16px; }
  .nav-left{ min-width:0; justify-self:start; }
  .nav-right{ justify-self:end; }
  .nav-menu,
  .nav-call{ display:none !important; }
  .nav-toggle{ display:flex; }
  .nav-logo{ height:44px; width:auto; max-width:150px; }
  .nav-arrow{ height:28px; width:auto; }
}
@media (max-width: 700px){
  .navbar{ height:60px; }
  .nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }
}.nav-logo{ height:40px; max-width:140px; }
  .nav-arrow{ height:26px; }


.footer-copy{ text-align:center; }
.footer-privacy{ display:block; width:100%; text-align:center; color:inherit; text-decoration:none; font-weight:600; }
.footer-privacy:hover{ text-decoration:underline; }




/* Mobile menu alignment override (final) */
@media (max-width: 980px){
  .mobile-menu .mobile-menu-inner{
    padding:0 24px !important;
  }

  .mobile-menu .mobile-links{
    width:100% !important;
    max-width:420px !important;
    margin:auto !important;
    padding:0 !important;
    gap:20px !important;
    text-align:center !important;
    align-items:center !important;
  }

  .mobile-menu .mobile-menu-list{
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
    width:100% !important;
  }

  .mobile-menu .mobile-menu-list li{
    width:100% !important;
    margin:0 !important;
  }

  .mobile-menu .mobile-menu-list li + li{
    margin-top:8px !important;
  }

  .mobile-menu .mobile-links a,
  .mobile-menu .mobile-menu-list a{
    display:block !important;
    width:100% !important;
    text-align:center !important;
    font-size:24px !important;
    line-height:2 !important;
    letter-spacing:0.2px !important;
  }

  .mobile-menu .mobile-links .mobile-cta{
    width:min(420px, 82vw) !important;
    margin:14px auto 0 !important;
    font-size:20px !important;
    line-height:1.5 !important;
  }
}
