
:root {
    
    --shining-blue-primary: #2E3192; 
    --shining-blue-light: #4facfe;
    --pink-soft: #ff9a9e;
    --violet-soft: #a18cd1;
    
  
    --gradient-pink-violet: linear-gradient(135deg, #ff9a9e 0%, #a18cd1 100%);
    --gradient-blue-shine: linear-gradient(135deg, #2E3192 0%, #00d2ff 100%);
    --gradient-bg-subtle: linear-gradient(180deg, #ffffff 0%, #fdfbfd 100%);
    --gradient-sunshine: linear-gradient(135deg, #f6d365 0%, #fda085 100%);

    --text-dark: #2c3e50;
    --text-muted: #666;
    --text-light: #fff;

   
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body, html {
    width: 100%;
    height: 100%;
    color: var(--text-dark);
    background: var(--gradient-bg-subtle);
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdfbf7 0%, #fff0f5 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out, visibility 1s ease-out;
}

.visual-container {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.mother-image {
    width: 180px;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    z-index: 10;
    opacity: 0;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    animation: imageReveal 2s ease-out forwards, breathe 3s ease-in-out infinite 2s;
}

.aura-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    animation: rotateAura 20s linear infinite;
}

.aura-circle {
    fill: none;
    stroke: url(#auraGradient);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: drawStroke 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0.8;
}

.text-container { text-align: center; z-index: 10; color: #6d5e56; }
.main-text { font-size: 1.5rem; font-weight: 300; letter-spacing: 2px; margin-bottom: 0.5rem; text-transform: uppercase; }
.sub-text { font-size: 0.9rem; font-style: italic; opacity: 0; animation: simpleFadeIn 2s ease-out forwards 1.5s; }
.letter { opacity: 0; display: inline-block; animation: fadeLetter 0.8s ease-out forwards; }

@keyframes imageReveal { 0% { opacity: 0; transform: scale(0.9); filter: blur(10px); } 100% { opacity: 1; transform: scale(1); filter: blur(0); } }
@keyframes breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes drawStroke { to { stroke-dashoffset: 0; } }
@keyframes rotateAura { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fadeLetter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes simpleFadeIn { to { opacity: 1; } }

/* Header And Nav*/
  
#main-content {
    opacity: 0;
    transition: opacity 1.5s ease-in;
}


.top-bar {
    background-color: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info span { margin-right: 20px; display: inline-flex; align-items: center; gap: 8px; }
.contact-info i { color: var(--shining-blue-primary); }
.social-icons a { color: #555; margin-left: 15px; font-size: 1.1rem; transition: color 0.3s; }
.social-icons a:hover { color: var(--pink-soft); }
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 2%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}.navbar {
    background: var(--gradient-blue-shine);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 25px rgba(46, 49, 146, 0.25);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    padding: 2px; 
    width: 65px; 
    height: 65px;
    margin-right: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.nav-links { display: flex; gap: 25px; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: 0.3s;
}
.nav-links a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -4px; left: 0; background-color: #ff9a9e; transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn-nav-book {
    background: var(--gradient-pink-violet);
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-nav-book:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(161, 140, 209, 0.5); }

.hamburger { display: none; cursor: pointer; color: white; font-size: 1.5rem; }

/* Header*/
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: -95px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    padding-bottom: 80px;
}


.page-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(46, 49, 146, 0.7), rgba(46, 49, 146, 0.7)), url('about-bg.jpg'); /* You can change this image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -95px;
    padding-top: 95px;
    text-align: center;
    color: white;
}
.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}


.hero-bg-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-bg-slider::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(12, 12, 40, 0.8) 0%, rgba(46, 49, 146, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: auto;
}

.hero-content {
    max-width: 550px;
    text-align: left;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); 
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    letter-spacing: -0.5px;
    animation: slideUpFade 1s ease-out forwards 0.5s;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    margin-bottom: 1rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: slideUpFade 1s ease-out forwards 0.8s;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: slideUpFade 1s ease-out forwards 1.4s;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gradient-pink-violet);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(255, 126, 179, 0.4); border-color: rgba(255,255,255,0.3); }

.btn-secondary {
    display: inline-block;
    padding: 10px 26px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.btn-secondary:hover { background: white; color: var(--shining-blue-primary); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* =========================================
   NEW: EXPERTS IN FAILED IVF CASES SECTION
   ========================================= */
.failed-cases-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #fffcfc 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.failed-cases-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(161, 140, 209, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.failed-cases-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* Animation state controlled by JS */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.failed-cases-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.fc-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

/* Typography & Text Column */
.fc-main-heading {
    font-size: 2.5rem;
    color: var(--shining-blue-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.fc-emotional-block {
    margin-bottom: 25px;
}

.fc-headline-serif {
    font-family: 'Times New Roman', serif; /* Serif font for emotional weight */
    font-size: 2rem;
    font-weight: 400;
    color: #444;
    font-style: italic;
    line-height: 1.3;
}

.fc-sub-headline {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--shining-blue-primary), var(--violet-soft));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 5px;
}

.fc-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    max-width: 90%;
}

/* Highlight Message Box */
.fc-message-box {
    background: linear-gradient(135deg, #fff0f5 0%, #fdfbfd 100%);
    padding: 30px;
    border-radius: 0 20px 20px 20px;
    position: relative;
    border-left: 5px solid var(--pink-soft);
    box-shadow: 0 10px 30px rgba(161, 140, 209, 0.15);
    margin-bottom: 40px;
}

.fc-message-box p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--shining-blue-primary);
    line-height: 1.5;
    margin: 0;
}

/* Feature Points */
.fc-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fc-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fc-icon {
    width: 40px;
    height: 40px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shining-blue-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.fc-feature span {
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
}

/* Visual Column */
.fc-visual-col {
    position: relative;
    height: 100%;
}

.fc-image-wrapper {
    position: relative;
    border-radius: 300px 300px 20px 20px; /* Arch shape */
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(46, 49, 146, 0.15);
    height: 600px;
    border: 5px solid #fff;
}

.fc-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s linear;
}

.fc-image-wrapper:hover img {
    transform: scale(1.1); /* Very slow zoom on hover */
}

.fc-floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--shining-blue-primary);
    font-weight: 700;
    animation: floatBadge 3s ease-in-out infinite;
}

.fc-floating-badge i {
    color: var(--pink-soft);
    font-size: 1.2rem;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* CTA Row */
.fc-cta-row {
    text-align: center;
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.fc-closing-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    font-family: serif;
}

/* Responsive */
@media (max-width: 992px) {
    .fc-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .fc-visual-col {
        order: -1; /* Image on top for mobile */
    }

    .fc-image-wrapper {
        height: 350px;
        border-radius: 20px;
    }

    .fc-main-heading { font-size: 2rem; }
    .fc-sub-headline { font-size: 1.8rem; }
    
    .fc-floating-badge {
        right: 10px;
        bottom: 20px;
    }
}
/* Info Section */
.info-section {
    position: relative;
    padding: 6rem 20px;
    background: #ffffff; 
    margin-top: 0; 
    z-index: 50;
}

.info-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.info-container.visible { opacity: 1; transform: translateY(0); }

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); 
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between; 
    height: 100%;
}

.info-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: var(--gradient-blue-shine); transition: height 0.3s ease; }
.card-hours::before { background: var(--gradient-pink-violet); }
.card-locations::before { background: var(--gradient-blue-shine); }
.card-appointments::before { background: var(--gradient-sunshine); }

.info-card:hover { transform: translateY(-15px); box-shadow: 0 25px 50px rgba(46, 49, 146, 0.15); border-color: transparent; }
.info-card:hover::before { height: 8px; }

.card-icon-wrapper {
    width: 70px; height: 70px; border-radius: 50%; background: #f0f4ff; 
    display: flex; align-items: center; justify-content: center; margin-bottom: 25px;
    color: var(--shining-blue-primary); font-size: 1.8rem; transition: all 0.4s ease;
    position: relative; z-index: 1; flex-shrink: 0; 
}
.card-hours .card-icon-wrapper { background: #fff0f5; color: #a18cd1; }
.card-locations .card-icon-wrapper { background: #e0f7fa; color: #00bcd4; }
.card-appointments .card-icon-wrapper { background: #fff8e1; color: #ff9a9e; }
.info-card:hover .card-icon-wrapper { color: #fff; transform: rotateY(360deg); }

.card-hours:hover .card-icon-wrapper { background: var(--gradient-pink-violet); box-shadow: 0 10px 20px rgba(161, 140, 209, 0.4); }
.card-locations:hover .card-icon-wrapper { background: var(--gradient-blue-shine); box-shadow: 0 10px 20px rgba(79, 172, 254, 0.4); }
.card-appointments:hover .card-icon-wrapper { background: var(--gradient-sunshine); box-shadow: 0 10px 20px rgba(255, 154, 158, 0.4); }

.card-title { font-size: 1.5rem; font-weight: 700; color: #333; margin-bottom: 15px; line-height: 1.3; transition: color 0.3s; flex-shrink: 0; }
.info-card:hover .card-title { background: linear-gradient(45deg, #2E3192, #a18cd1); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.card-content { font-size: 1.05rem; color: #666; margin-bottom: 30px; line-height: 1.6; flex-grow: 1; width: 100%; }
.card-btn { padding: 14px 35px; border-radius: 50px; text-decoration: none; color: #fff; font-weight: 600; font-size: 0.95rem; display: inline-block; transition: transform 0.3s, box-shadow 0.3s; align-self: flex-start; flex-shrink: 0; }
.card-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn-gradient-pv { background: var(--gradient-pink-violet); }
.btn-gradient-blue { background: var(--gradient-blue-shine); }
.btn-gradient-sunshine { background: var(--gradient-sunshine); }

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

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.about-container.visible { opacity: 1; transform: translateY(0); }

.about-content {
    display: flex;
    flex-direction: column;
}

.section-tag {
    color: var(--pink-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--shining-blue-primary);
    margin-bottom: 25px;
    line-height: 1.2;
}


.section-title.big-heading {
    font-size: 3.2rem;
    font-weight: 800;
}

.hindi-text {
    font-size: 1.8rem;
    color: #555;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.about-desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.hindi-desc {
    font-family: 'Segoe UI', sans-serif; 
    font-style: italic;
    color: #777;
    border-left: 3px solid var(--violet-soft);
    padding-left: 15px;
}

.about-features {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    width: 40px;
    height: 40px;
    background: #f0f4ff;
    color: var(--shining-blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.feature-item span {
    font-weight: 600;
    color: #444;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 450px;
    background: #f0f0f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
}

.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-placeholder:hover img {
    transform: scale(1.05);
}

.placeholder-icon {
    font-size: 5rem;
    color: #ddd;
    position: absolute;
    z-index: 0;
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--gradient-blue-shine);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 49, 146, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 500;
}

.about-content .btn-primary {
    align-self: flex-start;
    min-width: 150px;       
}
/* Moving stats */
.stats-section {
    position: relative;
    padding: 60px 20px;
    color: white;
    margin-top: 0;
    overflow: hidden;
    background: #2E3192; 
}


.stats-bg-anim {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(-45deg, #2E3192, #00d2ff, #2E3192, #6b2cf5);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: 1;
    opacity: 0.95;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stats-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s;
}
.stat-item:hover { transform: translateY(-5px); }

.stat-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.stat-value-wrapper {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number {
    display: inline-block;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
}
/* 7. SERVICES SECTION STYLES */
.services-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fdfbfd 0%, #fff 100%);
}

.services-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: left;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
    
    opacity: 0;
    transform: translateY(40px);
}


.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}


.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-pink-violet);
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px) !important; /* Override sticky hover if needed, but translateY(0) is keyframe end */
    box-shadow: 0 20px 40px rgba(46, 49, 146, 0.1);
    border-color: transparent;
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}


.icon-female { background: #fff0f5; color: #e91e63; } 
.icon-male { background: #e3f2fd; color: #2196f3; }   
.icon-lab { background: #f3e5f5; color: #9c27b0; }    
.icon-eval { background: #e8f5e9; color: #4caf50; }   

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.hindi-text-sm {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    border-left: 2px solid var(--violet-soft);
    padding-left: 10px;
}

.service-link {
    font-weight: 600;
    color: var(--shining-blue-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: var(--pink-soft);
}


/*MEET OUR TEAM SECTION
   */
.team-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #fff 0%, #f9fbfc 100%);
    position: relative;
}

.team-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.team-carousel {
    display: flex;
    gap: 30px;
    padding: 20px 5px 40px 5px;
    justify-content: center; 
    flex-wrap: wrap; }
.team-card {
    
    flex: 1 1 45%; 
    min-width: 350px; 
    max-width: 600px; 
    
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(46, 49, 146, 0.1);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-pink-violet);
}

.team-img-wrapper {
    height: 400px; 
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f0f4ff;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top center; 
    transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 30px;
    text-align: center;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-name {
    font-size: 1.6rem; 
    color: var(--shining-blue-primary);
    margin-bottom: 5px;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-qual {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.4;
}

.team-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.8rem;
    background: #f9f9f9;
    padding: 6px 12px;
    border-radius: 15px;
    color: #666;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 5px;
}

.badge i { color: var(--pink-soft); }

.team-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #f5f5f5;
}

.team-link {
    background: none;
    border: none;
    color: var(--shining-blue-primary);
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
    padding: 0;
    align-self: center;
}

.team-link:hover {
    gap: 12px;
    color: var(--pink-soft);
}
.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: translateY(30px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.close-modal:hover { color: var(--shining-blue-primary); }

.modal-profile-header {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.modal-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.modal-info h2 {
    color: var(--shining-blue-primary);
    margin-bottom: 5px;
    font-size: 1.8rem;
}

.modal-info h4 {
    color: var(--pink-soft);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.modal-bio {
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
}

.modal-footer {
    text-align: center;
    margin-top: 30px;
}
/*FOOTER SECTION */
.main-footer {
    background: linear-gradient(180deg, #1a237e 0%, #2E3192 100%);
    color: #fff;
    padding-top: 80px;
    padding-bottom: 30px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    position: relative;
    margin-top: 50px;
    opacity: 0; /* For fade-in animation */
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.main-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}


.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--pink-soft);
    margin-bottom: 15px;
    font-style: italic;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--pink-soft);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--pink-soft);
    padding-left: 5px;
}


.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-list i {
    color: var(--pink-soft);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: #fff;
    text-decoration: underline;
}


.social-links-footer {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--pink-soft);
    transform: translateY(-3px);
    border-color: transparent;
}


.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-bottom: 25px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

.separator {
    margin: 0 10px;
}
@media (max-width: 992px) {
    .main-footer {
        padding-top: 60px;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/*NEW: WHY CHOOSE US SECTION */

.why-choose-section {
    background: linear-gradient(135deg, #fdfbfd 0%, #ffffff 100%);
    position: relative;
}

.why-choose-container {
    max-width: var(--container-width);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.why-choose-container.visible { opacity: 1; transform: translateY(0); }

.why-heading-wrapper {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-heading-wrapper h2 {
    font-size: 2.8rem;
    color: var(--shining-blue-primary);
    font-weight: 800;
    margin-bottom: 15px;
}

.why-heading-wrapper p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.why-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.reason-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    display: flex;
    gap: 20px;
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}
.reason-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(46, 49, 146, 0.1);
    border-color: #e0e0e0;
}
.reason-icon {
    width: 60px;
    height: 60px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shining-blue-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: var(--gradient-pink-violet);
    color: #fff;
    transform: scale(1.1);
}

.reason-text h4 {
    font-size: 1.2rem;
    color: var(--shining-blue-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.reason-text .eng-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

.reason-text .hin-text {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    border-left: 2px solid var(--violet-soft);
    padding-left: 10px;
    line-height: 1.5;
}

.why-visual-wrapper {
    position: relative;
    height: 100%;
    min-height: 800px;
    padding: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;  
    box-shadow: none;         
    border: none;             
}

.why-visual-wrapper img {
   
    width: 100%;
    height: 100%;
    object-fit: contain; 
    border-radius: 200px; 
}

/*TESTIMONIALS SECTION  */
.testimonials-section {
    
    background: linear-gradient(180deg, #ffffff 0%, #fdf9fc 100%);
    overflow: hidden;
}

.testimonial-container {
    max-width: var(--container-width);
    margin: 0 auto;
}
.testimonial-slider-wrapper {
    position: relative;
    margin: 50px auto 80px;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.testimonial-card {
    min-width: calc(33.333% - 20px); 
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-pink-violet);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(161, 140, 209, 0.2);
}

.quote-icon {
    font-size: 2rem;
    color: var(--pink-soft);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testi-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-blue-shine);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--shining-blue-primary);
    font-size: 1rem;
}

.author-loc {
    font-size: 0.85rem;
    color: #888;
}

.treatment-tag {
    font-size: 0.75rem;
    color: var(--violet-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--gradient-pink-violet);
}
.video-stories-wrapper {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
}

.video-section-title {
    font-size: 1.8rem;
    color: var(--shining-blue-primary);
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 16/9;
}

.video-thumbnail:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s;
}

.video-thumbnail:hover img {
    filter: brightness(0.7);
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(46, 49, 146, 0.2);
    transition: background 0.3s;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--shining-blue-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    animation: pulse-white 2s infinite;
}

.video-caption {
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-caption {
    transform: translateY(0);
    opacity: 1;
}

@keyframes pulse-white {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.video-modal-custom {
    z-index: 10001; 
    background-color: rgba(0,0,0,0.85);
}

.video-modal-content {
    background: #000;
    width: 90%;
    max-width: 900px;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002;
}

.video-container-responsive {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
}

.video-container-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* GALLERY SECTION STYLES*/
.gallery-section {
    
    background: #fff;
    position: relative;
}

.gallery-container {
    max-width: var(--container-width);
    margin: 0 auto;
}
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f0f4ff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--shining-blue-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: #e0e8ff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-pink-violet);
    color: #fff;
    box-shadow: 0 5px 15px rgba(161, 140, 209, 0.4);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    min-height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    opacity: 1; 
    transform: scale(1);
}

.gallery-item.hide {
    display: none; 
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
}
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(46, 49, 146, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-overlay span {
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10005;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 5px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border: 2px solid #fff;
}

.lightbox-caption {
    color: #fff;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10006;
}

.close-lightbox:hover {
    color: var(--pink-soft);
}
/*commitment section styles*/
.commitment-section {
    
    background: linear-gradient(135deg, #fdfbfd 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.commitment-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}
.commitment-details {
    display: flex;
    flex-direction: column;
}

.commitment-intro {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    font-weight: 400;
    border-left: 4px solid var(--pink-soft);
    padding-left: 20px;
}
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.commit-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.commit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 49, 146, 0.1);
    border-color: rgba(161, 140, 209, 0.3);
}

.commit-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-blue-shine);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.commit-card:hover .commit-icon {
    background: var(--gradient-pink-violet);
    transform: rotate(5deg);
}

.commit-text h4 {
    font-size: 1rem;
    color: var(--shining-blue-primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.commit-text .hindi-text-sm {
    font-size: 0.9rem;
    color: #777;
    border: none;
    padding: 0;
    font-style: normal;
}
.commitment-visual {
    position: relative;
    height: 100%;
}

.visual-inner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 600px;
}

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

.visual-overlay-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: var(--shining-blue-primary);
    font-weight: 700;
    backdrop-filter: blur(5px);
}

.visual-overlay-badge i {
    color: var(--pink-soft);
    font-size: 1.2rem;
}
@media (max-width: 992px) {
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visual-inner {
        height: 400px;
        order: -1; 
    }
    
    .commitment-visual {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}


/* Siucess story */
.success-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #fdfbfd 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.success-container {
    max-width: var(--container-width);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.success-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.success-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}
.featured-success {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(46, 49, 146, 0.08);
    margin-bottom: 50px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.featured-success:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(46, 49, 146, 0.12);
}

.featured-img-box {
    flex: 1.2;
    position: relative;
    min-height: 350px;
}

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

.story-year-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--shining-blue-primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

.featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-tags {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.story-badge {
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-ivf { background: #e3f2fd; color: #1565c0; }
.badge-twins { background: #fce4ec; color: #c2185b; }
.badge-blue { background: #e1f5fe; color: #0277bd; }
.badge-gold { background: #fff8e1; color: #ff8f00; }
.badge-purple { background: #f3e5f5; color: #7b1fa2; }

.featured-content h3 {
    font-size: 1.8rem;
    color: var(--shining-blue-primary);
    margin-bottom: 5px;
}

.hindi-text-highlight {
    font-size: 1.2rem;
    color: var(--pink-soft);
    font-weight: 500;
    margin-bottom: 20px;
}

.story-desc {
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.story-desc-hindi {
    color: #777;
    font-style: italic;
    border-left: 3px solid var(--violet-soft);
    padding-left: 15px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.story-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.story-author {
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-author i { color: var(--shining-blue-primary); }
.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.story-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.story-img {
    height: 200px;
    width: 100%;
    position: relative;
}

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

.story-img .story-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.story-body {
    padding: 25px;
}

.story-body h4 {
    color: var(--shining-blue-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.story-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 15px;
}

.story-loc {
    display: block;
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}
.ethical-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 50px;
    border: 1px dashed #e0e0e0;
}

.e-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.e-stat i {
    font-size: 1.5rem;
    color: var(--pink-soft);
}

.e-stat span {
    font-weight: 600;
    color: #555;
    font-size: 1.1rem;
}
.success-cta-wrapper {
    text-align: center;
}

.cta-emotional-line {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--shining-blue-primary);
    margin-bottom: 20px;
    font-family: serif; 
}


@media (max-width: 992px) {
    .featured-success {
        flex-direction: column;
    }
    .featured-img-box {
        min-height: 250px;
    }
    .success-grid {
        grid-template-columns: 1fr; 
    }
    .ethical-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-radius: 20px;
    }
}


/*ResponsiveStyles*/
@media (max-width: 992px) {
    .top-bar { display: none; }
    
    header { padding: 5px; background: rgba(255, 255, 255, 0.95); }
    .navbar { padding: 10px 15px; border-radius: 0; width: 100%; }
    .logo-container { width: 50px; height: 50px; margin-right: 10px; }
    
    .hamburger { display: block; color: white; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: var(--shining-blue-primary);
        flex-direction: column;
        align-items: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    .nav-links.active { max-height: 400px; }
    .nav-links a { display: block; padding: 15px; width: 100%; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .btn-nav-book { display: none; }

 
    .hero-section { margin-top: -70px; height: 100vh; align-items: flex-end; justify-content: flex-start; padding-bottom: 50px; }
    .hero-bg-slider::after { background: linear-gradient(0deg, rgba(12, 12, 40, 0.9) 0%, rgba(46, 49, 146, 0.5) 60%, transparent 100%); }
    .hero-container { justify-content: flex-end; align-items: flex-start; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; }
    .hero-title { margin-bottom: 0.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
    .hero-subtitle { text-shadow: 0 1px 2px rgba(0,0,0,0.5); }
    .hero-text { display: none; }
    .hero-buttons { flex-direction: row; gap: 10px; margin-bottom: 1rem; flex-wrap: wrap; }
    .btn-primary, .btn-secondary { width: auto; text-align: center; padding: 10px 20px; font-size: 0.85rem; }
    
    .trust-cues { display: none; }
    .info-container { grid-template-columns: 1fr; gap: 40px; }


    .about-container { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper { order: -1; margin-bottom: 20px; }
    .about-img-placeholder { height: 300px; }
    .exp-badge { bottom: 20px; left: 20px; padding: 15px 20px; }
    .section-title { font-size: 2rem; }
    .hindi-text { font-size: 1.4rem; }

    .stats-container { flex-direction: column; gap: 40px; }
}