@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
    :root {
      --navy: #0c1f38;
      --navy-deep: #1A1A1A;
      --maroon: #5C2018;
      --maroon-dark: #6e1c28;
      --gold-1: #FFD301;
      --gold-2: #c99a3d;
      --cream: #f7f3ec;
      --ink: #1c1c1c;
      --muted: #5c6472;
      --line: #e4ded0;
      --radius: 2px;
      --txt-dark:#424242;
      --smallclr: #8E8E93;
    }

    html,
body {
    overflow-x: hidden;
}

   
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Plus Jakarta Sans", sans-serif;
      color: var(--ink);
      background: var(--cream);
      -webkit-font-smoothing: antialiased;
    }
    .cclr{
      background: var(--cream) !important;
    }

    a:-webkit-any-link:focus-visible{
          outline-offset: 0;
              outline:none;
    }

    @font-face {
    font-family: 'Canela';
    src: url('../fonts/canela-mediumItalic-trial.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}
em{
    font-family: 'Canela', serif;
     font-style: italic;
}
    .container{
       max-width: 1400px;
    }

    h1,
    h2,
    h3,
    h4 {
       font-family: "Plus Jakarta Sans", sans-serif;
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.1;
    }

    .web-txt{
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0%;
    color:#5A5A5A;
    }
    .m-clr{
      color:var(--maroon) !important;
    }
    .m-bg{
      background:var(--maroon) !important;
    }
    .s-clr{color:var(--smallclr);}

    em {
      font-style: italic;
      color: var(--maroon);
      font-weight: 500;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .wrap {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 15px;
    }

   
    .eyebrow {
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--maroon);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
      margin-bottom: 18px;
    }

    .eyebrow::before,
    .eyebrow::after {
      content: "";
      width: 28px;
      height: 1px;
      background: var(--maroon);
      opacity: .5;
    }

    .section-title {
    font-weight: 400;
    font-size: 56px;
    line-height: 72px;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 15px;
    color:#424242;
    padding:15px;
    }

    .section-sub {
      text-align: center;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 56px;
      font-size: 15px;
      line-height: 1.6;
      font-weight: 600;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 26px;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 600;
      border-radius: var(--radius);
      border: 1px solid transparent;
      cursor: pointer;
      transition: all .25s ease;
    }
    .btn-web{
    background: #5C2018; 
    color: white;
    }
    .btn-b{
    border: 4px solid white;
    }

    .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
       background: var(--maroon) !important;
       border-color:var(--maroon-dark) !important;
    }

    .btn-primary {
      background: var(--maroon);
      color: #fff !important;
    }

    .btn-primary:hover {
      background: var(--gold-1);
    }

    .btn-outline {
      border-color: black;
      color: var(--navy);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--gold-1);
      color: #fff;
    }
    .btn-b:hover{
           border-color: #ffd301;
    }

    .btn-light {
      border-color: rgba(255, 255, 255, .5);
      color: #fff;
    }

    .btn-light:hover {
      background: #fff;
      color: var(--navy);
    }

    /* ---------- HEADER ---------- */
      header {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          z-index: 1000;
          background: #FBF8F1;
          transition: transform 0.3s ease;
      }

      header.hide {
          transform: translateY(-100%);
      }

    /* .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 15px;
      margin: 0 auto;
    } */

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 18px;
      letter-spacing: .02em;
    }

    .logo .mark {
      width: 30px;
      height: 30px;
      background: var(--maroon);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 13px;
      border-radius: 3px;
    }

    .logo b {
      font-weight: 600;
      color: var(--gold-1);
    }

     .ie-header .dropdown-menu a{
    transition: opacity .2s;
    color: #5C2018;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;  
    padding: 8px;
    }

    .ie-header .dropdown-menu a:hover{
    background: #f7f3ec;
    }


    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .nav-links a {
      opacity: .85;
      transition: opacity .2s;
          color: #5C2018;
    }

    .nav-links a:hover {
      opacity: 1;
    }

    .nav-cta {
      background: var(--maroon);
      padding: 11px 20px;
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .nav-cta:hover {
      background: var(--maroon-dark);
    }

    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .burger span {
      width: 22px;
      height: 2px;
      background: #fff;
    }

    /* ---------- HERO ---------- */
    .hero {
      background: var(--cream);
      padding: 64px 0 0;
    }

    .hero-top {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: end;
      margin-bottom: 36px;
    }

    .hero-title {
      font-size: clamp(40px, 6vw, 66px);
      line-height: .98;
      text-transform: uppercase;
    }
     .hero-title span{
      color:#FFD301;
     }

    .hero-title .accent {
      color: var(--maroon);
    }

    .hero-tag {
      /* font-family: "Plus Jakarta Sans", sans-serif; */
      /* font-style: italic; */
      font-size: 20px;
      color: var(--muted);
      margin-top: 14px;
    }

    .hero-desc {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-tabs {
      display: flex;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      margin-top: 44px;
    }

    .hero-tabs div {
      flex: 1;
      padding: 16px 22px;
      font-size: 12px;
      letter-spacing: .06em;
      text-transform: uppercase;
      font-weight: 600;
      border-right: 1px solid var(--line);
      color: var(--muted);
      cursor: default;
    }

    .hero-tabs div:first-child {
      color: var(--maroon);
      border-bottom: 2px solid var(--maroon);
    }

    .hero-tabs div:last-child {
      border-right: none;
    }

    .hero-image {
      position: relative;
      height: 420px;
      overflow: hidden;
      background: #111;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .92;
    }

    .hero-locs {
      position: absolute;
      bottom: 22px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 34px;
      color: #fff;
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hero-locs span {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .hero-locs i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold-1);
      display: inline-block;
    }

    .hero-edge {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 6px;
      background: var(--gold-1);
    }




.experience-section {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 580px;
    object-fit: cover;
    z-index: 0;
    
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65); /* #000000A6 */
    z-index: 1;
}

.experience-section .container {
    position: relative;
    z-index: 2;
}

.experience-section img {
    width: 100%;
    height: auto;
}





    
    /* ---------- CAPABILITIES ---------- */

    .cap-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .cap-card {
      background: #fff;
      border: 1px solid var(--line);
    }

    .cap-card .img {
      height: 230px;
      overflow: hidden;
    }

    .cap-card .img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s;
    }

    .cap-card:hover .img img {
      transform: scale(1.06);
    }

    .cap-body {
      padding: 26px 26px 30px;
    }

    .cap-body h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 24px;
    }

    .cap-body p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .cap-explore {
      font-size: 12px;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--maroon);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* ---------- CULTURAL FLUENCY ---------- */
    .culture {
      background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
      padding: 90px 0 0;
      color: var(--navy-deep);
    }

    .culture-head {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 46px;
    }

    .culture-eyebrow {
      font-size: 12px;
      letter-spacing: .22em;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 18px;
      opacity: .75;
    }

    .culture h2 {
      font-size: clamp(30px, 4.4vw, 46px);
    }

    .culture p.lead {
      margin-top: 18px;
      font-size: 15px;
      line-height: 1.75;
      color: #3a2c10;
    }

    .culture-image {
      height: 380px;
      overflow: hidden;
    }

    .culture-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      color: #5C2018;
    }

    .impactpage-stats{
       display: grid;
      grid-template-columns: repeat(4, 1fr);
      color: #5C2018; 
      gap:30px;
    }
   .pune-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    color: white;
    gap: 30px;
}

.pune-stats .stat {
    min-width: 0;
    text-align: start;
}

.pune-stats .num {
    white-space: nowrap;
}
     .pune-stats .stat .label{
      color:white;
     }
   .pune-stats .stat .num {
    color: white;
    display: inline-block;
    /* min-width: 130px; */
    white-space: nowrap;
    text-align: start;
}
    
    .impactpage-stats .stat{
      background: #FFFFFF40;
    }

    .impactpage-stats .stat:nth-child(1){
     background: #FFFFFF40;
    }
     .impactpage-stats .stat:nth-child(2){
     background: #FFFFFF80;
    }
     .impactpage-stats .stat:nth-child(3){
    background: #FFFFFFBF;
    }
     .impactpage-stats .stat:nth-child(4){
    background: #FFFFFF;
    }

    .stat {
      padding: 38px 20px;
      text-align: center;
      /* border-right: 1px solid rgba(255, 255, 255, .1); */
    }
    .stats .stat {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
}

.stats .stat .num {
    display: block;
    white-space: nowrap;
    font-size: 37px;
}

    .stat:last-child {
      border-right: none;
    }

    .stat .num {
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 54px;
      color: var(--maroon-dark);
      font-weight: 800;
    }

    .pt-30{
      padding-top:30px !important;
    }

    .stat .label {
      font-size: 13px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--txt-dark);
      margin-top: 8px;
      font-weight: 600;
    }

    /* ---------- SECTORS ---------- */
    .sectors {
      padding: 100px 0;
    }

    .sector-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    
    .sector-card{
      background: white;
    padding: 5px;
    }

    .sector-text {
      color: #5C2018;
      padding: 15px 0;
      z-index: 2;
    }

    .sector-text h4 {
      font-size: 18px;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-weight: 700;
      display: flex;
      justify-content: space-between;
      margin: 0;
      padding: 5px 10px;
    }
    
    .sector-text span{
      font-weight: 400;
    }

    .sector-text p {
      font-size: 12.5px;
      color: #d8dce4;
      margin-top: 4px;
    }

    /* ---------- CASE STUDIES ---------- */
    .cases {
      padding: 100px 0;
    }

    .case {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
      margin-bottom: 10px;
      padding: 15px;
    }




  

    /* .case-img {
      height: 340px;
      overflow: hidden;
    } */

    .case-img .case-i {
      width: 100%;
      height: 475px;
      object-fit: cover;
      object-position: top;
    }

    .case-tag {
      display: inline-block;
      background: var(--maroon);
      color: #fff;
      font-size: 11px;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: 6px 12px;
      margin-bottom: 18px;
      font-weight: 600;
      border-radius: 100px;
    }

    .case h3 {
      font-weight: 700;
      font-style: Bold;
      font-size: 18px;
      line-height: 24px;
      letter-spacing: 0%;
      color:#424242;
    }

    .case p.desc {
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.7;
      margin-bottom: 20px;
    }
.share-img{
    width: 98%;
    position: absolute;
    bottom: 10px;
    right: 5px;
    display: flex;
    background: #f7f3ec;
    padding: 10px 18px;
    gap: 18px;
    justify-content: space-between;
}
.share-img span{
    display: flex;
    gap: 10px;
    width: 220px;
    font-size: 14px;
    color: black;
    font-weight: 500;
    letter-spacing: 2px;
}
.share-img span img{
width:22px;
}

/* Feedback for the share button when the link goes to the clipboard
   instead of the device's own share sheet. */
.case-share{
    position: relative;
}
.case-share.is-copied::after{
    content: "Link copied";
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    white-space: nowrap;
    background: #000;
    color: #fff;
    font-size: 12px;
    letter-spacing: .5px;
    padding: 4px 9px;
    border-radius: 3px;
    pointer-events: none;
}



    .outcomes {
      background: #fff;
      border-left: 7px solid var(--maroon);
      padding: 22px 24px;
      margin-bottom: 18px;
      box-shadow: 0px 1px 5px 2px #00000014;
    }


    .outcomes h5 {
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0%;
    display: flex;
    gap: 10px;
    }

    .outcomes ul {
      list-style: none;
      padding: 0 15px;
    }

    .outcomes li {
      padding: 6px 0;
      position: relative;
      padding-left: 18px;
      line-height: 1.5;
      list-style: disc;
    }
     .outcomes li::marker{
      color:var(--maroon);
     }

     .outcomes a{
      color:var(--maroon);
      font-weight: 700;
     }


    .case-read {
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--navy);
      display: inline-flex;
      gap: 8px;
      align-items: center;
    }

    .slick-next:before {
    content: '';
    display: block;
    /* width: 20px; */
    height: 12px;
     background: url('../images/after.svg') center / contain no-repeat;
   
    }
    .slick-prev:before{
    content: '';
    display: block;
    /* width: 20px; */
    height: 12px;
    background: url('../images/before.svg') center / contain no-repeat;
    }

    .slick-next:before, .slick-prev:before{
          color: #5c2018;
    }
    /* ---------- IMPACT / FOUNDER ---------- */
    .impact {
      padding: 65px 0 0;
      background: white;
    }

    .founder {
      background: url(../images/home/sunil-bg.png);
      margin-top: 90px;
      background-size: cover;
    }

   

   

    .founder-name {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #424242;
    }

    .founder-role {
      font-size: 18px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #424242;
      margin: 8px 0 10px;
      background: white;
      display: inline-block;
      padding: 10px;
    }

    .founder-copy h3 {
      font-size: 18px;
      line-height: 1.35;
      margin-bottom: 18px;
     
    }

.founder-copy h3 b {
   color: var(--navy-deep);
}
   
    .founder-img {
      height: 100%;
      min-height: 420px;
      overflow: hidden;
    }

    .founder-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }


.counter-txt{
font-size: 18px;
line-height: 26px;
letter-spacing: 0%;
}


    /* ---------- PARTNERS ---------- */
    .partners {
      padding: 100px 0;
      text-align: center;
      overflow: hidden;
    }

    .slider-row {
      position: relative;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .slider-row+.slider-row {
      border-top: none;
    }

    .slider-track {
      display: flex;
      width: max-content;
      gap: 1px;
      animation: slide-left 32s linear infinite;
    }

    .slider-row.reverse .slider-track {
      animation-name: slide-right;
      animation-duration: 38s;
    }

    .partner-cell {
      background: #fff;
      height: 100px;
      width: 200px;
      flex: 0 0 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      border: 1px solid var(--line);
    }

   
    @keyframes slide-left {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    @keyframes slide-right {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    .partners:hover .slider-track {
      animation-play-state: paused;
    }



.logo-partner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}




  @media (prefers-reduced-motion:reduce) {
      * {
        transition: none !important;
      }
    }



    @media (prefers-reduced-motion:reduce) {
      .slider-track {
        animation: none !important;
      }
    }

    /* ---------- CTA ---------- */
    /* .cta {
      background: var(--navy-deep);
      color: #fff;
      text-align: center;
      padding: 110px 0;
      position: relative;
      overflow: hidden;
    } */

    /* .cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url('../images/cta.png') center/cover;
      opacity: .18;
    } */

    .cta-inner {
      position: relative;
      z-index: 2;
    }
.transformation-section h2{
     font-size: 64px;
    line-height: 80px;
}

    .cta h2 {
   
      max-width: 720px;
      margin: 0 auto 34px;
      color: #fff;
    }

    .cta em {
      color: var(--gold-1);
    }

    /* ---------- FOOTER ---------- */
    footer {
      background: var(--navy-deep);
      color: #c7ccd6;
      padding: 70px 0 30px;
    }

    .foot-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 50px;
      flex-direction: column;
    }

    .foot-logo {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #fff;
    font-size: 82px;
    display: flex;
    align-items: center;
    gap: 12px;
    }

    /* .foot-logo b {
      color: var(--gold-1);
    } */

    .foot-desc {
      max-width: 340px;
      font-size: 13.5px;
      line-height: 1.7;
      margin-top: 14px;
      color: #8a92a3;
    }

    .foot-links {
      display: flex;
      gap: 44px;
      flex-wrap: wrap;
      flex-direction: column;
    }

    .foot-col h5 {
      font-size: 11px;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 16px;
    }

    .foot-col a {
         font-size: 14px;
    color: #E5E7EB;
    margin-bottom: 10px;
    margin-left: 38px;
    letter-spacing: 2px;
}

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 24px;
      font-size: 14px;
      color: #9CA3AF;
      flex-wrap: wrap;
      gap: 12px;
    }

    .socials {
      display: flex;
      gap: 14px;
    align-items: center;
    justify-content: center;
    }

    .socials a {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }

 







.about-founder-txt{
font-family: Instrument Serif;
font-style: Italic;
font-size: 44px;
line-height: 54px;
letter-spacing: 0%;
text-align: center;
width:75%;
margin:auto;
}
.about-founder-txt em{
font-weight: 400;
}
.about-guided{
  background: #5C2018;
}
.about-guided p{
color:#F5F1E8;
font-weight: 100;
}
.about-guided h4{
color:#FFD301;
}











    /* .video-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45));
} */

.banner-content{
    position:relative;
    z-index:3;
    height:100%;
    padding:18px 25px;
   /* background: #000000d4; */
}


.video-banner video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 18px 25px;
}

/* Top Tags */

.top-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.top-tags span,
.bottom-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* Yellow Dot */

.top-tags i,
.bottom-tags i {
    width: 6px;
    height: 6px;
    background: #ffd500;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

/* Bottom Right */

.bottom-tags {
    position: absolute;
    right: 25px;
    bottom: 20px;
    display: flex;
    gap: 30px;
}
/* .video-banner video{
    z-index: -1;
} */

















footer {
    position: sticky;
    bottom: 0;
    z-index: 0;

    background: #111;
    color: #fff;

    min-height: 500px;

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

main {
    position: relative;
    z-index: 1;
    background: var(--cream);
}

.text-animate {
    overflow: hidden;
}

.text-animate .char {
    display: inline-block;
}












.video-section{
    position: relative;
}

.video-banner{
    width: 100%;
    height: 450px; /* Initial height */
    overflow: hidden;
    border-radius: 0px;
    position: relative;
    background: #0000009d;
}
.video-pin{
    /* height:100vh; */
    display:flex;
    align-items:start;   
}

.video-banner video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slick-dots li button:before {
color:#731d1d;
font-size: 12px;
}
.slick-dots li.slick-active button:before{
  color:var(--maroon-dark);
}
/* Wrapper */
.cases .slick-dots{
    position: absolute;
    bottom: -50px;
    left: 0;
    width: calc(100% - 120px); /* leave space for arrows */
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Arrow common */
.cases .slick-prev,
.cases .slick-next{
    top: calc(100% + 25px);
    transform: translateY(-20%);
    width: 45px;
    height: 45px;
}

/* Left Arrow */
.cases .slick-arrow{
    left: auto;
    right: 55px;
    border-radius: 100px;
    border: 1px solid var(--maroon);
}



/* Right Arrow */
.cases .slick-next{
    right: 0;
}














:root {
  --header-height: 80px; /* apne actual header ki height yahan daalo */
}

.hero {
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .row.align-items-end {
  flex: 0 0 auto;
}

.video-section {
  flex: 1 1 auto;
  min-height: 0; /* important, warna flex child overflow karega */
  display: flex;
}

.video-pin,
.video-banner {
  width: 100%;
  height: 100%;
}

.video-banner {
  position: relative;
  overflow: hidden;
}

.video-banner .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.process-wrapper{
    display:flex;
    gap:12px;
    height:430px;
}

.process-card{
    flex:.6;
    border:1px solid #ddd;
    border-radius:0px;
    padding:18px;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    transition:.5s;
    background: #F5F1E8;
}
/* Built-in panel images. A sector with its own image uploaded in the CMS
   overrides --sector-image inline, so these stay as the fallback. */
.process-card:nth-child(1) {
  --sector-image: url(../images/sectors/healthcare.png);
}
.process-card:nth-child(2) {
  --sector-image: url(../images/sectors/infrastructure.png);
}
.process-card:nth-child(3) {
  --sector-image: url(../images/sectors/manufacturing.png);
}
.process-card:nth-child(4) {
  --sector-image: url(../images/sectors/hospitality.png);
}
.process-card:nth-child(5) {
  --sector-image: url(../images/sectors/communications.png);
}
.process-card:nth-child(6) {
  --sector-image: url(../images/sectors/government.png);
}
.process-card.active {
    background-image: var(--sector-image, none);
    flex: 3;
    border-color: #f7f3ec;
    box-shadow: inset 0 0 2000px 3000px #000000b3;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}


.process-card.active .vertical-title{
    opacity:0;
    visibility:hidden;
}
.step{
    font-size:12px;
    color:#b7b7b7;
    font-weight:600;
}


.process-content{
    opacity:0;
    transition:.35s;
}
.process-content h4{
  margin-bottom: 22px;
}
.process-content h4 span{
    background: #D4A017;
    border-radius: 50px;
    border: 2px dashed #f7f3ec;
    padding: 7px 14px;
    font-size: 17px;
    color: black;
    text-transform: uppercase;
}

.process-card.active .process-content{
    opacity:1;
    display: flex;
    /* align-items: end; */
    justify-content: end;
    height: 100%;
    flex-direction: column;
    padding-bottom: 15px;
}

.vertical-title{
    position: absolute;
    left: 50%;
    bottom: 35px;
    writing-mode: vertical-rl;
    transform: translateX(-50%) rotate(180deg);
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.process-content h4{
    margin-bottom:15px;
    color:#fff;
}

.process-content p{
    color:#fff;
    line-height:1.7;
}




.abt-top-hdg{
    font-size: 35px;
    padding-bottom: 12px;
    line-height: 45px;
}
.w-60{
  width:60%;
}

.caa-box{
    background: #FBF8F1;
    box-shadow: 0px 0px 6px 0px #0000001F;
    margin: 15px 0;
}
.caa-box h4{
font-family: Plus Jakarta Sans;
font-weight: 700;
font-style: Bold;
font-size: 18px;
line-height: 24px;
letter-spacing: 0%;
}


.gov-choosebox.hover-box {
    position: relative;
    z-index: 2;
    border: 1px solid #ddd;
    /* border-radius: 12px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 0px;
    padding: 0 20px;
    background: white;
}
.gov-video{
     width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gap-30{
  gap:30px 0;
}



.gov-choosebox.hover-box span {
    color: #5C201840;
    font-weight: 700;
    font-size: 72px;
}

.gov-choosebox.hover-box h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}



.gov-partnerbox{
  text-align: center;
      padding: 30px;
}

.gov-partnerbox img{
padding-bottom: 15px;

}

.gov-partnerbox h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}




.tech-video {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
}

.what-grid{
    display: grid;
    gap: 70px;
    grid-template-columns: 0.6fr 1fr;
}
.what-grid .nav-link{
text-align: left;
color: var(--Text-Dark, #424242);
line-height: 35px;
font-size: 16px;
font-weight: 400;
}
.what-grid .nav-link.active{
background: #FBF8F1;
color: var(--Dark-Red, #5C2018);
font-family: Plus Jakarta Sans;
font-weight: 400;
font-size: 16px;
}
.what-box {
  background: #FBF8F1;
  padding: 15px;
}
.what-box img{
width: 100%;
margin-bottom: 15px;
}

.lifecore-box{
  background: white;
      padding: 18px;
}

.lifecore-box h4{
font-weight: 600;
font-style: SemiBold;
font-size: 18px;
line-height: 100%;
color: var(--Dark-Red, #5C2018);
}

.core-ex{
font-weight: 700;
font-style: Bold;
font-size: 18px;
line-height: 24px;
text-align: center;
color: var(--Dark-Red, #5C2018);
}


 .verticle-half{
    background: linear-gradient(
        to bottom,
        #ffffff00 0 40%,
        #ffffff 60% 100%
    );
}

.new-pd {
    padding: 70px 0;
}

.new-pd + .new-pd {
    padding-top: 0;
}

.techpage-solution .nav-link{
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  padding: 15px;
}
.techpage-solution .nav-link.active{
background: var(--cream);
color:var(--maroon);
}
.techpage-solution .tab-pane.active{
background: var(--cream);
}

.founder-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}



.ie-form label{
    color: var(--maroon, #5C2018);
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
}
.ie-form input::placeholder,
.ie-form textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    color:  #8E8E93;   
}
:focus-visible{
  outline:0;
}
.form-control:focus{
      box-shadow: none;
}
.ie-whatsp p{
  font-size: 14px;
  font-weight: 600;
}
.ie-whatsp a{
    color: #25D366;
}

.know-box{
    border: 0.25px solid #5C201840;
    background: white;
    height: 100%;
    padding: 30px;
    border-radius: 8px;
}
.know-box h3{
font-weight: 600;
font-style: SemiBold;
font-size: 22px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color:var(--maroon);
}
.know-box span{
font-weight: 600;
font-style: SemiBold;
font-size: 13px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 20px;
}


.responsive-width {
    width: 50%;
}
.w-75 {
   width: 75%;
}
.w-60{
  width: 60%;
}
.w-50{
  width: 50%;
}
@media (max-width: 767px) {
    .responsive-width {
        width: 100%;
    }
    .w-75 {
   width: 100% !important;
}
.w-60{
  width: 100%;
}
.w-50{
  width: 100% !important;
}
}

.form-select:focus{
  box-shadow:none;
}

 .navbar-toggler:focus{
  box-shadow:none !important;
 }


 .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus{
  box-shadow: none !important;
 }


 .cta-inner h2 {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.cta-inner h2::before {
   content: "";
position: absolute;
top: 13%;
left: -15px;
width: calc(100% + 260px);
height: 70%;
background: rgba(255, 255, 255, 0.65);
filter: blur(35px);
border-radius: 100px;
z-index: -1;
}


body.offcanvas-open {
    overflow: hidden !important;
}
.offcanvas {
    overflow-y: auto;
}

@media (max-width: 991.98px) {
    #mainMenu {
        overflow: hidden !important;
    }

    #mainMenu .offcanvas-body {
        overflow: hidden !important;
    }
}



/* Media box */
.media-box{
background: var(--cream);
padding:30px;
}
.media-box h3{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 24px;
    color:var(--maroon);
}

.media-box a{
font-weight: 700;
font-style: Bold;
font-size: 14px;
line-height: 100%;
letter-spacing: 0%;
color:var(--maroon);
}
.media-txt{
margin-top: 15px;
}