:root {
    --cmm-primary: #0b142c;
    --cmm-secondary: #6ac9c9;
    --cmm-text: #7a7a7a;
    --cmm-cream: #fff9e6;
    --max-width: 1200px;
}

html,
body {
    height: 100%;
}
body {
    font-family: "Roboto Slab", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial;
    color: var(--cmm-text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* padding-top: 70px; */
}

h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
    color: var(--cmm-primary);
}
@media (max-width: 768px) {
    .text-card h2 {
        font-size: 35px;
        font-weight: 500;
        margin-bottom: 15px;
        text-align: left;
    }

    .parallax-section {
        padding: 0 !important;
    }
    .content-section {
        margin-top: 0 !important;
        padding: 0 !important;
    }

    .ellipse-container {
        position: relative;
        width: 350px !important;
        height: 230px !important;
        border-radius: 50% / 50%;
        overflow: hidden; /* sirf image crop ke liye */
        z-index: 2;
    }

    .ellipse-bg {
        position: absolute;
        top: 20px !important;
        left: -20px !important;
        width: 370px !important;
        height: 200px !important;
        border-radius: 50% / 50%;
        background: #ffbca585;
        z-index: 1;
    }
    .ellipse-img {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50% / 50%;
    }
}

/* ---------- NAVBAR ---------- */
.navbar {
    background: #c5d6de;
    box-shadow: 0 2px 6px rgba(11, 20, 44, 0.05);
    padding: 0.5rem 0;
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar.sticky-top.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

/* Logo */
.navbar-brand img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

/* Nav items */
.nav-link {
    color: var(--cmm-primary) !important;
    font-weight: 400;
    padding: 0.75rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.4rem;
    height: 4px;
    width: 100%;
    background: var(--cmm-accent, #000);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Mobile toggler */
.navbar-toggler {
    border: none;
    padding: 0.25rem;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdowns */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(232, 62, 140, 0.1);
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-nav {
        gap: 0.5rem;
    }
}

/* Mobile specific styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Left align items */
    .navbar-nav {
        align-items: flex-start !important; /* left align */
        text-align: left;
        gap: 0.5rem;
    }

    .nav-link {
        width: 100%; /* full row clickable */
        text-align: left;
        padding: 0.75rem 1rem;
        border-radius: 6px;
    }

    .nav-link:hover {
        background-color: rgba(0, 123, 255, 0.05); /* soft hover effect */
    }

    /* Dropdown inside mobile */
    .dropdown-menu {
        margin-left: 0;
        border-left: 2px solid var(--cmm-accent, #007bff);
        box-shadow: none;
    }
}

/* ---------- HERO (keyframes slideshow) ---------- */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 50px;
}

.hero .slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    z-index: 0;
    animation: slideFade 25s infinite ease-in-out;
    animation-play-state: running !important;
    will-change: opacity, transform;
}

.hero:hover .slide {
    animation-play-state: running !important;
}

/* delay for each slide */
.hero .slide.s1 {
    animation-delay: 0s;
}
.hero .slide.s2 {
    animation-delay: 5s;
}
.hero .slide.s3 {
    animation-delay: 10s;
}
.hero .slide.s4 {
    animation-delay: 15s;
}
.hero .slide.s5 {
    animation-delay: 20s;
}

@keyframes slideFade {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    8% {
        opacity: 1;
        transform: scale(1);
    }
    25% {
        opacity: 1;
        transform: scale(1.1);
    }
    33% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

/* overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.3),
          rgba(0, 0, 0, 0.35)
        ); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 3rem 1rem;
    max-width: 1200px;
    width: 100%;
}
.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 4vw, 52px);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fff;
}
.hero p.lead {
    font-size: clamp(14px, 1.2vw, 18px);
    max-width: 900px;
    margin: 0 auto 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}
.hero .cta-group {
    display: inline-flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.75rem;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.42);
    color: var(--cmm-primary);
    border-radius: 10px;
    padding: 0.5rem 2rem;
    border: none;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: background 0.25s, transform 0.12s;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: var(--cmm-primary);
}

.btn-primary-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.18);
    padding: 0.6rem 1.1rem;
    border-radius: 10px;
    font-weight: 600;
}
.btn-primary-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* counter section css starts------------- */
.stats {
    background: var(--cmm-cream);
    padding: 3rem 0;
}

.stats h2 {
    font-size: 60px;
    font-weight: 700;
    color: var(--cmm-primary);
}

.stats p {
    font-size: 16px;
    color: #6c757d;
    margin-top: 0.5rem;
}

.stat-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* beech wali vertical line */
.stat-box:first-child {
    border-right: 20px solid #fff;
}

@media (max-width: 768px) {
    .stats h2 {
        font-size: 35px;
    }
}

/* ---------- ABOUT (text-only, like screenshot) ---------- */
.about {
    background: var(--cmm-cream);
    padding: 4.5rem 0;
    text-align: center;
    color: #4f4f4f;
}
.about .container {
    max-width: var(--max-width);
}
.about h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
    color: var(--cmm-primary);
}
.about p {
    max-width: 980px;
    margin: 0 auto 1.25rem;
    line-height: 1.9;
    font-size: 16px;
    color: #6e6e6e;
}

/* ---------- VIDEO (full-width embed) ---------- */
.video-section {
    width: 100%;
    background: var(--cmm-cream);
    padding: 0;
    padding: 15px;
}
.video-wrap {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}
.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-wrap {
        width: 100%;
        height: 45vh;
    }
}

/* ---------- WHY CHOOSE US (4 blocks) ---------- */
.why {
    padding: 3.5rem 0;
}

.why .stat-box {
    border: 5px solid #f38da7; /* pink border */
    padding: 0.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why .stat-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.why .stat-box h2 {
    font-weight: 700;
    color: #0b142c;
    font-size: 4rem;
    margin-bottom: 0 !important;
}

.why .stat-box p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* ---------- AWARDS / PARTNERS ---------- */
/* Awards & Partners Section Styling */
.awards,
.partners {
    padding: 3rem 0;
}
/* 
      .awards h2,
      .partners h2 {
        font-family: "Cormorant Garamond", serif;
        font-size: 34px;
        font-weight: 600;
        margin-bottom: 1.5rem;
        text-align: center;
      } */

.awards img,
.partners img {
    display: block;
    margin: 0 auto;
    max-height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.awards .swiper-slide img {
    width: 250px;
    height: auto;
    padding: 10px;
}

.awards img:hover,
.partners img:hover {
    transform: translateY(-5px);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #000; /* arrow ka color */
    transition: 0.3s;
    width: 10px !important;
    height: 10px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #333; /* hover pe darker */
}

/* Autoplay dots agar chahiye */
.swiper-pagination-bullet {
    background: #777;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

/* ---------- SERVICES ---------- */
.services {
    background-color: var(--cmm-cream);
}
.service-item img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item img:hover {
    transform: scale(1.05);
}

.service-title {
    display: inline-block;
    margin-top: 12px;
    background: #001f54; /* dark blue button */
    color: #fff;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
    scale: 1;
}

.service-title:hover {
    color: #fff;
    scale: 1.2;
}

.bi-box-arrow-up-right {
    font-size: 15px;
}

/* ---------- GALLERY ---------- */

.gallery-filters a {
    margin: 0 15px;
    font-size: 16px;
    font-weight: 400;
    color: #aaa;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-filters a.active,
.gallery-filters a:hover {
    border-bottom: 2px solid #000;
    color: #000;
}

.gallery-grid {
    column-count: 4;
    column-gap: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
    opacity: 0;
    transform: scale(0.7);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.6s ease-out;
    display: none;
}

.gallery-item.show {
    opacity: 1;
    transform: scale(1);
    display: block;
}

.gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* halka light overlay */
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-section {
    background-color: #fdf8e5;
    padding: 3rem 0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--cmm-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-container {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.client-info {
    flex: 0 0 25%;
    text-align: center;
    padding-right: 30px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--cmm-primary);
    margin-bottom: 1.5rem;
}

.client-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.client-name {
    font-weight: 700;
    color: var(--cmm-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.client-role {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-content {
    flex: 0 0 75%;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
    text-align: center;
    font-style: italic;
}

.carousel-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 45px;
    height: 45px;
    background-color: var(--cmm-primary);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #1c2d5a;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonial-container {
        flex-direction: column;
    }

    .client-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .testimonial-content {
        text-align: center;
    }
}

/* VIDEO TESTIMONIALS SECTION */
.video-testimonials {
    background: #fdf7e6;
    padding: 2rem;
}

.playlist-col {
    padding: 0;
    border-right: 1px solid #ddd;
    background: #fff;
}

.playlist-header {
    background: #0b142c;
    color: #fff;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.playlist-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 450px;
    overflow-y: auto;
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s;
}

.playlist-item:hover {
    background: #f9f9f9;
}

.playlist-item img {
    width: 70px;
    height: 45px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 3px;
}

.playlist-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    color: #333;
}

.playlist-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-duration {
    color: #666;
    margin-left: 8px;
    font-size: 12px;
}

.video-player iframe {
    width: 100%;
    border-radius: 6px;
}

/* INTERESTED SECTION STYLES */
.interested-section {
    background-color: #0b142c;
    padding: 2rem 2rem;
    border-radius: 12px;
    margin: 0 auto;
}

.interested-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: center;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.interested-form {
    background: transparent;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
    border: 1px solid #e2e2e2;
    padding: 0.9rem 1.4rem;
    font-size: 16px;
    height: auto;
    transition: all 0.3s;
    background-color: transparent !important;
    color: #fff;
}

.form-select option {
    color: #000;
}

.form-select selected {
    color: #fff;
}

.form-control:focus,
.form-select:focus {
    background-color: transparent;
    /* box-shadow: 0 0 0 0.25rem rgba(106, 201, 201, 0.25); */
    border: dotted 1px #fff;
}

.form-control::placeholder {
    color: #fff;
}

.interested-btn {
    background-color: white;
    color: var(--cmm-primary);
    border: 2px solid var(--cmm-primary);
    border-radius: 8px;
    padding: 0.9rem 2.5rem;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.interested-btn:hover {
    background-color: var(--cmm-primary);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .interested-section {
        padding: 3rem 1.5rem;
    }

    .form-row-custom > div {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .interested-heading {
        font-size: 32px;
    }

    .interested-description {
        font-size: 16px;
    }

    .interested-form {
        padding: 1.5rem;
    }

    .interested-btn {
        max-width: 100%;
    }
}

/* ---------- FAQ ---------- */
.faq-section {
    background-color: #fff;
    padding: 4rem 0;
    border-radius: 12px;
}

.faq-subtitle {
    text-align: center;
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    margin: 2rem auto;
    max-width: 600px;
}

.accordion-item {
    border: none;
    background: transparent;
    width: 100%;
    max-width: 900px;
    margin: 1rem auto;
}

.accordion-button {
    background-color: white;
    padding: 1.2rem 1rem;
    font-weight: 500;
    color: #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--cmm-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    /* box-shadow: 0 0 0 0.25rem rgba(11, 20, 44, 0.15); */
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    background-color: white;
    color: #555;
    line-height: 1.7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 1px solid #f1f1f1;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230b142c' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v5.793l2.146-2.147a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 1 1 .708-.708L7.5 10.293V4.5A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230b142c' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }

    .accordion-body {
        font-size: 0.95rem;
        padding: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 1.3rem;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 0.8rem;
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}
/* ---------- FOOTER ---------- */
.footer {
    background-color: #0b142c;
    color: #fff;
    padding: 50px 0 20px;
    font-size: 15px;
}
.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}
.footer a {
    color: #bbb;
    text-decoration: none;
}
.footer a:hover {
    color: #fff;
}
.footer .social-icons a {
    font-size: 18px;
    margin-right: 15px;
    color: #fff;
    transition: 0.3s;
}
.footer .social-icons a:hover {
    color: #06a3da;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .hero {
        min-height: 100vh;
    }
    .hero-content {
        padding: 2rem 1rem;
    }
}
@media (max-width: 575px) {
    .hero h1 {
        font-size: 28px;
    }
    .about p {
        font-size: 15px;
        line-height: 1.8;
        padding: 0 10px;
    }
}

/* about page css starts------------------- */
.mission-trust h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    color: var(--cmm-primary);
    letter-spacing: 1px;
}

.mission-trust p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.mission-trust ul li {
    font-size: 16px;
    color: var(--cmm-primary);
}

/* faq page css starts------------------------- */

.faq-section-alt {
    position: relative;
    background: url("img/faq-background.jpg") center top / cover no-repeat fixed;
    padding: 60px 20px;
    z-index: 1;
}

.faq-section-alt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 249, 230, 0.9);
    z-index: -1;
}

.faq-section-alt .faq-heading-alt {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0b142c;
    position: relative;
}

.faq-section-alt .faq-heading-alt::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #f38da7;
    display: block;
    margin: 10px auto 0;
}

.faq-section-alt .accordion-item {
    border: none;
    margin-bottom: 10px;
}

.faq-section-alt .accordion-item,
.faq-section-alt .accordion-button {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    box-sizing: border-box;
}

.faq-section-alt .accordion-button {
    background: #0b142c;
    color: #fff;
    font-weight: 600;
    padding: 20px 20px;
    border-radius: 0;
    box-shadow: none;
    font-size: 20px;
    /* color: #f38da7 !important; */
}

.faq-section-alt .accordion-button:not(.collapsed) {
    background: #0b142c;
    color: #fff;
}

.faq-section-alt .accordion-button::after {
    position: absolute !important;
    right: 10px;
    content: "\25BC";
    font-size: 14px;
    color: #f38da7 !important;
    transform: rotate(0deg);
    transition: transform 0.3s;
}

.faq-section-alt .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-section-alt .accordion-body {
    background: transparent;
    padding: 20px;
    /* border: 1px solid #eee; */
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

.faq-section-alt .accordion-body p {
    font-size: 16px;
    margin-bottom: 18px;
}

.faq-section-alt .accordion-body span {
    display: block;
    margin-bottom: 10px;
}

.faq-section-alt .accordion-body strong {
    color: #f38da7;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .faq-section-alt {
        background-attachment: scroll; /* mobile me normal background */
    }
}

@media (max-width: 768px) {
    .faq-section-alt {
        padding: 30px 15px;
    }

    .faq-section-alt .accordion-button {
        font-size: 15px;
        padding: 12px 14px;
        white-space: normal;
        text-align: left;
        line-height: 1.4;
    }

    .faq-section-alt .accordion-body {
        font-size: 14px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .faq-section-alt .accordion-button {
        font-size: 14px;
        padding: 10px 12px;
    }
    .faq-section-alt .accordion-body {
        font-size: 13px;
    }
}

/* maternity page css starts---------------------------------- */

.parallax-section {
    position: relative;
    top: 70px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    clip-path: polygon(
        0 0,
        1% 1.5%,
        2% 0,
        3% 1.5%,
        4% 0,
        5% 1.5%,
        6% 0,
        7% 1.5%,
        8% 0,
        9% 1.5%,
        10% 0,
        11% 1.5%,
        12% 0,
        13% 1.5%,
        14% 0,
        15% 1.5%,
        16% 0,
        17% 1.5%,
        18% 0,
        19% 1.5%,
        20% 0,
        21% 1.5%,
        22% 0,
        23% 1.5%,
        24% 0,
        25% 1.5%,
        26% 0,
        27% 1.5%,
        28% 0,
        29% 1.5%,
        30% 0,
        31% 1.5%,
        32% 0,
        33% 1.5%,
        34% 0,
        35% 1.5%,
        36% 0,
        37% 1.5%,
        38% 0,
        39% 1.5%,
        40% 0,
        41% 1.5%,
        42% 0,
        43% 1.5%,
        44% 0,
        45% 1.5%,
        46% 0,
        47% 1.5%,
        48% 0,
        49% 1.5%,
        50% 0,
        51% 1.5%,
        52% 0,
        53% 1.5%,
        54% 0,
        55% 1.5%,
        56% 0,
        57% 1.5%,
        58% 0,
        59% 1.5%,
        60% 0,
        61% 1.5%,
        62% 0,
        63% 1.5%,
        64% 0,
        65% 1.5%,
        66% 0,
        67% 1.5%,
        68% 0,
        69% 1.5%,
        70% 0,
        71% 1.5%,
        72% 0,
        73% 1.5%,
        74% 0,
        75% 1.5%,
        76% 0,
        77% 1.5%,
        78% 0,
        79% 1.5%,
        80% 0,
        81% 1.5%,
        82% 0,
        83% 1.5%,
        84% 0,
        85% 1.5%,
        86% 0,
        87% 1.5%,
        88% 0,
        89% 1.5%,
        90% 0,
        91% 1.5%,
        92% 0,
        93% 1.5%,
        94% 0,
        95% 1.5%,
        96% 0,
        97% 1.5%,
        98% 0,
        99% 1.5%,
        100% 0,
        100% 100%,
        99% 98.5%,
        98% 100%,
        97% 98.5%,
        96% 100%,
        95% 98.5%,
        94% 100%,
        93% 98.5%,
        92% 100%,
        91% 98.5%,
        90% 100%,
        89% 98.5%,
        88% 100%,
        87% 98.5%,
        86% 100%,
        85% 98.5%,
        84% 100%,
        83% 98.5%,
        82% 100%,
        81% 98.5%,
        80% 100%,
        79% 98.5%,
        78% 100%,
        77% 98.5%,
        76% 100%,
        75% 98.5%,
        74% 100%,
        73% 98.5%,
        72% 100%,
        71% 98.5%,
        70% 100%,
        69% 98.5%,
        68% 100%,
        67% 98.5%,
        66% 100%,
        65% 98.5%,
        64% 100%,
        63% 98.5%,
        62% 100%,
        61% 98.5%,
        60% 100%,
        59% 98.5%,
        58% 100%,
        57% 98.5%,
        56% 100%,
        55% 98.5%,
        54% 100%,
        53% 98.5%,
        52% 100%,
        51% 98.5%,
        50% 100%,
        49% 98.5%,
        48% 100%,
        47% 98.5%,
        46% 100%,
        45% 98.5%,
        44% 100%,
        43% 98.5%,
        42% 100%,
        41% 98.5%,
        40% 100%,
        39% 98.5%,
        38% 100%,
        37% 98.5%,
        36% 100%,
        35% 98.5%,
        34% 100%,
        33% 98.5%,
        32% 100%,
        31% 98.5%,
        30% 100%,
        29% 98.5%,
        28% 100%,
        27% 98.5%,
        26% 100%,
        25% 98.5%,
        24% 100%,
        23% 98.5%,
        22% 100%,
        21% 98.5%,
        20% 100%,
        19% 98.5%,
        18% 100%,
        17% 98.5%,
        16% 100%,
        15% 98.5%,
        14% 100%,
        13% 98.5%,
        12% 100%,
        11% 98.5%,
        10% 100%,
        9% 98.5%,
        8% 100%,
        7% 98.5%,
        6% 100%,
        5% 98.5%,
        4% 100%,
        3% 98.5%,
        2% 100%,
        1% 98.5%,
        0 100%
    );
}

.content-section {
    margin-top: -60px;
    padding: 60px 20px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.text-card {
    border-radius: 20px;
    background: #fff;
    padding: 30px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
}

.text-card h2 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: left;
}

.text-card p {
    font-size: 16px;
    text-align: left;
}

.ellipse-wrapper {
    position: relative;
    display: inline-block;
}

.ellipse-container {
    position: relative;
    width: 500px;
    height: 300px;
    border-radius: 50% / 50%;
    overflow: hidden; /* sirf image crop ke liye */
    z-index: 2;
}

.ellipse-bg {
    position: absolute;
    top: 20px;
    left: -80px; /* 👈 yaha se left side me niklega */
    width: 550px;
    height: 300px;
    border-radius: 50% / 50%;
    background: #ffbca585;
    z-index: 1;
}
.ellipse-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% / 50%;
}

@media (max-width: 768px) {
    .parallax-section {
        padding: 0 !important;
    }
    .content-section {
        margin-top: 0 !important;
        padding: 0 !important;
    }
}

/* portfolio css------------ */
.portfolio-section {
    margin-bottom: 30px;
}
.portfolio-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: #0d1b39;
    display: block;
    padding: 20px 25px;
    border-radius: 4px;
}

.portfolio-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #fff;
    display: block;
    margin: 10px auto 0;
}

.portfolio-grid {
    column-count: 4;
    column-gap: 15px;
}

.portfolio-grid img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 6px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .portfolio-section {
        margin-top: 30px;
    }
    .portfolio-grid {
        column-count: 2;
    }
}
@media (max-width: 576px) {
    .portfolio-grid {
        column-count: 1;
    }
}

/* terms & condition css starts-------------------------- */

.terms-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    margin-bottom: 40px;
}
.terms-container h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.terms-container h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
.terms-container h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
    color: #000;
}
.terms-container p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}
.terms-container ul {
    padding-left: 20px;
}
.terms-container ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.tables li {
    list-style: none;
}
.last-updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* privacy-policy css starts-------------------------------- */

.policy-container {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
    margin-bottom: 40px;
}
.policy-container h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.policy-container h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}
.policy-container h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}
.policy-container p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}
.policy-container ul {
    padding-left: 20px;
}
.policy-container ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

/* blog-page css starts----------------------- */

.blog-section .blog-card {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}
.blog-section .blog-card h3 {
    font-weight: 500;
    margin-bottom: 10px;
    color: #222;
}
.blog-section .blog-meta {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}
.blog-section .blog-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
}
.blog-section .read-more {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}
.blog-section .read-more:hover {
    text-decoration: underline;
}

/* blog-details css starts--------------------- */
.blog-details img {
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
}
.blog-details h2 {
    font-weight: 600;
    margin-bottom: 20px;
}
.blog-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}
.blog-details ul {
    padding-left: 20px;
}
.blog-details ul li {
    margin-bottom: 18px;
    font-size: 16px;
    color: #333;
}
.blog-details .blog-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* call or whatsapp button css ----------------------- */
.call-button,
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.call-button:hover,
.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Call button (left) */
.call-button {
    left: 20px;
    background: #25d366;
}

/* WhatsApp button (right) */
.whatsapp-button {
    right: 20px;
    background: #25d366;
}
