*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}



:root {
  /* Colors */
  --primary-red: #E70001;
  --primary-blue: #00016A;

  --white: #FFFFFF;
  --black: #000000;
  --body-grey: #6C6C6C;
  --light-red: #FFF5F5;

  /* Typography */
  --font-heading-main: "Raleway";
  --font-body: "Inter", sans-serif;
  --fs-heading-h1: clamp(2.125rem, 7vw, 3.125rem);
  --fs-heading-h2:clamp(2rem, 3.8vw, 2.7rem);
  --fs-heading-h3: clamp(1.25rem, 6vw, 1.875rem);
  --fs-body: clamp(1rem, 2vw, 1.125rem);    
  --fs-small: clamp(0.875rem, 1.5vw, 1rem);
  --fs-large: clamp(1.1rem, 2.5vw, 1.5rem);

  /* Spacing */
  --space-xs: 1rem;
  --space-sm: 1.5rem;
  --space-md: 2.5rem;
  --space-lg: 3.5rem;
  --space-xl: 5rem;
  --padding-global: 0rem 1rem;
  --padding-section-large: 6rem 0rem;
  --padding-section-medium: 4rem 0rem;
  --padding-section-small: 3rem 0rem;

  /* Borders */
  --radius-sm: 1rem;
  --radius-reg:1.25rem;
  --radius-md: 2rem;
  --radius-lg: 5rem;

  /* Wrapper Width */
  --wrapper-width: 83.75rem;
  --wrapper-width-medium: 80rem;
}

/* clip (not hidden) stops the scroll-reveal translateX overshoot from adding a
   horizontal scrollbar, while keeping the sticky header working */
html {
  overflow-x: clip;
}
body {
  background: #fff;
  overflow-x: clip;
}

/** hero section */
.icon-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 16px;
}
.marque{
  padding: 0.5rem;
}
.icon-marque{
  width:18px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.social-icons{
  max-width: 30px;
}

/* Top contact bar — hidden on mobile; phone/email stay available in the footer */
@media (max-width: 767px) {
  .marque {
    display: none;
  }
}
.btn-primary{
  background-color: var(--primary-red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: inline-block;
  border: 1px solid var(--primary-red);
  transition: color 0.4s ease-in-out;
}
.btn-primary::before{
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.btn-primary:hover::before{
  transform: scaleX(1);
}
.btn-primary:hover{
  color: var(--primary-red);
}
.btn-secondary{
  background-color: var(--white);
  color: var(--primary-red);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--primary-red);
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: inline-block;
  transition: color 0.4s ease-in-out;
}
.btn-secondary::before{
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.btn-secondary:hover::before{
  transform: scaleX(1);
}
.btn-secondary:hover{
  color: var(--white);
}
img.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}
.navbar{
  padding: 0.825rem 0rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.nav-menu {
    flex: 1;
}
.navbar .links-wrapper {
    margin: 0 auto;
    gap: 1.5rem;
}
a.nav-links {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--primary-blue);
    transition: color 0.3s ease-in-out;
    position: relative;
    padding-bottom: 4px;
}
a.nav-links::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
a.nav-links:hover {
    color: var(--primary-red);
}
a.nav-links:hover::after {
    transform: scaleX(1);
}
a.nav-links.active {
    color: var(--primary-red);
}
a.nav-links.active::after {
    transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }

  /* Dimmed backdrop behind the drawer — click anywhere on it to close */
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 1, 42, 0.45);
    backdrop-filter: blur(2px);
    z-index: 999;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 86%);
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6.5rem 1.75rem 2.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(0, 1, 42, 0.18);
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu .links-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav-menu a.nav-links {
    font-size: 18px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 1, 42, 0.08);
  }

  /* The animated desktop underline would sit on top of the divider */
  .nav-menu a.nav-links::after {
    display: none;
  }

  .nav-menu a.nav-links.active {
    color: var(--primary-red);
    padding-left: 0.875rem;
    border-left: 3px solid var(--primary-red);
  }

  .nav-menu .cta-wrapper-header {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
    margin-top: 2rem;
  }

  .nav-menu .cta-wrapper-header a {
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 16px;
  }

  /* Keep the burger clickable above the drawer so it doubles as a close button */
  .hamburger {
    position: relative;
    z-index: 1001;
  }
}

/* slider section */
        .slider {
            width: 100%;
            height: 100vh;
            overflow: hidden;
            position: relative;
            touch-action: pan-y;
        }

        .slides {
            display: flex;
            width: 700%;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }

        .slides.no-transition {
            transition: none;
        }

        .slide {
            width: 100vw;
            height: 100vh;
            flex-shrink: 0;
        }

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

/* Hero responsive visibility: desktop hero by default, mobile hero on phones */
.hero-mobile {
    display: none;
}

.hero-desktop {
    display: block;
}

@media (max-width: 767px) {
    .hero-desktop {
        display: none;
    }

    .hero-mobile {
        display: block;
    }

    /* Portrait phone images look best shorter than full viewport height */
    .hero-mobile .slider {
        height: 90vh;
    }

    .hero-mobile .slides {
        width: 800%;
    }

    .hero-mobile .slide {
        width: 100vw;
        height: 90vh;
    }
}

  .big-width{
    width: 22px;
  }

  /*marque section*/
    .marquee {
    background: var(--primary-red);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 1rem 0;
  }

  .track {
    display: inline-flex;
    gap: 60px;
    animation: scroll 18s linear infinite;
  }

  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  .track span {
    font-weight: 600;
    font-size: 26px;
    font-family: var(--font-heading-main);
  }

  /*why choose us section*/
.heading-why{
    display: flex;
    align-items: top;
    justify-content: space-between;
    gap: 3rem;
}

.left-40{
  width: 40%;
}
.right-48{
  width: 48%;
}
.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 20px;
    position: relative;
}

.slider-why {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.slider-why.no-transition {
    transition: none;
}

.card {
    position: relative;
    flex: 0 0 450px;
    min-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.card img {
    width: 100%;
    height: 100%;
}

.overlay {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    background: linear-gradient(to top, rgb(14 13 110), rgb(14 13 110 / 28%), rgb(14 13 110 / 0%));
}

.overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 16px;
    line-height: 1.5;
}

.controls {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
}

.controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #1d1d9e;
    background: white;
    color: #1d1d9e;
    cursor: pointer;
    font-size: 20px;
}

.controls button:hover {
    background: #1d1d9e;
    color: white;
}

/* Tablet */

@media (max-width: 991px) {
    .left-40{
  width: 100%;
}
.right-48{
  width: 100%;
}
.heading-why{
    flex-direction: column;
    gap: 0px;
    padding-bottom: 20px !important;
}
}

/* Mobile */

@media (max-width: 576px) {
    .card {
        flex: 0 0 320px;
        min-width: 320px;
        height: 100%;
    }

    /* Run the slider edge-to-edge so a 320px card fits even a 320px viewport.
       The negative margin cancels .wrapper's 1rem gutters. */
    .slider-container {
        /* width:100% would pin this to the wrapper's content box and the
           negative margins would have nothing to expand into */
        width: auto;
        padding: 20px 0;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    /* ...but keep the arrows lined up with the rest of the content */
    .controls {
        padding-right: 1rem;
    }

    .overlay h3 {
        font-size: 22px;
    }

    .overlay p {
        font-size: 14px;
    }
}

/*about section*/
img.about-image {
    width: 100%;
    border-radius:20px;
}
/* Extra breathing room below the home-page About section */
.about-section.padding-section-large {
    padding-bottom: 130px;
}
.image-container {
    max-width: 650px;
    width: 100%;
    position: relative;
}
.right-about {
    max-width: 700px;
    width: 100%;
}
.right-about{
    width: 100%;
    max-width: 650px;}
p.big {
    font-size: 66px;
    font-family: 'Raleway';
    color: var(--primary-red);
    font-weight: 700;
    line-height: 1.3em;
}
.badge {
    padding: 20px 34px;
    max-width: 250px;
    text-align: center;
    background: white;
    border-radius: 20px;
    position: absolute;
    bottom: -50px;
    right: -20px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.1);
}
/* Below this the image column meets the wrapper edge, so the -20px
   overhang would push the badge past the viewport. */
@media (max-width: 1200px) {
    .badge {
        right: 0;
    }
}
.about-flex{
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
/* Size the two columns from available space, not their content, so a
   growing counter value can't push the sibling image around (jitter fix). */
.about-flex > .right-about {
    flex: 1 1 0;
    min-width: 0;
}
@media (max-width: 991px) {
    .about-flex{
    flex-direction: column;
    gap: 40px;
}
/* Stacked, the column gap already separates the text from the image, so the
   trailing margin on the last paragraph reads as a second, doubled space. */
.about-flex > .right-about > :last-child {
    margin-bottom: 0;
}
.right-about {
    max-width: 100%;
}
.right-about{
    max-width: 100%;
}
.image-container {
    max-width: 100%;
}
.badge {
    right: 0;
}

}


/* Counter Section */
.why_choose{
    background-image: url('Assets/Image/why-choose-back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--light-red);
    margin-top:50px;
}

.counter-item {
    padding: 2.5rem 1rem;
    border-right: 1px solid #d9d9d9;
}

.counter-item:last-child {
    border-right: none;
}

.counter-number {
    font-size: clamp(3rem, 5vw, 6rem);
    color: var(--primary-red);
    font-family: var(--font-heading-main);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.counter-item p {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 500;
}

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

    .counter-item:nth-child(2) {
        border-right: none;
    }

    .counter-item:nth-child(1),
    .counter-item:nth-child(2) {
        border-bottom: 1px solid #d9d9d9;
    }
}

@media (max-width: 576px) {
    .counter-wrapper {
        grid-template-columns: 1fr;
    }

    .counter-item {
        border-right: none;
        border-bottom: 1px solid #d9d9d9;
    }

    .counter-item:last-child {
        border-bottom: none;
    }
}

.full-width{
    width: 100%;
}
.blue-box{
    display: flex;
    background-image: url('Assets/Image/bg-blue.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    margin-top: 100px;
}
.left-container-blue-box {
    max-width: 720px;
    width: 100%;
    padding: 120px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.image-contianer-blue-box{
    background-image: url('Assets/Image/principal.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 732px;
    width: 100%;
    min-height: 500px;
}
.image-contianer-blue-box.director-image-container{
    background-image: url('Assets/Image/director.webp');
}
/* Opt-out for pages where the section already supplies its own top spacing */
.blue-box.no-margin-top {
    margin-top: 0;
}
img.principal-image-mobile {
    width: 100%;
    display: none;
}
@media screen and (max-width: 991px) {
    
.blue-box {
    flex-direction: column;
}
.left-container-blue-box {
    max-width: 100%;
    padding: 60px;
}
/* Below 991px the portrait is shown as an <img>, so the background copy is
   dropped. The director variant needs matching specificity to be reset too. */
.image-contianer-blue-box,
.image-contianer-blue-box.director-image-container {
    max-width: 100%;
    min-height: 0;
    height: 100%;
    background: none;
}
img.principal-image-mobile {
    display: block;
}
}
@media screen and (max-width: 576px) {
        .left-container-blue-box {
        padding: 40px 30px;
    }
    .blue-box{
    margin-top: 60px;
}
}

/* activities section */
.activity-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.activity-slider {
    width: 100%;
    overflow: hidden;
}

.activity-track {
    display: flex;
    gap: 1rem;
    width: max-content;
}

.activity-card {
    width: 30vw;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

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

/* Left animation */

.activity-slider.left .activity-track {
    animation: activityLeft 25s linear infinite;
}

/* Right animation */

.activity-slider.right .activity-track {
    animation: activityRight 25s linear infinite;
}

@keyframes activityLeft {
    from {
        transform: translateX(0);
    }

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

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

    to {
        transform: translateX(0);
    }
}

/* Pause on hover */

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

/* Tablet */

@media (max-width: 991px) {
    .activity-card {
        width: 45vw;
    }
}

/* Mobile */

@media (max-width: 576px) {
    .activity-card {
        width: 80vw;
    }

    p.big {
    font-size: 46px;
}
.badge {
    padding: 16px 24px 0;
    max-width: 150px;
    right: 0;
}
}

.testimonial-section {
    background: #fafafa;
}

.testimonial-section h2 {
    margin-bottom: 0;
}

.testimonial-slider {
    margin-top: 3rem;
}

.testimonial-card {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    /* Room on every side so the card's box-shadow is not clipped by the
       Slick track's overflow:hidden — the bottom shadow was being cut off. */
    padding: 60px 22px 34px;
}

.testimonial-content {
    background: #fff;
    padding: 30px;
    padding-top: 70px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d9d9d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 3px solid var(--primary-red);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.testimonial-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-content h4 {
    color: #555;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.testimonial-content img {
    max-width: 120px;
    margin: 0 auto;
}

.testimonial-slider .slick-track {
    display: flex;
}

.testimonial-slider .slick-slide {
    height: inherit;
}

/* Arrows below the cards */
.testimonial-slider {
    position: relative;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    position: absolute;
    top: auto;
    bottom: -30px;
    width: 60px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 0;
    line-height: 0;
    color: transparent;
    cursor: pointer;
    transform: none;
    z-index: 10;
}

.testimonial-slider .slick-prev {
    left: 50%;
    margin-left: -75px;
}

.testimonial-slider .slick-next {
    left: 50%;
    margin-left: 15px;
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    content: "";
    display: block;
    width: 60px;
    height: 24px;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.testimonial-slider .slick-prev:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='24' viewBox='0 0 60 24' fill='none'%3E%3Cpath d='M59 12H2M2 12L12 5M2 12L12 19' stroke='%23F5A3A3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.testimonial-slider .slick-next:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='24' viewBox='0 0 60 24' fill='none'%3E%3Cpath d='M1 12H58M58 12L48 5M58 12L48 19' stroke='%23E70001' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Arrow hover / focus / pressed states */
.testimonial-slider .slick-prev:hover:before,
.testimonial-slider .slick-prev:focus:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='24' viewBox='0 0 60 24' fill='none'%3E%3Cpath d='M59 12H2M2 12L12 5M2 12L12 19' stroke='%23E70001' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.testimonial-slider .slick-prev:active:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='24' viewBox='0 0 60 24' fill='none'%3E%3Cpath d='M59 12H2M2 12L12 5M2 12L12 19' stroke='%2300016A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.testimonial-slider .slick-next:hover:before,
.testimonial-slider .slick-next:focus:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='24' viewBox='0 0 60 24' fill='none'%3E%3Cpath d='M1 12H58M58 12L48 5M58 12L48 19' stroke='%23A80001' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.testimonial-slider .slick-next:active:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='24' viewBox='0 0 60 24' fill='none'%3E%3Cpath d='M1 12H58M58 12L48 5M58 12L48 19' stroke='%2300016A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.testimonial-section .wrapper-medium {
    padding-bottom: 30px;
}

/* CTA Section */
.cta {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)
        ),
        url('Assets/Image/cta image new.webp');

    padding: 10rem 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--white);
}

.wrapper-cta {
    max-width: var(--wrapper-width-medium);
    margin: 0 auto;
}

/* CTA eyebrow — a glassy capsule above the headline */
.cta-eyebrow {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1;
}

@media (max-width: 576px) {
    .cta-eyebrow {
        font-size: 11px;
        letter-spacing: 0.3px;
        text-transform: none;
        padding: 0.5rem 1rem;
    }
}

/* Activity gallery sits flush — no section padding */
.activity-section.padding-section-medium {
    padding: 0;
}

.cta-wrapper{
    padding: 20px 0px;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons size to their label instead of wrapping it onto two lines */
.cta-wrapper .btn-primary,
.cta-wrapper .btn-secondary,
.cta-wrapper-header .btn-primary,
.cta-wrapper-header .btn-secondary {
    white-space: nowrap;
}

/* Header CTA buttons are a touch smaller than the in-page ones */
.cta-wrapper-header .btn-primary,
.cta-wrapper-header .btn-secondary {
    font-size: 16px;
}

@media (max-width: 767px) {
    .cta {
        padding: 6rem 1rem;
    }

    .cta-wrapper {
        gap: 1rem;
    }

    .cta-wrapper .btn-primary,
    .cta-wrapper .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 16px;
    }
}

/* footer section */
.footer {
    background-image: url('Assets/Image/footer bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 1rem 20px;
}
.logo-footer .logo {
    max-width: 270px;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1fr 0.8fr 1.2fr;
    gap: 3rem;
}
.flex-footer{
    display: flex;
    gap: 0.2rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5rem;
}
p.text-big-footer {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    color: #3F3F3F;
}
a.text-big-footer {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    color: #3F3F3F;
}
/* "Address:" label is a <span>, which the p/a rules above don't cover */
span.text-big-footer {
    font-weight: 700;
}
a.footer-link{
    font-size: 18px;
    line-height: 1.2em;
    color: #3F3F3F;
    transition: color 0.3s ease-in-out;
}
a.footer-link:hover{
    color: var(--primary-red);
}
a.footer-link.active{
    color: var(--primary-red);
}
.quick-links-wrapper a.footer-link,
.flex-footer:not(.top) a.footer-link,
.footer-bottom a {
    position: relative;
    display: inline-block;
    padding-bottom: 3px;
}
.quick-links-wrapper a.footer-link::after,
.flex-footer:not(.top) a.footer-link::after,
.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}
.quick-links-wrapper a.footer-link:hover::after,
.flex-footer:not(.top) a.footer-link:hover::after,
.footer-bottom a:hover::after,
.quick-links-wrapper a.footer-link.active::after {
    transform: scaleX(1);
}
.flex-footer.top {
    align-items: flex-start;
}
.quick-links-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.logo-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social img {
    max-width: 50px;
    max-height: 50px;
}
.footer-map {
    max-width: 420px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
}
.footer-map iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    padding-bottom: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.footer-bottom p,
.footer-bottom a {
    font-size: 16px;
    line-height: 1.3em;
    color: #3F3F3F;
}
.footer-bottom a:hover {
    color: var(--primary-red);
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        justify-content: flex-start;
    }

    .gridx2{
        display:flex !important;
        flex-direction:column;
        gap: 2rem;
    }
    .gridx3{
        display:flex !important;
        flex-direction:column;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .footer {
        /* no side padding — .wrapper already supplies the gutters */
        padding: 50px 0 20px;
    }
    .footer-grid {
        gap: 2.5rem;
    }
    .footer-map {
        max-width: 100%;
    }
    .footer-bottom p,
    .footer-bottom a {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.75rem;
        margin-top: 2.5rem;
        padding-left: 16px;
        padding-right: 16px;
    }
    .flex-footer {
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }
    p.text-big-footer,
    a.text-big-footer,
    a.footer-link {
        font-size: 16px;
    }
}
/* ============================================================
   Scroll reveal animations (fade-up / down / left / right)
   Elements carry data-reveal="..."; js/reveal.js adds .is-visible.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal-ready [data-reveal] {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.7s ease, transform 0.7s ease;
        transition-delay: var(--reveal-delay, 0s);
        will-change: opacity, transform;
    }

    .reveal-ready [data-reveal="fade-down"] {
        transform: translateY(-40px);
    }

    /* fade-right = slides in from the left; fade-left = from the right */
    .reveal-ready [data-reveal="fade-right"] {
        transform: translateX(-40px);
    }

    .reveal-ready [data-reveal="fade-left"] {
        transform: translateX(40px);
    }

    .reveal-ready [data-reveal="fade"] {
        transform: none;
    }

    .reveal-ready [data-reveal].is-visible {
        opacity: 1;
        transform: none;
    }

    /* Staggered reveal: put .reveal-stagger on a container and data-reveal on
       its direct children — each child fades in a beat after the previous. */
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(2) { --reveal-delay: 0.08s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(3) { --reveal-delay: 0.16s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(4) { --reveal-delay: 0.24s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(5) { --reveal-delay: 0.32s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(6) { --reveal-delay: 0.40s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(7) { --reveal-delay: 0.48s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(8) { --reveal-delay: 0.56s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(9) { --reveal-delay: 0.64s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(10) { --reveal-delay: 0.72s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(11) { --reveal-delay: 0.80s; }
    .reveal-ready .reveal-stagger > [data-reveal]:nth-child(12) { --reveal-delay: 0.88s; }
}

/* Floating WhatsApp button + number picker (bottom-right, all pages) */
.whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.75rem;
}
.whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #25D366;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.whatsapp-float img {
    width: 32px;
    height: 32px;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.whatsapp-float.active {
    background: #1DA851;
}

/* Number list, revealed above the button */
.whatsapp-panel {
    width: 265px;
    max-width: calc(100vw - 48px);
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.whatsapp-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.whatsapp-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #25D366;
}
.whatsapp-panel-title {
    color: var(--white);
    font-size: var(--fs-small);
    font-weight: 600;
}
.whatsapp-panel-close {
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
a.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1rem;
    color: var(--primary-blue);
    font-size: var(--fs-small);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
}
a.whatsapp-option + a.whatsapp-option {
    border-top: 1px solid #EEF1F4;
}
a.whatsapp-option:hover {
    background: #F2FBF5;
}
.whatsapp-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #25D366;
}
.whatsapp-option-icon img {
    width: 18px;
    height: 18px;
}
@media (max-width: 576px) {
    .whatsapp-widget {
        right: 16px;
        bottom: 16px;
    }
    .whatsapp-float {
        width: 52px;
        height: 52px;
    }
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

.gridx2{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.gridx3{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
img.achivemnet-image {
    width: 100%;
    border-radius: var(--radius-sm);
}
.achivement{
    padding-bottom: 80px;
    background:white;
}