@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --primary-color: #0b45a3;
  --secondary-color: #3D6465;
  --accent-color: #A2A33A;
  --soft-accent: #9DBF90;
  --primary-text: #102833;
  --secondary-text: #4A5D63;
  --inverted-text: #FFFFFF;
  --main-bg: #ffffff;
  --light-bg: #F4F8FB;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body {
    overflow-x: hidden;
    font-family: "Nunito", sans-serif;
}

a {
  text-decoration: none !important;
}


#phone-icon {
    position: fixed;
    bottom: 5%;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: teal;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#whatsapp {
    position: fixed;
    bottom: 5%;
    left: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: green;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

#btn-cover {
    position: fixed;
    left: -20px;
    transform: rotate(-90deg);
    z-index: 999;
}

#floating-btn {
  background-color: #ff4137;
}

/* Header */
.header {
    background-color: var(--primary-color);
    color: var(--inverted-text);
}

/* Navbar Top Section */
.navbar {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.top-bar {
    border-bottom: 1px solid #eee;
}

.brand-logo h1 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
}

.whatsapp-btn {
    border-color: var(--whatsapp-green);
    color: var(--whatsapp-green);
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: var(--whatsapp-green);
    color: white;
}

/* Main Navbar */
.navbar-nav .nav-link {
    color: #444 !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

/* Sub Navbar */
.sub-navbar {
    background-color: var(--primary-color);
    font-size: 0.9rem;
}

.sub-nav-item .nav-link {
    padding: 0.2rem 0.5rem !important;
    font-weight: 400;
}

/* Hover Dropdown Logic */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-menu {
        margin-top: 0;
    }
}

/* Common Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: var(--gold);
}

/* CTA Button */
.btn-cta {
  background-color: #f4b400;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1rem;
  outline: none;
  border: none;
}

.btn-cta:hover{
  background-color: #f5b500;
}

.btn-cta-two{
  border: 2px solid var(--soft-accent);
  color: var(--soft-accent);
  font-weight: 500;
  border-radius: 5px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 1rem;
  outline: none;
  background-color: transparent;
}

.btn-cta-two:hover{
  background-color: var(--soft-accent);
  color: var(--inverted-text);
}

/* Hero Section */
/* Carousel height */
/* Make carousel full height */
#carouselExample,
#carouselExample .carousel-inner,
#carouselExample .carousel-item {
    /*height: 90vh;*/
    position: relative;
}

/* Dark overlay */
#carouselExample .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Image fit */
#carouselExample img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay container */
.carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 750px;
    text-align: left;
    color: #fff;
    z-index: 2;
}

/* Heading */
.carousel-caption-custom h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.carousel-caption-custom h1 span {
    color: #f4b400;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background-color: #f4b400;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
}

.hero-buttons .btn-primary:hover {
    background-color: #d89f00;
}

.hero-buttons .btn-outline-light {
    padding: 12px 28px;
    font-weight: 600;
    border: 2px solid #fff;
}

/* -------- Responsive Improvements -------- */

/* Large tablets */
@media (max-width: 992px) {
    #carouselExample,
    #carouselExample .carousel-inner,
    #carouselExample .carousel-item {
        height: 75vh;
    }
    
    #carouselExample .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .carousel-caption-custom h1 {
        font-size: 2.5rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    #carouselExample,
    #carouselExample .carousel-inner,
    #carouselExample .carousel-item {
        height: 65vh;
    }
    
    #carouselExample .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .carousel-caption-custom {
        left: 5%;
        right: 5%;
        max-width: 100%;
        text-align: left;
    }

    .carousel-caption-custom h1 {
        font-size: 1.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    #carouselExample,
    #carouselExample .carousel-inner,
    #carouselExample .carousel-item {
        height: 40vh;
    }
    
    #carouselExample .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .carousel-caption-custom {
        position: absolute;
        top: 50%;
        left: 12%;
        transform: translateY(-50%);
        max-width: 750px;
        text-align: left;
        color: #fff;
        z-index: 2;
    }

    .carousel-caption-custom h1 {
        font-size: 1.6rem;
    }
    
    
}


/* =========================================
   New Modern Course Card Design
   ========================================= */
.modern-course-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.modern-course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.modern-course-card .img-box {
  position: relative;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
}

.modern-course-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-course-card:hover .img-box img {
  transform: scale(1.05);
}

.modern-course-card .overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}

/* Top Badges */
.modern-course-card .top-badge-left {
  position: absolute;
  top: 15px;
  left: 0;
  background-color: #A94442; /* Brownish red from image */
  color: #fff;
  padding: 4px 12px 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0 4px 4px 0;
  z-index: 2;
  text-transform: uppercase;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.modern-course-card .top-badge-right {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.modern-course-card .top-badge-right i {
  color: #FFC107;
  margin-right: 4px;
}

/* Bottom Overlay Content */
.modern-course-card .bottom-overlay-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modern-course-card .logo-box {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modern-course-card .logo-box i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.modern-course-card .course-title-overlay {
  color: #fff;
}

.modern-course-card .course-title-overlay h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.modern-course-card .course-title-overlay span {
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Card Body Details */
.modern-course-card .card-details {
  padding-top: 15px;
}

.modern-course-card .info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin-bottom: 10px;
  font-weight: 600;
}

.modern-course-card .tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 15px;
}

.modern-course-card .tag-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-text);
}

.modern-course-card .course-tag {
  background-color: #f4b400;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
}

.modern-course-card .btn-apply-now {
  display: block;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: none;
}

.modern-course-card .btn-apply-now:hover {
  background-color: #0b45a3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(13, 83, 195, 0.3);
}

.modern-course-card .btn-view-details {
  display: block;
  width: 100%;
  background-color: transparent;
  color: var(--primary-color);
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-color);
}

.modern-course-card .btn-view-details:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(13, 83, 195, 0.2);
}

/* Divider */
.modern-course-card .separator {
  border-top: 1px solid #f0f0f0;
  margin: 5px 0;
}

/* Course Carousel Section */
.section-title {
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 10px;
}

.section-text {
  color: var(--secondary-text);
}

.course-card {
  background: var(--main-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  margin: 10px; /* Spacing for shadow */
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.course-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.course-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-img-wrapper img {
  transform: scale(1.1);
}

.badge-custom {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: #fff;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.course-content {
  padding: 20px;
}

.course-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-text);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-desc {
  font-size: 0.9rem;
  color: var(--secondary-text);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 42px; /* Fixed height for consistency */
}

.course-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: var(--primary-text);
  font-weight: 500;
}

.course-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

.btn-card-primary {
  background-color: var(--accent-color);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid var(--accent-color);
}

.btn-card-primary:hover {
  background-color: var(--soft-accent);
  border-color: var(--soft-accent);
  color: #fff;
}

.btn-card-secondary {
  background-color: transparent;
  color: var(--soft-accent);
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid var(--soft-accent);
}

.btn-card-secondary:hover {
  background-color: rgba(43, 112, 250, 0.1);
  color: var(--brand-patna);
}


/*------------ Feature Section ---------------- */
.feature-section {
  background: linear-gradient(135deg, #012758, #014d6f, #00bcd4);
  position: relative;
}

.feature-subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--inverted-text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--inverted-text);
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(13, 64, 28, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 64, 28, 0.2);
}

.feature-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s ease;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  transition: all 0.4s ease;
}

.badge-content {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.feature-card:hover .badge-content {
  border-color: var(--Secondary);
  transform: translateY(-10px);
}

.badge-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--Primary);
  font-family: "Work Sans", sans-serif;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.badge-description {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  margin-top: 0;
}

.feature-card:hover .badge-description {
  max-height: 200px;
  opacity: 1;
  margin-top: 15px;
}

.badge-description p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--Text);
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 15px;
}

.badge-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  display: inline-block;
  background: var(--Bg-1);
  color: var(--Primary);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: "Nunito Sans", sans-serif;
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: var(--Secondary);
  color: var(--Primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .feature-title {
    font-size: 2rem;
  }

  .feature-card {
    height: 300px;
    margin-bottom: 20px;
  }

  .feature-badge {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .badge-content {
    padding: 15px;
  }

  .badge-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .feature-card {
    height: 280px;
  }

  .feature-title {
    font-size: 1.8rem;
  }

  .badge-features {
    gap: 5px;
  }

  .feature-tag {
    font-size: 11px;
    padding: 3px 10px;
  }
}


/* Owl Carousel Custom Controls */
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: var(--brand-patna) !important;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--soft-accent);
}
/* About Page */
.about-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}


/* Updated About Section */
.about-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-img-wrapper {
    position: relative;
    padding: 20px;
}

.about-img.main-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    height: auto;
    border: 1px solid rgba(255,255,255,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #001647);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
    border: 5px solid var(--light-bg); /* Matches section bg to create cutout effect */
    z-index: 2;
}

.ls-2 {
    letter-spacing: 2px;
}

.about-points .fa-circle-check {
    color: var(--main-bg); /* Use Brand MAAC blue or Cyan */
    filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.4));
}

.sub-heading {
  color: #f4b400;
}

.text-gradient-purple {
  background: #f4b400;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Why choose us */
.new-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  min-height: 300px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.new-card:hover {
  transform: translateY(-10px);
}

.new-card p {
  text-align: justify;
}

.new-card.new-card1 {
  background-color: var(--primary-color);
  color: white;
}
.new-card.new-card2 {
  background-color: #f2fbfe;
}
.new-card.new-card3 {
  background-color: var(--primary-color);
  color: white;
}

.new-card .icon-round {
  position: absolute;
  top: 0;
  width: 80px;
  height: 70px;
  border-radius: 0 0 50px 50px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-card #icon-round2 {
  background-color: var(--primary-color);
}

.new-card .icon-round i {
  color: black;
}

#our-services {
  background-color: var(--light-bg);
}


.service-card {
  background-color: #355a90;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
  margin: 10px;
}

.card-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.read-more-link {
  color: var(--inverted-text);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #f2f2f2;
}

.services-tile-section {
  background: #f8fafc !important;
}

/* Heading */
.services-title {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #1e293b !important;
}

.services-title span {
  color: #f4b400 !important;
}

.services-desc {
  max-width: 720px !important;
  margin: 10px auto 0 !important;
  color: #64748b !important;
  font-size: 15px !important;
}

/* Grid */
.services-grid {
  border: 1px solid #e5e7eb !important;
}

/* Tile */
.service-tile {
  border: 1px solid #e5e7eb !important;
  background: #ffffff !important;
}

.service-box {
  padding: 40px 30px !important;
  text-align: center !important;
  height: 100% !important;
}

/* Icon */
.service-box i {
  font-size: 36px !important;
  color: #0b45a3 !important;
  margin-bottom: 20px !important;
}

/* Title */
.service-box h4 {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
}

/* Text */
.service-box p {
  font-size: 14px !important;
  color: #6b7280 !important;
  line-height: 1.6 !important;
}

/* Gradient Tiles */
.service-tile.gradient {
  background: linear-gradient(
    118deg,
    #040f93,
    #2672e5
  ) !important;
}

.service-tile.gradient i {
  color: #ffffff !important;
}

.service-tile.gradient p {
  color: rgba(255,255,255,0.85) !important;
}

/* Hover */
.service-tile:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
  z-index: 2 !important;
  position: relative !important;
}

/* Responsive */
@media (max-width: 768px) {
  .services-title {
    font-size: 28px !important;
  }
}

/* Cta Section */
.cta-design-section {
    background-image: url('/assets/imgaes/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-bg);
}

.contact-form-card2 {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-tag {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.contact-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
}

.contact-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.contact-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px !important;
  padding: 15px 20px !important;
  color: #fff !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
}

.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}

.contact-input:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: none !important;
}

select.contact-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}

.btn-submit-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 10px 10px 25px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.arrow-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a4d44;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-submit-pill:hover .arrow-circle {
  transform: rotate(-45deg);
}

.map-wrapper {
  background: #fff;
  border-radius: 24px;
  height: 550px;
}

#mainContactForm select option {
  background-color: #0f172a;
  color: #fff;
}

/* Contact Info Cards */
.contact-info-card {
    background: #1c1c1c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-5px);
    border-color: var(--brand-maac);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--main-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    transition: all 0.4s ease;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Faq Section */
.faq-section {
  background-color: #113563;
}

.custom-accordion .accordion-item {
  background-color: transparent;
  border: none;
}

.custom-accordion .accordion-header {
  margin-bottom: 10px;
}

.custom-accordion .accordion-button {
  background-color: #ffffff;
  color: var(--primary-text);
  border: 1px solid #e0e0e0;
  padding: 15px 20px;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.custom-accordion .accordion-body {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--main-bg);
}

.testimonial-card {
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #113563;
  color: #fff;
  /* border: 1px solid red; */
}

.testimonial-card .testimonial-card-wrapper .testimonial-img {
  width: 50px;
  height: 50px;
  border: 1px solid var(--brand-maac);
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-card .testimonial-card-wrapper .testimonial-img img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Footer Section */
.footer-section {
    background-color: #050505; /* Deep black/dark background */
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--btn-cyan);
    padding-left: 5px;
}

.footer-contact li {
    font-size: 0.95rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #1f2937;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.social-icon:hover {
    background-color: var(--brand-maac);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--brand-maac);
}

.hover-white:hover {
    color: #fff !important;
}

/* Contact Page */
.contact-page {
    background: #4c6d91;
  background: linear-gradient(270deg, rgba(76, 109, 145, 0.98) 0%, rgba(0, 74, 173, 0.93) 85%);
}

/* Modal Styles */
.modal-content {
  border-radius: 8px;
}

.input-group-text {
  background: #f1f3f5;
}

.btn-danger {
  background-color: #dc3545;
  border: none;
}

.btn-danger:hover {
  background-color: #c82333;
}


/* About Page */
.mission-section {
  padding: 30px 20px;
  background: #f8f9fb;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.mission-content h2 {
  font-size: 38px;
  color: #0b6fb8;
  margin-bottom: 10px;
}

.mission-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.mission-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.mission-points {
  list-style: none;
  padding: 0;
}

.mission-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

/* RIGHT IMAGE (SIZE CONTROL FIX) */
.mission-image img {
  width: 100%;
  max-height: 380px;        /* 🔹 image size control /      / image stretch nahi hogi */
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  object-position: center;


}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mission-container {
    grid-template-columns: 1fr;
  }

  .mission-content h2 {
    font-size: 30px;
  }

  .mission-image img {
    max-height: 260px;
  }
}
.vision-section {
  padding: 70px 20px;
  background: #ffffff;
}

.vision-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE */
.vision-image img {
  width: 100%;
  max-height: 380px;      /* image size control */
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* CONTENT */
.vision-content h2 {
  font-size: 38px;
  color: #0b6fb8;
  margin-bottom: 10px;
}

.vision-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.vision-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.vision-points {
  list-style: none;
  padding: 0;
}

.vision-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vision-container {
    grid-template-columns: 1fr;
  }

  .vision-content h2 {
    font-size: 30px;
  }

  .vision-image img {
    max-height: 260px;
  }
}
.stats-section {
  background: #012758; /* same blue feel */
  padding: 70px 0;
}

/* Icon box */
.stat-icon {
  width: 80px;
  height: 80px;
  background: #fbbf24;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 6px 6px 0 #ffffff;
}

.stat-icon i {
  font-size: 34px;
  color: #ffffff;
}

/* Number */
.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Text */
.stat-text {
  font-size: 15px;
  color: #e0f2fe;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .stat-number {
    font-size: 34px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
    grid-row-reverse:
  }
  
  .mission-content{
      order: 2;
  }
  
  .mission-image{
      order: 1;
  }
}

.camp-gallery-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.camp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 30%;
}


/* Makhana Manufacturer & Exporter Section Styling */
.manufacturer-exporter-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--main-bg) 100%);
  position: relative;
  overflow: hidden;
}



.manufacturer-exporter-section .tf-container {
  position: relative;
  z-index: 2;
}

/* Section Header Styling */
.manufacturer-tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.manufacturer-tag::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 10%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.manufacturer-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--inverted-text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.manufacturer-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--inverted-text);
  max-width: 700px;
  margin: 0 auto;
}

/* Manufacturer Cards */
.manufacturer-card {
  background: var(--main-bg);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(13, 64, 28, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.manufacturer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--Primary) 0%, var(--Secondary) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s ease;
}

.manufacturer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 64, 28, 0.15);
  border-color: var(--Secondary);
}

.manufacturer-card:hover::before {
  transform: scaleX(1);
}

/* Card Icon */
.card-icon {
  width: 80px;
  height: 80px;
  background: #f4b400;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  box-shadow: 0 8px 25px rgba(13, 64, 28, 0.2);
}

.card-icon::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid var(--Secondary);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.manufacturer-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--Secondary) 0%, var(--Primary) 100%);
}

.manufacturer-card:hover .card-icon::after {
  opacity: 1;
  transform: scale(1);
}

.card-icon i {
  font-size: 36px;
  color: var(--White);
  transition: all 0.4s ease;
}

.manufacturer-card:hover .card-icon i {
  transform: scale(1.1);
}

/* Card Content */
.card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-text);
  font-family: "Work Sans", sans-serif;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/*.manufacturer-card:hover .card-title {*/
/*  color: var(--Bg-11);*/
/*}*/

.card-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--Text);
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 30px;
  flex-grow: 1;
}

/* Call Button */
.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--inverted-text);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Work Sans", sans-serif;
  transition: all 0.3s ease;
  border: 2px solid var(--Primary);
  position: relative;
  overflow: hidden;
}

.call-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.call-btn:hover::before {
  left: 100%;
}

/*.call-btn:hover {*/
/*  background: var(--Secondary);*/
/*  border-color: var(--Secondary);*/
/*  color: var(--Primary);*/
/*  transform: translateY(-2px);*/
/*  box-shadow: 0 8px 20px rgba(248, 195, 44, 0.3);*/
/*}*/

.call-btn i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.call-btn:hover i {
  transform: scale(1.1);
}

/* Hover Effects for Cards */
.manufacturer-card:nth-child(1):hover {
  background: linear-gradient(
    135deg,
    rgba(13, 64, 28, 0.02) 0%,
    var(--White) 100%
  );
}

.manufacturer-card:nth-child(2):hover {
  background: linear-gradient(
    135deg,
    rgba(248, 195, 44, 0.02) 0%,
    var(--White) 100%
  );
}

.manufacturer-card:nth-child(3):hover {
  background: linear-gradient(
    135deg,
    rgba(28, 105, 50, 0.02) 0%,
    var(--White) 100%
  );
}

.manufacturer-card:nth-child(4):hover {
  background: linear-gradient(
    135deg,
    rgba(13, 64, 28, 0.02) 0%,
    var(--White) 100%
  );
}

/* Animation for cards on load */
.manufacturer-card {
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 0.6s ease-out forwards;
}

.manufacturer-card:nth-child(1) {
  animation-delay: 0.1s;
}

.manufacturer-card:nth-child(2) {
  animation-delay: 0.2s;
}

.manufacturer-card:nth-child(3) {
  animation-delay: 0.3s;
}

.manufacturer-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .manufacturer-title {
    font-size: 2.2rem;
  }

  .manufacturer-card {
    padding: 35px 25px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-icon i {
    font-size: 32px;
  }

  .card-title {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .manufacturer-title {
    font-size: 1.8rem;
  }

  .manufacturer-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .card-icon {
    width: 65px;
    height: 65px;
  }

  .card-icon i {
    font-size: 28px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-description {
    font-size: 13px;
  }

  .call-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .manufacturer-title {
    font-size: 1.5rem;
  }

  .manufacturer-tag {
    font-size: 14px;
    padding: 6px 15px;
  }

  .manufacturer-card {
    padding: 25px 15px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-icon i {
    font-size: 24px;
  }

  .card-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .card-description {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .call-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}




