/********** Template CSS **********/
:root {
    --primary: #D38B04;
    --secondary: #000;
    --light: #F3F6F8;
    --dark: #000;
}

.py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* MULTI-LEVEL DROPDOWN SUPPORT */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    display: none;
}

/* Show submenu on click (custom JS will toggle class 'show') */
.dropdown-submenu .dropdown-menu.show {
    display: block;
}


/* Mobile — submenu slides down */
@media (max-width: 991px) {
    .dropdown-submenu>.dropdown-menu {
        left: 0 !important;
        margin-left: 0;
    }
}


/* DESKTOP — force ALL submenus to stay hidden initially */
@media (min-width: 992px) {
    .dropdown-submenu>.dropdown-menu {
        display: none !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease-in-out;
    }

    /* Show only when JS adds .show */
    .dropdown-submenu>.dropdown-menu.show {
        display: block !important;
        opacity: 1;
        visibility: visible;
    }
}



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(0, 0, 0, .75);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(../img/slider1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 70vh;
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #000;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}



/* clinic time */

/* ================= CLINIC SECTION ================= */
.clinic-section {
    position: relative;
    padding: 60px 0;
    background: url("../img/slider2.png") center/cover no-repeat fixed;
}

/* DARK TRANSPARENT OVERLAY */
.clinic-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* black transparent overlay */
    z-index: 1;
}

/* All content should stay above overlay */
.clinic-section .container {
    position: relative;
    z-index: 2;
}

/* MAIN TITLE */
.clinic-title {
    color: #ECB028;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 50px;
}

/* CARD DESIGN */
.clinic-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(245, 208, 122, 0.3);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    position: relative;
}

/* MIDDLE CARD HIGHLIGHT */
.clinic-card.middle-card {
    border: 2px solid #ECB028;
    box-shadow: 0 0 20px rgba(245, 208, 122, 0.6);
    transform: scale(1.05);
}

/* Hover Effect for All Cards */
.clinic-card:hover {
    border-color: #f5d07a;
    box-shadow: 0 10px 25px rgba(245, 208, 122, 0.5);
    transform: translateY(-6px) scale(1.05);
}

/* Card Title */
.clinic-card-title {
    color: #ECB028;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 4px solid #f5d07a;
    padding-left: 12px;
}

/* List Style */
.clinic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clinic-list li {
    margin-bottom: 16px;
    color: #eaeaea;
    font-size: 15px;
    line-height: 1.6;
}

.clinic-list strong {
    color: #ECB028;
}

/* Phone Link */
.clinic-phone {
    color: #ECB028;
    font-weight: 600;
    text-decoration: none;
}

.clinic-phone:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .clinic-title {
        font-size: 26px;
    }

    .clinic-card {
        padding: 20px;
    }

    .clinic-card-title {
        font-size: 18px;
    }

    .clinic-card.middle-card {
        transform: scale(1); /* neutral on mobile */
        box-shadow: 0 0 15px rgba(245, 208, 122, 0.5);
    }
}



/* services */

/* ================= SERVICES SECTION ================== */
.services-section {
    background-color: #e0e0e0; /* gray background */
    padding: 60px 0;
}

/* MAIN TITLE */
.services-title {
    color: #000; /* gold */
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* SERVICE BOX */
.service-box {
    background: #1b1b1b; /* dark box */
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; /* equal height */
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* IMAGE */
.service-img {
    border-radius: 12px;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(245, 208, 122, 0.6); /* gold glow */
}

/* SERVICE TITLE */
.service-title {
    color: #f5d07a; /* gold */
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
}

/* SERVICE DESCRIPTION */
.service-desc {
    color: #eaeaea;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

/* HOVER EFFECT */
.service-box:hover {
    border: 1px solid #f5d07a;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(245, 208, 122, 0.5);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-desc {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .service-title {
        font-size: 16px;
    }

    .service-desc {
        font-size: 12px;
    }
}




/* about */


/* ================= ABOUT SECTION ================== */
.about-section {
    background-color:#F2F2F2; /* light gray background */
    padding: 60px 0;
}

.about-section .doctor-profile img {
    border: 3px solid #f5d07a; /* gold border around photo */
    border-radius: 12px;
}

.education-box {
    background: rgba(0, 0, 0, 0.8); /* dark transparent */
    border: 1px solid #f5d07a; /* gold border */
    border-radius: 12px;
    color: #ECB028;
    text-align: center;
    padding: 20px 15px; /* slightly reduced padding */
}

.education-box h4 {
    font-size: 18px; /* smaller title */
    font-weight: 600;
    margin-bottom: 15px;
}

.education-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.5; /* tighter spacing */
}

.education-box ul li {
    font-weight: 500;
    font-size: 14px; /* smaller font for content */
    margin-bottom: 6px; /* spacing between lines */
}


.list-group-item {
    background: rgba(0,0,0,0.8);
    border: 1px solid #ECB028;
    color: #ECB028;
    font-weight: 600;
    margin-bottom: 8px;
    transition: 0.3s;
}

.list-group-item.active,
.list-group-item:hover {
    background: #ECB028;
    color: #1b1b1b;
}

.about-info {
    background: rgba(0,0,0,0.05);
    border-left: 4px solid #f5d07a;
    border-radius: 12px;
    padding: 30px;
    color: #1b1b1b;
}

.tab-content {
    background: rgba(0,0,0,0.05);
    border: 1px solid #f5d07a;
    border-radius: 12px;
    padding: 20px;
    color: #1b1b1b;
}

/* Responsive */
@media(max-width: 992px) {
    .about-info {
        padding: 20px;
    }
}

@media(max-width: 576px) {
    .education-box {
        padding: 15px;
    }
}



/* erectile */
/* Erectile Dysfunction Section */
.erectile-dysfunction-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.erectile-dysfunction-section h2 {
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}

.erectile-dysfunction-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.erectile-dysfunction-section .btn {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 0.3rem;
}

@media (max-width: 767px) {

    /* Center all headings in mobile */
    .premature-section .text-content h2 {
        text-align: center;
    }

    /* Center Button */
    .premature-section .read-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
        text-align: center;
    }
}



@media (max-width: 767px) {

    /* Center all headings */
    .premature-section .text-content h2,
    .premature-section .text-content h5 {
        text-align: center;
    }

    /* Center button */
    .premature-section .read-btn {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
}



/* Section Padding */
.male-orgasmic-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Headings */
.male-orgasmic-section h2,
.male-orgasmic-section h5 {
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}

/* Paragraphs */
.male-orgasmic-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Button: small and centered */
.male-orgasmic-section .btn.read-btn {
    padding: 6px 15px;
    /* Small button */
    font-size: 13px;
    border-radius: 4px;
    width: auto;
    /* Keeps button small, not full width */
    display: block;
    /* Ensures margin auto works */
    margin: 1rem auto 0 auto;
    /* Centered horizontally on all devices */
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .male-orgasmic-section h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .male-orgasmic-section p {
        font-size: 0.95rem;
        text-align: center;
    }

    .male-orgasmic-section .btn.read-btn {
        margin-top: 1rem;
        text-align: center;
        display: block;
        /* ensure block display for centering */
    }

    .male-orgasmic-section .row {
        margin-bottom: 1rem;
    }
}


/* protecting your erection */

/* Section Padding */
.protect-erection-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Headings */
.protect-erection-section .section-title {
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}

/* Paragraphs */
.protect-erection-section p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* Button small and centered */
.protect-erection-section .btn.read-btn {
    padding: 6px 15px;
    font-size: 13px;
    border-radius: 4px;
    width: auto;
    display: block;
    margin: 1rem auto 0 auto;
    /* Centered */
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .protect-erection-section .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .protect-erection-section p {
        font-size: 0.95rem;
        text-align: center;
    }

    .protect-erection-section .row {
        margin-bottom: 1rem;
    }

    .protect-erection-section .btn.read-btn {
        margin-top: 1rem;
        text-align: center;
    }
}



/* specific technic exericse */

/* Center H1 & H2 only on mobile */
@media (max-width: 767px) {

    h1,
    h2 {
        text-align: center !important;
    }
}


/* prduct */

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}

.sub-title {
    font-size: 24px;
    font-weight: 700;
}

.advantages-list li {
    margin-bottom: 10px;
    font-size: 18px;
}

/* ---- SAME ALIGNMENT WITHOUT CROPPING ---- */
.product-img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Keeps both image boxes same shape */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f7f7;
    /* Light background */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 🔥 Show FULL IMAGE (no cropping) */
    border-radius: 10px;
}

/* MOBILE VIEW */
@media(max-width: 576px) {

    .section-title,
    .sub-title {
        text-align: center !important;
    }

    .product-img-box {
        aspect-ratio: auto;
        /* Allow free height on mobile */
        height: auto;
    }

    .product-img {
        object-fit: contain;
        height: auto;
        width: 100%;
    }
}


/* gallery */

/* Section Heading */
.gallery-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}

/* Gallery Box */
.gallery-box {
    width: 100%;
    height: 260px;
    /* Same height for all images */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Gallery Images */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures full coverage without stretching */
    border-radius: 12px;
    transition: 0.4s ease;
}

/* Hover Effect */
.gallery-img:hover {
    transform: scale(1.05);
}

/* Mobile Adjustments */
@media(max-width: 576px) {
    .gallery-title {
        text-align: center !important;
    }

    .gallery-box {
        height: 230px;
    }
}


/* faq */

/* FAQ Styling */
.faq-title {
    font-size: 26px;
    font-weight: 700;
}

/* Plus Minus Toggle */
.accordion-button::after {
    background-image: none !important;
    content: '+';
    font-size: 26px;
    font-weight: 700;
    margin-left: auto;
}

.accordion-button:not(.collapsed)::after {
    content: '-';
    font-size: 32px;
}


/* contact form  */
.contact-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-box {
    background: #fff;
    border-left: 4px solid #0d6efd;
}

.contact-info li i {
    font-size: 16px;
}

.map-box iframe {
    width: 100%;
    border-radius: 8px;
}

.contact-form-box .input-group-text {
    background: #f1f1f1;
}

.contact-btn {
    font-size: 18px;
    padding: 12px;
}

@media(max-width: 576px) {
    .contact-heading {
        text-align: center;
    }

    .contact-info li {
        font-size: 15px;
    }
}


/* testiomnials */
/* ================= TESTIMONIALS SECTION ================== */
.testimonials-section {
    position: relative;
    padding: 60px 0;
    background-color: #F2F2F2; /* light gray background */
    color: #eaeaea;
}

/* TITLE */
.testimonials-title {
    color: #000; /* gold */
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* TESTIMONIAL BOX */
.testimonial-box {
    background: #1b1b1b; /* black card */
    border: 1px solid rgba(245,208,122,0.4);
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    margin: auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-box:hover {
    border-color: #ECB028;
    box-shadow: 0 15px 35px rgba(245,208,122,0.5);
    transform: translateY(-4px);
}

/* TEXT */
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #eaeaea;
}

/* NAME */
.text-gold {
    color: #f5d07a;
}
/* CAROUSEL ARROWS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ECB028 !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
}

/* Optional: increase padding around arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
}


/* Indicators */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #f5d07a;
}

.carousel-indicators .active {
    background-color: #f5d07a;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .testimonials-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .testimonial-box {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .testimonials-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .testimonial-box {
        padding: 20px;
    }
    .testimonial-text {
        font-size: 15px;
    }
}



/* gallery */

.gallery-item img {
    transition: transform 0.3s ease;
}

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


/* about page */

/* Profile Image */
/* Remove shadow if present */
.doctor-profile img {
    max-width: 90%;
    height: auto;
    box-shadow: none;
    /* ensure no shadow appears */
}


/* Section headings */
.doctor-profile h2 {
    font-size: 28px;
    font-weight: 700;
}

.doctor-profile h3 {
    font-size: 20px;
    color: #000;
}

/* Lists */
.doctor-profile ul,
.doctor-profile ol {
    font-size: 16px;
    line-height: 1.6;
}

.doctor-profile li {
    margin-bottom: 8px;
}

/* Education box */
.education-box h4 {
    color: #333;
}

.education-box ul li {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .doctor-profile img {
        max-width: 250px;
        margin-bottom: 20px;
    }
}

/* table */

.custom-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #F2F2F2;
    border: 1px solid #ddd;
    font-size: 16px;
    color: black;
}

.custom-table tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #fafafa;
}

.custom-table tbody tr:hover {
    background-color: #ECB028;
    color: #fff;
    transform: translateX(5px);
}

.custom-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

@media (max-width: 991px) {
    .custom-table td {
        padding: 10px 8px;
        font-size: 14px;
    }
}



/* ================= GALLERY SECTION ================== */
.gallery-section {
    position: relative;
    padding: 60px 0;
    color: #eaeaea;

    /* Background image */
    background: url("../img/slider2.png") center/cover no-repeat fixed;
}

/* BLACK TRANSPARENT OVERLAY */
.gallery-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

/* All content above overlay */
.gallery-section .container {
    position: relative;
    z-index: 2;
}

/* MAIN TITLE */
.gallery-title {
    color: #ECB028; /* gold */
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}

/* GALLERY CARD */
.gallery-card {
    background: rgba(0, 0, 0, 0.5); /* dark transparent card */
    border: 1px solid rgba(245, 208, 122, 0.3);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* IMAGE */
.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* CARD HOVER EFFECT */
.gallery-card:hover {
    border-color: #ECB028;
    box-shadow: 0 15px 35px rgba(245, 208, 122, 0.5);
}

/* READ MORE BUTTON */
.gallery-btn {
    background-color: #ECB028;
    color: #1b1b1b;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.gallery-btn:hover {
    background-color: #e0b13d;
    color: #fff;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .gallery-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .gallery-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .gallery-img {
        height: 160px;
    }



}



/* ================= DOCTOR SECTION ================= */
.doctor-section {
    background-color: #121212;
    color: #eaeaea;
}

/* Doctor Card */
.doctor-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(245, 208, 122, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(4px);
}

.doctor-img {
    border: 2px solid #f5d07a;
    border-radius: 12px;
}

.doctor-name {
    color: #f5d07a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Education List */
.doctor-edu {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.7;
    color: #fff;
    font-size: 16px;
}

/* About Title */
.about-title {
    color: #f5d07a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* About Content Box */
.about-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #f5d07a;
    padding: 25px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .doctor-name {
        font-size: 20px;
    }

    .about-title {
        font-size: 24px;
        text-align: center;
    }

    .about-box {
        padding: 20px;
    }
}
