/********** 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 Black Border */
.navbar {
    border: 20px solid #000;
    /* black border at bottom */
}



.navbar .navbar-brand
 {
    height: 107px;
}

.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;
    }
}

/*** NAVBAR BASE ***/
.navbar {
    background-color: #000 !important;   /* pure black navbar */
    border: none;
}

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

.navbar-brand {
    background-color: #000;
    padding: 0 25px;
    border-right: 3px solid #000;
}


/*** LOGO IMAGE FIX (no hiding) ***/
.navbar-brand img {
    background: transparent;
}

/*** NAV LINKS ***/
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff !important;              /* white text */
    font-weight: 500;
    text-transform: uppercase;
}

/*** NAV LINK HOVER & ACTIVE ***/
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ECB028 !important;              /* gold */
}

/*** DROPDOWN ARROW ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ECB028;
    margin-left: 8px;
}

/*** DROPDOWN MENU ***/
.dropdown-menu {
    background-color: #111 !important;     /* black dropdown */
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}

/*** DROPDOWN ITEMS ***/
.dropdown-item {
    color: #ffffff !important;
    padding: 10px 20px;
}

/*** DROPDOWN HOVER ***/
.dropdown-item:hover {
    background-color: #1c1c1c;
    color: #ECB028 !important;
}

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

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    background-color: #111 !important;
}

/*** DESKTOP DROPDOWN ANIMATION ***/
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 120%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

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

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

    .navbar {
        background-color: #000 !important;
    }

    .navbar .navbar-nav {
        background-color: #000;
        border-top: 1px solid #222;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 15px;
    }

    .dropdown-menu {
        background-color: #111 !important;
    }

    .dropdown-submenu .dropdown-menu {
        left: 0 !important;
    }
}

/*** MOBILE TOGGLER ***/
.navbar-toggler {
    border-color: #ffffff;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/*** CTA BUTTON ***/
.navbar .btn-primary {
    background-color: #ECB028;
    color: #000 !important;
    border: none;
}

.navbar .btn-primary:hover {
    background-color: #d9a41f;
}

/* Independent Navbar CTA Button */
.navbar-cta {
    display: flex;
    align-items: center;
}

.navbar-cta .btn {
    padding: 12px 28px;      /* Adjust button size */
    font-size: 16px;
    border-radius: 8px;
    background-color: #ECB028;
    color: #000 !important;
    display: flex;            /* Flex to center content */
    align-items: center;      /* Vertical center */
    justify-content: center;  /* Horizontal center */
    line-height: 1;           /* Ensures text is vertically centered */
    transition: all 0.3s ease;
}

.navbar-cta .btn i {
    margin-left: 8px;         /* Space between text and icon */
}

.navbar-cta .btn:hover {
    background-color: #d9a41f;
    transform: translateY(-2px);
}

/* Responsive Adjustment */
@media (max-width: 991.98px) {
    .navbar-cta {
        display: none; /* Hide CTA on mobile (optional, you can add a separate mobile CTA) */
    }
}



/* MOBILE: LOGO FULL LEFT CORNER, TOGGLER RIGHT */
@media (max-width: 991.98px) {

    /* Remove container side padding on mobile */
    .navbar .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        display: flex;
        align-items: center;
    }

    /* Push logo to extreme left */
    .navbar-brand {
        margin-left: 0 !important;
        padding-left: 10px; /* small safe gap from edge */
    }

    .navbar-brand img {
        width: 200px !important;
        height: auto !important;
    }

    /* Keep toggler on extreme right */
    .navbar-toggler {
        margin-right: 10px;
        margin-left: auto;
    }
}



/*** 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 - DARK THEME WITH GOLD ANIMATED GLOW ================= */
.services-section {
    background: #242424;
    /* body background */
    color: #fff;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}

/* Section Heading */
.services-title {
    font-size: 32px;
    font-weight: 700;
    color: #ECB028;
    /* gold heading */
    text-align: center;
    margin-bottom: 50px;
}

/* SERVICE CARD */
.service-card {
    background: #1e1e1e;
    /* dark card */
    border: 1px solid #333;
    /* subtle border */
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
}

/* IMAGE WRAPPER */
.service-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid #333;
}

/* Image */
.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 2;
    position: relative;
}

/* GOLD ANIMATED GLOW BACKGROUND */
.service-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #1e1e1e, #ECB028, #1e1e1e, #ECB028);
    background-size: 800% 800%;
    animation: gradientMove 10s ease infinite;
    opacity: 0.15;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* CONTENT */
.service-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.service-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ECB028;
    /* gold */
    transition: color 0.3s ease;
}

.service-content p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* HOVER EFFECTS */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(236, 176, 40, 0.5);
    /* gold glow */
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(120deg, rgba(236, 176, 40, 0.05) 0%, rgba(236, 176, 40, 0.15) 50%, rgba(236, 176, 40, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card:hover::after {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .service-img-wrap {
        height: 180px;
    }
}


/* ================= DARK ABOUT SECTION ================= */
.about-section {
    background-color: #242424;
    /* dark body background */
    color: #fff;
    /* default text color */
    padding: 60px 0;
 
}
/* Container inside section */
.about-section .container {
    z-index: 1;
}


/* Ensure container does not overflow on mobile */
@media (max-width: 991.98px) {
    .about-section .container {
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    /* Left and right columns full width */
    .about-section .col-lg-4,
    .about-section .col-lg-8 {
        padding-left: 0;
        padding-right: 0;
    }

    /* Make tab buttons wrap text in mobile */
    #aboutTabsMobile .list-group-item {
        white-space: normal;
        word-break: break-word;
    }

    /* Tab content padding adjustment */
    .tab-content {
        padding-left: 0;
        padding-right: 0;
    }
}

/* Desktop: keep spacing for left column */
@media (min-width: 992px) {
    .about-section .col-lg-4 {
        padding-right: 30px; /* spacing between left and right */
    }
    .about-section .col-lg-8 {
        padding-left: 30px;  /* spacing between left and right */
    }
}

/* Doctor Profile Box */
.doctor-profile {
    background-color: #1e1e1e;
    /* slightly darker card for photo and education */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.doctor-profile img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(236, 176, 40, 0.3);
}





/* Education Box */
.education-box {
    background-color: #2c2c2c;
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}

.education-box h4 {
    color: #ECB028;
    font-weight: 700;
    margin-bottom: 10px;
}

.education-box ul li {
    color: #ccc;
    margin-bottom: 5px;
}

/* Tab Buttons - Desktop */
#aboutTabs .list-group-item {
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
    margin-bottom: 8px;
    font-weight: 500;
    transition: 0.3s;
}

#aboutTabs .list-group-item.active,
#aboutTabs .list-group-item:hover {
    background-color: #ECB028;
    color: #111;
    border-color: #ECB028;
}

/* Tab Buttons - Mobile */
#aboutTabsMobile .list-group-item {
    background-color: #1e1e1e;
    color: #fff;
    border: 1px solid #333;
    margin-bottom: 8px;
    font-weight: 500;
    transition: 0.3s;
}

#aboutTabsMobile .list-group-item.active,
#aboutTabsMobile .list-group-item:hover {
    background-color: #ECB028;
    color: #111;
    border-color: #ECB028;
}

/* About Info Box */
.about-info {
    background-color: #1e1e1e;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.about-info h6 {
    color: #ECB028;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-info h1 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-info p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Tab Content */
.tab-content {
    background-color: #1c1c1c;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tab-content ul li {
    color: #ccc;
    margin-bottom: 10px;
}

.tab-content p {
    color: #ccc;
    line-height: 1.8;
}

/* Scrollbar for tabs if overflow */
#aboutTabs,
#aboutTabsMobile {
    max-height: 350px;
    overflow-y: auto;
}

/* Scrollbar styling */
#aboutTabs::-webkit-scrollbar,
#aboutTabsMobile::-webkit-scrollbar {
    width: 6px;
}

#aboutTabs::-webkit-scrollbar-thumb,
#aboutTabsMobile::-webkit-scrollbar-thumb {
    background-color: #ECB028;
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .about-section .col-lg-4,
    .about-section .col-lg-8 {
        padding: 0 10px;
    }

    .doctor-profile,
    .about-info {
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .about-section h1 {
        font-size: 28px;
    }

    .education-box h4 {
        font-size: 18px;
    }
}


/* erectile */
/* ================= DARK GOLD ERECTILE SECTION ================= */

.erectile-dysfunction-section {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.15));
    padding: 80px 0;
}

/* Text container */
.erectile-dysfunction-section .text-content {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(236, 176, 40, 0.25);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

/* Heading */
.erectile-dysfunction-section h2 {
    color: #ECB028;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    margin-bottom: 20px;
}

.erectile-dysfunction-section h2::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #ECB028;
    display: block;
    margin-top: 10px;
    border-radius: 2px;
}

/* Paragraph text */
.erectile-dysfunction-section p {
    color: #dcdcdc;
    font-size: 15.8px;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Image styling */
.erectile-dysfunction-section img {
    border-radius: 18px;
    border: 1px solid rgba(236, 176, 40, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* Read More Button */
.erectile-dysfunction-section .read-btn {
    background: linear-gradient(135deg, #ECB028, #cfa21a);
    color: #000;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.erectile-dysfunction-section .read-btn:hover {
    background: linear-gradient(135deg, #cfa21a, #ECB028);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 176, 40, 0.45);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .erectile-dysfunction-section {
        padding: 60px 0;
    }

    .erectile-dysfunction-section .text-content {
        padding: 30px;
    }

    .erectile-dysfunction-section h2 {
        font-size: 28px;
    }
}

/* ================= PROTECTING ERECTION – DARK GOLD THEME ================= */

.protect-erection-section {
    background: linear-gradient(180deg,
            rgba(18, 18, 18, 0.95),
            rgba(30, 30, 30, 0.95));
}

/* Section heading */
.protect-erection-section .section-title {
    color: #ECB028 !important;
    letter-spacing: 0.6px;
}

/* Content rows */
.protect-erection-section .row {
    background: rgba(0, 0, 0, 0.35);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(236, 176, 40, 0.22);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(236, 176, 40, 0.08);
}

/* Paragraph text */
.protect-erection-section p {
    color: #d4d4d4;
    font-size: 15.5px;
    line-height: 1.9;
}

/* Strong numbering text */
.protect-erection-section p strong {
    color: #f1d77a;
    font-weight: 600;
}

/* Images */
.protect-erection-section img {
    border-radius: 16px !important;
    border: 1px solid rgba(236, 176, 40, 0.35);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(236, 176, 40, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.protect-erection-section img:hover {
    transform: scale(1.02);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(236, 176, 40, 0.3);
}

/* Button */
.protect-erection-section .btn {
    background: linear-gradient(135deg, #ECB028, #c99b1d);
    border: none;
    color: #111;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(236, 176, 40, 0.35);
    transition: all 0.35s ease;
}

.protect-erection-section .btn:hover {
    background: linear-gradient(135deg, #ffd966, #ECB028);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(236, 176, 40, 0.55);
    color: #000;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .protect-erection-section .row {
        padding: 22px 20px;
        border-radius: 16px;
    }

    .protect-erection-section p {
        font-size: 14.5px;
    }
}

@media (max-width: 576px) {
    .protect-erection-section .row {
        padding: 20px 16px;
    }
}



/* 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%;
    }
}

/* ================= DARK GALLERY ================= */
.dark-gallery {
    position: relative;
    /* Darker transparent overlay on background image */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("../img/slider2.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

/* BLACK TRANSPARENT OVERLAY */
.dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    /* slightly darker overlay for contrast */
    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.dark-gallery .container {
    z-index: 2;
    position: relative;
}

/* HEADING */
.gallery-header h2 {
    color: #ECB028;
    /* brighter gold */
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    /* adds subtle glow */
}

.gallery-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 25px auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

/* GALLERY ITEMS */
.gallery-item {
    width: 300px;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.5);
    /* stronger gold glow */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7);
    /* slightly darker image */
    transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1);
    /* brighten on hover */
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.7);
    /* stronger glow on hover */
}

/* CAROUSEL CONTROLS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-size: 60%;
}

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

/* RESPONSIVE */
@media (max-width: 991px) {
    .gallery-item {
        width: 45%;
        margin-bottom: 15px;
    }

    .gallery-header h2 {
        font-size: 32px;
    }

    .gallery-header p {
        font-size: 14px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .gallery-item {
        width: 100%;
    }

    .gallery-header h2 {
        font-size: 28px;
    }

    .gallery-header p {
        font-size: 13px;
    }
}

/* 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 SECTION – DARK GOLD THEME ================= */

.contact-section {
    background: transparent;
    color: #e0e0e0;
}

/* Section Title */
.section-title {
    color: #ECB028;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Contact boxes (locations & form) */
.contact-box,
.contact-form-box {
    background: linear-gradient(180deg, #1c1c1c, #141414);
    border-radius: 18px;
    border: 1px solid rgba(236,176,40,0.25);
    box-shadow: 0 18px 45px rgba(0,0,0,0.7);
    transition: all 0.4s ease;
}

/* Hover glow */
.contact-box:hover,
.contact-form-box:hover {
    transform: translateY(-4px);
    box-shadow:
        0 25px 55px rgba(0,0,0,0.85),
        0 0 30px rgba(236,176,40,0.25);
}

/* Headings */
.contact-heading {
    color: #ECB028;
    font-weight: 600;
}

/* Text */
.contact-box p,
.contact-info li,
.form-label {
    color: #d0d0d0;
}

/* Icons */
.contact-box i,
.contact-info i {
    color: #ECB028 !important;
}

/* Map box */
.map-box iframe {
    border-radius: 14px;
    filter: grayscale(100%) brightness(0.8) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-box iframe:hover {
    filter: grayscale(0%) brightness(1) contrast(1.15);
}

/* ================= FORM STYLING ================= */

.input-group-text {
    background: #111;
    border: 1px solid rgba(236,176,40,0.35);
    color: #ECB028;
}

.form-control {
    background: #0f0f0f;
    border: 1px solid rgba(236,176,40,0.25);
    color: #fff;
}

.form-control::placeholder {
    color: #888;
}

.form-control:focus {
    background: #0f0f0f;
    color: #fff;
    border-color: #ECB028;
    box-shadow: 0 0 0 0.15rem rgba(236,176,40,0.35);
}

/* Textarea */
textarea.form-control {
    resize: none;
}

/* ================= BUTTON ================= */

.contact-btn {
    background: linear-gradient(135deg, #ECB028, #c9961f);
    border: none;
    color: #111;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #ffd45a, #ECB028);
    color: #000;
    box-shadow: 0 10px 30px rgba(236,176,40,0.45);
}

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

@media (max-width: 768px) {
    .contact-box,
    .contact-form-box {
        border-radius: 14px;
    }
}


/* 
../img/slider2.png */

/* ================= LIGHT TESTIMONIALS WITH BACKGROUND ================= */
/* ================= DARK TESTIMONIALS – BLACK & GOLD ================= */
.dark-testimonials {
    position: relative;
    background: #242424;
    /* body background */
    padding: 70px 0;
    overflow: hidden;
}

/* GOLD SUBTLE MOVING BACKGROUND */
.testimonial-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(236, 176, 40, 0.12), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(236, 176, 40, 0.10), transparent 40%);
    animation: glowMove 18s linear infinite;
    z-index: 0;
}

@keyframes glowMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-40px);
    }

    100% {
        transform: translateX(0);
    }
}

.dark-testimonials .container {
    position: relative;
    z-index: 2;
}

/* HEADING */
.testimonials-title {
    font-size: 34px;
    font-weight: 700;
    color: #ECB028;
    letter-spacing: 0.5px;
}

/* ================= TESTIMONIAL CARD ================= */
.testimonial-card-dark {
    background: linear-gradient(190deg, #1b1b1b, #141414);
    border-radius: 18px;
    padding: 24px 22px;
    max-width: 300px;
    flex: 1 1 280px;
    color: #eee;
    position: relative;
    transition: all 0.35s ease;
    border: 1px solid rgba(236, 176, 40, 0.15);
}

/* GOLD BORDER GLOW */
.testimonial-card-dark::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    background: linear-gradient(120deg, transparent, rgba(236, 176, 40, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.testimonial-card-dark:hover::before {
    opacity: 1;
}

/* HOVER EFFECT */
.testimonial-card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(236, 176, 40, 0.35);
}

/* TEXT */
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: #ECB028;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.testimonial-name {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

/* FLEX SPACING */
.carousel-item .d-flex {
    gap: 14px;
    justify-content: center;
}

/* ================= CAROUSEL CONTROLS ================= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ECB028;
    background-size: 55%;
}

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

/* DOTS */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    margin: 0 5px;
}

.carousel-indicators .active {
    background: #ECB028;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .testimonial-card-dark {
        max-width: 45%;
        flex: 1 1 45%;
    }
}

@media (max-width: 768px) {
    .testimonial-card-dark {
        max-width: 92%;
        flex: 1 1 100%;
    }

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


/* Table wrapper */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(236, 176, 40, 0.06);
    /* transparent gold */
    backdrop-filter: blur(8px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(236, 176, 40, 0.35);
    font-size: 15.5px;
    color: #e8e8e8;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

/* Table rows */
.custom-table tbody tr {
    transition: all 0.35s ease;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.35);
}

/* Zebra rows */
.custom-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

/* Hover effect */
.custom-table tbody tr:hover {
    background: linear-gradient(90deg,
            rgba(236, 176, 40, 0.35),
            rgba(236, 176, 40, 0.12));
    color: #ffffff;
    transform: translateX(6px);
}

/* Table cells */
.custom-table td {
    padding: 15px 18px;
    border: none;
    line-height: 1.7;
}

/* Soft gold divider */
.custom-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(236, 176, 40, 0.18);
}

/* Mobile responsiveness */
@media (max-width: 991px) {
    .custom-table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .custom-table {
        font-size: 13.5px;
        border-radius: 12px;
    }

    .custom-table tbody tr:hover {
        transform: translateX(0);
    }
}



/* ================= GALLERY SECTION ================== */
/* ================= DARK GOLD PHOTO GALLERY ================= */

.photo-gallery {
    background: transparent;
}

/* Gallery box */
.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(236, 176, 40, 0.25);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.55),
        inset 0 0 0 rgba(236, 176, 40, 0);
    transition: all 0.4s ease;
}

/* Image */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Dark overlay */
.gallery-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.55));
    opacity: 1;
    transition: opacity 0.4s ease;
}

/* Gold glow frame */
.gallery-box::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    box-shadow: 0 0 0 rgba(236, 176, 40, 0);
    transition: box-shadow 0.4s ease;
    pointer-events: none;
}

/* Hover effects */
.gallery-box:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(236, 176, 40, 0.25);
}

.gallery-box:hover::before {
    box-shadow: 0 0 35px rgba(236, 176, 40, 0.6);
}

.gallery-box:hover::after {
    opacity: 0.35;
}

.gallery-box:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-box {
        border-radius: 14px;
    }

    .gallery-img {
        border-radius: 14px;
    }

    .gallery-box:hover {
        transform: none;
    }
}


/* ================= 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: black;
    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;
    }
}



/* premature */


/* Section background */
.male-sexual-dysfunction-section {
    background: linear-gradient(180deg,
            rgba(20, 20, 20, 0.96),
            rgba(30, 30, 30, 0.96));
}

/* Text container */
.male-sexual-dysfunction-section .text-content {
    padding: 10px 10px;
}

/* Main heading */
.male-sexual-dysfunction-section h2 {
    color: #ECB028;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Sub headings */
.male-sexual-dysfunction-section h5 {
    color: #ECB028;
    font-weight: 500;
    margin-top: 22px;
}

/* Paragraph text */
.male-sexual-dysfunction-section p {
    color: #cfcfcf;
    font-size: 15.5px;
    line-height: 1.8;
}

/* Image styling */
.male-sexual-dysfunction-section img {
    border-radius: 16px;
    border: 1px solid rgba(236, 176, 40, 0.25);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(236, 176, 40, 0.08);
    max-height: 420px;
    object-fit: cover;
}

/* Read More button */
.read-btn {
    background: linear-gradient(135deg,
            #ECB028,
            #ECB028);
    border: none;
    color: #121212;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 30px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(236, 176, 40, 0.35);
}

/* Button hover */
.read-btn:hover {
    background: linear-gradient(135deg,
            #ECB028,
            #ECB028);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(236, 176, 40, 0.55);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .male-sexual-dysfunction-section h2 {
        font-size: 24px;
    }

    .male-sexual-dysfunction-section p {
        font-size: 14.5px;
    }

    .male-sexual-dysfunction-section img {
        max-height: 320px;
    }
}




/* delayed */


/* Section background */
.male-sexual-dysfunction-section {
    background: linear-gradient(180deg,
            rgba(18, 18, 18, 0.96),
            rgba(32, 32, 32, 0.96));
}

/* Text container */
.male-sexual-dysfunction-section .text-content {
    padding-right: 20px;
}

/* Main heading */
.male-sexual-dysfunction-section h2 {
    color: #ECB028;
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
}

/* Paragraph text */
.male-sexual-dysfunction-section p {
    color: #cfcfcf;
    font-size: 15.5px;
    line-height: 1.85;
}

/* Gold section labels (Causes, Physical Causes, etc.) */
.male-sexual-dysfunction-section strong {
    color: #ECB028;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Bullet-style paragraphs */
.male-sexual-dysfunction-section p br {
    line-height: 2.1;
}

/* Image styling */
.male-sexual-dysfunction-section img {
    border-radius: 18px;
    border: 1px solid rgba(236, 176, 40, 0.25);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(236, 176, 40, 0.10);
    max-height: 460px;
    object-fit: cover;
}

/* Read More button */
.read-btn {
    background: linear-gradient(135deg, #ECB028, #c99b1d);
    border: none;
    color: #111;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(236, 176, 40, 0.35);
}

/* Button hover */
.read-btn:hover {
    background: linear-gradient(135deg, #ffd966, #ECB028);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(236, 176, 40, 0.55);
}

/* Mobile responsiveness */
@media (max-width: 991px) {
    .male-sexual-dysfunction-section h2 {
        font-size: 24px;
    }

    .male-sexual-dysfunction-section p {
        font-size: 14.5px;
    }

    .male-sexual-dysfunction-section img {
        max-height: 320px;
    }

    .male-sexual-dysfunction-section .text-content {
        padding-right: 0;
    }
}


/* noctural */


/* Section background */
.nocturnal-section {
    background: linear-gradient(180deg,
            rgba(20, 20, 20, 0.96),
            rgba(30, 30, 30, 0.96));
}

/* Section container */
.nocturnal-section .col-lg-10 {
    background: rgba(0, 0, 0, 0.35);
    padding: 35px 40px;
    border-radius: 18px;
    border: 1px solid rgba(236, 176, 40, 0.25);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(236, 176, 40, 0.08);
}

/* Main title */
.nocturnal-section .section-title {
    color: #ECB028 !important;
    letter-spacing: 0.6px;
}

/* Paragraph text */
.nocturnal-section p {
    color: #cfcfcf;
    font-size: 15.5px;
    line-height: 1.9;
}

/* Sub-headings */
.nocturnal-section strong {
    color: #ECB028;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Read More button */
.nocturnal-section .btn {
    background: linear-gradient(135deg, #ECB028, #c99b1d);
    border: none;
    color: #111;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 8px 22px rgba(236, 176, 40, 0.35);
}

/* Button hover */
.nocturnal-section .btn:hover {
    background: linear-gradient(135deg, #ffd966, #ECB028);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(236, 176, 40, 0.55);
}

/* Mobile responsiveness */
@media (max-width: 991px) {
    .nocturnal-section .col-lg-10 {
        padding: 25px 22px;
        border-radius: 14px;
    }

    .nocturnal-section .section-title {
        font-size: 24px !important;
    }

    .nocturnal-section p {
        font-size: 14.5px;
    }
}

@media (max-width: 576px) {
    .nocturnal-section .col-lg-10 {
        padding: 22px 18px;
    }
}

/* hypoactive */


/* Content wrapper glow */
.hsdd-section .row {
    background: rgba(0, 0, 0, 0.35);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(236, 176, 40, 0.25);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(236, 176, 40, 0.08);
}

/* Headings */
.hsdd-section strong {
    color: #f1d77a;
    font-weight: 600;
    letter-spacing: 0.4px;
}

/* Main title */
.hsdd-section strong[style*="28px"] {
    color: #ECB028 !important;
    letter-spacing: 0.6px;
}

/* Paragraphs */
.hsdd-section p {
    color: #d0d0d0;
    font-size: 15.5px;
    line-height: 1.9;
}

/* Image styling */
.hsdd-section img {
    border-radius: 14px !important;
    border: 1px solid rgba(236, 176, 40, 0.35);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(236, 176, 40, 0.15);
}

/* Button */
.hsdd-section .btn {
    background: linear-gradient(135deg, #ECB028, #c99b1d);
    border: none;
    color: #111;
    font-weight: 600;
    transition: all 0.35s ease;
    box-shadow: 0 8px 22px rgba(236, 176, 40, 0.35);
}

/* Button hover */
.hsdd-section .btn:hover {
    background: linear-gradient(135deg, #ffd966, #ECB028);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(236, 176, 40, 0.55);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .hsdd-section .row {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .hsdd-section p {
        font-size: 14.5px;
    }

    .hsdd-section strong[style*="28px"] {
        font-size: 24px !important;
    }
}

@media (max-width: 576px) {
    .hsdd-section .row {
        padding: 22px 16px;
    }
}



/* female organsm */


/* ================= HSDD / FEMALE ORGASMIC DISORDER – DARK GOLD ================= */

.hsdd-section {
    background: linear-gradient(180deg,
            rgba(18, 18, 18, 0.95),
            rgba(30, 30, 30, 0.95));
}

/* Headings */
.hsdd-section strong {
    color: #ECB028;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hsdd-section strong.mb-3 {
    color: #ECB028 !important;
}

/* Paragraphs & list text */
.hsdd-section p,
.hsdd-section li {
    color: #d6d6d6;
    font-size: 15px;
    line-height: 1.8;
}

/* Lists */
.hsdd-section ul {
    padding-left: 18px;
}

.hsdd-section ul li {
    margin-bottom: 6px;
}

/* Section card effect */
.hsdd-section .row {
    background: rgba(0, 0, 0, 0.35);
    padding: 30px;
    border-radius: 22px;
    border: 1px solid rgba(236, 176, 40, 0.25);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.55),
        0 0 25px rgba(236, 176, 40, 0.08);
}

/* Image styling */
.hsdd-section img {
    border-radius: 18px !important;
    border: 1px solid rgba(236, 176, 40, 0.35);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(236, 176, 40, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hsdd-section img:hover {
    transform: scale(1.02);
    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.75),
        0 0 30px rgba(236, 176, 40, 0.35);
}

/* Button */
.hsdd-section .btn {
    background: linear-gradient(135deg, #ECB028, #c99b1d);
    border: none;
    color: #111;
    font-weight: 600;
    box-shadow: 0 8px 22px rgba(236, 176, 40, 0.35);
    transition: all 0.35s ease;
}

.hsdd-section .btn:hover {
    background: linear-gradient(135deg, #ffd966, #ECB028);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(236, 176, 40, 0.55);
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .hsdd-section .row {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .hsdd-section p,
    .hsdd-section li {
        font-size: 14.5px;
    }
}

@media (max-width: 576px) {
    .hsdd-section .row {
        padding: 20px 16px;
    }
}


/* footer info section - home page */


/* ================= TRUST & CONFIDENTIALITY SECTION ================= */
.footer-info-section {
    background: linear-gradient(135deg, #0b0b0b, #000000);
    color: #ffffff;
}

/* CARD STYLE */
.footer-info-card {
    background: rgba(255, 255, 255, 0.06);
    padding: 35px 30px;
    border-radius: 16px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* GOLD ACCENT LINE */
.footer-info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background-color: #ECB028;
    transition: height 0.4s ease;
}

.footer-info-card:hover::before {
    height: 100%;
}

/* HOVER EFFECT */
.footer-info-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* SEO-FRIENDLY TITLES */
.footer-title {
    font-size: 22px;
    font-weight: 600;
    color: #ECB028;
    margin-bottom: 18px;
    line-height: 1.3;
}

/* TEXT */
.footer-info-card p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #e6e6e6;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 767px) {

    .footer-info-card {
        text-align: center;
        padding: 28px 22px;
    }

    .footer-info-card::before {
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
    }

    .footer-info-card:hover::before {
        width: 100%;
        height: 4px;
    }

    .footer-title {
        font-size: 20px;
    }
}
