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

body {
   font-family: 'Fredoka', sans-serif;
    /* overflow-x: hidden;  Prevent horizontal scroll */
    width: 100%;
}

.transparent-navbar.navbar.scrolled {
    background: #0a99ff !important;
    height:80px;
}
.navbar.scrolled {
    background: #0a99ff !important;
    height:80px;
    z-index:9999;
}
/* LOGO SIZE AFTER SCROLL */
.navbar.scrolled .navbar-brand img {
    height: 60px;   
}

@media (max-width: 768px) {
    .gap-4 {
        gap: 0.5rem !important;  /* Adjust the gap to a smaller value */
    }
}

@media (max-width: 768px) {
    .navbar .nav-item {
        margin-bottom:5px;  /* Reduce the margin as needed */
    }
}
@media (max-width: 768px) {
    .navbar {
        background-color: black;
    }
    .navbar a {
        color:#000 !important; /* Ensure links are visible on black background */
    }
}


/* MOBILE dropdown fix */
@media (max-width: 991px) {
  .dropdown-menu {
    display: none;
    background: #000;
    padding: 10px;
    border-radius: 16px;
  }

  .dropdown-menu.show {
    display: block;
  }

  .navbar-nav .nav-link {
    color: #fff !important;
  }
}


.hero-section {
    padding-top: var(--navbar-height);
    position: relative;
    z-index:0;
    height: 100vh; 
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* TRANSPARENT NAVBAR */
.transparent-navbar {
   background: transparent !important;
    box-shadow: none; /* Remove any unwanted shadow */
    position:fixed; /* Make navbar absolute to place it on top */
    top: 0; /* Keep it at the top */
    left: 0; 
    height: var(--navbar-height);
    width: 100%;
    z-index:99999; /* Set a high z-index to place it above the hero section */
     isolation: isolate;   /* 🔥 MOST IMPORTANT LINE */
}

.earth-img {
    position: absolute;
    top: -30px;          /* adjust to match reference */
    right: -40px;        /* pushes image partially outside */
    width: 160px;
    height:140px;        /* control size */
    opacity: 0.6;        /* soft look like reference */
    z-index: 1;          /* behind navbar text */
    pointer-events: none; /* prevents blocking clicks */
}
/* NAV LINKS */
.navbar-nav .nav-link {
    font-weight: 500;
     font-family: 'Fredoka', sans-serif;
     color: #000;
}
.nav-item{
    font-family: 'Fredoka', sans-serif;
    font-size:30px;
    font-weight:500;

}

.navbar .nav-item .dropdown-toggle::after {
    margin-top:15px;  /* Adjust the value to move the arrow down or up */
}

/* Dropdown background transparent */
.dropdown-menu {
  /* background: transparent; */
  border: none;
  box-shadow: none;
  padding: 8px 0;
  border-radius:30px;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #fff;
  /* background-color:black; */
  padding: 0 16px;
  font-size:20px;
  font-weight:500;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background:black;
  color: #fff;
  border-radius:30px !important;
}

/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    background: rgba(12, 12, 12, 0.15);
    border: none;
    box-shadow: none;
    padding: 10px 0;
}
/* .dropdown-menu:hover{
   background: rgba(12, 12, 12, 0.15);
} */
.dropdown-menu .dropdown-item {
   
    color:black;
    padding: 6px 18px;
}

.dropdown-menu {
    animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow icon */
.navbar-nav .nav-item .fa-chevron-down {
    display: none;
}

.nav-item.dropdown:hover .fa-chevron-down {
    display: inline-block;
}

/* Style for chevron */
.nav-item .fa-chevron-down {
    margin-left: 5px;
}

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
}

/* Optional: You can also change the hover background color */
.nav-item.dropdown:hover.nav-link {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius:30px;
}

/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    background: rgba(12, 12, 12, 0.15);
    border: none;
    box-shadow: none;
    padding: 10px 0;
}
/* .dropdown-menu:hover{
   background: rgba(12, 12, 12, 0.15);
} */
.dropdown-menu .dropdown-item {
   
    color:black;
    padding: 6px 18px;
}
/* .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 30px;
} */
/* .navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    color:black;
    transform: translateX(4px);
} */
.dropdown-menu {
    animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow icon */
.navbar-nav .nav-item .fa-chevron-down {
    display: none;
}

.nav-item.dropdown:hover .fa-chevron-down {
    display: inline-block;
}

/* Style for chevron */
.nav-item .fa-chevron-down {
    margin-left: 5px;
}

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
}

/* Optional: You can also change the hover background color */
.nav-item.dropdown:hover.nav-link {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius:30px;
}


/* Full section with background image */
.section {
  position: relative;
  height: 80vh; /* Full viewport height */
  background-image: url('/Images/Group 14 (1).png'); /* Background image path */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Semi circle at the bottom center */
.semi-circle {
  position: absolute;
  width: 580px;
  height: 350px;
  background-color: white;
  border-radius: 300px 300px 0 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* Space out the Images and text */
  align-items: center;
  padding: 20px 40px; /* Adjust padding */
  position: relative;
  margin-top: 280px;
}

.text-content {
  font-size: 40px;
  font-weight: bold;
  color: black;
  text-align: center;
  flex: 1;
  margin-top: -30px;
  margin-left: 10px;
}

.text-content span {
  font-size: 48px;
  font-weight: 900;
}

.cta-button {
  background-color: #F39F5F; /* Orange button */
  color: black;
  padding: 10px 20px;
  font-size: 20px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  margin-top: 25px;
}

/* Center the image above text content */
.top-image {
  width: 90px;
  height: auto;
  margin-bottom: -20px; /* Space between the image and the text */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Image container for kids */
.image-container img {
  width: 120px; /* Image size */
  height: auto;
  margin-top:40px; 
}

/* Ball animation */
@keyframes passBall {
  0% {
    left:20%; /* Start from left kid (adjusted a bit forward) */
    bottom: 90px; /* Ball's starting position slightly higher above the left kid */
  }
  25% {
    left: 48%; /* Ball moves to the center */
    bottom: 120px; /* Pass over Confidence text, a bit higher */
  }
  50% {
    left:75%; /* Ball reaches right kid (adjusted to stay inside) */
    bottom: 90px; /* Ball's position slightly higher above the right kid */
  }
  75% {
    left: 48%; /* Ball moves back to the center */
    bottom: 120px; /* Pass back over Confidence text, a bit higher */
  }
  100% {
    left:20%; /* Ball goes back to left kid */
    bottom: 90px; /* Ball's position slightly higher above the left kid */
  }
}
@media (max-width: 768px) {
  .ball {
    animation: passBallMobile 3.5s ease-in-out infinite;
  }
}
@keyframes passBallMobile {
  0%   { left:10%; bottom: 50px; }   /* 🔼 lifted */
  25%  { left:48%; bottom: 105px; }   /* 🔼 higher arc */
  50%  { left:75%; bottom: 80px; }
  75%  { left:48%; bottom: 145px; }
  100% { left:10%; bottom: 40px; }
}


/* Ball styling and animation */
.ball {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url('/Images/ball.png'); /* Ball image */
  /* background-size: cover; */
  animation: passBall 4s infinite ease-in-out; /* Ball passes back and forth */
  margin-top: 90px;
}


/* Full section with background image (for mobile view) */
@media (max-width: 768px) {
  .section {
    height: 50vh; /* Full viewport height for mobile */
    background-image: url('/Images/aboutbanner-mobile-view.png'); /* Your custom background image for mobile */
    background-size:cover;
    background-position: bottom bottom;
    display: flex;
  
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px; /* Add padding to avoid content being too close to edges */
  }

  /* Semi-circle at the bottom center for mobile */
  .semi-circle {
    width: 100%;
    height: 250px;
    background-color: white;
    border-radius: 250px 250px 0 0;
    /* margin-top:350px; */
    /* position: absolute; */
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px; /* Reduced padding for mobile */
  }

  /* Text content adjustments */
  .text-content {
    font-size: 20px; /* Reduced font size for mobile */
    font-weight: bold;
    color: black;
    text-align: center;
    flex: 1;
    margin-top: 10px;
    margin-left: 20px;
  }

  .text-content span {
    font-size: 28px;
    font-weight: 900;
  }

  .cta-button {
    background-color: #F39F5F; /* Orange button */
    color: black;
    /* padding: 12px 25px; */
    font-size: 15px; /* Adjusted for mobile */
    border: none;
    border-radius: 16px;
    cursor: pointer;
    margin-top: 20px;
  }

  /* Adjust the size of the image above text content */
  .top-image {
    width: 70px;
    height: auto;
    margin-bottom: -20px; /* Space between the image and text */
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* Image container for kids */
  .image-container img {
    width: 100px; /* Adjusted image size for mobile */
    height: auto;
    margin-left: 10px;
  }

  /* Ball animation for mobile view */
  .ball {
    position: absolute;
    width: 30px; /* Reduced ball size for mobile */
    height: 30px;
    background-image: url('/Images/ball.png'); /* Ball image */
    animation: passBall 4s infinite ease-in-out; /* Ball passes back and forth */
    margin-top: 50px;
  }

  /* Adjust the ball animation for mobile */
  @keyframes passBall {
    0% {
      left: 20%; /* Start from left */
      bottom: 10%; /* Ball's initial position */
    }
    25% {
      left: 48%; /* Move to the center */
      bottom: 30%; /* Ball slightly higher */
    }
    50% {
      left: 75%; /* Move to the right */
      bottom: 10%; /* Ball's end position */
    }
    75% {
      left: 48%; /* Move back to center */
      bottom: 30%; /* Ball slightly higher */
    }
    100% {
      left: 20%; /* Back to start position */
      bottom: 10%; /* Ball's initial position */
    }
  }
}



/* Content Row */
.content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 50px;
}

/* Journey Section */
.journey {
    width: 48%; /* Adjust width to fit in the row */
    padding: 20px;
    border-radius: 10px;
    position: relative;
    margin-left: 50px;
}

/* Star Background (left side of the journey section) */
.journey::before {
    content: "";
    position: absolute;
    top: 30%;
    left: -350px;
    margin-top: 100px;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    background: url('Images/Star%201.png') no-repeat center center;
    background-size: contain;
    z-index: -1;
}

/* Journey Header */
.journey-header h2 {
    font-size: 1rem;
    margin-bottom: -10px;
    font-weight: bold;
    color: #333;
}

.journey-content {
    margin-top: 20px;
}

.journey-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.journey-content p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* Circle Section */
.circle-section {
    width: 48%; /* Adjust width to fit in the row */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}

/* Circle Container */
.circle-container {
    position: relative;
    width: 400px; /* Increased width */
    height: 400px; /* Increased height */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Circle Image */
.circle-image {
    width: 392px; /* Increased width */
    height: 392px; /* Increased height */
    margin-bottom: 5px;
    border-radius: 50%;
}

/* Circle Text */
.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin-right: 12px;
    margin-top: 35px;
    align-items: center;
    transform: rotate(0deg);
}

.circle-text p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    flex-wrap: nowrap;
}

.circle-text span {
    display: inline-block;
    font-size: 1.5rem;
    color: #333;
    transform-origin: 60% 228px;
    margin-right: -10px;
    margin-top: -485px;
    margin-bottom: -25px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .circle-container {
        width: 200px;
        height: 200px;
    }

    .content-row {
        flex-direction: column;
    }

    .journey, .circle-section {
        width: 100%;
    }
}


@media (max-width: 768px) {

  /* MAIN ROW */
  .content-row {
    flex-direction: row;
    align-items: center;              /* vertical balance */
    padding: 40px 14px;
    gap: 16px;
  }

  /* LEFT CONTENT */
  .journey {
    width: 58%;
    margin-left: 0;
    padding: 6px;
    text-align: left;
  }

  /* STAR – subtle & controlled */
 .journey::before {
    left: -70px;        /* was -40px */
    top: 30px;
    width: 160px;
    height: 160px;
    opacity: 0.85;
  }


  .journey-header h2 {
    font-size: 0.75rem;
    margin-bottom: 4px;
  }

  .journey-content h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .journey-content p {
    font-size: 0.70rem;
    line-height: 1.20;
  }

  /* RIGHT CIRCLE */
  .circle-section {
    width: 42%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  @media (max-width: 768px) {

    /* CIRCLE CONTAINER */
    .circle-container {
      position: relative;
      width: 220px;              /* container enough space */
      height: 220px;
      overflow: visible;         /* 🔑 CUT FIX */
    }

    /* IMAGE */
    .circle-image {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      z-index: 2;
    }

    /* TEXT WRAPPER */
    .circle-text {
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
      margin-top: 385px;             /* ❌ REMOVE hack */
    }

    .circle-text p {
      position: relative;
      width: 100%;
      height: 100%;
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* 🔥 TEXT CIRCLE = ~170px (IMAGE 160px) */
    .circle-text span {
      position: absolute;
      left: 50%;
      top: 50%;
      bottom: 50%;
      right: 50%;
      transform-origin: 0 97px;          /* 160/2 + gap */
      transform: rotate(var(--i)) translateY(-85px);
      font-size: 0.75rem;
      white-space: nowrap;
    }
  }

}



 /* About Section Styles */
.about-section {
    padding: 50px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* Left Content */
.about-content {
    flex: 1;
    max-width: 500px;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    padding: 8px;
    border-radius: 20px;
}

.section-badge span {
    color: #333;
    font-weight: 600;
    margin-right: 10px;
    font-size: 20px;
}

/* Heading */
.about-content h2 {
    font-size: 2.6em;
    font-weight: 800;
    letter-spacing: -0.5px; /* modern tight look */
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Description */
.about-description {
    color: #474747;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features List */
.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

/* Check Icon Styling */
.check-icon {
    width: 40px;
    height: 40px;
    background: #009DFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

/* Feature Text */
.feature-text h3 {
    font-size: 21px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
}

.feature-text p {
    color: #474747;
    font-size: 20px;
    line-height: 1.8;
}

/* Button Styling */
.about-button {
    background: linear-gradient(135deg, #F39F5F 0%, #F39F5F 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
    transition: all 0.3s;
}

.about-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 153, 0, 0.4);
}

/* Right Content with Background Image */
.about-Images {
    position: relative;
    max-width: 600px;
    height: 500px;
    padding: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Item Styling */
/* .image-item {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    width: 100%;
    height: 100%;
} */

/* Image Styling */
.image-item img {
    width: 170%; /* Increased the width to 120% */
    height: auto; /* Let the height adjust automatically to maintain the aspect ratio */
    object-fit: cover;
    display: block;
}


/* Decorative Blue Dot */
.blue-dot {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #00bcd4;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-Images {
        margin-top: 30px;
        max-width: 100%;
        height: 400px;
    }

    .about-content {
        width: 100%;
        padding-right: 0;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {

  /* ABOUT SECTION */
  .about-section {
    padding: 30px 16px;
    margin-top: -50px;
  }

  /* MAIN CONTAINER */
  .about-container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  /* LEFT CONTENT */
  .about-content {
    max-width: 100%;
  }

  .section-badge span {
    font-size: 16px;
  }

  .about-content h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .about-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  /* FEATURES */
  .feature-item {
    gap: 12px;
    margin-bottom: 20px;
  }

  .check-icon {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .feature-text h3 {
    font-size: 17px;
  }

  .feature-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* BUTTON */
  .about-button {
    padding: 12px 28px;
    font-size: 14px;
  }

  /* RIGHT Images */
  .about-Images {
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-item {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .image-item img {
    width: 100%;
    max-width: 380px;
    height: auto;
    object-fit: contain;
  }

  /* HIDE DECORATIVE DOT IF ANY ISSUE */
  .blue-dot {
    display: none;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 20px 12px;
  }

  .about-content h2 {
    font-size: 1.3em;
  }

  .about-description {
    font-size: 14px;
  }

  .feature-text h3 {
    font-size: 15px;
  }

  .feature-text p {
    font-size: 13px;
  }

  .image-item img {
    max-width: 150%;
    width: 500px;
    margin-left: 100px;
  }
}


/* =========================
   TEAM SECTION – FINAL
========================= */

.team-section {
  padding: 60px 20px;
  background: #ffffff;
}

.team-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 360px 1fr; /* ⬅ was 420px */
  align-items: center;
}


/* =========================
   LEFT CONTENT (BLUE SHAPE)
========================= */

/* LEFT CONTENT */
.team-content {
  position: relative;
  width: 340px;          /* ⬅ was 380px */
  padding: 70px 10px 70px 20px;  /* ⬅ right padding reduced */
  z-index: 1;
}


/* Blue Background Shape – REDUCED & ALIGNED */
.team-content::before {
  content: "";
  position: absolute;

  width: 340px;      /* ⬅ reduced size */
  height: 340px;     /* ⬅ reduced size */

  background: #aee1ff;
  border-radius: 70px;

  top: 50%;
  left: -20px;       /* ⬅ less overflow on left */
  transform: translate(-30%, -50%) rotate(-45deg);

  z-index: -1;
}


/* Text styling */
.team-content .badge {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}

.team-content h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.highlight-teachers {
  display: block;
  font-size: 46px;
  font-weight: 900;
}

.team-content p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 300px;
  color: #222;
}

/* =========================
   RIGHT Images ROW
========================= */

.team-Images {
  display: flex;
  gap: 15px;
}

/* Card wrapper */
.team-card-wrapper {
  position: relative;
  width: 300px;   /* ⬅ was 320px */
  height: 350px;
}


/* Shared card */
.team-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
}


.image-card {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #f5f5f5;
}

.image-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;     /* 👈 SAME SIZE GUARANTEE */
  object-fit: cover;       /* 👈 fills card evenly */
  object-position: center; /* 👈 center focus */
  border-radius: 22px;
  display: block;
}


/* Info card */
.info-card {
  background: #f8a463;
 padding: 18px 14px 18px 18px;  /* ⬅ right padding kam */
  opacity: 0;
  pointer-events: none;

  border-radius: 22px;
  overflow: hidden;       /* ❌ no scroll */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-card::-webkit-scrollbar {
  display: none;
}

/* Hover effect */
.team-card-wrapper:hover .image-card {
  opacity: 0;
}

.team-card-wrapper:hover .info-card {
  opacity: 1;
  pointer-events: auto;
}

/* =========================
   INFO CONTENT
========================= */

.teacher-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.teacher-header img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #000;
  object-fit: cover;
}

.teacher-header h3 {
  font-size: 16px;
  font-weight: 700;
}

.teacher-header span {
  font-size: 12px;
}

.info-card p {
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.focus-title {
  font-size: 14px;
  margin: 6px 0;
  font-weight: 700;
}

.info-card ul {
  padding-left: 16px;
  margin-top: 4px;
}

.info-card li {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 3px;
}


/* =========================
   MOBILE – SECTION INCREASE + PROPER BALANCE
========================= */
@media (max-width: 576px) {

  /* ===== MAIN SECTION ===== */
  .team-section {
    padding: 40px 0 20px;      /* 🔼 section height increased */
  }

  .team-container {
    grid-template-columns: 1fr;
    gap: 26px;                /* 🔼 more spacing */
  }

  /* ================= LEFT CONTENT ================= */

  .team-content {
    padding: 28px 35px 34px;  /* 🔼 height & breathing space */
    text-align: left;
    position: relative;
  }

  .team-content small {
    font-size: 12px;
    display: block;
    margin-bottom: 6px;
  }

  .team-content h2 {
    font-size: 30px;          /* 🔼 slightly bigger heading */
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .team-content p {
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
  }

  /* BLUE SHAPE – BIGGER & PROPER */
  .team-content::before {
    width: 300px;             /* 🔼 shape increased */
    height: 300px;
    top: 50%;
    opacity: 0.95;
    /* transform: translateY(-50%) rotate(-45deg); */
  }

  /* ================= RIGHT SIDE – IMAGE SCROLL ================= */

  .team-Images {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 14px 10px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .team-Images::-webkit-scrollbar {
    display: none;
  }

  /* CARD SIZE – TALL & PREMIUM */
  .team-card-wrapper {
    flex: 0 0 82%;
    max-width: 82%;
    height: 330px;            /* 🔼 card height increased */
    position: relative;
    scroll-snap-align: center;
  }

  /* IMAGE CARD */
  .image-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
  }

  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  /* INFO CARD */
  .info-card {
    position: absolute;
    inset: 0;
    background: #f8a463;
    border-radius: 20px;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-size: 12.5px;
    line-height: 1.5;
  }

  /* HOVER + TAP */
  .team-card-wrapper:hover .image-card,
  .team-card-wrapper.active .image-card {
    opacity: 0;
  }

  .team-card-wrapper:hover .info-card,
  .team-card-wrapper.active .info-card {
    opacity: 1;
    pointer-events: auto;
  }

  /* TEXT INSIDE CARD */
  .teacher-header img {
    width: 42px;
    height: 42px;
  }

  .teacher-header h3 {
    font-size: 14px;
  }

  .info-card p {
    font-size: 12.5px;
  }

  .info-card li {
    font-size: 11.5px;
  }
}





.mindfulness-section {
  padding: 50px 20px;
  background: #ffffff;
  font-family: 'Fredoka', sans-serif;
}

.mindfulness-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* ================= LEFT Images ================= */

.mindfulness-Images {
  position: relative;
}

.main-img {
  width: 700px;
  /* max-width: 550px; */
  border-radius: 26px;
  object-fit: cover;
  margin-left: -100px;
}

.overlay-img {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 180px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* ================= RIGHT CONTENT ================= */

.mindfulness-content {
  position: relative;
  max-width: 520px;
}

.small-title {
  font-size: 14px;
  font-weight: 600;
  color: #777;
  margin-bottom: 10px;
  display: block;
}

/* ================= HEADING DESIGN ================= */

.mindfulness-heading {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}

.mindfulness-heading span {
  display: block;
}

.mindfulness-heading .line-left {
  text-align: left;
}

.mindfulness-heading .amp {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin: 6px 0;
}

.mindfulness-heading .line-right {
  text-align: right;
  margin-left: 40px;
}


.intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.we-highlight {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #000;
  display: inline-block;
  vertical-align: baseline;
  margin-right: 6px;
}

/* ================= TEXT ================= */

.mindfulness-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #474747;
  margin-bottom: 14px;
}

/* ================= DECORATIVE ICONS ================= */

.mindfulness-content::before {
  content: "";
  position: absolute;
  top: -30px;
  right: 20px;
  width: 110px;
  height: 100px;
  background: url("Images/Our1.png") no-repeat center;
  background-size: contain;
  opacity: 0.4;
}

.mindfulness-content::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 130px;
  height: 130px;
  background: url("Images/Our2.png") no-repeat center;
  background-size: contain;
  opacity: 0.4;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .mindfulness-container {
    grid-template-columns: 1fr;
    /* gap: 50px; */
  }

  .overlay-img {
    position: static;
    margin-top: 20px;
  }

  .mindfulness-heading {
    font-size: 30px;
  }

  .mindfulness-heading .line-right {
    margin-left: 0;
    text-align: left;
  }

  .mindfulness-heading .amp {
    text-align: center;
  }
}

@media (max-width: 576px) {

  /* SECTION */
  .mindfulness-section {
    padding: 10px 14px;
  }

  /* KEEP SAME ROW DESIGN */
  .mindfulness-container {
    grid-template-columns: 1fr 1fr;   /* SAME as desktop */
    gap: 16px;
    align-items: center;
  }

  /* ================= LEFT Images ================= */

  .mindfulness-Images {
    position: relative;
  }

  .main-img {
    width: 220px;
    max-width: 220px;     /* scaled */
    margin-left: -20px;       /* remove overflow */
    border-radius: 18px;
  }

  .overlay-img {
    width: 90px;          /* scaled */
    bottom: -10px;
    right: -10px;
    border-radius: 12px;
  }

  /* ================= RIGHT CONTENT ================= */

  .mindfulness-content {
    max-width: 100%;
  }

  .small-title {
    font-size: 12px;
    margin-bottom: 6px;
  }

  /* ===== SAME HEADING DESIGN (JUST SMALLER) ===== */

  .mindfulness-heading {
    font-size: 16px;      /* scaled from 42 */
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .mindfulness-heading .amp {
    font-size: 16px;      /* scaled from 30 */
    margin: 4px 0;
  }

  .mindfulness-heading .line-right {
    margin-left: 90px;    /* scaled from 40 */
  }

  .we-highlight {
    font-size: 16px;
  }

  /* TEXT */
  .mindfulness-content p {
    font-size: 10px;
    line-height: 1.2;
  }

  /* DECORATIVE ICONS – SOFT */
  .mindfulness-content::before {
    width: 30px;
    height: 30px;
    margin-top: 25px;
    margin-left: 30px;
    
  }

  .mindfulness-content::after {
    width: 40px;
    height: 40px;
   
  }
}



/* ================= SECTION ================= */

/* Right Side Section */
.mvv-section {
    max-width: 100%;  /* Ensure section is within the viewport */
    margin: 0 auto;
    padding: 40px 5px;
    position: relative;
    background-image: url('Images/Star 3.png');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: auto;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Add stars in a pattern */
.stars {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

/* Star Animation */
.stars .star {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #FFD400;
    border-radius: 50%;
    animation: star-animation 5s infinite linear;
}

/* Randomize positions for the stars */
.stars .star:nth-child(1) {
    top: 10%; left: 15%;
    animation-delay: 0s;
}

.stars .star:nth-child(2) {
    top: 20%; left: 25%;
    animation-delay: 1s;
}

.stars .star:nth-child(3) {
    top: 30%; left: 50%;
    animation-delay: 2s;
}

.stars .star:nth-child(4) {
    top: 40%; left: 60%;
    animation-delay: 3s;
}

@keyframes star-animation {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(0.8);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Right-bottom image */
.right-bottom-image {
    position: absolute;
    top: 480px;
    right: 0px;
    width: 220px;
    height: auto;
    z-index: -1;
}

.diagram-container {
  display: flex;
  justify-content: center;
  margin: 0 15px;  /* Reduced left and right margins */
}
/* ================= GRID ================= */

/* Layout Grid */
.layout-grid {
    display: grid;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    gap: 0;
    padding-right: 0; /* Fix any padding issue */
}

/* ================= CENTER CIRCLES ================= */
.center-circles {
    position: relative;
    width: 420px;
    height: 380px;
    margin: auto;
}


/* ================= BASE CIRCLE STACK ================= */

.circle-stack {
  position: absolute;
  width: 200px;
  height: 200px;
}

/* Sketch rings */
.circle-stack .sketch {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1.3px solid #bdbdbd;
  opacity: 0.65;
  filter: blur(0.2px);
}


.circle-stack .sketch:nth-child(1) {
  transform: rotate(2deg) scale(1.03, 0.97);
}

.circle-stack .sketch:nth-child(2) {
  inset: -26px;
  transform: rotate(-6deg) scale(0.96, 1.04);
}

.circle-stack .sketch:nth-child(3) {
  inset: -30px;
  transform: rotate(10deg) scale(1.05, 0.95);
}

.circle-stack .sketch:nth-child(4) {
  inset: -34px;
  transform: rotate(-14deg) scale(0.94, 1.06);
}

.circle-stack .sketch:nth-child(5) {
  inset: -38px;
  transform: rotate(18deg) scale(1.07, 0.93);
}

/* .circle-stack .sketch:nth-child(1) { transform: rotate(0deg); }
.circle-stack .sketch:nth-child(2) { transform: rotate(7deg); }
.circle-stack .sketch:nth-child(3) { transform: rotate(-7deg); } */


/* Inner circle */
.circle-stack .circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #FFD400; /* change per type */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}


/* Mission – top */
.circle-stack.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

/* Values – bottom left */
.circle-stack.bottom.left {
  bottom: 0;
  left: 0px;
  z-index: 2;
}

/* Vision – bottom right */
.circle-stack.bottom.right {
  bottom: 0;
  right: 0px;
  z-index: 2;
}


/* ================= COLORS ================= */

.circle-stack.mission .circle { background: #FFD400; }
.circle-stack.values .circle  { background: #FFA270; }
.circle-stack.vision .circle  { background: #56C1D8; }


/* ================= RIGHT SIDE BOXES ================= */
.mission-area {
  grid-column: 3;
  align-self: flex-start;
  margin-bottom: 120px;
}

.vision-area {
  grid-column: 3;
  align-self: flex-end;
}

/* Info box styling */
.info-box {
    position: relative;
    /* background: #fff; */
    width: 260px;
    padding: 16px 18px;
    border-radius: 6px;
    margin-left: 50px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}


/* TOP + LEFT border */
.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 60%;
  border-top: 2px solid #000;
  border-left: 2px solid #000;
}

/* BOTTOM + RIGHT border */
.info-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  height: 60%;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
}

.info-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    text-decoration: underline;
}

.info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
}

/* ================= MOBILE : HIDE DESKTOP MVV CONTENT ================= */
@media (max-width: 576px) {

  /* Hide desktop circles */
  .center-circles,
  .circle-stack {
    display: none !important;
  }

  /* Hide desktop text boxes */
  .mission-area,
  .vision-area,
  .values-box,
  .info-box {
    display: none !important;
  }

  /* Hide any extra floating image */
  .right-bottom-image {
    display: none !important;
  }

  /* Safety: grid clean */
  .layout-grid {
    display: block;
  }
}

/* ================= MOBILE ONLY : CLEAN & PROPER IMAGE ================= */
@media (max-width: 576px) {

  /* SECTION RESET */
  .mvv-section {
    background-image: none !important;
    margin-top: 0;                /* ❌ negative margin removed */
    padding: 0 12px;              /* ✅ safe mobile padding */
    position: relative;
    /* overflow-x: hidden;            */
  }

  .mvv-section::before {
    content: "";
    display: block;

    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;   /* height LOCKED */

    margin: 0 auto 16px;

    background-image: url("/Images/Group-37.png");
    /* background-size: 112% auto;    
    background-position: 58% center;  */
    background-repeat: no-repeat;

    margin-top: 50px;
    margin-bottom: -60px;
    border-radius: 16px;
  }


  /* REMOVE EXTRA DECORATIONS */
  .mvv-section::after {
    display: none !important;
    content: none !important;
  }

  .stars {
    display: none !important;
  }
}






.container1 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  flex-direction: column;
  margin-top: 100px;
  position: relative;
}

.content {
  background-color: #000;
  padding: 30px;
  border-radius: 10px;
  max-width: 1200px;
  /* margin-top: 20px; */
  margin-bottom: -30px;
  margin-left: 80px;
  margin-right: 80px;
  z-index: 3;
}

/* Apply Fredoka One font to the headings */
.content h1{
  /* text-align: center; */
  color: white;
  font-family: 'Fredoka One', sans-serif;  /* Added Fredoka One font */
}

.content h1 {
  margin-bottom: 20px;
}

.content h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.card {
  color: #000;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
  width: 23%;
  box-sizing: border-box;
  background-color: #F39F5F;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.card-number {
  font-size: 5rem;
  font-weight: bold;
  text-align: right;
  margin-right: 10px;
}

.card h2 {
  font-size: 1.3rem;
  margin-top: 10px;
}

.card p {
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.card img {
  position: absolute;
  bottom: 10px;
  max-width: 130px;
  height: auto;
  margin-top: -60px;
}

/* Card Background Colors */
.card:nth-child(1) {
  background-color: #F39F5F;
}

.card:nth-child(2) {
  background-color: #fff;
  color: #000;
  position: relative;
}

.card:nth-child(3) {
  background-color: #009DFF;
}

.card:nth-child(4) {
  background-color: #6EA6B1;
  position: relative;
}

/* Right-bottom number for cards 2 and 4 */
.card:nth-child(2) .card-number,
.card:nth-child(4) .card-number {
  position: absolute;
  bottom: 1px;
  right: 10px;
  color: white;
  background-color: transparent;
}

/* Image positioning for cards 2 and 4 (top-right) */
.card:nth-child(2) img,
.card:nth-child(4) img {
  position: absolute;
  top: 60px;  /* Adjusted to lower the image */
  right: 10px;
  height: auto;
}

.card:hover {
  transform: scale(1.05);
}

.image-background {
  background-image: url('/Images/Infrastructure.png'); /* Updated image path */
  background-size: cover; 
  background-repeat: no-repeat; 
  width: 101%;
  height: 100vh; 
  margin-top: -320px; 
  margin-bottom: -255px; 
  overflow: hidden; 
  z-index: 1;
  position: relative;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablets and Small Laptops (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .container1 {
    margin-top: 60px;
  }

  .content {
    margin-left: 40px;
    margin-right: 40px;
    padding: 25px;
  }

  .content h1 {
    font-size: 1.8rem;
  }

  .card {
    width: 48%;
  }

  .card-number {
    font-size: 4rem;
  }

  .image-background {
    margin-top: -250px;
    height: 80vh;
  }
}

/* Mobile Devices (up to 767px) */
@media screen and (max-width: 767px) {
  .container1 {
    margin-top: 40px;
  }

  .content {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 14px;

    margin: 0 20px;
    padding: 20px;
    border-radius: 20px;
    align-items: start; /* 🔑 */
  }

  /* ================= LEFT SIDE ================= */
  .content-left {
    grid-column: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4px; /* fine-tune */
  }

  /* ================= LEFT SIDE (NO GRID) ================= */
  .content > h2,
  .content > h1,
  .content > p {
    grid-column: 1;
    margin-bottom: 6px;   /* 🔽 gap controlled */
  }
  .content-left {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 4px; /* fine-tune */
  }

  .content h2 {
    font-size: 0.75rem !important;
    margin: 0 0 6px;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    /* color: #888 !important; */
    font-weight: normal !important;
    font-family: Arial, sans-serif !important;
    line-height: 1.2;
  }

  .content h1 {
    font-size: 1.1rem !important;
    margin: 0 0 8px;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    color: white !important;
    font-family: 'Fredoka One', sans-serif !important;
    line-height: 1.25;
  }

  .content p {
    font-size: 0.65rem !important;
    line-height: 1.35 !important;
    /* color: #ccc !important; */
    margin-top: 0 !important;
    margin-bottom: 0 !important; 
    margin: 0;
  }

  /* ================= RIGHT SIDE (ONLY GRID HERE) ================= */
 .card-container {
    grid-column: 2;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    max-height: 320px;
    overflow-y: auto;
    padding-top: 4px; /* 🔑 SAME TOP START */
    padding-right: 6px;
  }

  .card-container::-webkit-scrollbar {
    width: 5px;
  }

  .card-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
  }

  .card-container::-webkit-scrollbar-thumb {
    background: #F39F5F;
    border-radius: 10px;
  }

  .card-container::-webkit-scrollbar-thumb:hover {
    background: #ff8c42;
  }

  .card {
    width: 70% !important;
    padding: 15px !important;
    /* height: 110px; */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
  }

  .card-number {
    font-size: 2.5rem !important;
    margin: 0 !important;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
  }

  .card h2 {
    font-size: 0.9rem !important;
    margin-top: 0 !important;
    font-weight: bold;
  }

  .card p {
    font-size: 0.65rem !important;
    margin-top: 6px !important;
    padding-right: 45px;
    line-height: 1.2 !important;
  }

  .card img {
    max-width: 60px !important;
    bottom: 6px;
    position: absolute;
  }

  .card:nth-child(3) .card-number .card h2 .card p
  .card:nth-child(4) .card-number .card h2 .card p{
    font-size: 2.2rem !important;
    bottom: 6px;
    top: auto;
    right: 10px;
    color: white !important;
    color: white;
  }

  .card:nth-child(2) img,
  .card:nth-child(4) img {
    top: 10px !important;
    bottom: auto;
    max-width: 55px !important;
    right: 10px;
  }

  .image-background {
    width: 100%;
    height: 60vh;
    margin-top: -150px;
    background-position: center;
  }
}

/* Small Mobile Devices (up to 480px) */
@media screen and (max-width: 480px) {
  .container1 {
    margin-top: 30px;
  }

  .content {
    margin-left: 15px;
    margin-right: 15px;
    padding: 18px;
    margin-bottom: -40px;
    gap: 10px;
  }

  .content h2 {
    font-size: 0.7rem !important;
  }

  .content h1 {
    font-size: 1rem !important;
  }

  .content p {
    font-size: 0.6rem !important;
    line-height: 1.3 !important;
  }

  .card-container {
    max-height: 280px;
    height: 280px;
  }

  .card {
    padding: 15px !important;
    /* height: 100px; */
  }

  .card-number {
    font-size: 2.2rem !important;
    top: 8px;
    right: 8px;
  }

  .card h2 {
    font-size: 0.75rem !important;
  }

  .card p {
    font-size: 0.6rem !important;
    padding-right: 40px;
  }

  .card img {
    max-width: 55px !important;
    bottom: 8px;
  }

  .card:nth-child(2) .card-number,
  .card:nth-child(4) .card-number {
    font-size: 2rem !important;
    bottom: 8px;
  }

  .card:nth-child(2) img,
  .card:nth-child(4) img {
    max-width: 50px !important;
    top: 10px !important;
  }

  .image-background {
    height: 50vh;
    margin-top: -120px;
  }
}

/* Extra Small Devices (up to 360px) */
@media screen and (max-width: 360px) {
  .content {
    margin-left: 10px;
    margin-right: 10px;
    padding: 15px;
    gap: 8px;
  }

  .content h2 {
    font-size: 0.65rem !important;
  }

  .content h1 {
    font-size: 0.9rem !important;
  }

  .content p {
    font-size: 0.55rem !important;
  }

  .card-container {
    max-height: 250px;
    height: 250px;
  }

  .card {
    padding: 12px !important;
    height: 90px;
  }

  .card-number {
    font-size: 2rem !important;
    top: 6px;
    right: 6px;
  }

  .card h2 {
    font-size: 0.8rem !important;
  }

  .card p {
    font-size: 0.55rem !important;
    padding-right: 35px;
  }

  .card img {
    max-width: 45px !important;
    bottom: 6px;
  }

  .card:nth-child(2) .card-number,
  .card:nth-child(4) .card-number {
    font-size: 1.8rem !important;
    bottom: 6px;
  }

  .card:nth-child(2) img,
  .card:nth-child(4) img {
    max-width: 40px !important;
    /* top: 8px !important; */
  }

  .image-background {
    height: 45vh;
    margin-top: -100px;
    margin-bottom: -100px;
  }
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}



.footer {
  background: #0a99f0;
  padding-top:40px;
  padding-left:20px;
  padding-right:20px;
  /* padding-bottom:15px; */
  color: #ffffff;
  font-family: 'Fredoka', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* BRAND */
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-brand p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 420px;
  margin-top: 20px;
}

/* LINKS */
.footer-links h4 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}
.footer-bottom {
  margin-top: 0px;
  /* margin-bottom:0px; */
  padding: 8px 0px;
  text-align: center;
 
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom strong {
  font-weight: 700;
}


.designer-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.designer-link:hover {
  opacity: 0.8;
}

/* TABLET */
/* @media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
} */
/* Mobile Footer Fix */
@media (max-width: 768px) {

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  /* Brand takes full width */
  .footer-brand {
    width: 100%;
  }
  .footer-links{
    text-align:center;
  }
  /* Visit + Information in one row */
  /* .footer-links {
    width: 50%;
  } */

  .footer-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .footer-links {
    text-align: left;
  }
}


/* Dropdown background transparent */
.dropdown-menu {
  /* background: transparent; */
  border: none;
  box-shadow: none;
  padding: 8px 0;
  border-radius:30px;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #fff;
  /* background-color:black; */
  padding: 0 16px;
  font-size:20px;
  font-weight:500;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background:black;
  color: #fff;
  border-radius:30px !important;
}


/* ON SCROLL */
.transparent-navbar.scrolled {
    background: #0a99ff !important;
    height: 80px;
}

/* LOGO */
.navbar-brand img {
    height: 110px;
    transition: height 0.3s ease;
    margin-top: 20px;
    margin-bottom: 10px;
}

.transparent-navbar.scrolled .navbar-brand img {
    height: 60px;
}

/* Adjust logo size and position for mobile */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 50px !important;  /* Adjust logo height */
        margin-top: 3px;  /* Align logo properly */
        margin-bottom: 0px;  /* Remove any bottom margin */
    }
}

/* Adjust logo size and position for mobile */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px; /* Set the desired logo height for mobile */
        margin-top: 3px;  /* Fine-tune margin to align logo properly */
        margin-bottom: 0px;  /* Remove any unwanted bottom margin */
    }
}

.hero-section {
    height: 60vh; /* Adjust hero section height */
    padding-top: var(--navbar-height);
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh; /* Reduce height for mobile */
        padding-top: 20px; /* Adjust for better spacing */
    }

    .hero-section .text-content {
        font-size: 18px; /* Smaller text for mobile */
        text-align: center; /* Center align text */
    }

    .hero-section .cta-button {
        padding: 12px 25px; /* Adjust button size */
        font-size: 16px; /* Smaller font */
    }
}

/* Hide arrow on desktop */
.dropdown-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
}

/* MOBILE ONLY */
@media (max-width: 991px) {
  .dropdown-toggle-btn {
    display: block;
  }

  .nav-dropdown-mobile > .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 5px;
    border-radius: 12px;
  }
}
