:root {
    --primary-color: #0B5A8F;
    --secondary-color: #6BA539;
    --dark-color: #083E63;
    --light-color: #EAF4FB;
    --white-color: #FFFFFF;
    --text-color: #333333;
}


body {
    color: var(--text-color);
    background: #fff;
}

h1,
h2 {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.highlight {
    color: var(--secondary-color);
}


.top-header {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.top-left a {
    color: var(--white-color);
    margin-right: 12px;
}

.top-left a:hover {
    color: var(--secondary-color);
}

.top-right span {
    margin-left: 15px;
    font-weight: 600;
}

.custom-navbar {
    background: var(--white-color);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-brand img {
    height: 55px;
}

.navbar-nav .nav-link {
    font-weight: 700;
    font-size: 16px;
    margin: 0 10px;
    color: var(--text-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border-radius: 10px;
    border: none;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/* BUTTON */
.appoint-btn {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
}

.appoint-btn:hover {
    background: var(--primary-color);
}

/* TOGGLER */
.navbar-toggler {
    border: none;
    font-size: 22px;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* MOBILE */
@media (max-width: 991px) {

    .top-header {
        text-align: center;
        font-size: 13px;
    }

    .top-right span {
        display: block;
        margin: 5px 0;
    }

    .navbar-nav {
        margin-top: 10px;
        align-items: flex-start;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 15px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
    }

    .appoint-btn {
        display: none;
    }
}


/********************** HERO SECTION *********************/

.hero-banner {
    padding: 0px 0;
    background: linear-gradient(135deg, rgb(11 90 143), rgb(11 90 143));
    /*border-radius: 30px;*/
    /*margin: 40px 20px;*/
}

.hero-badge {
    background: var(--secondary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    background: var(--secondary-color);
}

.hero-btn :hover {
    background: var(--dark-color);
}

.hero-doctor-img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.rating-box {
    position: absolute;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.google-rating {
    top: 120px;
    right: 40px;
}

.surgery-rating {
    bottom: 50px;
    right: 70px;
}

.rating-box img {
    width: 30px;
}

.rating-box i {
    font-size: 22px;
    color: var(--primary);
}


@media(max-width:991px) {

    .hero-title {
        font-size: 34px;
    }

    .hero-banner {
        padding: 60px 20px;
        padding-bottom: 0;
    }

    .rating-box {
        position: relative;
        margin-top: 15px;
    }

}



/******** Counter Section ********/

.counter-section {
    padding: 40px 0;
    background: #ffffff;
}

.counter-card {
    /* background: rgba(0, 165, 143, 0.08); */
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.counter-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.counter-icon {
    font-size: 36px;
    color: #ffffff;
}

.counter-number {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.counter-content p {
    margin: 0;
    font-size: 15px;
    color: #ffffff;
}


@media(max-width:768px) {

    .counter-section {
        padding: 40px 0;
    }

    .counter-card {
        padding: 20px;
    }

    .counter-number {
        font-size: 26px;
    }

    .counter-icon {
        font-size: 28px;
    }

    .counter-flex {
        gap: 12px;
    }

    .counter-content p {
        font-size: 14px;
    }

}



/************* ABOUT DOCTOR ************/

.about-doctor-section {
    padding: 90px 0;
    background: #f9fbfc;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border: 2px solid var(--secondary-color);
    background: var(--secondary-color);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.about-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.about-img-wrapper {
    position: relative;
    display: inline-block;
}

.about-doctor-img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.about-bg-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgb(11 90 143);
    border-radius: 20px;
    top: -20px;
    left: -20px;
    z-index: 1;
}

@media(max-width:991px) {

    .about-title {
        font-size: 32px;
    }

    .about-doctor-img {
        max-width: 320px;
        margin-bottom: 30px;
    }

    .about-doctor-section {
        padding: 60px 20px;
    }

}



/******** UROLOGY TREATMENTS ********/
.treatment-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-desc {
    max-width: 800px;
    margin: auto;
    color: #000000;
    font-size: 16px;
    margin-bottom: 40px;
}

.treatment-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: .3s;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

.treatment-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.treatment-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
}

.treatment-title {
    font-size: 17px;
    font-weight: 700;
    color: #1D2A4D;
    margin: 0;
    line-height: 1.3;
}

.treatment-card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.treatment-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #bfe6df;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

.all-specialities-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.all-specialities-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .treatment-card {
        padding: 18px;
    }

    .treatment-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .treatment-title {
        font-size: 15px;
    }

}


.video-section {
    padding: 80px 0;
    background: #f9fbfc;
}

.video-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.video-desc {
    color: #666;
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.video-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
}

.video-btn:hover {
    background: var(--primary-color);
}

@media(max-width:768px) {
    .video-title {
        font-size: 30px;
    }

    .video-text {
        font-size: 16px;
    }

}




/* ===============================
   SUCCESS STORIES SECTION
================================ */


.success-stories {
    padding: 100px 0;
    background: #ffff;
    text-align: center;
}

.stories-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    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: var(--primary-color);
    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(--secondary-color);
    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: var(--primary-color);
    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;
    }

}


/* ===============================
   SPINE VIDEO SECTION
================================ */

.spine-video-section {
    background: var(--dark-color);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.spine-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.spine-video-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.spine-video-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 70px;
}

.spine-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.spine-video-card {
    text-align: left;
}

.spine-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 20px;
}

.spine-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
}

.spine-video-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

.spine-video-btn-wrap {
    margin-top: 60px;
}

.spine-video-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #25245c;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.spine-video-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .spine-video-grid {
        grid-template-columns: 1fr;
    }

    .spine-video-title {
        font-size: 28px;
    }

    .spine-video-card h3 {
        font-size: 16px;
    }
}





/* ===============================
   DOCTOR CHOOSE SECTION
================================ */

.doctor-choose-section {
    background: var(--dark-color);
    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;
    color: #fff;
}

.doctor-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #ffffff;
    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(--secondary-color);
}

.doctor-points li::after {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0px;
    width: 26px;
    height: 26px;
    background: #fff;
    color: var(--secondary-color);
    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: var(--primary-color);
}

.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(--secondary-color);
    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(--primary-color);
}


@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(--primary-color);
    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(--secondary-color);
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.blog-btn:hover {
    background: var(--primary-color);
}

@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;
    }
}




/* ===============================
   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(--primary-color);
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid var(--primary-color);
}

.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(--secondary-color);
    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(--secondary-color);
}

.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;
    }
}


/* =========================
   MAIN FOOTER
========================= */

.main-footer {
    background: var(--dark-color);
    color: #ffffff;
}

.footer-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo img {
    width: 250px;
    filter: brightness(0) invert(1);
}

.footer-heading h3 {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #fff;
    color: #25245c;
}

.arrow-circle {
    width: 35px;
    height: 35px;
    background: #fff;
    color: #25245c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links {
    padding: 70px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-col p {
    font-size: 14px;
    color: #dcdcdc;
    margin-bottom: 12px;
}

.footer-col p a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.footer-col p a:hover {
    color: #fff;
}

.footer-col i {
    margin-right: 0px;
    color: #fdfdfd;
    font-size: 18px;
}

.footer-map {
    margin-top: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.footer-bottom-flex a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom-flex a:hover {
    color: #fff;
    text-decoration: underline;
}

hr {
    width: 120px;
    opacity: 0.5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .footer-top-flex {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 600px) {

    .footer-heading h3 {
        font-size: 20px;
    }

    .footer-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-map iframe {
        height: 200px;
    }
}




/* ================= 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: #222;
}

.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: #3d6de0;
    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(--secondary-color);
    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(--primary-color);
}

.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;
    }
}


/* SECTION BACKGROUND */
.service-hero {
    background: #eef3f7;
    padding: 70px 0;
    padding-bottom: 0px;
}

.breadcrumb-box {
    font-size: 16px;
    color: #000000;
    margin-bottom: 20px;
    margin-top: -50px;
    font-weight: 600;
}

.breadcrumb-box a {
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-box a:hover {
    color: var(--primary-color);
}

.breadcrumb-box span {
    margin: 0 6px;
}

.breadcrumb-box .active {
    color: var(--primary-color);
    font-weight: 500;
}

.hero-box {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 60px;
    border-radius: 30px;
    color: #fff;
    margin-top: 60px;
}

.service-title {
    font-size: 33px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
}

.service-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #d6e6f2;
    margin-bottom: 30px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #fff;
}


.appointment-box {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    margin-left: auto;
}

.appointment-box h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.appointment-box input,
.appointment-box select {
    background: #f9f9f9;
}

.appointment-box button {
    background: var(--secondary-color);
}

.appointment-box button:hover {
    background: var(--primary-color);
}

.appointment-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.appointment-box input,
.appointment-box select {
    width: 100%;
    display: block;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #f9f9f9;
}

.appointment-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.appointment-box button:hover {
    background: var(--primary-color);
}

@media (max-width: 991px) {
    .hero-box {
        padding: 30px;
        text-align: center;
    }

    .service-title {
        font-size: 28px;
    }

    .service-desc {
        margin: 0 auto 25px;
    }

    .appointment-box {
        margin-top: 30px;
    }

    .whatsapp-btn {
        justify-content: center;
    }
}


/* SECTION BACKGROUND */
.condition-section {
    background: var(--light-color);
    padding: 80px 0;
    padding-bottom: 20px;
}

.condition-section .container {
    background: #f7f9fc;
    padding: 50px;
    border-radius: 20px;
}

.condition-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.condition-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
    max-width: 520px;
}

/* RIGHT SIDE CARD BOX */
/* .risk-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
} */

.risk-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.risk-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.risk-item {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.risk-item:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

.risk-item.active {
    background: var(--secondary-color);
}

@media (max-width: 991px) {

    .condition-section .container {
        padding: 30px;
    }

    .condition-title {
        font-size: 26px;
    }

    .risk-card {
        margin-top: 30px;
    }
}


/* Sympotoms SECTION */
.symptoms-section {
    background: var(--light-color);
    padding: 60px 0;
}

.symptoms-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.symptom-card {
    background: #fff;
    padding: 22px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
}

.symptom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* ICON BOX */
.icon-box {
    min-width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ICON */
.icon-box i {
    color: #fff;
    font-size: 18px;
}

.symptom-card p {
    font-size: 15px;
    color: #333;
    margin: 0;
    line-height: 1.6;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .symptoms-title {
        font-size: 26px;
    }

    .symptom-card {
        padding: 18px;
    }

    .icon-box {
        width: 45px;
        height: 45px;
    }
}

/* Types SECTION */
.types-section {
    background: var(--light-color);
    padding: 50px 0;
}

.types-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.type-tab {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    transition: 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.type-tab:hover {
    background: var(--secondary-color);
}

@media (max-width: 991px) {

    .types-title {
        font-size: 24px;
    }

    .type-tab {
        font-size: 14px;
        padding: 14px;
    }
}

.diagnosis-section .type-tab {
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #0b5a8f;
    ;
    transition: 0.3s;
}

.diagnosis-section .type-tab:hover {
    background: var(--primary-color);
    color: #fff;
}


/*Spine-Treatment  SECTION */
.spine-treatment-section {
    background: var(--light-color);
    padding: 60px 0;
}

.spine-treatment-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

.spine-treatment-card {
    background: #fff;
    padding: 25px 30px;
    border-radius: 18px;
    border: 1px solid rgba(11, 90, 143, 0.2);
    transition: 0.3s ease;
    height: 100%;
}

.spine-treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.spine-treatment-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.spine-treatment-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {

    .spine-treatment-title {
        font-size: 24px;
    }

    .spine-treatment-card {
        padding: 20px;
    }
}


/* SECTION */
.procedure-section {
    background: var(--light-color);
    padding: 50px 0;
}

.procedure-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.procedure-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.procedure-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid #0B5A8F;
    transition: 0.3s;
}

/* HOVER */
.procedure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.procedure-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

@media (max-width: 991px) {

    .procedure-title {
        font-size: 24px;
    }

    .procedure-card {
        padding: 18px;
    }
}

/* Benefis SECTION */
.benefits-section {
    background: var(--light-color);
    padding: 50px 0;
}

.benefits-card,
.risks-card {
    padding: 30px;
    border-radius: 20px;
}

.benefits-card {
    background: #fff;
    border: 1px solid #dce3ea;
}

.risks-card {
    background: var(--primary-color);
    color: #fff;
}

.benefits-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.risks-card h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefits-card ul,
.risks-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-card li,
.risks-card li {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.benefits-card li {
    background: #f5f7fa;
    color: #333;
    font-weight: 500;
    font-size: 15px;
}

.risks-card li {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 991px) {

    .benefits-card,
    .risks-card {
        padding: 20px;
    }
}

/* SECTION */
.recovery-section {
    background: var(--light-color);
    padding: 50px 0;
}

.recovery-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
}

.recovery-card {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid #dce3ea;
    height: 100%;
    transition: 0.3s;
}

.recovery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.recovery-card span {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.recovery-card p {
    font-size: 17px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .recovery-title {
        font-size: 24px;
    }

    .recovery-card {
        text-align: center;
    }
}

/*Life Style SECTION */
.lifestyle-section {
    background: var(--light-color);
    padding: 50px 0;
}

.lifestyle-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
}

.lifestyle-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.lifestyle-item {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #dce3ea;
    font-size: 15px;
    color: #333;
    transition: 0.3s;
    font-weight: 600;
}

.lifestyle-item:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 991px) {
    .lifestyle-box {
        padding: 25px;
    }

    .lifestyle-title {
        font-size: 22px;
    }
}

/* SECTION */
.spine-why-section {
    background: var(--light-color);
    padding: 60px 0;
}

/* TITLE */
.spine-why-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
}

/* CARD */
.spine-why-card {
    background: #f3f9ff;
    padding: 22px 25px;
    border-radius: 16px;
    border: 1px solid rgba(11, 90, 143, 0.2);
    transition: 0.3s ease;
    height: 100%;
}

/* HOVER */
.spine-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* HEADING */
.spine-why-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* TEXT */
.spine-why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .spine-why-title {
        font-size: 24px;
    }

    .spine-why-card {
        padding: 18px;
    }
}

/* SECTION */
.spine-doctor-section {
    background: var(--light-color);
    padding: 60px 0;
}

/* LEFT CONTENT */
.spine-doctor-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spine-doctor-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* FORM CARD */
.spine-consult-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* HEADING */
.spine-consult-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* FORM */
.spine-consult-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INPUTS */
.spine-consult-card input,
.spine-consult-card select,
.spine-consult-card textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #dce3ea;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

/* FOCUS */
.spine-consult-card input:focus,
.spine-consult-card select:focus,
.spine-consult-card textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

/* BUTTON */
.spine-consult-card button {
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
    cursor: pointer;
}

.spine-consult-card button:hover {
    background: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .spine-doctor-section {
        text-align: center;
    }

    .spine-doctor-content h2 {
        font-size: 24px;
    }

    .spine-consult-card {
        margin-top: 30px;
        padding: 25px;
    }
}


/* SECTION */
.service-faq-v2 {
    background: var(--light-color);
    padding: 50px 0;
}

.faq-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
}

.faq-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #dce3ea;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: #555;
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px;
}

.faq-item.active .faq-icon {
    /* transform: rotate(45deg); */
}

/* MOBILE */
@media (max-width: 991px) {
    .faq-box {
        padding: 25px;
    }

    .faq-title {
        font-size: 22px;
        text-align: center;
    }
}


/* About SECTION */
.spine-about-section {
    background: #eef3f7;
    padding: 70px 0;
    padding-bottom: 0px;
}


.spine-about-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spine-about-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.spine-qualification {
    margin-top: 20px;
}

.spine-qualification h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.spine-qualification ul {
    padding-left: 18px;
}

.spine-qualification ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}


.spine-about-img {
    padding-top: 80px;
}

.spine-about-img img {
    max-width: 100%;
    height: auto;
}

.spine-about-form {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-top: -20px;
}

.spine-about-form h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spine-about-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spine-about-form input,
.spine-about-form select,
.spine-about-form textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    font-size: 14px;
}

.spine-about-form button {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.spine-about-form button:hover {
    background: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .spine-about-section {
        text-align: center;
    }

    .spine-about-title {
        font-size: 26px;
    }

    .spine-about-img {
        margin: 25px 0;
    }

    .spine-about-form {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .spine-qualification h4 {
        text-align: left;
    }

    .spine-qualification ul li {
        text-align: left;
    }

    .spine-about-img img {
        max-width: 100%;
        height: auto;
        margin-top: -110px;
        margin-bottom: -47px;
    }
}


/* SECTION */
.spine-approach-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: #fff;
}

.spine-approach-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
}

.spine-approach-sub {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #d1e3f0;
}

.spine-approach-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.spine-approach-item {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: 0.3s;
}

.spine-approach-item h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.spine-approach-desc {
    margin-top: 8px;
    font-size: 14px;
    color: #dbeafe;
    display: none;
}

.spine-approach-item.active,
.spine-approach-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.spine-approach-item.active .spine-approach-desc,
.spine-approach-item:hover .spine-approach-desc {
    display: block;
}

.spine-approach-image img {
    width: 100%;
    border-radius: 20px;
    background: #fff;
}

.spine-approach-footer {
    text-align: center;
    margin-top: 40px;
    color: #cbd5e1;
    font-size: 14px;
}

@media (max-width: 991px) {

    .spine-approach-wrapper {
        display: flex;
        flex-direction: column;
    }

    .spine-approach-image {
        order: 1;
        margin-bottom: 20px;
    }

    .spine-approach-list {
        order: 2;
    }
}


/* SECTION */
.spine-spec-sec {
    background: var(--light-color);
    padding: 70px 0;
}

.spine-spec-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.spine-spec-sub {
    text-align: center;
    max-width: 700px;
    margin: 10px auto 30px;
    color: #555;
    font-size: 15px;
}

.spine-spec-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid #e3e8ef;
    transition: 0.3s;
    position: relative;
    height: 100%;
}

.spine-spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.spine-spec-img img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 12px;
}

.spine-spec-content {
    flex: 1;
}

.spine-spec-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.spine-spec-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.spine-spec-arrow {
    font-size: 20px;
    color: var(--primary-color);
}

@media (max-width: 991px) {

    .spine-spec-title {
        font-size: 26px;
    }

    .spine-spec-card {
        padding: 15px;
    }

    .spine-spec-img img {
        width: 60px;
        height: 60px;
    }

}

@media (max-width: 576px) {

    .spine-spec-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .spine-spec-content h4 {
        font-size: 15px;
    }

}


/* About Vide SECTION */
.video-showcase-sec {
    background: #f3f6f9;
    padding: 70px 0;
}

.video-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.video-showcase-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
}

.video-showcase-header h2 span {
    font-style: italic;
    font-weight: 500;
}

.video-showcase-header p {
    font-size: 13px;
    color: #666;
}

.video-showcase-btn {
    border: 1px solid var(--primary-color);
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: 0.3s;
}

.video-showcase-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.video-showcase-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.video-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.video-showcase-card iframe {
    width: 100%;
    height: 210px;
    border: none;
}

/* TITLE */
.video-showcase-card h4 {
    font-size: 14px;
    padding: 14px 15px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {

    .video-showcase-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .video-showcase-header h2 {
        font-size: 26px;
    }

}

@media (max-width: 576px) {

    .video-showcase-sec {
        padding: 50px 0;
    }

    .video-showcase-card iframe {
        height: 180px;
    }

    .video-showcase-card h4 {
        font-size: 13px;
    }

}


/* Review Section  */
.review-sec {
    background: #fdfdfd;
    padding: 70px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.review-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
}

.review-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
}

.review-header p {
    color: #64748b;
}

.review-btn {
    border: 1px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--primary-color);
    transition: 0.3s;
}

.review-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

.reviewSlider .swiper-slide {
    height: auto;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user span {
    width: 42px;
    height: 42px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-user h4 {
    margin: 0;
    font-size: 15px;
}

.review-user small {
    font-size: 12px;
    color: #777;
}

.g-icon {
    width: 22px;
}

.review-stars {
    color: #f59e0b;
    margin: 10px 0;
}

.review-card p {
    font-size: 14px;
    color: #555;
}

.review-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.review-prev,
.review-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.review-prev:hover,
.review-next:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 991px) {
    .review-header {
        flex-direction: column;
        text-align: center;
    }

    .review-header h2 {
        font-size: 26px;
    }
}



/* SECTION */
.choose-pro-sec {
    background: #f3f6f9;
    padding: 70px 0;
}

/* TITLE */
.choose-pro-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* BOX */
.choose-pro-box {
    background: #fff;
    padding: 35px;
    border-radius: 25px;
}

/* IMAGE (CURVED STYLE 🔥) */
.choose-pro-img {
    overflow: hidden;
    border-radius: 120px 30px 120px 30px; /* blob style */
}

.choose-pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.choose-pro-content {
    padding-left: 20px;
}

/* ITEM */
.choose-pro-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

/* ICON (MAIN REQUIREMENT 🔥) */
.choose-icon {
    min-width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-icon i {
    color: #fff;
    font-size: 14px;
}

/* TEXT */
.choose-pro-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.choose-pro-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* HOVER */
.choose-pro-item:hover h4 {
    color: var(--secondary-color);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .choose-pro-title {
        text-align: center;
        font-size: 26px;
    }

    .choose-pro-content {
        padding-left: 0;
        margin-top: 25px;
    }

    .choose-pro-box {
        padding: 20px;
    }

    .choose-pro-img {
        border-radius: 30px;
    }
}


/* Get In Touch SECTION */
.contact-pro-sec {
    background: var(--light-color);
    padding: 80px 0;
}

.contact-pro-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0 15px;
}

.contact-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: #e9eef5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--primary-color);
}

.contact-info-item h5 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}

.contact-info-item p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

.contact-pro-form {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-pro-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-pro-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-pro-form input,
.contact-pro-form select,
.contact-pro-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #dce3ea;
    font-size: 14px;
}

.contact-pro-form button {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.contact-pro-form button:hover {
    background: var(--primary-color);
}

@media (max-width: 991px) {

    .contact-pro-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .contact-pro-left h2 {
        font-size: 26px;
    }

    .contact-info-item {
        justify-content: center;
        text-align: left;
    }

    .contact-pro-form {
        padding: 25px;
    }
}


/* SECTION */
.contact-hero-sec {
    background: #f3f6f9;
    padding: 40px 0 60px;
}

.contact-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.contact-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.contact-breadcrumb span {
    margin: 0 5px;
}

.contact-hero-box {
   background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 50px;
    border-radius: 30px;
    color: #fff;
}

.contact-hero-box h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.contact-hero-desc {
    font-size: 15px;
    max-width: 700px;
    line-height: 1.7;
    color: #e0e6ed;
}

.contact-hero-card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
    height: 100%;
}

.contact-hero-card:hover {
    background: rgba(255,255,255,0.15);
}

.hero-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.hero-icon i {
    color: #fff;
    font-size: 16px;
}

.contact-hero-card h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-main {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-hero-card span {
    font-size: 13px;
    color: #d6dee8;
}

@media (max-width: 991px) {

    .contact-hero-box {
        padding: 30px;
    }

    .contact-hero-box h1 {
        font-size: 26px;
    }

    .contact-hero-desc {
        font-size: 14px;
    }
}

@media (max-width: 576px) {

    .contact-hero-box {
        border-radius: 20px;
    }

    .contact-hero-box h1 {
        font-size: 22px;
    }
}


/* Contact Page SECTION */
.map-form-sec {
    padding: 60px 0;
    background: var(--light-color);
}

.map-box {
    /* background: #fff; */
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
}

.map-box iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* SOCIAL */
.map-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.map-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6ba539;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: 0.3s;
}

.map-social a:hover {
    background: var(--primary-color);
    color: #fff;
}

.map-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.map-form-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.map-form-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.map-form-box input,
.map-form-box select,
.map-form-box textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #dce3ea;
}

/* BUTTON */
.map-form-box button {
    background: var(--secondary-color);
    color: #fff;
    padding: 14px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.map-form-box button:hover {
    background: var(--primary-color);
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .map-box iframe {
        height: 300px;
    }

    .map-form-box {
        padding: 20px;
    }
}

/* SECTION */
.testimonial-hero-sec {
    background: #f3f6f9;
    padding: 40px 0 60px;
}

.testimonial-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.testimonial-breadcrumb span {
    margin: 0 5px;
}

.testimonial-hero-box {
    background: linear-gradient(135deg, #163b66, #2e5f9c);
    padding: 50px;
    border-radius: 30px;
    color: #fff;
}

.testimonial-hero-box h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.testimonial-desc {
    font-size: 15px;
    max-width: 650px;
    color: #dbe6f2;
    line-height: 1.7;
}

.testimonial-stat-card {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
    transition: 0.3s;
    height: 100%;
}

.testimonial-stat-card:hover {
    background: rgba(255,255,255,0.15);
}

.testimonial-stat-card h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-stat-card p {
    font-size: 14px;
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .testimonial-hero-box {
        padding: 30px;
    }

    .testimonial-hero-box h1 {
        font-size: 28px;
    }

    .testimonial-desc {
        font-size: 14px;
    }

    .testimonial-stat-card {
        text-align: center;
    }
}

@media (max-width: 576px) {

    .testimonial-hero-box {
        border-radius: 20px;
    }

    .testimonial-hero-box h1 {
        font-size: 24px;
    }

    .testimonial-stat-card h2 {
        font-size: 26px;
    }
}


/* Blog HERO SECTION */
.blog-hero-sec {
    position: relative;
    background: url('https://www.aksurology.com/public/assets/images/blogs-hero.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 59, 102, 0.6); 
}

.blog-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    width: 100%;
}

.blog-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-top: 10px;
    color: #fff;
}

.blog-breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ddd;
}

.blog-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.blog-breadcrumb span {
    margin: 0 6px;
}

@media (max-width: 991px) {

    .blog-hero-sec {
        height: 220px;
    }

    .blog-hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {

    .blog-hero-sec {
        height: 180px;
    }

    .blog-hero-content h1 {
        font-size: 26px;
    }

    .blog-breadcrumb {
        font-size: 12px;
    }
}

/* Footer SECTION */
.cta-pro-sec {
    background: #f3f6f9;
    padding: 60px 0;
}

.cta-pro-box {
    background: linear-gradient(135deg, #163b66, #2e5f9c);
    padding: 50px 20px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
}

.cta-pro-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.cta-pro-box p {
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 25px;
    color: #ffffff;
    line-height: 1.6;
}

/* BUTTONS */
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.call-btn {
    border: 1px solid #fff;
    color: #fff;
}

.call-btn:hover {
    background: var(--secondary-color);
}

.consult-btn {
    border: 1px solid #fff;
    color: #fff;
}

.consult-btn:hover {
   background: var(--secondary-color);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .cta-pro-box {
        padding: 35px 20px;
    }

    .cta-pro-box h2 {
        font-size: 26px;
    }

    .cta-pro-box p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {

    .cta-pro-box {
        border-radius: 20px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}


/**************** SPINE TREATMENT CARDS ****************/

.spine-treatment-links {
    margin-top: 50px;
    overflow: hidden;
}

.spine-treatment-links .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}


/* COLUMN FIX */
.spine-treatment-links .col-lg-3,
.spine-treatment-links .col-md-6 {
    display: flex;
}

.spine-treatment-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 170px;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    position: relative;
    overflow: hidden;
}

.spine-treatment-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    transition: 0.4s ease;
    z-index: 0;
}

.spine-treatment-card:hover::before {
    height: 100%;
}

.spine-treatment-card:hover {
    transform: translateY(-8px);
}

/* CONTENT ABOVE BG */
.spine-treatment-card * {
    position: relative;
    z-index: 2;
}

.spine-treatment-icon {
    width: 70px;
    height: 70px;
    background: rgba(11, 90, 143, 0.08);
    border-radius: 50%;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}
.spine-treatment-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: 0.3s;
}

/* TITLE */
.spine-treatment-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 14px;
    line-height: 1.4;
    transition: 0.3s;
}

/* TEXT */
.spine-treatment-card span {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    transition: 0.3s;
}

/* HOVER EFFECT */
.spine-treatment-card:hover h5,
.spine-treatment-card:hover span,
.spine-treatment-card:hover i {
    color: #fff;
}

.spine-treatment-card:hover .spine-treatment-icon {
    background: rgba(255, 255, 255, 0.15);
}

/**************** MOBILE ****************/

@media(max-width:991px){

    .spine-treatment-links {
        margin-top: 35px;
    }

    .spine-treatment-card {
        padding: 25px 18px;
        min-height: 230px;
    }

    .spine-treatment-card h5 {
        font-size: 20px;
    }

    .spine-treatment-icon {
        width: 70px;
        height: 70px;
    }

    .spine-treatment-icon i {
        font-size: 28px;
    }

}

@media(max-width:767px){

    .spine-treatment-card {
        min-height: auto;
    }

}



/* ===============================
   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: #000;
}

.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;
    }

}


/**************** FOOTER SOCIAL LINKS ****************/

.footer-social-links{
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.footer-social-links a{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.footer-social-links a:hover{
    background: var(--secondary-color);
    transform: translateY(-4px);
    color: #fff;
}

@media(max-width:767px){

    .footer-social-links{
        justify-content: flex-start;
        gap: 10px;
    }

    .footer-social-links a{
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

}
