:root {
    --primary-teal: #0F7C78;
    --dark-teal: #0A5E5A;
    --accent-red: #9B001F;
    --light-cream: #F3E6B3;
    --black: #000000;
    --white: #FFFFFF;
}

/* ================= HEADER ================= */
.top-header {
    background: var(--primary-teal);
    color: var(--white);
    padding: 10px 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.top-left a {
    color: var(--white);
    margin-right: 15px;
    font-size: 16px;
    transition: 0.3s;
}

.top-left a:hover {
    color: var(--accent-red);
}

.top-right span {
    margin-left: 20px;
    font-weight: 500;
}

.custom-navbar {
    background: var(--white);
    padding: 14px 0;

    position: sticky;
    top: 0;
    z-index: 999;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    font-weight: 700;
    font-size: 17px;
    margin: 0 14px;
    color: var(--black);
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-red);
}

.appoint-btn {
    background: var(--accent-red);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.appoint-btn:hover {
    background: var(--dark-teal);
    color: var(--white);
}


.mega-menu {
    width: 520px;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px;
    border-radius: 12px;
    display: none;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mega-menu a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.mega-menu a:hover {
    color: var(--accent-red);
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .mega-menu {
        display: block;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .top-header {
        text-align: center;
    }

    .top-right span {
        display: block;
        margin: 5px 0;
    }

    .navbar-nav {
        margin-top: 15px;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 10px 0;
    }

    .appoint-btn {
        display: none;
        margin-top: 15px;
        text-align: center;
    }

    .mega-menu {
        width: 100%;
        position: static;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 10px;
    }

    .nav-item.dropdown.active .mega-menu {
        display: block;
    }
}


/* HERO SECTION */
.hero-section {
    background: #e9f3f2;
    padding: 80px 0;
}

.hero-heading {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 40px;
}

.hero-heading span {
    color: var(--accent-red);
}

.hero-left {
    padding-right: 20px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-btn {
    background: var(--accent-red);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
}

.hero-btn:hover {
    background: var(--dark-teal);
}

.review-badge {
    background: #fff;
    padding: 10px 16px;
    border-radius: 14px;
    display: inline-block;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.review-badge img {
    height: 60px;
}

.hero-img-wrap {
    text-align: center;
}

.hero-img {
    max-height: 560px;
    margin-bottom: -79px;
}

.image-card {
    position: relative;
    margin-left: -310px;
}

.image-overlay {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-6%);
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    color: var(--dark-teal);
}

.hero-right {
    padding-left: 20px;
}

.hero-list {
    list-style: none;
    padding: 0;
}

.hero-list li {
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}

.hero-list i {
    color: var(--primary-teal);
    margin-right: 8px;
}

@media (max-width: 991px) {

    .hero-section {
        padding: 50px 15px;
        text-align: center;
    }

    .hero-heading {
        font-size: 27px;
        font-weight: 800;
        margin-bottom: 0px;
    }

    .hero-left,
    .hero-right {
        padding: 0;
        margin-top: 20px;
    }

    .image-card {
        margin-left: -80px;
    }

    .hero-img {
        max-height: 300px;
        margin-bottom: 20px;
    }

    .review-badge {
        margin: auto;
    }

    .hero-btn {
        margin-top: 10px;
    }

    .image-overlay {
        position: absolute;
        bottom: -14px;
        left: 31%;
    }
}


/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 110px 0;
    background: #ffffff;
}

.about-image-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.about-image-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
}

.about-glass-card {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 150px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-glass-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-teal);
    margin-bottom: 5px;
}

.about-glass-card h5 {
    font-size: 15px;
    color: #333;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-teal);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #222;
    margin-bottom: 10px;
}

.about-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 15px;
}

.about-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}

.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 3px;
    width: 22px;
    height: 22px;
    background: var(--dark-teal);
    color: var(--white);
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-more-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--accent-red);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #e0e0e0;
    transition: 0.3s;
}

.view-more-btn:hover {
    background: var(--dark-teal);
    color: var(--white);
}

.about-image-box:hover img {
    transform: scale(1.05);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .about-section {
        padding: 70px 15px;
    }

    .about-image-box img {
        height: 350px;
    }

    .about-glass-card {
        padding: 18px;
        border-radius: 18px;
        right: 90px;
    }

    .about-glass-card h3 {
        font-size: 18px;
    }

    .about-content h2 {
        font-size: 24px;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-list li {
        text-align: left;
    }

    .about-image-box {
        margin-top: 20px;
    }
}


/* ================= SERVICES ================= */

.services-section {
    padding: 100px 0;
    background: var(--dark-teal);
}

.service-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
}

.service-sub {
    font-size: 16px;
    color: #ffffff;
}

.service-image img {
    width: 100%;
    border-radius: 30px;
}

.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--accent-red);
    transition: 0.4s;
    height: 100%;
    position: relative;
}

.service-card img {
    width: 40px;
    margin-bottom: 15px;
}

.service-card h5 {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-teal);
}

.service-card p {
    font-size: 14px;
    color: #555;
}

ul.throat-list {
    padding-left: 10px;
}


/* VIEW MORE BUTTON */
.view-more-service {
    display: inline-block;
    padding: 18px 30px;
    border-radius: 20px;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    background: #fff;
}

/* HOVER */
.view-more-service:hover {
    background: var(--accent-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-red);
}

@media (max-width: 991px) {

    .services-section {
        padding: 60px 15px;
        text-align: center;
    }

    .service-title {
        font-size: 24px;
    }

    .service-image {
        margin-bottom: 20px;
    }

    .service-card {
        text-align: center;
    }
}

/* ================= ASSOCIATION SECTION ================= */
.association-section {
    padding: 90px 0;
    background: #f2f5f8;
}

.association-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: var(--dark-teal);
}

.association-title::after {
    content: "";
    width: 70px;
    height: 3px;
    background: var(--accent-red);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.logo-item {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 250px;
    max-height: 70px;
    object-fit: contain;
    transition: 0.3s;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media(max-width:768px) {

    .logo-track {
        gap: 30px;
        animation-duration: 15s;
    }

    .logo-item {
        padding: 20px 25px;
    }

    .logo-item img {
        max-width: 150px;
    }

}

/* ================= TAB SECTION ================= */

.tab-section {
    padding: 60px 0;
    background: #ffffff;
}

.tab-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark-teal);
    margin-bottom: 25px;
    text-align: center;
}

.tab-subtitle {
    font-size: 16px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
    font-weight: 500;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: -1px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    border: 1px solid var(--dark-teal);
    background: #f7f7f7;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-teal);
    border-radius: 8px 8px 0 0;
    transition: 0.3s;
    font-size: 14px;
}

.tab-btn.active {
    background: #ffffff;
    border-bottom: 1px solid transparent;
}

.tab-content {
    display: none;
    background: #ffffff;
    padding: 25px;
    border: 1px solid var(--dark-teal);
    border-radius: 0 10px 10px 10px;
    text-align: left;
    max-width: 900px;
    margin: auto;
}

.tab-content.active {
    display: block;
}

.tab-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.tab-list li {
    margin-bottom: 10px;
    font-size: 16px;
    position: relative;
    padding-left: 28px;
    line-height: 1.6;
    color: #000;
    font-weight: 500;
}

.tab-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: var(--dark-teal);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tab-btn-main {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 26px;
    background: var(--accent-red);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.tab-btn-main:hover {
    background: var(--dark-teal);
    color: #fff;
}

@media (max-width: 768px) {

    .tab-section {
        padding: 40px 15px;
    }

    .tab-title {
        font-size: 22px;
    }

    .tabs {
        gap: 6px;
    }

    .tab-btn {
        flex: 1;
        font-size: 13px;
        padding: 8px;
    }

    .tab-content {
        padding: 18px;
    }

    .tab-list li {
        font-size: 14px;
        padding-left: 24px;
    }

    .tab-list li::before {
        width: 16px;
        height: 16px;
        line-height: 16px;
        font-size: 10px;
    }

    .tab-btn-main {
        width: 100%;
        text-align: center;
    }
}


/* Whats Set Apart Section */
.sets-apart {
    background: #f2f5f8;
    padding: 80px 0;
    color: #fff;
}

.apart-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    align-items: center;
}

.apart-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 50px;
    max-width: 90%;
    color: var(--dark-teal);
}

.apart-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apart-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.8;
    color: #040404;
}

p.apart-subtitle {
    color: #000;
    font-weight: 600;
}

.apart-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    width: 26px;
    height: 26px;
     background: var(--accent-red);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apart-image {
    position: relative;
}

.apart-image img {
    width: 100%;
    height: auto;
    border-radius: 45px;
    object-fit: cover;
}

.doctor-tag {
    position: absolute;
    bottom: 1px;
    right: 1px;
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(15px);
    padding: 49px 44px;
    border-radius: 18px;
    color: var(--dark-teal);
    font-weight: 700;
}

.doctor-tag h4 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.doctor-tag span {
    font-size: 15px;
    opacity: 0.9;
}

@media (max-width: 992px) {

    .sets-apart {
        padding: 70px 20px;
    }

    .apart-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .apart-content h2 {
        font-size: 32px;
    }

    .apart-image img {
        border-radius: 28px;
    }

    .doctor-tag {
        right: 15px;
        bottom: 15px;
        padding: 15px 20px;
    }
}



/* ================= SECTION WRAPPER ================= */

.risk-section {
    padding: 80px 0;
    background: var(--dark-teal);
    color: #fff;
}

.risk-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    padding-bottom: 50px;
}

.risk-sub {
    text-align: center;
    max-width: 720px;
    margin: 12px auto 50px;
    color: #e2e8f0;
}

.risk-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.risk-item {
    padding: 18px 22px;
    border-bottom: 1px solid rgb(255 255 255 / 81%);
    cursor: pointer;
    transition: 0.3s;
}

.risk-item h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.risk-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
    display: none;
}

.risk-item.active,
.risk-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid var(--color-secondary);
}

.risk-item.active .risk-desc,
.risk-item:hover .risk-desc {
    display: block;
}

.risk-image img {
    width: 100%;
    border-radius: 22px;
    background: #fff;
}

@media (max-width: 991px) {
    .risk-wrapper {
        grid-template-columns: 1fr;
    }

    .risk-title {
        font-size: 24px;

    }

}



/* =================  CARE SECTION ================= */

.who-care-section {
    padding: 100px 0;
    background: #ffff;
}

/* LEFT SIDE */
.who-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 30px;
}

.who-intro {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 35px;
    max-width: 95%;
}

.who-image img {
    width: 100%;
    border-radius: 40px;
    display: block;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.who-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 22px 28px;
    border-radius: 50px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.who-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    border-color: #dcdcdc;
}

.who-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.who-icon::before {
    display: none;
}

.who-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* .who-icon img {
    width: 26px;
    filter: brightness(0) invert(1);
} */

.who-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .who-care-section {
        padding: 60px 20px;
    }

    .who-left h2 {
        font-size: 28px;
    }

    .who-intro {
        font-size: 14px;
    }

    .who-image img {
        border-radius: 25px;
        margin-top: 20px;
    }

    .who-list {
        margin-top: 40px;
    }

    .who-card {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }

}


/* ===============================
   GLIMPSE  SECTION
================================ */

.glimpse-section {
    background: #f4f6f9;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
}

.glimpse-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2c4c7a;
    margin-bottom: 20px;
}

.glimpse-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: var(--dark-teal);
}

.glimpse-slider {
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.glimpse-slider:active {
    cursor: grabbing;
}

.glimpse-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: autoScroll 60s linear infinite;
    will-change: transform;
}

.glimpse-slider:hover .glimpse-track {
    animation-play-state: paused;
}

.glimpse-track:hover {
    animation-play-state: paused;
}

.glimpse-card {
    min-width: 300px;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
}

.glimpse-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
    transition: 0.4s ease;
}

.glimpse-card:hover img {
    transform: scale(1.05);
}

/* Smooth Infinite Scroll */
@keyframes autoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */

@media (max-width: 992px) {
    .glimpse-heading {
        font-size: 30px;
    }

    .glimpse-card {
        min-width: 250px;
    }

    .glimpse-card img {
        height: 260px;
    }
}

@media (max-width: 600px) {

    .glimpse-slider {
        overflow: hidden;
    }

    .glimpse-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        animation: autoScroll 60s linear infinite;
    }

    .glimpse-card {
        min-width: 250px;
        flex-shrink: 0;
    }

    .glimpse-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

}


/* ===============================
   RECOVERY TIMELINE SECTION
================================ */
.recovery-timeline {
    background: var(--dark-teal);
    padding: 90px 0;
    color: #fff;
}

.timeline-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 80px;
}

.timeline-layout {
    display: grid;
    grid-template-columns: 1.2fr 80px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.timeline-scroll {
    max-height: 520px;
    overflow-y: auto;
    padding: 120px 20px;
    position: relative;
}


.timeline-scroll::-webkit-scrollbar {
    width: 0;
}

.timeline-scroll {
    scrollbar-width: none;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 95%;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: translateX(-50%);
}

.timeline-row {
    position: relative;
    min-height: 90px;
    margin-bottom: 60px;
    opacity: 0.15;
    transition: 0.4s ease;
}

.timeline-row {
    margin-bottom: 60px;
}

.timeline-row.active {
    opacity: 1;
}


.timeline-center {
    position: absolute;
    left: 95%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.timeline-icon {
    width: 75px;
    height: 75px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15);
}


.timeline-icon img {
    width: 50px;
    height: 50px;
}

.timeline-right {
    padding-right: 80px;
}

.timeline-right p {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.timeline-image {
    position: sticky;
    top: 120px;
}

.timeline-image img {
    width: 480px;
    height: 440px;
    object-fit: cover;
    border-radius: 26px;
}

@media (max-width: 992px) {

    .recovery-timeline {
        padding: 60px 15px;
        padding-bottom: 140px;
    }

    .timeline-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline::before {
        display: none;
    }

    .timeline-scroll {
        max-height: 420px;
        overflow-y: auto;
        padding-right: 5px;
    }

    .timeline-row {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 45px;
        opacity: 0.3;
        transition: 0.3s ease;
    }

    .timeline-row.active {
        opacity: 1;
    }

    .timeline-center {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        flex-shrink: 0;
    }

    .timeline-icon {
        width: 55px;
        height: 55px;
    }

    .timeline-icon img {
        width: 28px;
        height: 28px;
    }

    .timeline-right {
        padding: 0;
        flex: 1;
    }

    .timeline-right p {
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }

    .timeline-image {
        position: relative;
        margin-top: 40px;
        width: 100%;
        overflow: hidden;
    }

    .timeline-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 18px;
        display: block;
    }

    .timeline-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }
}


/* ===============================
   SUCCESS STORIES SECTION
================================ */

.success-stories {
    padding: 100px 0;
    background: #ffff;
    text-align: center;
}

.stories-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-teal);
    margin-bottom: 10px;
}

.stories-subtitle {
    color: #555;
    margin-bottom: 70px;
    font-size: 16px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.story-card {
    background: #fff;
    padding: 40px 35px 30px;
    border-radius: 25px;
    border: 1px solid #f3c4cf;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(179, 8, 56, 0.08);
}

.stars {
    color: #f5b50a;
    font-size: 22px;
    margin-bottom: 25px;
}

.story-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
}

.story-footer {
    background: var(--accent-red);
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.avatar {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
}

.avatar.initials {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #25245c;
    font-size: 18px;
}

.story-footer h5 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.story-footer span {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 992px) {

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .success-stories {
        padding: 60px 20px;
    }

    .stories-title {
        font-size: 28px;
    }

    .story-card {
        padding: 30px 25px;
    }

}


/* ===============================
   DOCTOR CHOOSE SECTION
================================ */

.doctor-choose-section {
    background: var(--dark-teal);
    padding: 100px 0;
    color: #fff;
}

.doctor-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */

.doctor-content h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
}

.doctor-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #d7d7f0;
    margin-bottom: 15px;
    text-align: justify;
}

.doctor-points,
.doctor-points ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.doctor-points li {
    list-style: none !important;
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #fff;
}

.doctor-points li::marker {
    content: "" !important;
}

.doctor-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    color: var(--dark-teal);
}

.doctor-points li::after {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0px;
    width: 26px;
    height: 26px;
    background: #fff;
    color: var(--dark-teal);
    font-weight: bold;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-form-box {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    color: #000;
}

.doctor-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #25245c;
}

.doctor-form-box input,
.doctor-form-box textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
}

.doctor-form-box form select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 15px;
}

.doctor-form-box button {
    width: 100%;
    padding: 14px;
    background: var(--accent-red);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.doctor-form-box button:hover {
    background: var(--dark-teal);
}


@media (max-width: 992px) {

    .doctor-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .doctor-content h2 {
        font-size: 30px;
    }

    .doctor-form-box {
        padding: 30px;
    }
}


/* ===============================
   BLOG SECTION
================================ */

.blog-section {
    background: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.blog-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 10px;
}

.blog-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 70px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
    line-height: 1.4;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.calendar-icon {
    font-size: 16px;
}

.blog-btn-wrap {
    margin-top: 50px;
}

.blog-btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-red);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: var(--dark-teal);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 16px;
    }
}


/* ===============================
   VIDEO SECTION
================================ */

.video-section {
    background: var(--dark-teal);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.video-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.video-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 70px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.video-card {
    text-align: left;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.video-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

.video-btn-wrap {
    margin-top: 60px;
}

.video-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--accent-red);
    color: #ffff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.video-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-title {
        font-size: 28px;
    }

    .video-card h3 {
        font-size: 16px;
    }
}


/* ===============================
   FAQ SECTION
================================ */

.faq-section {
    background: #ffffff;
    padding: 100px 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Image */

.faq-image img {
    width: 100%;
    border-radius: 35px;
    object-fit: cover;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-teal);
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--dark-teal);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}


.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    background: var(--dark-teal);
}

.faq-item.active .faq-icon::before {
    content: "−";
}

.faq-item.active .faq-icon {
    font-size: 20px;
}

@media (max-width: 992px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }
}


/* ================= CTA FINAL ================= */

.cta-final {
    padding: 0px 0;
    padding-bottom: 50px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.cta-box {
    width: 92%;
    max-width: 1400px;
    border-radius: 55px;
    padding: 2px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: url(https://drvinayonco.com/assets/images/home/cta-bg-2.webp) no-repeat center;
    background-size: cover;
}

.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.cta-left {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.cta-left h2 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-left p {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 550px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    background: var(--accent-red);
    color: #fff;
    padding: 20px 40px;
    border-radius: 70px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: var(--dark-teal);
}

.arrow-circle {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-right {
    position: relative;
    z-index: 2;
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.cta-right img {
    width: 100%;
    max-width: 540px;
    object-fit: contain;
}

@media (max-width: 992px) {

    .cta-final {
        padding: 40px 0;
    }

    .cta-box {
        flex-direction: column;
        padding: 50px 25px 0 25px;
        text-align: center;
        border-radius: 35px;
    }

    .cta-left {
        max-width: 100%;
    }

    .cta-left h2 {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .cta-left p {
        font-size: 15px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .cta-btn {
        padding: 16px 28px;
        font-size: 15px;
        border-radius: 50px;
        gap: 15px;
    }

    .arrow-circle {
        width: 38px;
        height: 38px;
    }

    .cta-right {
        width: 100%;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .cta-right img {
        max-width: 260px;
    }
}


/* ================= Mdal Form ================= */

.consultation-modal .modal-dialog {
    max-width: 500px;
}

.consultation-modal .modal-content {
    border-radius: 26px;
    padding: 35px 32px;
    border: none;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark-teal);
}

.modal-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

/* FORCE ONE COLUMN LAYOUT */
.modal-form-fix .row {
    display: block !important;
}

.modal-form-fix [class*="col-"] {
    width: 100% !important;
    max-width: 100% !important;
}

.modal-form-fix input,
.modal-form-fix select,
.modal-form-fix textarea {
    width: 100% !important;
    height: 50px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px !important;
    background: #f8f9fb;
    transition: all 0.2s ease;
}

.modal-form-fix input:focus,
.modal-form-fix select:focus {
    border-color: var(--dark-teal);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(61, 109, 224, 0.1);
}

.modal-form-fix select {
    height: 52px;
}

.modal-form-fix button,
.modal-form-fix input[type="submit"] {
    width: 100%;
    border: none;
    height: 52px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    background: var(--accent-red);
    color: #fff;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.modal-form-fix button:hover,
.modal-form-fix input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 109, 224, 0.3);
    background: var(--dark-teal);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .consultation-modal .modal-content {
        padding: 25px 20px;
    }
}



/* ================= FOOTER ================= */

.main-footer {
    background: #0b0b0b;
    color: #fff;
    padding: 60px 0 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.footer-links a {
    color: #bdbdbd;
    margin-right: 20px;
    text-decoration: none;
    font-size: 14px;
}

.footer-quick-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #fff;
}

.footer-quick-links a {
    color: #fff;
    text-decoration: none;
}

.footer-quick-links a:hover {
    color: var(--accent-red);
}

.quick-title {
    font-weight: 600;
    margin-right: 10px;
}


.footer-links a:hover {
    color: #fff;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #fff;
    color: var(--accent-red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}


.footer-box img {
    width: 170px;
    margin-bottom: 0px;
}

.footer-box p {
    font-size: 14px;
    color: #fff;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-box h5 {
    font-size: 18px;
    margin-bottom: 18px;
    position: relative;
}

.footer-box h5::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: -6px;
    left: 0;
}


.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-box ul li a:hover {
    color: #fff;
}


.footer-box iframe {
    width: 100%;
    border: 0;
    margin-top: 10px;
    border-radius: 6px;
}


.footer-bottom {
    background: #000;
    margin-top: 50px;
    border-top: 1px solid #222;
}

.footer-bottom-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 20px 0;
}

.footer-developed {
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.footer-developed a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom p {
    margin: 0;
    color: #bdbdbd;
    font-size: 14px;
}

.footer-bottom a {
    color: #bdbdbd;
    text-decoration: none;
}

.footer-policy {
    text-align: right;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-right: 40px;
}

.footer-policy:hover {
    color: #fff;
}



@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}

@media (max-width:768px) {


    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }


    .footer-quick-links {
        justify-content: center;
        flex-wrap: wrap;
        font-size: 14px;
        gap: 8px;
    }


    .footer-quick-links span {
        margin: 0 4px;
    }


    .footer-social {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 5px;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }


    .logo-box img {
        margin: auto;
        display: block;
    }

    .footer-box p {
        text-align: center;
    }


    .footer-box h5 {
        text-align: center;
    }


    .footer-box h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-box iframe {
        height: 150px;
    }

    .footer-bottom-wrap {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }


}



/* COMMON STYLE */
.floating-call,
.floating-whatsapp {
    position: fixed;
    bottom: 70px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    text-decoration: none;
}

.floating-call {
    left: 20px;
    background: var(--accent-red);
}

.floating-call:hover {
    background: var(--dark-teal);
}

.floating-whatsapp {
    right: 20px;
    background: #25D366;
}

.floating-whatsapp:hover {
    background: #1ebe5d;
}

.floating-call i,
.floating-whatsapp i {
    line-height: 0;
}
