:root {
    --primary: #00a58f;
    --secondary: #024e54;
    --light: #EFF5F9;
    --dark: #1D2A4D;
}

body {
    font-family: 'Roboto', sans-serif;
}

.text-black {
    color: black !important;
}

.black_breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: black !important;
}

.btn {
    font-weight: 700;
    transition: .3s;
}

.btn:hover {
    box-shadow: 0 8px 6px -6px #555;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
}

.btn-secondary {
    background: #3b4a7b;
    border: none;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 28px;
    height: 28px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.topbar a {
    margin-right: 10px;
    font-size: 15px;
}

.nav_logo {
    height: 50px;
    width: auto;
}

.navbar {
    padding: 0;
}

.navbar-light .navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Jost', sans-serif;
    position: relative;
    margin-left: 15px;
    padding: 30px 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    transition: .3s;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (min-width: 992px) {

    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-menu {
        display: none;
    }

}

@media (min-width:992px) {

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 4px;
        bottom: 0;
        left: 50%;
        background: var(--primary);
        transition: .3s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 15px;
}

.dropdown-item:hover {
    background: var(--primary);
    color: #fff;
}


.sticky-top {
    top: 0;
    z-index: 999;
}

/* ================= OFFCANVAS MOBILE MENU ================= */

.offcanvas-body {
    display: flex;
    flex-direction: column;
}

.offcanvas-body .nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.offcanvas-body .btn {
    margin-top: 15px;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: 99;
}


.stickyx {
    position: sticky;
    top: 100px;
}

.services-details-sidebar {
    height: 100%;
}

.bg-primary section.bg-light {
    background-color: var(--primary) !important;
    padding: 30px 0;
}


@media (max-width:991px) {

    .navbar-light .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .nav_logo {
        height: 40px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-nav .btn {
        margin-top: 10px;
    }

}


@media (max-width:575px) {

    .topbar {
        display: none;
    }

    .nav_logo {
        height: 35px;
    }

}


/********************** HERO SECTION *********************/

.hero-banner {
    padding: 0px 0;
    background: linear-gradient(135deg,
            rgba(0, 165, 143, 0.15),
            rgba(0, 165, 143, 0.35));
    border-radius: 30px;
    margin: 40px 20px;
}

.hero-badge {
    background: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #173c4a;
    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: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
}

.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: 70px 0;
    background: #ffffff;
}

.counter-card {
    background: rgba(0, 165, 143, 0.08);
    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: var(--primary);
}

.counter-number {
    font-size: 38px;
    font-weight: 800;
    color: #1D2A4D;
    margin: 0;
}

.counter-content p {
    margin: 0;
    font-size: 16px;
    color: #555;
}


@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: #1D2A4D;
    margin-bottom: 10px;
}

.about-subtitle {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.about-btn:hover {
    background: var(--primary);
    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: rgba(0, 165, 143, 0.2);
    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: #1D2A4D;
    margin-bottom: 10px;
}

.section-desc {
    max-width: 800px;
    margin: auto;
    color: #555;
    font-size: 16px;
    margin-bottom: 40px;
}

.treatment-card {
    background: #fff;
    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(--primary);
    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);
    font-weight: 600;
}

.all-specialities-btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.all-specialities-btn:hover {
    background: var(--primary);
    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: #1D2A4D;
}

.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: #1D2A4D;
}

.video-btn {
    display: inline-block;
    background: #00a58f;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
}

@media(max-width:768px) {
    .video-title {
        font-size: 30px;
    }

    .video-text {
        font-size: 16px;
    }

}

/******** SHORT TESTIMONIALS ********/

.shorts-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonial-tag {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
}

.shorts-title {
    font-size: 40px;
    font-weight: 800;
    color: #1D2A4D;
    margin-top: 10px;
}

.short-card {
    position: relative;
    width: 100%;
    padding-top: 177%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.short-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media(max-width:768px) {

    .shorts-title {
        font-size: 30px;
    }

    .short-card {
        padding-top: 170%;
    }

}


/******** WHY CHOOSE SECTION ********/

.why-section {
    padding: 80px 0;
    background: #f9fbfc;
}

.why-title {
    font-size: 40px;
    font-weight: 800;
    color: #1D2A4D;
}

.why-desc {
    max-width: 800px;
    margin: auto;
    margin-top: 15px;
    color: #555;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 165, 143, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.why-card h4 {
    font-weight: 700;
    color: #1D2A4D;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


.why-expert-card {
    background: #024e54;
    color: #fff;
    padding: 35px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-expert-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-expert-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.why-expert-card img {
    width: 85%;
    margin-top: 100px;
}

@media(max-width:768px) {

    .why-title {
        font-size: 30px;
    }

    .why-card {
        padding: 22px;
    }

    .why-expert-card {
        margin-top: 10px;
    }

}

/******** FTS SURGERY SECTION ********/

.fts-section {
    padding: 80px 0;
    background: #ffffff;
}

.fts-title {
    font-size: 40px;
    font-weight: 800;
    color: #1D2A4D;
    margin-bottom: 25px;
}

.fts-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.fts-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 500;
    color: #333;
}

.fts-list i {
    color: var(--primary);
    font-size: 18px;
}

.fts-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.fts-btn:hover {
    opacity: .9;
}

/* IMAGE */

.fts-image {
    position: relative;
}

.fts-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* SHAPE */

.fts-image:before {
    content: "";
    position: absolute;
    width: 140px;
    height: 120px;
    background: #d6eef0;
    border-radius: 20px;
    top: -20px;
    left: -20px;
    z-index: 1;
}

.fts-image:after {
    content: "";
    position: absolute;
    width: 180px;
    height: 120px;
    background: #d6eef0;
    border-radius: 20px;
    bottom: -20px;
    right: -20px;
    z-index: 1;
}

@media(max-width:768px) {

    .fts-title {
        font-size: 30px;
    }

    .fts-section {
        padding: 50px 0;
    }

    .fts-list li {
        font-size: 16px;
    }

}


/******** REVIEW SECTION ********/

.review-section {
    padding: 80px 0;
    background: #f9fafc;
}

.review-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1D2A4D;
    margin-bottom: 15px;
}

.review-header p {
    max-width: 850px;
    margin: auto;
    color: #555;
    margin-bottom: 25px;
}

.review-btn {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}


.review-card {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
}

.stars {
    color: var(--primary);
    margin-bottom: 10px;
}

.review-card p {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}

.review-card h5 {
    font-weight: 700;
    color: #1D2A4D;
}


.review-slider {
    margin-top: 40px;
}

@media(max-width:768px) {

    .review-header h2 {
        font-size: 30px;
    }

    .review-card {
        padding: 22px;
    }

}


/******** APPOINTMENT SECTION ********/

.appointment-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.appointment-title {
    font-size: 42px;
    font-weight: 800;
    color: #1D2A4D;
    margin-bottom: 20px;
}

.appointment-desc {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

.appointment-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.appointment-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.appointment-list i {
    color: var(--primary);
    font-size: 16px;
}


.appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.appointment-btn:hover {
    opacity: .9;
}


.appointment-image {
    position: relative;
    text-align: center;
}

.appointment-image img {
    width: 420px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


@media(max-width:768px) {

    .appointment-section {
        padding: 50px 0;
    }

    .appointment-title {
        font-size: 30px;
    }

    .appointment-image img {
        width: 280px;
        margin-bottom: 20px;
    }

}


/******** ARTICLES ********/

.articles-section {
    padding: 80px 0;
    background: #f9fafc;
}

.articles-title {
    font-size: 40px;
    font-weight: 800;
    color: #1D2A4D;
    margin-bottom: 10px;
}

.articles-desc {
    max-width: 750px;
    margin: auto;
    color: #555;
    margin-bottom: 20px;
}

.articles-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.article-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.article-card h5 {
    font-weight: 700;
    color: #1D2A4D;
    margin-bottom: 10px;
}

.article-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

@media(max-width:768px) {

    .articles-title {
        font-size: 30px;
    }

    .article-card img {
        height: 180px;
    }

}


/******** FAQ SECTION ********/

.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: #1D2A4D;
    margin-bottom: 15px;
}

.faq-desc {
    color: #555;
    margin-bottom: 25px;
}

.faq-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 30px;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.faq-accordion .accordion-button {
    background: #f3f6fb;
    border-radius: 30px;
    font-weight: 600;
    padding: 18px 25px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #000;
    background: #f3f6fb;
}

.faq-accordion .accordion-body {
    padding: 20px;
    color: #555;
}


.accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 24px;
    font-weight: bold;
    transform: none;
}

.accordion-button:not(.collapsed)::after {
    content: "−";
}



@media(max-width:768px) {

    .faq-title {
        font-size: 30px;
    }

    .faq-section {
        padding: 50px 0;
    }

}


.main-footer {
    background: #111;
    color: #ccc;
    font-size: 15px;
}

.footer-top {
    padding: 12px 0;
}

.quick_links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.quick-left a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 6px;
    font-size: 15px;
}

.quick-left span {
    color: #ffffff;
}

.quick-title {
    font-weight: 600;
    margin-right: 8px;
    color: #fff;
}

.quick-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-btn {
    background: #fff;
    color: #000;
    padding: 4px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.footer-line {
    border-color: #333;
    margin: 15px 0;
}

.footer-main {
    padding: 40px 0;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 15px;
    filter: none;
    mix-blend-mode: normal;
    display: block;
    background: white;
    padding: 11px;
    height: auto;
    margin-bottom: 14px;
    border-radius: 9px;
}


.footer-text {
    color: #ffffff;
    line-height: 1.7;
}


.follow-title {
    color: #00c6a9;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00c6a9;
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
    transition: .3s;
}

.social-icons a:hover {
    background: #00a992;
}

.footer-heading {
    color: #00c6a9;
    border-bottom: 3px solid #00c6a9;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    font-size: 15px;
}

.footer-links a:hover {
    color: #00c6a9;
}

.footer-links i {
    margin-right: 6px;
}

.address-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-item {
    margin-bottom: 10px;
}

.contact-item i {
    color: #00c6a9;
    margin-right: 10px;
}

.map {
    width: 100%;
    border-radius: 8px;
    border: 0;
    margin-top: 10px;
}

.footer-bottom {
    background: #0a0a0a;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom .brand {
    color: #00c6a9;
}

a {
    color: #fff;
}
@media(max-width:768px) {

    .quick_links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .quick-right {
        justify-content: center;
    }

    .footer-main {
        padding: 30px 15px;
    }

    .footer-logo {
        margin: auto;
        display: block;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

}