@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-dream: #4a6c6c;
    /* Deep Teal/Moss */
    --secondary-hope: #d8c29b;
    /* Soft Gold/Champagne */
    --background-light: #fdf8f4;
    /* Creamy White */
    --text-dark: #333d3d;
    /* Dark muted teal for text */
    --text-light: #6a7f7f;
}

body {
    font-family: 'Outfit', sans-serif;
    /* background-color: var(--background-light); */
    color: var(--text-dark);
    overflow-x: hidden;
}

/* section{
    padding: 120px 0px;
} */

h1,
h2,
h3,
.serif {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dream);
}

/* --- Horizontal Slider Styling (3.5s Pause) --- */

.horizontal-slider-window {
    width: 180px;   /* Width of one logo */
    height: 90px;   
    overflow: hidden; 
    position: relative;
}

.horizontal-slider-track {
    display: flex; 
    width: max-content; 
    /* 8s total: (3.5s pause + 0.5s move) x 2 images = 8s */
    animation: scrollLeft 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.nav-logo-img {
    width: 180px; 
    height: 90px;
    object-fit: contain;
    flex-shrink: 0; 
}

/* Logic for 8s duration: */
/* 0% to 43.75% = 3.5 seconds (Pause on Logo 1) */
/* 43.75% to 50% = 0.5 seconds (Slide to Logo 2) */
@keyframes scrollLeft {
    /* Logo 1: Stays still for 3.5s */
    0%, 43.75% {
        transform: translateX(0);
    }
    
    /* Logo 2: Stays still for 3.5s */
    50%, 93.75% {
        transform: translateX(-180px);
    }
    
    /* Seamless loop back to the start */
    100% {
        transform: translateX(-360px);
    }
}

/* 1. Refined Branding & Navigation */
.navbar {
    background-color: black;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    justify-content: center;
}

.fixed-top {
    z-index: 9999;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

/* Unique Layout Reset */
.custom-nav-wrapper {
    display: flex;
    align-items: center;
}


/* The Logo "Node" */
/* .brand-node {
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(10px);
     padding: 12px 25px;
     border-radius: 15px 40px 15px 40px; */
/* Unique organic shape */
/* border: 1px solid rgba(0, 0, 0, 0.05);
     box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.03);
     transition: all 0.4s ease;
 } */

/* The Floating Menu Capsule */
.nav-capsule {
    background: rgb(255 255 255);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links-inner {
    padding: 0 20px;
}

.nav-item-link {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 15px;
    transition: opacity 0.3s ease;
}

.nav-item-link:hover {
    color: #000;
    opacity: 0.6;
}

/* The Futuristic Action Button */
.btn-lab-action {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-lab-action:hover {
    transform: scale(1.03);
    background: #222;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.brand-node {
    background: #ed060600;
    /* border-radius: 15px 40px 15px 40px; */

    width: 180px;
    height: 54px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;

}

.hero-content h1 {
    color: black;
}

.logo-slider-window {
    width: 100%;
}

.logo-marquee {
    display: flex;
    align-items: center;
    width: 100%;
}





:root {
    --primary-dream-rgb: 74, 108, 108;
}



/* 1. Prevent Overlap & Set Layout */
.custom-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 2. Responsive Logo Scaling (Fixes the "clashing" look) */
@media (max-width: 991px) {
    .brand-node {
        width: 240px;
        /* Adjust width for mobile */
        padding: 8px 15px;
    }
}

@media(max-width:768px) {
    .brand-node {
        width: 250px;
        padding: 8px 15px;
    }
}



@media(max-width: 768px) {
    .nav-logo-img {
        width: 180px;
        height: 90px;
    }

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

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

.hero-section {
    background-image: url(images/desktop.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 130px 0px;
}

.cta {
    padding-top: 100px;
}

.mobi-bg {
    background: transparent !
}

.cta-live {
    padding-left: 60px;
}

.headline-wrapper h1 {
    font-weight: 600;
}

.headline-wrapper h1 span {
    color: #1761d7bf;
    font-weight: 600;
}

@media only screen and (max-width:768px) {
    .mobi-bg {
        height: 80vh;
        background: url(images/couple.png);
        background-position: center;
        background-size: cover !important;
        background-repeat: no-repeat !important;


        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        text-align: center !important;
    }

    .cta-live {
    padding-left: 0px;
}

    .hero-content {
        background: white;
        background-position: center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }

    @media only screen and (max-width: 768px) {
    .hero-section {
        padding-top: 47px;
        padding-bottom: 0px;
    }
}

    /* Ensure the CTA group centers its internal items */
    .cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .cta-live {
        padding-bottom: 20px !important;
    }

    .headline-wrapper h1 {
        font-weight: 600 !important;
    }

    .mobi-form {
        padding: 50px 25px !important;
    }
}

/* .hero-section {
    background-color: #000;
    overflow-x: hidden;
}

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

Images centered for PC and Mobile
.pc-bg {
    background:
        linear-gradient(90deg, rgba(255, 0, 0, 0.752) 0%, rgba(0, 0, 255, 0.089) 35%),
        url('images/couple.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    Lower % shifts the image UP
}


.mobile-bg {
    background:
        linear-gradient(90deg, rgba(255, 0, 0, 0.373) 0%, rgba(0, 0, 255, 0.089) 35%),
        url('images\couple.png');
    background-position: center;
     background-repeat: round;
    Higher shift for portrait mobile screens
}

.spotlight-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    Circular spotlight: Center of light shifted up to 40% to match the faces
    background: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 75%, rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
}

Positioning the Button and Live Status at Bottom Left
.action-bottom-left {
    position: absolute;
    bottom: 30px;
    left: 20px;
    text-align: left;
}

.live-status {
    padding-left: 70px;
}

.dream-title {
    padding-top: 25%;
}

.headline-wrapper h1 span {
    color: #1761d7bf;
}

Mobile Responsive Logic
@media (max-width: 768px) {
    .first-screen-mobile {
        height: 100vh;
    }

    .second-screen-mobile {
        background-color: #ffffff;
        min-height: 72vh;
    }

    .dream-title {
        font-size: 2.2rem !important;
        padding-top: 15%;
    }

    .action-bottom-left {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 100%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
}

    .live-status {
        padding-left: 70px;
    }

    .cta-area a {
        width: 103%;
    }

    Center on mobile for better UX
}

@media (min-width: 992px) {
    .hero-section {
        height: 100vh;
        overflow: hidden;
    }

    .first-screen-mobile,
    .second-screen-mobile {
        height: 100vh;
    }
} */

/* =============================================Live Dot Styling============================================ */
.live-dot {
    height: 10px;
    width: 10px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.lead-form-card {
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7) !important;
}

/*=========================================================== IVF Clinic scroller Sction======================================================================== */
/* Container for the horizontal scroll */
.city-scroller-container {
    background-color: #e9ecef;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    /* Changed from auto to hidden for the animation */
    white-space: nowrap;
}

.clinics-section {
    z-index: 12;
}

/* Hide scrollbar for a cleaner look */
.city-scroller-container::-webkit-scrollbar {
    display: none;
}

.scroller-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll 100s linear infinite;
    /* Adjusted speed for readability */
}

.scroller-wrapper:hover {
    animation-play-state: paused;
}

.city-item {
    display: flex;
    align-items: center;
    /* Vertically centers the dot with the text */
    flex-shrink: 0;
    padding-right: 40px;
    /* Increased spacing for clarity */
    font-size: 14px;
    color: #333;
}

.city-item span {
    padding-top: 20px;
}

.dot {
    color: #d9534f;
    margin-right: 6px;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 19px;
}

/* For scrolling */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

    /* Slides exactly half way (one full set) */
}

.scroller-wrapper {
    animation: scroll 20s linear infinite;
}

.city-name {
    color: #d9534f;
    font-weight: 700;
}

/* =================================BRANCHES CLINICS-----============================================== */
/* Decorative Background Circle */
.clinics-creative-section {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.08) 0%, rgba(0, 0, 255, 0.05) 35%);
    position: relative;
    overflow: hidden;
}

.clinics-creative-section::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    background: rgba(255, 0, 0, 0.03);
    border-radius: 50%;
    top: -10%;
    left: -20%;
    z-index: 0;
    pointer-events: none;
}

/* Typography */
.clinics-section h2.serif {
    color: #6a3d8a;
    font-size: 2.2rem;
}

/* Card Styling */
.centre-card {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.centre-card:hover {
    transform: translateY(-8px);
}

.card-footer-gradient {
    background: linear-gradient(90deg, rgb(87 123 255) 0%, rgb(154 8 0) 35%);
}

.centre-card i {
    color: #ffffff;
    font-size: 1.1rem;
}

.centre-card span {
    color: #f9f8f8;
    font-size: 0.95rem;
}

/* Navigation Buttons (Mobile Only) */
.carousel-control-custom {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #000000;
    background: white;
    color: #0d0d0e;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.carousel-control-custom:hover {
    background-color: #09010f;
    color: white;
}

@media (min-width: 992px) {
    .clinics-creative-section::before {
        width: 1200px;
        height: 1200px;
        left: -30%;
    }
}

/* Blue Submit Button */
.btn-submit-blue {
    /* background: radial-gradient(circle at 0% 0%, #7286a5 0%, #112240 50%, #1f2a39 100%); */
   background: #1761d7bf; 
    color: white;
    border: none;
    padding: 12px 65px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

/* Creating the two moving lines */
.btn-submit-blue::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -120%;
    width: 50px;
    height: 300%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(25deg);
    /* Creates the distinct second line */
    box-shadow: 30px 0 rgba(255, 255, 255, 0.08);

    /* Increased to 4s for a slower, more premium feel */
    animation: slowShimmer 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes slowShimmer {
    0% {
        left: -120%;
    }

    /* The highlight takes longer to travel across the button */
    40%,
    100% {
        left: 105%;
    }
}

.btn-submit-blue:hover {
    /* background: #093544; */
    background: brown !important;
    
    color: white;
    box-shadow: 0 4px 15px rgba(18, 128, 165, 0.4);
}

@media (max-width: 768px) {
    .ctn-btn {
        position: absolute !important;
        bottom: 11% !important;
        left: 6% !important;
        background-color: brown;
        color: #ffffff;
        padding: 3px 20px !important;
        font-size: 5px !important;
        font-weight: 400 !important;
        border-radius: 4px !important;
        transition: all 0.3s ease;
        border: none;
    }
}


/*========================================================= Benefit Card Styling ======================================================*/
.benefit-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Optional: matches most modern UI */
}

/* Position the text over the image */
.benefit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers text vertically */
    padding: 20px;
    /* background: rgba(0, 0, 0, 0.3); Adds a subtle dark tint for text readability */
    color: #ffffff;
}

.benefit-overlay h4 {
font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: black;
    font-weight: 700;
    /* padding-top: 8px */
}

.benefit-overlay h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-overlay p {
font-size: 0.85rem;
    /* margin-top: 7px; */
    color: #696161;
    font-weight: 500;
    margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
    .benefit-list{
        color: black;
    font-size: 16px;
    padding-left: 20px;
    }
    .benefit-list.TBS{
        padding-right: 87px;
    }
   
        .benefit-overlay h4 {
    font-size: 22px;    
    /* padding-top: 23px; */
}
   
    .benefit-overlay {
        padding: 24px; /* Thinner padding to save space */
    }
    

    .benefit-overlay p {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }
    
    /* Optional: Hide <br> tags on mobile to let text flow naturally */
    .benefit-overlay br {
        display: visible;
    }
}

/* ============ */
/* Card Container */
.benefit-card {
    height: 100%;
    /* Ensures card fills the column height */
    overflow: hidden;
    /* Keeps image inside the border radius */
    border-radius: 12px;
    /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    transition: transform 0.3s ease;
    /* Smooth hover animation */
}

/* Hover Effect (Optional) */
.benefit-card:hover {
    transform: translateY(-5px);
    /* Lifts card slightly on hover */
}

/* The Responsive Image */
.benefit-full-img {
    width: 100%;
    /* Full width of the column */
    height: 190px;
    /* Fixed height for uniformity */
    object-fit: cover;
    /* Ensures image covers area without stretching */
    display: block;
    /* Removes bottom spacing typical of inline images */
}

.benefits-section h2{
    font-size: 45px;
}

/* Mobile Adjustments (Optional) */
@media (max-width: 768px) {
    .benefit-full-img {
        height: 100%!important;
        /* Slightly shorter images on mobile screens */
    }
}

/* .benefit-card {
    position: relative;
    background: linear-gradient(135deg, #f8f2ff 0%, #ffffff 100%);
    border-radius: 25px; */
/* Softer rounded corners */
/* padding: 15px;
    height: 100%;
    min-height: 200px; */
/* Standardizes mobile height */
/* display: flex;
    align-items: center; */
/* Vertical center alignment */
/* overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.benefit-content {
    position: relative;
    z-index: 2;
    width: 65%;
    Ensures text doesn't hit the image
} */
/* 
.benefit-label {
    font-size: 0.7rem;
    color: #8b5cf6;
    margin-bottom: 2px;
    font-weight: 500;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4b2c6d;
    line-height: 1.1;
    margin-bottom: 5px;
}

.benefit-text {
    font-size: 0.75rem;
    color: #7c7c7c;
    margin: 0;
    line-height: 1.2;
}

.benefit-card img {
width: 137px;
    position: absolute;
    right: 10px;
    z-index: 100;
    display: block;
    top: 96px;
} */

/* Mobile Specific Tweaks */
/* @media (max-width: 576px) {
    .benefit-card {
        padding: 12px;
        min-height: 120px;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .benefit-card{
        height: 19vh;
    }


    .medical img {
       width: 110px !important;
        position: absolute !important;
        right: -3px !important;
        z-index: 100;
        display: block !important;
        top: 97px !important;
    }

    .support img{
        width: 131px !important;
    position: absolute !important;
    right: 6px !important;
    z-index: 100;
    display: block;
    top: 78px !important;
    }

    .ayurvedic img{

    width: 131px !important;
        position: absolute !important;
        right: -5px !important;
        z-index: 100;
        display: block;
        top: 74px !important;
    }

    .online img{
width: 131px !important;
        position: absolute !important;
        right: 0px !important;
        z-index: 100;
        display: block;
        top: 87px !important;
    }

    .benefit-content h3 {
        color: #161515;
        margin-bottom: 20px !important;
        line-height: 1;
        font-size: 12px !important;
        font-weight: 600;
    }

    .benefit-content p {
        padding-right: 0px !important;
    }

} */






/* .benefit-content h4 {
    font-size: 16px;
    color: #020202;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
}

.benefit-content h3 {
    color: #161515;
    margin-bottom: 12px;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
}

.benefit-content p {
    padding-right: 80px;
} */



/* SVG Styling - Floating on the right */
/* .benefit-svg img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0.8;
    color: black;
}

.benefit-svg svg {
    width: 60px;
    height: 60px;
    color: #8e44ad;
} */

/* Custom Gradients from your Image */
/* .card-1,
.card-2,
.card-3,
.card-4 {
    background: white;
    background: linear-gradient(179deg,rgba(47, 54, 82, 0.32) 0%, rgba(73, 105, 179, 0.33) 53%);
} */

/* .clinic-network-section {
    background: #ff0000;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 255, 0.06) 35%);
} */

/* Responsive adjustments */
/* @media (max-width: 768px) {
    .benefit-card {
        padding: 20px;
        min-height: auto;
    }

    .benefit-svg svg {
        width: 45px;
        height: 45px;
    }
} */

/* */

/* ============================================OUR TEAMS=========================================================== */
.team-section {
    background: linear-gradient(135deg, #fffcf9 0%, #f7f0e9 100%);
    background: linear-gradient(90deg, rgb(255 0 0 / 0%) 7%, rgb(0 0 255 / 4%) 85%);
    position: relative;
    overflow: hidden;
}

.section-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color:#6b8de0;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-main-title {
    color: #d38484e3;
    font-weight: 700;
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}



.ourteam-creative::before {
    content: "";
    position: absolute;
    width: 63vw;
    height: 160vh;
    background: rgb(255 0 0 / 4%);
    border-radius: 50%;
    top: 40%;
    right: 18%;
    z-index: 0;
}

.team-subtitle {
    color: #4a4a4a;
    font-size: 1.2rem;
    line-height: 1.6;
}

.highlight-orange {
    color: #c45b25;
    font-weight: 800;
    border-bottom: 2px solid rgba(196, 91, 37, 0.2);
}

/* Creative Card Styling */
.doctor-profile-card {
    position: relative;
    border-radius: 30px;
    /* More rounded for a modern feel */
    overflow: hidden;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(28, 72, 75, 0.1);
    height: 100%;
}

.img-container {
    overflow: hidden;
    height: 100%;
    background: #f0f0f0;
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Effects */
.doctor-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(28, 72, 75, 0.2);
}

.doctor-profile-card:hover .doctor-img {
    transform: scale(1.1);
}

/* Elegant Overlay */
.doctor-details-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(to top,
            rgba(75, 28, 28, 0.95) 0%,
            rgba(75, 28, 28, 0.4) 50%,
            transparent 100%);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.details-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.doctor-profile-card:hover .details-content {
    transform: translateY(0);
}

.dr-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.dr-qual {
    color: #ffb38a;
    /* Soft orange/peach */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dr-divider {
    width: 40px;
    height: 3px;
    background: #c45b25;
    border: none;
    margin: 10px 0;
    opacity: 1;
}

.dr-exp {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 400;
}
    .benefit-list {
        color: black;        
    }
/* Mobile Adjustments */
@media (max-width: 768px) {
    .doctor-profile-card {
        border-radius: 20px;
    }

    .team-main-title {
        font-size: 1.8rem;
    }

    .dr-name {
        font-size: 1.1rem;
    }

    .doctor-details-overlay {
        padding: 15px;
    }

    .ourteam-creative::before{
                   content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgb(255 0 0 / 4%);
        border-radius: 50%;
        top: 0;
        right: 0%;
        z-index: 0;
    }
}



/* =========================================================AWARD SCROLLER========================================================== */
/* --- Horizontal Orb Scroller Section --- */
.horizontal-orb-scroller {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 255, 0.06) 35%);
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.orb-infinite-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

/* Edge Fade Gradients */
.orb-infinite-container::before,
.orb-infinite-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.orb-infinite-container::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.orb-infinite-container::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

/* The Track - Now using -50% for seamlessness */
.orb-track {
    display: flex;
    width: max-content; /* Allows the track to expand beyond screen width */
    animation: scrollOrbs 40s linear infinite; /* Adjusted time for 32 items */
}

/* Stop animation on hover */
.orb-track:hover {
    animation-play-state: paused;
}

.orb-item {
    padding: 30px 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #fdf8f4;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.orb-item:hover .orb-wrapper {
    transform: translateX(10px) scale(1.05);
    border-color: #d4a373;
    -webkit-transform: translateX(10px) scale(1.05);
    -moz-transform: translateX(10px) scale(1.05);
    -ms-transform: translateX(10px) scale(1.05);
    -o-transform: translateX(10px) scale(1.05);
}

/* KEYFRAME LOGIC */
/* We move to -50% because the second half of the track is a duplicate of the first. */
@keyframes scrollOrbs {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-30%);
        -webkit-transform: translateX(-30%);
        -moz-transform: translateX(-30%);
        -ms-transform: translateX(-30%);
        -o-transform: translateX(-30%);
}
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .orb-infinite-container::before,
    .orb-infinite-container::after {
        width: 60px;
    }

    .orb-wrapper {
        width: 150px;
        height: 150px;
    }

    .orb-track {
        animation-duration: 25s; /* Speed it up slightly for smaller distance */
    }
}

/*=============================================== AS SEEN IN ======================================*/
.as-seen-in {
    background-color: #ffffff;
    overflow: hidden;
}

.section-title {
    font-weight: 700;
    color: #0d2244;
    white-space: nowrap;
}

.title-line {
    height: 2px;
    width: 60px;
    background-color: #0d2244;
    opacity: 0.2;
}

/* Scroller Container */
.logo-scroller {
    position: relative;
    padding: 20px 0;
    /* Edge fading for a cleaner look */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    /* width: max-content is vital to keep all logos on one line */
    width: max-content; 
    /* 'linear' ensures the speed is constant, no slowing down at the end */
    animation: scrollLogos 25s linear infinite;
    will-change: transform; /* Hardware acceleration for smoother motion */
}

.logo-item {
    padding: 0 40px;
    /* This prevents logos from squashing on smaller screens */
    flex-shrink: 0; 
    transition: transform 0.3s ease;
}

.logo-item img {
    height: 45px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    transform: scale(1.1);
}

/* THE CONTINUOUS LOGIC:
   Because your HTML has two sets of identical logos, 
   moving exactly -50% means the second set is now where the first started.
   The reset to 0% becomes invisible to the human eye.
*/
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.logo-scroller:hover .logo-track {
    animation-play-state: paused;
}
/* =================================================BOOK AN APPOINTMENT================================================ */
/* Container must be relative so the button stays inside it */

.book-an-app{
    background-color: white !important;
}

.book-an-appoinment {
        /* Replace 'your-image-path.png' with the actual link to your uploaded image */
        background-image: url('images/cta-banner (2).png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center right; /* Keeps the doctor on the right */
        min-height: 380px;
        display: flex;
        align-items: center;
        /* background-color: #f0f4f8; Fallback color */
    }

    .cta-heading {
    color: #2c3e50;
    font-size: 34px;
    /* margin-top: 62px; */
    }

    .cta-para {
    color: #555;
    margin-bottom: 12px;
    font-size: 10px;
    }

    .btn-clinic {
        background-color: #007bff; /* Adjust to match the doctor's blue theme */
        color: white;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-clinic:hover {
        background-color: #0056b3;
        color: white;
        transform: translateY(-2px);
        /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
    }

   @media only screen and (max-width: 768px) {
    .book-an-appoinment {
        background-image: url('images/mobile-cta.png');
        /* Increase height slightly for better visual impact on tablets */
        min-height: 225px !important; 
 
    }

    .img-heading {
        /* Remove heavy side padding from desktop to give text room */
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-top: 82px !important;
        width: 100%;
    }

    .cta-heading {
font-size: 12px;
        line-height: 0.5;
        margin-top: 0px !important;
    }

    /* .cta-para {
        font-size: 18px;
        margin-bottom: 25px;
    } */

    .cta-btn-blue {
width: 92%;
        max-width: 126px;
        margin: 0 auto;
        font-size: 7px;
    }
}
/* ========================== */


/* .expert-cta-section {
    Replace 'your-image-path.jpg' with your actual file name
    background: url('images/cta-banner.png') no-repeat center right;
    background-size: cover;
    background-color: #ffffff;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.cta-content {
    color: #1a1a1a; Dark text for readability
    padding: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1b6cb5; Matching the blue in the image
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    background-color: #155a96;
    color: #fff;
    transform: translateY(-2px);
}

Responsive adjustment for mobile
@media (max-width: 768px) {
    .expert-cta-section {
        background-position: center; Center image on small screens
        text-align: center;
    }
    .cta-content {
        background: rgba(255, 255, 255, 0.8); Add overlay so text is readable over the image
        border-radius: 10px;
    }
} */
/* =============
.cta-image-container {
    width: 100%;
    position: relative;
    CRITICAL
    overflow: hidden;
    border-radius: 16px;
}

.cta-main-image {
    width: 100%;
    height: auto;
    display: block;
}

Positioning the button over the image's red button
.ctn-btn {
    position: absolute;
    bottom: 11%;
    left: 6%;
    background-color: brown;
    color: #ffffff;
    padding: 10px 61px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 16px;
    ;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.ctn-btn:hover {
    background: #1761d7 !important;
    color: white;
    box-shadow: 0 4px 15px rgba(18, 128, 165, 0.4);
} */

/* Mobile Adjustments */
/* @media (max-width: 768px) {
        .btn-submit-blue {
            Adjust positioning for smaller screens if necessary
            bottom: 15%;
            left: 10%;
            padding: 6px 15px;
            font-size: 0.8rem;
            border-radius: 4px;
        }
    } */

/* KEEPING YOUR ORIGINAL STYLE */
/* .expert-cta-section {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 255, 0.06) 35%);
}

.cta-banner-card {
    background: white;
    border-radius: 40px;
    position: relative;
    margin-top: 50px;
    width: auto;
    height: 35vh;
    /* Removed overflow:visible for mobile to prevent horizontal scroll */
/* } */

/* .cta-banner-creative::before {
    content: "";
    position: absolute;
    width: 300px;
    Reduced for mobile
    height: 350px;
    background: rgb(255 0 0 / 9%);
    border-radius: 50%;
    top: 10px;
    right: 5%;
    z-index: 0;
}

MOBILE OPTIMIZATIONS
@media (max-width: 768px) {
    .cta-banner-card {
        border-radius: 25px;
        margin-top: 20px;
        overflow: visible;
        height: 24vh;
        Clips the doctor at the bottom of the card
    }

    .cta-banner-creative::before{
    width: 213px;
        height: 223px;
        top: 0px;
        right: 0%;
    }

    .cta-banner h2{
        font-size: 14px !important;
        padding-bottom: 10px m !important;
    }

    .expert-img {
       height: 250px !important;
        width: auto;
        top: 96px !important;
        margin-left: 10% !important;
    }

    .display-6 {
        font-size: 1.25rem !important;
        Smaller title for phone
    }

    .small-mobile-text {
        font-size: 0.85rem !important;
        Smaller text for phone
        margin-bottom: 1.5rem !important;
    }

    .btn-submit-blue {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .doctor-image-wrapper-mobile {
        position: absolute;
        bottom: -15px;
        Sits at the bottom of the card
        right: -10px;
        width: 130%;
        Scales the doctor up
    }
}




DESKTOP STYLE (Maintaining your original wrapper)
@media (min-width: 992px) {
    .cta-banner-card {
        overflow: visible;
    }

    .doctor-image-wrapper-mobile {
        position: absolute;
        bottom: -154px;
        right: -25px;
        width: 100%;
    }

    .cta-banner-creative::before {
        width: 341px;
        height: 312px;
    }
}

.expert-img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
    position: relative;
    top: 38px;
}

The Appointment Button
.btn-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    The Teal Base Color from the video
    background: #9896d4;

    Creating the diagonal stripes with a gradient
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 50px 50px;
    Size of the stripe pattern

    color: #0f0f0f;
    text-decoration: none;
    padding: 15px 45px;
    border-radius: 4px;
    Slightly rounded, professional corners
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 1px solid black;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;

    Infinite moving effect
    animation: slideStripes 2s linear infinite;
    cursor: pointer;
}

Hover effects to make it feel interactive
.btn-appointment:hover {
    background-color: #116275;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

The keyframes that create the sliding motion in the video
@keyframes slideStripes {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 0;
    }
}

Expert Image Positioning
.expert-img {
    height: 395px;
    width: auto;
    display: block;
    margin-left: 25%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

Responsive Fixes
@media (max-width: 991px) {
    .cta-banner-card {
        text-align: center;
        padding: 20px;
    }

    .btn-appointment {
        width: 100%;
        justify-content: center;
    }
} */

/* FAQ Section Styles */
/* Unique Section Styling */
.faq-creative-section {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 255, 0.06) 35%);
    position: relative;
    overflow: hidden;
}

@media (max-width:768px) {
    .faq-creative-section::before {
        top: -115px !important;
    }
}

/* Floating Decorative Elements (The "Unique" Touch) */
.faq-creative-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 0, 0, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -50px;
    z-index: 0;
}

/* Glassmorphism Accordion */
.custom-faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px !important;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.custom-faq-accordion .accordion-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}

.custom-faq-accordion .accordion-button {
    background: transparent;
    color: #333;
    font-weight: 600;
    padding: 1.5rem;
    box-shadow: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: #d63384;
    /* A soft red/pink to match your gradient start */
    background: transparent;
}

.custom-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3E%3Cpath fill-rule='evenodd' d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath fill-rule='evenodd' d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: transform 0.3s ease;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    filter: hue-rotate(280deg);
    /* Adjusts icon color when active */
}

.highlight-pill {
    background: linear-gradient(120deg, #ff000022 0%, #0000ff11 100%);
    padding: 2px 15px;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.faq-subtitle {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}



/* ==========================================Footer============================================== */
/* Footer Section Styling */
.footer-section {
    background: radial-gradient(circle, rgba(155, 42, 42, 0.21) 0%, rgba(87, 106, 199, 0.36) 100%);
    color: white;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-brand-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.85;
    text-align: justify;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* The Pill-Style Contact Buttons */
.footer-contact-pill {
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: 15px;
    width: fit-content;
    transition: transform 0.3s ease;
}

.footer-contact-pill:hover {
    transform: scale(1.05);
}

.pill-icon-circle {
    width: 35px;
    height: 35px;
    border: 1px solid #7B3E96;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #7B3E96;
}

.pill-text {
    color: #4a235a;
    font-weight: 600;
    font-size: 1rem;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

/* =============================================MOBILE STICKY=========================== */

/* Sticky Bottom Bar - Only for Mobile */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    /* Hidden by default */
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-btn {
    flex: 1;
    border-radius: 50px;
    padding: 12px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* Red Gradient Button (Appointment) */
/* .btn-appointment {
    background: linear-gradient(90deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 255, 0.06) 35%)
} */

/* Blue Gradient Button (WhatsApp) */
.btn-whatsapp {
    background: linear-gradient(90deg, rgba(24, 145, 24, 0.521) 0%, rgba(6, 146, 36, 0.521) 35%)
}

/* MEDIA QUERY: Show only on Mobile */
@media (max-width: 767px) {
    .mobile-sticky-bar {
        display: flex;
        gap: 10px;
    }

    /* Add padding to footer/body so the bar doesn't cover content */
    body {
        padding-bottom: 70px;
    }
}