
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
   body::-webkit-scrollbar {
  display: none;
}

    body {
      font-family: 'Poppins', sans-serif;
      background-color: white;
    }

    .navbar {
      background-color: white;
      padding: 20px 40px;
    }

    .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .logo {
      font-weight: 600;
      font-size: 20px;
      color: #001858;
    }

    .nav-links {
      display: flex;
      gap: 30px;
      font-size: 14px;
      flex-wrap: wrap;
    }

    .nav-links a {
      text-decoration: none;
      color: #001858;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -6px;
      width: 0;
      height: 4px;
      background-color: #22439D;
      border-radius: 4px;
      transition: width 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #22439D;
      text-align: center;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

 .contact-btn {
  background-color: #001858;
  color: white !important;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-size: 16px;
  margin-top: 10px;
  border: none;
  outline: none;
}

.contact-btn:hover {
  background-color: #24345f;
  color: white !important;
  text-decoration: none !important;
}

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 50px;
      left: 0;
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      padding: 20px;
      min-width: 180px;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      color: #001858;
      padding: 10px 0;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s ease;
    }

    .dropdown-menu a:hover {
      color: #22439d;
    }

    .hero-section {
      margin-left: 20px;
      margin-right: 20px;
      margin-top: 30px;
    }

    .hamburger {
      font-size: 24px;
      color: #001858;
      display: none;
      cursor: pointer;
    }

    .left-section {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .desktop-btn {
      display: block;
    }

    .mobile-btn {
      display: none;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .left-section {
        justify-content: space-between;
        width: 100%;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        background-color: #f4ecdc;
        margin-top: 10px;
      }

      .nav-links.show {
        display: flex;
      }

      .dropdown-menu {
        position: relative;
        top: auto;
        left: auto;
        box-shadow: none;
        transform: none;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        background: none;
        padding: 0;
      }

      .dropdown:hover .dropdown-menu {
        display: flex;
      }

      .hamburger {
        display: block;
      }

      .desktop-btn {
        display: none;
      }

      .mobile-btn {
        display: block;
        align-self: flex-start;
        color: white;
      }
    }


/* Heading & Subtitle */
.section-title {
  font-size: 48px;
  color: #0f2151;
  padding-right: 200px;
}

.section-subtitle {
  font-size: 16px;
  color: #0f2151;
}

.blog-subcontent {
  margin-top: 20px;
}

.footer-link-wrapper {
  text-align: right;
  width: 100%;
}

.view-more-btn {
  color: #22439D;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  margin-top: 20px;
}

/* Underline effect */
.view-more-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #22439D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover effects */
.view-more-btn:hover {
  transform: translateY(-3px) rotate(-2deg);
}

.view-more-btn:hover::after {
  transform: scaleX(1);
}


/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    padding-right: 0;
    font-size: 36px;
  }
}


.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.hero-text-section {
  flex: 1;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0b1e55;
  line-height: 1.2;
  margin-bottom: 25px;
}

.subtitle-box {
  background-color: #dfd5c0;
  border-radius: 18px;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1rem;
  padding: 18px 24px;
  color: #22439d;
  margin: 0;
  text-align: left;
}

/* Stats */
.stas-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 25px 0;
}

.stat-box {
  background-color: #22439d;
  color: #f4ecdc;
  padding: 25px 35px;
  border-radius: 20px;
  text-align: center;
  min-width: 160px;
  transition: transform 0.3s;
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-box h2 {
  font-size: 2rem;
  margin: 0;
}

.stat-box p {
  margin: 6px 0 0;
  font-size: 0.95rem;
}

/* Learn More Button */
.learn-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 24px;
  color: #22439d;
  border: 2px solid #22439d;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #22439d;
  color: white;
  transform: translateY(-4px);
}

/* RIGHT SIDE: Image */
.hero-image-wrapper {
  flex: 1.2;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  height: 100%; /* Ensures it stretches with parent */
}

.hero-image {
  width: 100%;
  max-width: 800px;  /* Increase width */
  height: auto;
  max-height: 550px; /* Add this to increase height */
  border-radius: 20px;
  object-fit: cover; /* Ensures nice scaling */
}



/* Floating icon */
.top-corner-icon {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 24px;
  color: #22439d;
  padding: 8px;
  /* border-radius: 50%; */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
}

.top-corner-icon:hover {
  transform: scale(1.2);
}

    .partner-section {
  padding: 60px 20px;
  background-color:  #22439d;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.partner-title {
  font-size: 65px;
  color: #f4ecdc;
  font-weight: 600;
  margin-bottom: 10px;
}

.partner-subtitle {
  font-size: 16px;
  color: #f4ecdc;
  margin-bottom: 40px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding-bottom: 90px;
}

.partner-logos img {
  max-width: 180px;
  height: auto;
  opacity: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .partner-title {
    font-size: 28px;
  }

  .partner-logos img {
    max-width: 140px;
  }
}
.curve-top svg,
.curve-bottom svg {
  display: block;
  width: 100%;
  height: 100px;
  line-height: 0;
    background-color:  #22439d;

}
.stat-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; /* Adjust spacing between items */
  flex-wrap: nowrap; /* Prevent wrapping */
  margin-top: 30px;
}

.stat-container > div {
  min-width: 200px;
  text-align: center;
}

.divider {
  color: #22439d;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  user-select: none;
}


.feature-head {
  font-size: 28px;
  color: #0b1e55;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-text {
  font-size: 14px;
  color: #22439d;
  line-height: 1.4;
}

.para{
  color: #22439d;

}


        .chill-section {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
            min-height: 100vh;
            padding: 60px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-wrapper {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .text-content {
            color: white;
        }

        .main-heading {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .main-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .action-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .action-button:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .action-button::after {
            content: '→';
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .action-button:hover::after {
            transform: translateX(4px);
        }

        .cards-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .feature-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 32px;
            color: white;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .feature-box:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .feature-box.wide {
            grid-column: span 2;
        }

       .icon-wrapper {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center;     /* vertical center */
  flex-direction: column;  /* ensures icon stays stacked if there's text below */
  text-align: center;
}

.box-icon {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.icon-img{
   width: 40px;
  height: 40px;
}


        .box-heading {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .box-text {
            opacity: 0.9;
            line-height: 1.5;
        }

        @media (max-width: 968px) {
            .main-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .main-heading {
                font-size: 2.5rem;
            }

            .cards-container {
                grid-template-columns: 1fr;
            }

            .feature-box.wide {
                grid-column: span 1;
            }
        }

        @media (max-width: 640px) {
            .chill-section {
                padding: 40px 20px;
            }

            .main-heading {
                font-size: 2rem;
            }

            .cards-container {
                gap: 16px;
            }

            .feature-box {
                padding: 24px;
            }
        }

     .peace-section {
            padding: 80px 20px;
            background: #f5f5f0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-wrapper {
            max-width: 1200px;
            width: 100%;
            position: relative;
        }

        .content-card {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
            border-radius: 40px;
            padding: 60px;
            color: white;
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
        }

        .card-content {
            z-index: 2;
            position: relative;
        }

        .main-title {
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .description-text {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 50px;
            line-height: 1.6;
        }

        .stats-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .stat-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            opacity: 0.9;
        }

        .stat-value {
            font-size: 1.2rem;
            font-weight: 700;
            margin-left: auto;
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

    

        .safety-progress {
            width: 97%;
        }

        .quality-progress {
            width: 90%;
        }
.image-container {
  position: absolute;
  bottom: -40px; /* pushes it below the card */
  right: -40px;  /* pushes it to the right of the card */
  z-index: 2; /* send it behind content */
}

.house-image {
  width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0.8; /* optional: make it subtle */
  transition: transform 0.3s ease;
}
.content-card {
  position: relative;
  z-index: 1; /* ensure it's above the image */
    overflow: visible;
}

        .house-image:hover {
            transform: scale(1.05);
        }

        .decorative-bg {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: 1;
        }

        .decorative-bg-2 {
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            z-index: 1;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .content-card {
            animation: slideIn 0.8s ease-out;
        }

        .stat-value {
            animation: countUp 0.1s ease-out;
        }

        @media (max-width: 968px) {
            .content-card {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px;
                text-align: center;
            }

            .main-title {
                font-size: 2.5rem;
            }

            .house-image {
                height: 250px;
            }
        }

        @media (max-width: 640px) {
            .peace-section {
                padding: 40px 20px;
            }

            .content-card {
                padding: 30px;
                border-radius: 30px;
            }

            .main-title {
                font-size: 2rem;
            }

            .stats-container {
                gap: 20px;
            }

            .house-image {
                height: 200px;
            }
        }
        .progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #e9cf8d 0%, #f8e2bc 100%);
  border-radius: 20px;
  transition: width 2s ease-out;
  position: relative;
}

  
    .experience-showcase {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Header Section */
.section-title-container {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-container h1 {
    font-size: 3.5em;
    color: #1a237e;
    font-weight: 700;
}

/* Main Highlight Section */
.highlight-experience {
    margin-bottom: 40px;
}

.highlight-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.highlight-image {
    width: 100%;
    height: auto;
    display: block;
}

.highlight-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
}

.overlay-details {
    text-align: left;
}

.overlay-details h2 {
  
    font-size: 2em;
   
}

.overlay-details p {
    font-size: 1.1em;
    margin-bottom: 10px;
    max-width: 60%;
}

.cta-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid white;
    transition: border-bottom 0.3s ease;
}

ct-link{
  color: #27418f;
 text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid white;
    transition: border-bottom 0.3s ease;
}

.cta-link:hover {
    border-bottom: 2px solid transparent;
}
.cta-link:hover {
    border-bottom: 2px solid transparent;
}

/* Detailed Activities Section */
.detailed-activities-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.activity-card {
    flex: 1;
    display: flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1a237e;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-content-wrapper {
    padding-right: 20px;
}

.icon-wrapper {
    font-size: 2.5em;
    color: #1a237e;
    margin-bottom: 15px;
}

.activity-card h3 {
    font-size: 1.4em;
    color: #1a237e;
    margin-bottom: 10px;
}

.activity-card p {
    font-size: 0.9em;
    color: #666;
}

.activity-card:hover{
animation: bounceUp 0.4s ease forwards; 
box-shadow: #797474;
}

.highlight-experience:hover{
  animation: bounceUp 0.4s ease forwards; 
}

  @keyframes bounceUp {
  0%   { transform: translateY(0); }
  60%  { transform: translateY(-15px) scale(1.03); }
  100% { transform: translateY(-10px) scale(1.02); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title-container h1 {
        font-size: 2em;
    }
    
    

    .overlay-details h2 {
        font-size: 1.5em;
    }

    .overlay-details p {
        font-size: 1em;
        max-width: 100%;
    }
    
    .detailed-activities-grid {
        flex-direction: column;
    }
    
    .activity-card {
        flex-direction: row;
        align-items: center;
    }

    .card-content-wrapper {
        display: block;
        padding-left: 20px;
    }

    .icon-wrapper {
        margin-right: 20px;
        margin-bottom: 0;
    }
}




 .group-section {
  position: relative;
  background-color: #22439D;
  color: white;
  padding: 80px 30px;
  text-align: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: 40px;
  max-width: 1900px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.3);
}

/* Top white notch */
.group-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 50px;
  background-color: white;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  z-index: 2;
}

/* Title */
.group-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.5);
}

/* Certificate grid layout */
.certificate-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 3;
}

/* Individual certificate cards */
.certificate-card {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  animation: fadePop 0.7s ease forwards;
}

.certificate-card:nth-child(1) {
  animation-delay: 0.2s;
}
.certificate-card:nth-child(2) {
  animation-delay: 0.4s;
}

/* Image inside card */
.certificate-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Certificate link text */
.certificate-card a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

/* Hover effects */
.certificate-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.certificate-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.certificate-card a:hover {
  background: #ffffff;
  color: #22439D;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Fade & pop animation */
@keyframes fadePop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

    .section-wrapper {
      background-color: #22439D;
      color: white;
      padding: 60px 20px;
      border-top-left-radius: 40px;
      margin-top: 40px;
      max-width: 1900px;
      margin-left: auto;
      margin-right: auto;
      overflow: hidden;
      position: relative;
    }

    .section-wrapper::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-10%);
      width: 1000px;
      height: 50px;
      background-color: white;
      border-bottom-left-radius: 100px;
      z-index: 2;
    }

    .content-area {
      background: #22439D;
      min-height: 100vh;
      padding: 60px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .layout-grid {
      max-width: 1200px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .text-zone {
      color: white;
      text-align: left;
    }

    .headline {
      font-size: 2.2rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .subtitle {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 40px;
      line-height: 1.6;
    }

/* Flex / Grid layout */
.flex-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch; /* ensures image matches column height */
}

/* Column for cards */
.card-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Individual card styling */
.card-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 24px;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Card hover effect */
.card-block:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icon slot in card */
.icon-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.icon-slot img {
  width: 32px;
  height: 32px;
}

/* Card title */
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Card description */
.card-description {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Image pane */
.image-pane {
  display: flex;
  align-items: stretch; /* ensures image fills column height */
}

.image-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}


/* Hover effect for image */
.image-pane:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive layout */
@media (max-width: 968px) {
  .flex-layout {
    grid-template-columns: 1fr;
  }

  .image-pane img {
    width: 100%;
    height: auto; /* ensures proper scaling on small screens */
  }
}



/* Contact form style */

.get-in-touch {
  display: flex;
  margin-left: 140px;
  padding: 60px 20px; 
  height: 600px;
 max-width: 840px;
  margin-bottom: 50px;
}

.form-container {
  display: flex;
  position: relative;
  background-color: #22439D;
  border-radius: 20px 80px 20px 20px;
  padding: 40px;

  width: 100%;
  color: #fff;
}

.form-content {
  flex: 1;
  padding-right: 20px;
  width: 400px;
}

.form-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.core-values-list {
  list-style-type: disc;
  padding-left: 20px;
  max-width: 600px; /* Set the exact width you want */
  margin: 0;
}

.core-values-list li {
  margin-bottom: 12px;
  font-size: 16px;
   color: #fff;
  line-height: 1.6;
}


.form-image {
  flex: 0 0 350px; 
  position: absolute;
  right: -250px;   
  top: 20%;
  width: 300px;
  transform: translateY(-50%);
  height: 350px; 
}

.form-image img {
  width: 100%;
  height: 100%; 
  border-radius: 19px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-image img:hover{
   animation: bounceUp 0.4s ease forwards; 
}


.faq-section {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px; 
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.faq-header h2 {
  flex: 1;
  font-size: 40px;
  font-weight: 700;
  color: #001858;
  margin: 0;
}

.faq-header p {
  flex: 1;
  color: #4c4c4c;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  text-align: right;
}

.faq-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-column {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #0836b4;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #001858;
}

.faq-item:hover {
  color: #1548d6;
}

.faq-item.active {
  background-color: #22439D;
  color: #f4ecdc;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 14px;
  color: #f4ecdc;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  content: "−";
}

.faq-question span {
  font-weight: 800;
  font-size: 24px;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .faq-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .faq-header h2, 
  .faq-header p {
    width: 100%;
    text-align: center;
  }

  .faq-container {
    flex-direction: column;
    gap: 20px;
  }

  .faq-column {
    max-width: 100%;
  }
}

   

    .clients-section {
      background-color: #3b82f6;
      color: white;
      padding: 2rem 1rem;
      text-align: center;
    }

    .clients-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .clients-subtitle {
      font-size: 0.9rem;
      font-weight: 400;
      margin-bottom: 1.5rem;
      opacity: 0.8;
    }

    .clients-carousel {
      width: 100%;
      overflow: hidden;
    }

    .clients-track {
      display: flex;
      animation: clientsScroll 200s linear infinite;
      width: fit-content;
      padding: 1.5rem 0;
    }

    .clients-track:hover {
      animation-play-state: paused;
    }

    .client-logo-card {
      background-color: #cbd5e1;
      width: 7rem;
      height: 4rem;
      border-radius: 0.5rem;
      margin: 0 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      padding: 0.3rem;
    }

    .client-logo-card img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
    }

    @keyframes clientsScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (min-width: 768px) {
      .clients-section {
        padding: 3rem 2rem;
      }

      .clients-title {
        font-size: 2.2rem;
      }

      .clients-subtitle {
        font-size: 1rem;
      }

      .client-logo-card {
        width: 9rem;
        height: 5rem;
        margin: 0 1rem;
      }
    }
 

    .video-carousel-section {
      background-color: #22439D;
      color: white;
      padding: 3rem 1rem;
      text-align: center;
    }

    .video-carousel-heading {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .video-carousel-description {
      font-size: 1.1rem;
      font-weight: 400;
      margin: 0 auto 2rem auto;
      opacity: 0.85;
      max-width: 900px;
      padding: 0 1.5rem;
      text-align: center;
    }

    .video-carousel-wrapper {
      width: 100%;
      overflow: hidden;
    }

      
    .video-carousel-track {
      display: flex;
      animation: videoScroll 35s linear infinite;
      width: fit-content;
      padding: 2rem 0;
    }

    .video-carousel-track:hover {
      animation-play-state: paused;
    }

    .video-card {
      background-color: #cbd5e1;
      width: 36rem;
      height: 20rem;
      border-radius: 0.75rem;
      margin: 0 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      padding-left: -40px;
      padding-right: -40px;
      object-fit: cover;
    }

    .video-card video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
    }

    @keyframes videoScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 768px) {
      .video-card {
        width: 12rem;
        height: 8rem;
      }

      .video-carousel-heading {
        font-size: 2rem;
      }

      .video-carousel-description {
        font-size: 1rem;
        padding: 0 1rem;
      }
    }
  
    /* Newsletter */
.newsletter-wrap {
  background-color: #22439D;
  color: #fff;
  padding: 120px 20px;
}

.newsletter-inner-container {
  max-width: 1200px;
  margin: auto;
}

.newsletter-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.newsletter-left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.newsletter-heading {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-text {
  font-size: 14px;
}

.newsletter-form-box {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
}

.newsletter-input {
  flex: 1;
  min-width: 450px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid #FFF4E0;
  color: white;
  border-radius: 8px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-submit-btn {
  background-color: #FFF4E0;
  color: #113EB1;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-submit-btn:hover {
  background-color: #e6d8bb;
}

/* Footer Info Section */
.footer-info-section {
  background-color: #fdf3de;
  padding: 60px 20px 30px;
  color: #000;
}

.footer-flex-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand-box {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-brand-desc {
  color: #000;
  font-size: 14px;
}

.footer-link-group {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 10px;
  font-size: 14px;
  cursor: pointer;
}

.footer-link-list li:hover {
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-icon {
  background: #000;
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.footer-icon:hover {
  animation: bounceUp 0.4s ease forwards;
}


@media (max-width: 767px) {
  /* Hero Section */
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .hero-subtitle,
  .para {
    font-size: 1rem;
    padding: 0 10px;
  }

  .learn-more-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .hero-image-wrapper img {
    max-width: 90%;
    height: auto;
  }

  /* Stat Section */
  .stat-container {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-container .divider {
    display: none;
  }

  /* Group Section */
  .group-section {
    text-align: center;
  }

  /* Mission & Vision Grid */
  .layout-grid {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .flex-layout {
    flex-direction: column;
  }

  .card-column {
    width: 100%;
  }

  .image-pane img {
    max-width: 90%;
  }

  /* Get In Touch Section */
  .form-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .form-image img {
    max-width: 90%;
  }

  /* Activity Cards */
  .detailed-activities-grid {
    flex-direction: column;
    gap: 20px;
  }

  .activity-card {
    width: 100%;
  }

  /* FAQ Section */
  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }

  /* Clients and Video Carousel */
  .clients-section,
  .video-carousel-section {
    text-align: center;
  }

  .clients-title,
  .video-carousel-heading {
    font-size: 1.8rem;
  }

  .clients-subtitle,
  .video-carousel-description {
    font-size: 1rem;
    padding: 0 15px;
  }

  .clients-track,
  .video-carousel-track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }

  /* Padding and spacing adjustments */
  section,
  .section-wrapper {
    padding: 40px 15px;
  }

  .highlight-image-wrapper img {
    width: 100%;
  }

  

  footer {
    padding: 30px 15px;
    text-align: center;
  }

  
}

@media (max-width: 767px) {
  .get-in-touch {
    display: block;
    margin-left: 0;
    padding: 20px 15px;
    height: auto;
    max-width: 100%;
  }

  .form-container {
    display: block;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    color: #fff;
  }

  .form-content {
    width: 100%;
    padding-right: 0;
  }

  .form-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .core-values-list {
    padding-left: 15px;
    font-size: 16px;
  }

  .core-values-list li {
    margin-bottom: 10px;
    word-break: break-word;
  }

  .form-image {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 20px;
    transform: none;
  }

  .form-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .hero-subtitle{
    padding :20px;
  }
}

.my-slider {
  position: relative;
  width: 90%;       /* Slider width, you can change to e.g., 600px */
  max-width: 700px;
  height: 450px;    /* Decreased height */
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
}

.my-slider img {
  position: absolute;
  width: 100%;      /* Image fills slider width */
  height: 100%;     /* Image fills slider height */
  object-fit: cover;/* Crop/scale image to fit nicely */
  border-radius: 10px;
  opacity: 0;
  animation: fade 12s infinite;
}

/* Adjust animation delays for 3 images */
.my-slider img:nth-child(1) { animation-delay: 0s; }
.my-slider img:nth-child(2) { animation-delay: 4s; }
.my-slider img:nth-child(3) { animation-delay: 8s; }

@keyframes fade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}

/* Top corner icon */
.my-top-corner-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  color: white;
  font-size: 24px;
  z-index: 10;
  text-decoration: none;
}
