/* ==========================================================================
   0. MODERN COMPONENT INITIALIZATION & BRAND SPECS
   ========================================================================== */
:root {
    --primary-green: #019ec4;
    --primary-hover: #0183a3;
    --gradient-green: linear-gradient(135deg, #019ec4 0%, #017a99 100%);
    --secondary-yellow: #e26a9c;
    --text-dark: #121816;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --card-shadow: 0 10px 30px -5px rgba(1, 158, 196, 0.06);
    --hover-shadow: 0 20px 40px -5px rgba(1, 158, 196, 0.16);
    --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container { max-width: 1440px; }
@media screen and (max-width: 1600px) { .container { max-width: 1250px; } }
@media screen and (max-width: 1500px) { .container { max-width: 1140px; } }
@media screen and (max-width: 1199px) { .container { max-width: 960px; } }

/* ==========================================================================
   1. FLOATING NAVIGATION CONTROLS (Ribbon Layouts Eliminated)
   ========================================================================== */
.custom-premium-header {
    background-color: #ffffff;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(1, 158, 196, 0.08);
}

.top-bar-clean {
    background: linear-gradient(135deg, #019ec4 0%, #0185a6 100%);
    height: 42px;
    font-size: 14px;
    color: #ffffff;
}

.top-info-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-premium);
}

.top-info-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.top-info-links i {
    color: var(--secondary-yellow);
    margin-right: 6px;
}

.phone-pulse-icon {
    display: inline-block;
    animation: headerPhonePulse 2.5s infinite;
}

@keyframes headerPhonePulse {
    0% { transform: scale(1); }
    10% { transform: scale(1.15) rotate(-8deg); }
    20% { transform: scale(1.15) rotate(8deg); }
    30% { transform: scale(1); }
    100% { transform: scale(1); }
}

.top-social-glow-circles {
    display: flex;
    gap: 8px;
}

.top-social-glow-circles a {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 12px;
    transition: var(--transition-premium);
}

.top-social-glow-circles a:hover {
    background-color: #ffffff;
    color: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.navbar-modern-container {
    height: 85px;
    display: flex;
    align-items: center;
    background: #ffffff;
}

.navbar-brand-modern img {
    height: 62px;
    transition: var(--transition-premium);
}

.nav-links-premium-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.nav-links-premium-list li a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-premium);
}

.nav-links-premium-list li a:hover,
.nav-links-premium-list li.active a {
    color: var(--primary-green);
    background: rgba(1, 158, 196, 0.06);
}

.nav-dropdown-premium .dropdown-arrow {
    font-size: 11px;
    transition: transform 0.3s;
}

.nav-dropdown-premium:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.submenu-premium-panel {
    position: absolute;
    top: 85%;
    left: auto;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0 15px 40px rgba(1, 158, 196, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(1, 158, 196, 0.05);
    list-style: none;
    padding: 10px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-premium);
    z-index: 1000;
}

.submenu-premium-panel li a {
    width: 100%;
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
}

.submenu-premium-panel li a:hover {
    color: #ffffff !important;
    background: var(--gradient-green);
    padding-left: 18px;
}

.nav-dropdown-premium:hover .submenu-premium-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-glow-premium {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-yellow) 0%, #c94b7f 100%);
    padding: 9px 22px;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    transition: var(--transition-premium);
    box-shadow: 0 4px 15px rgba(226, 106, 156, 0.3);
}

.btn-glow-premium span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px;
}

.btn-glow-circle {
    width: 26px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-glow-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(226, 106, 156, 0.45);
}

/* ==========================================================================
   2. HERO BANNER CONFIGURATIONS
   ========================================================================== */
.hero-slide {
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 24, 22, 0.95) 0%, rgba(18, 24, 22, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.slider-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
}

.slider-badge span { color: #ffffff; font-weight: 600; font-size: 14px; }
.hero-content h1 { font-size: 58px; font-weight: 800; color: #ffffff; margin-bottom: 20px; }
.hero-content h1 span { color: var(--primary-green); }
.hero-content p { color: rgba(255,255,255,0.8); font-size: 18px; line-height: 1.6; }

.custom-indicators button { width: 10px!important; height: 10px!important; border-radius: 50%; background-color: rgba(255,255,255,0.4)!important; border: none!important; }
.custom-indicators .active { background-color: var(--primary-green)!important; width: 25px!important; border-radius: 10px!important; }

/* ==========================================================================
   3. METRICS / COUNTERS
   ========================================================================== */
.stats-section { margin-top: -50px; position: relative; z-index: 99; }
.stat-box { background: #ffffff; text-align: center; padding: 25px 10px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.01); transition: var(--transition-premium); }
.stat-box:hover { transform: translateY(-5px); box-shadow: var(--hover-shadow); }
.stat-box h3 { font-size: 44px; color: var(--primary-green); font-weight: 800; margin-bottom: 5px; }
.stat-box p { margin: 0; font-size: 14px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }

/* ==========================================================================
   4. ABOUT & CLINICAL FEATURES
   ========================================================================== */
.about-image-wrapper { border-radius: 24px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.section-tag { color: var(--primary-green); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: rgba(1, 158, 196, 0.08); padding: 5px 14px; border-radius: 30px; display: inline-block; margin-bottom: 15px; }
.about-content h2 { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
.feature-box { display: flex; align-items: center; gap: 14px; background: var(--bg-light); padding: 18px; border-radius: 14px; }
.feature-icon { width: 48px; height: 48px; background: #ffffff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary-green); font-size: 18px; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.feature-box h6 { margin: 0; font-weight: 700; font-size: 15px; }
.about-list { list-style: none; padding: 0; margin: 25px 0; display: flex; gap: 20px; }
.about-list li { font-weight: 600; display: flex; align-items: center; gap: 8px; font-size: 15px; }
.about-list i { color: #10b981; }
.about-btn { display: inline-flex; align-items: center; background: var(--text-dark); color: #ffffff; text-decoration: none; padding: 14px 28px; border-radius: 50px; font-weight: 600; transition: var(--transition-premium); }
.about-btn:hover { background: var(--primary-green); transform: translateY(-2px); }

/* ==========================================================================
   5. PREMIUM HIGH-ATTRACTION CARD TRACKS (Replaced Ribbon Setup)
   ========================================================================== */
.creative-showcase-section {
    background-color: #0b1320;
    padding: 100px 0;
    position: relative;
}

.showcase-interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.showcase-glowing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-premium);
}

.card-glow-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}
.card-glow-indicator.cyan { background: #019ec4; }
.card-glow-indicator.pink { background: #e26a9c; }
.card-glow-indicator.blue { background: #3b82f6; }

.card-icon-header {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 24px;
    transition: var(--transition-premium);
}

.showcase-glowing-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.showcase-glowing-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-action-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    transition: var(--transition-premium);
    opacity: 0;
    transform: translateX(-10px);
}

/* Hover Glow Mechanics */
.showcase-glowing-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase-glowing-card:hover .card-icon-header {
    background: var(--primary-green);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(1, 158, 196, 0.5);
}

.showcase-glowing-card:hover .card-action-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary-green);
}

/* ==========================================================================
   6. CLINICAL TREATMENT TRACKS / SERVICES
   ========================================================================== */
.servicesection { padding: 90px 0; background: #f0fdfa; }
.section-title { font-size: 38px; font-weight: 800; margin-bottom: 40px; }

.custom-blog-card { border: none; border-radius: 20px; overflow: hidden; background: #ffffff; box-shadow: var(--card-shadow); height: 100%; display: flex; flex-direction: column; transition: var(--transition-premium); }
.card-img-wrapper { position: relative; overflow: hidden; aspect-ratio: 16/11; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-premium); }
.blog-card-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.tag-agency { color: var(--primary-green); font-weight: 700; font-size: 12px; text-transform: uppercase; }
.blog-card-title { font-size: 20px; font-weight: 700; margin: 10px 0; }
.blog-card-body p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.btn-blog-learn { margin-top: auto; background: var(--bg-light); color: var(--text-dark); font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 10px; display: flex; align-items: center; justify-content: space-between; text-decoration: none; transition: var(--transition-premium); }

.custom-blog-card:hover { transform: translateY(-8px); box-shadow: var(--hover-shadow); }
.custom-blog-card:hover .card-img-wrapper img { transform: scale(1.05); }
.custom-blog-card:hover .btn-blog-learn { background: var(--primary-green); color: #ffffff; }

/* ==========================================================================
   7. WHY CHOOSE US CORES
   ========================================================================== */
.why-us-section { background: #0f172a; color: #ffffff; padding: 90px 0; }
.why-content h2 { font-size: 38px; font-weight: 800; margin-bottom: 40px; }
.why-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.why-item { display: flex; gap: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); padding: 24px; border-radius: 16px; transition: var(--transition-premium); }
.why-item:hover { background: rgba(1, 158, 196, 0.05); border-color: rgba(1, 158, 196, 0.2); }
.why-icon { width: 44px; height: 44px; background: rgba(1, 158, 196, 0.1); color: var(--primary-green); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.why-item h6 { margin: 0 0 6px 0; font-weight: 700; font-size: 16px; }
.why-item p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* ==========================================================================
   8. BLOG JOURNAL
   ========================================================================== */
.blog-section { padding: 90px 0; }
.blog-card-wrapper { background: var(--bg-light); border-radius: 20px; overflow: hidden; height: 100%; transition: var(--transition-premium); }
.blog-image-box { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-image-box img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-premium); }
.blog-date-badge { position: absolute; top: 15px; right: 15px; background: #ffffff; padding: 6px 12px; border-radius: 10px; text-align: center; }
.blog-date-badge .date-day { font-size: 16px; font-weight: 800; display: block; }
.blog-date-badge .date-month { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--primary-green); }
.blog-info-box { padding: 24px; }
.blog-meta-info { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.blog-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.blog-excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.blog-card-wrapper:hover { transform: translateY(-6px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); background: #ffffff; }

/* ==========================================================================
   9. MODERN INTEGRATED FOOTER ARCHITECTURE
   ========================================================================== */
.master-footer { background: #090d14; color: rgba(255,255,255,0.6); padding-top: 50px; }
.utility-strip-inner-box { background: var(--gradient-green); border-radius: 20px; padding: 25px 30px; box-shadow: 0 15px 30px rgba(1, 158, 196, 0.2); }
.utility-details-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
.utility-info-item { display: flex; align-items: center; gap: 12px; color: #ffffff; }
.utility-info-item i { font-size: 20px; background: rgba(255,255,255,0.15); width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.utility-info-item span { font-size: 11px; text-transform: uppercase; opacity: 0.8; display: block; }
.utility-info-item strong { font-size: 14px; }
.btn-footer-consultation { background: #ffffff; color: var(--text-dark); font-weight: 700; font-size: 13px; padding: 12px 24px; border-radius: 50px; text-decoration: none; text-transform: uppercase; transition: var(--transition-premium); }
.btn-footer-consultation:hover { background: #000000; color: #ffffff; }

.footer-main-body { padding: 50px 0; }
.footer-column-title { font-size: 16px; font-weight: 700; color: #ffffff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a { color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition-premium); font-size: 14px; }
.footer-links-list a:hover { color: var(--primary-green); padding-left: 4px; }

.footer-copyright-bar { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; font-size: 14px; }
.btn-scroll-top-fixed { width: 40px; height: 40px; background: rgba(255,255,255,0.05); color: #ffffff; border-radius: 10px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition-premium); }
.btn-scroll-top-fixed:hover { background: var(--primary-green); transform: translateY(-2px); }

/* ==========================================================================
   10. SYSTEM MOBILE RESPONSIVE MEDIA CONTROLS
   ========================================================================== */
@media (max-width: 1199px) {
    .top-bar-clean { display: none; }
    .nav-links-premium-list { display: none; }
    .navbar-modern-container { height: 75px; }
    .hero-slide { min-height: 550px; }
    .hero-content h1 { font-size: 42px; }
}
@media (max-width: 767px) {
    .hero-content h1 { font-size: 32px; }
    .section-title, .about-content h2, .why-content h2 { font-size: 28px; }
    .stats-section { margin-top: 0; padding-top: 30px; }
}/* ==========================================================================
   CLEAN MINIMALIST WHY US REDESIGN
   ========================================================================== */
.why-us-clean-premium {
    background-color: #0b111e; /* Sophisticated, solid deep dark slate */
    padding: 100px 0;
    position: relative;
}

.clean-micro-badge {
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(1, 158, 196, 0.12);
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

.clean-section-heading {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
}

.clean-section-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
}

/* Feature Grid Cards */
.clean-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.clean-card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.35s ease;
}

/* Accent Brand Colors */
.clean-card-icon-wrapper.cyan-accent { background: rgba(1, 158, 196, 0.1); color: #019ec4; }
.clean-card-icon-wrapper.pink-accent { background: rgba(226, 106, 156, 0.1); color: #e26a9c; }
.clean-card-icon-wrapper.blue-accent { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }

.clean-feature-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.clean-feature-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Clean Hover Micro-interactions */
.clean-feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(1, 158, 196, 0.3);
    transform: translateY(-5px);
}

.clean-feature-card:hover .clean-card-icon-wrapper.cyan-accent { background: #019ec4; color: #ffffff; box-shadow: 0 0 20px rgba(1, 158, 196, 0.3); }
.clean-feature-card:hover .clean-card-icon-wrapper.pink-accent { background: #e26a9c; color: #ffffff; box-shadow: 0 0 20px rgba(226, 106, 156, 0.3); }
.clean-feature-card:hover .clean-card-icon-wrapper.blue-accent { background: #3b82f6; color: #ffffff; box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }

/* Bottom Trust Bar Graphic */
.clean-trust-strip {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-metric-item {
    text-align: center;
}

.trust-metric-item strong {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.trust-metric-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
    .clean-section-heading { font-size: 30px; }
    .clean-trust-strip { flex-direction: column; gap: 30px; }
    .trust-metric-divider { display: none; }
}/* ==========================================================================
   IMAGE-BASED COMPOUND ABOUT US SECTION STYLING
   ========================================================================== */
.about-premium-layout {
    background-color: #ffffff;
    position: relative;
}

/* Left Image Assembly Frame Box */
.about-compound-image-frame {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
    display: block;
    width: 100%;
}

/* Asymmetric Main Picture Layout (Top Right Rounding Accent) */
.main-image-asymmetric {
    width: 85%;
    aspect-ratio: 1 / 1;
    border-radius: 0px 120px 0px 120px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.07);
}

.main-image-asymmetric img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vertical Ribbon Banner Component placed on Left Boundary */
.vertical-challenge-tag {
    position: absolute;
    left: 0;
    top: 10%;
    background: linear-gradient(180deg, #018fb2 0%, #018daf 100%);
    padding: 35px 8px;
    border-radius: 8px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 0 15px rgba(220, 169, 18, 0.2);
}

.vertical-challenge-tag span {
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
}

/* Overlapping Inset Secondary Picture Arrow-Cut Frame */
.floating-inset-frame {
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 48%;
    aspect-ratio: 4/3;
    background: #ffffff;
    padding: 10px;
    border-radius: 0 0 0 40px; /* Custom internal cut geometry */
    box-shadow: -15px 15px 40px rgba(0,0,0,0.1);
    z-index: 5;
}

.floating-inset-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 30px;
}

/* Circular Medical Experience Crest / Seal (Bottom Left) */
.experience-seal-wrapper {
    position: absolute;
    left: 15px;
    bottom: 0;
    background: #ffffff;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 6;
}

.seal-inner-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #005f73 0%, #018eb0 100%);
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
}

.seal-star {
    font-size: 10px;
    color: #e26a9c;
    margin-bottom: 2px;
}

.seal-number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.seal-text {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Right Text Layout Architecture Styles */
.about-content-blueprint {
    padding-left: 15px;
}

/* Slanted Tag Component styling */
.slanted-micro-tag {
    margin-bottom: 15px;
}

.slanted-micro-tag span {
    color: #e26a9c;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    background: #dc63951c;
    padding: 4px 14px;
    border-radius: 4px;
    display: inline-block;
}

.about-main-headline {
    font-size: 42px;
    font-weight: 800;
    color: #121816;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-lead-paragraph {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Arrow Feature Block Panel (Mimics the middle horizontal strip) */
.arrow-feature-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f4f9f9;
    padding: 20px 25px;
    border-radius: 8px 0 0 8px;
    border-right: 5px solid #018eb0;
    margin-bottom: 25px;
    position: relative;
}

.banner-icon-box {
    width: 50px;
    height: 50px;
    background: #018eb0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.banner-text-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #121816;
}

.banner-text-box p {
    margin: 0;
    font-size: 13px;
    color: #666666;
    line-height: 1.4;
}

/* Checkbox Alignment Groups */
.about-checklist-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.checklist-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-accent-icon {
    color: #018eb0;
    font-size: 14px;
    background: #e6f4f4;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-item-row span {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

/* Footer Control Blocks (Flex grouping) */
.about-action-footer-flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Dual-Segment CTA Button */
.btn-split-action {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-main-text {
    background: #e26a9c;
    color: #ffffff;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-arrow-icon {
    background: #000;
    color: #ffffff;
    padding: 14px 18px;
    font-size: 14px;
}

.btn-split-action:hover .btn-main-text {
    background: #018eb0;
}

/* Stacked User Avatars Pill Component */
.avatar-counter-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #eef2f5;
    padding: 8px 20px 8px 12px;
    border-radius: 50px;
}

.avatar-images-stack {
    display: flex;
    align-items: center;
}

.avatar-images-stack img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    margin-right: -10px;
}

.avatar-images-stack img:last-child {
    margin-right: 0;
}

.avatar-text-data {
    display: flex;
    flex-direction: column;
}

.avatar-count-num {
    font-size: 16px;
    font-weight: 800;
    color: #121816;
    line-height: 1.1;
}

.avatar-count-lbl {
    font-size: 11px;
    color: #777777;
    font-weight: 500;
}

/* Responsive Adaptive Viewports Scaling */
@media (max-width: 991.98px) {
    .about-compound-image-frame { padding-left: 20px; margin-bottom: 40px; }
    .about-main-headline { font-size: 32px; }
    .main-image-asymmetric { width: 90%; }
}/* ==========================================================================
   EXACT CLONE OF IMAGE_2ED5CE.JPG SERVICES AREA STYLING
   ========================================================================== */
.exact-clone-services-section {
    background-color: #eef5f6; /* Exact light background-tint used in the layout template */
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Fluid Line Gradient Waves Mask (Top-Left Background Accent) */
.decorative-fluid-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 450px;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(14, 116, 144, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Asymmetric Curved Geometric Arches Block (Top-Right Section Background Accent) */
.decorative-top-right-arch-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 320px;
    pointer-events: none;
    z-index: 1;
}

.arch-dark-teal {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 400px;
    height: 400px;
    background-color: #018eb1; /* The solid dark forest teal tone */
    border-radius: 50% 0 0 50%;
}

.arch-yellow {
    position: absolute;
    top: 60px;
    right: -80px;
    width: 320px;
    height: 320px;
    background-color: #e26a9c; /* The solid accent yellow circle layer overlay */
    border-radius: 50%;
}

/* Micro Header Pill Tags styling */
.clone-micro-tag-badge {
    margin-bottom: 12px;
}

.clone-micro-tag-badge span {
    color: #e26a9c;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    background: #ffffff;
    padding: 5px 16px;
    border-radius: 4px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.clone-section-main-title {
    font-size: 44px;
    font-weight: 800;
    color: #0c1210;
    line-height: 1.25;

}

/* Custom Navigation Arrow Buttons Group Layout */
.clone-slider-navigation-arrows {
    display: flex;
    gap: 12px;
}

.clone-arrow-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #0c1210;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.clone-arrow-btn:hover {
    background-color: #018eb1;
    color: #ffffff;
    border-color: #018eb1;
}

/* Master Service Card Architecture (Horizontal Split Layout Engine) */
.exact-split-card-layout {
    display: flex !important;
    background-color: #ffffff;
    border-radius: 0px; /* Kept perfectly square and flat inline with image blueprint */
    overflow: visible; /* Allows the intersecting tag asset to overflow cleanly */
    height: 360px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    position: relative;
    margin: 20px 0;
}

/* Left Content Half Layout (Text Box + Honeycomb Matrix Mask Layout) */
.split-card-content-side {
    width: 52%;
    padding: 45px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #ffffff;
    
    /* Replicates the complex mathematical abstract wireframe honeycomb texture grid */
    background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 0), radial-gradient(rgba(0,0,0,0.05) 1px, transparent 0);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
}

/* Icon Container Boxes shapes mapped exactly to variant options */
.clone-card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;background: #018cae;
    margin-bottom: 35px;
}
.clone-card-icon-box i{
    color: #fff;
}
.clone-card-icon-box.dark-green-variant { background-color: #018eb1; color: #ffffff; }
.clone-card-icon-box.lime-green-variant { background-color: #a4be24; color: #ffffff; }

/* Numeric indicator layer */
.clone-card-serial-index {
    font-size: 16px;
    font-weight: 700;
    color: #e26a9c;
    display: block;
    margin-bottom: 8px;
}

.split-card-content-side h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0c1210;
    line-height: 1.3;
    margin-bottom: 12px;
}

.split-card-content-side p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    max-width: 250px;
}

/* Overlapping Intersecting Circular Navigation Link tag elements */
.clone-intersecting-yellow-arrow {
    position: absolute;
    right: -24px;
    bottom: 35px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e26a9c;
    color: #0c1210;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(240, 190, 36, 0.3);
    transition: all 0.3s ease;
}

.clone-intersecting-yellow-arrow i {
    transform: rotate(45deg); /* Pointing up and right exactly like the image arrow profile */
}

.exact-split-card-layout:hover .clone-intersecting-yellow-arrow {
    background-color: #018eb1;
    color: #ffffff;
}

/* Right Media Half Layout */
.split-card-image-side {
    width: 48%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.split-card-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper Centered Bottom Bullet Dots Configuration */
.clone-pagination-bullets-track .swiper-pagination-bullet {
    background: rgba(1, 141, 176, 0.36) !important;
    opacity: 1 !important;
}

.clone-pagination-bullets-track .swiper-pagination-bullet-active {
    background: rgb(1, 143, 178) !important;
    width: 18px !important;
    border-radius: 4px !important;
}

/* Responsive Adaptive Viewport Collapse for Mobile Layouts */
@media (max-width: 991.98px) {
    .clone-section-main-title { font-size: 32px; }
    .decorative-top-right-arch-wrapper { display: none; }
}

@media (max-width: 767.98px) {
    .exact-split-card-layout {
        flex-direction: column !important;
        height: auto;
    }
    .split-card-content-side, .split-card-image-side {
        width: 100% !important;
    }
    .split-card-image-side {
        height: 220px;
    }
    .clone-intersecting-yellow-arrow {
        right: 30px;
        bottom: -24px;
    }
}
/* ==========================================================================
   NATIVE BOOTSTRAP 5 SPLIT-HERO CAROUSEL SYSTEM
   ========================================================================== */
.exact-hero-slider-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #0f172a;
}
.hero-pill-cta-btn span i{
    color: #000;
}

/* Master Slide Flexbox Layout Split */
.hero-slide-split-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Left Background Overlay Compartment (75% Width) */
.hero-split-media {
    width: 75%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slow elegant cinematic pan triggered natively by Bootstrap's slide activation states */
.carousel-item.active .hero-split-media {
    transform: scale(1.05);
}

/* Right Sidebar Accent Compartment (25% Width) */
.hero-split-accent-sidebar {
    width: 25%;
    height: 100%;
}
.hero-split-accent-sidebar.teal-variant { background-color: #019ec4; }
.hero-split-accent-sidebar.pink-variant { background-color: #e26a9c; }

/* Position Container over Layout bounds */
.hero-card-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

/* Floating White Layout Content Card Asset Frame */
.hero-floating-content-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 600px;
    padding: 50px;
    border-radius: 40px; /* Heavily rounded layout edges precisely as requested */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    margin-left: auto; 
    margin-right: 5%;
    pointer-events: auto;
    position: relative;
    
    /* Animation states controlled smoothly by active class transitions */
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.carousel-item.active .hero-floating-content-card {
    opacity: 1;
    transform: translateY(0);
}

/* Micro Tag Headers Layout */
.hero-card-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-micro-tag {
    font-size: 13px;
    font-weight: 700;
    color: #e26a9c;
    letter-spacing: 1px;
}

.path-moving-icon {
    font-size: 16px;
    color: #e26a9c;
}

/* Title Block Configuration with Vertical Highlights Accent Line */
.hero-title-accent-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.vertical-accent-line {
    width: 4px;
    background-color: #e26a9c;
    border-radius: 2px;
    flex-shrink: 0;
}

.hero-main-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: #121816;
    margin: 0;
}

.hero-main-heading .text-highlight {
    color: #019ec4;
}

/* CTA Pill Buttons styling */
.hero-pill-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: #121816;
    padding: 8px 10px 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-pill-cta-btn span {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.cta-arrow-circle {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #121816;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.hero-pill-cta-btn:hover {
    background-color: #019ec4;
    box-shadow: 0 10px 20px rgba(1, 158, 196, 0.3);
}

.hero-pill-cta-btn:hover .cta-arrow-circle {
    transform: translateX(4px);
}

/* Vertical Left Navigation Controls Pill shape */
.hero-vertical-nav-pill {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    padding: 20px 10px;
    border-radius: 0 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 25;
    box-shadow: 8px 0 25px rgba(0,0,0,0.15);
}

.hero-pill-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #121816;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-pill-btn:hover {
    background-color: #121816;
    color: #ffffff;
    border-color: #121816;
}

/* Responsive Scaling Layers for Viewports */
@media (max-width: 991.98px) {
    .hero-slide-split-wrapper { flex-direction: column; }
    .hero-split-media { width: 100%; height: 60%; }
    .hero-split-accent-sidebar { width: 100%; height: 40%; }
    .hero-floating-content-card { margin: 0 auto; max-width: 92%; padding: 35px; border-radius: 24px; }
    .hero-main-heading { font-size: 28px; }
}

@media (max-width: 575.98px) {
    .exact-hero-slider-section { height: 580px; }
    .hero-vertical-nav-pill { display: none; } /* Gracefully hides control deck track on phones to balance spacing */
    .hero-floating-content-card { padding: 30px 20px; }
    .hero-main-heading { font-size: 22px; }
}/* ==========================================================================
   PREMIUM HIGH-FIDELITY FOOTER SYSTEM (CLONE OF IMAGE_2FBE8D.JPG)
   ========================================================================== */
.premium-curved-footer {
    background-color: #0b1c19; /* Deep Slate Emerald Green base matching the image */
    position: relative;
    padding-top: 130px; /* Space allowance for top curve overlay masking */
    color: #ffffff;
    overflow: hidden;
}

/* Dynamic Curved Separation Vector mask at the top edge */
.footer-top-curve-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-top-curve-mask svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 95px;
}

.footer-top-curve-mask .shape-fill {
    fill: #ffffff; /* Smoothly masks against preceding white content sections */
}

.footer-main-grid-container {
    position: relative;
    z-index: 5;
    padding-bottom: 60px;
}

/* Brand Column Rules */
.footer-logo {
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Ensures dark medical logos turn clean white */
}

.footer-bio-text {
    font-size: 14px;
    color: #a3b8b5;
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 25px;
}

.footer-social-pill-row {
    display: flex;
    gap: 10px;
}

.footer-social-pill-row a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-pill-row a:hover {
    background-color: #e26a9c; /* Accent Highlight */
    color: #ffffff;
    transform: translateY(-3px);
}

/* Widget Structural Text Systems */
.footer-widget-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

/* Replicating the golden-pink dynamic border rule under widget titles */
.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #e26a9c;
    border-radius: 2px;
}

/* Links Columns Engine */
.footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-links li {
    margin-bottom: 12px;
}

.footer-menu-links li a {
    color: #a3b8b5;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-menu-links li a i {
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.footer-menu-links li a:hover {
    color: #e26a9c;
}

.footer-menu-links li a:hover i {
    transform: translateX(4px);
    opacity: 1;
}

/* Contact Column Elements Layout Mapping */
.footer-contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-wrapper {
    width: 42px;
    height: 42px;
    background-color: rgba(222, 106, 156, 0.1);
    color: #e26a9c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text-wrapper {
    display: flex;
    flex-direction: column;
}

.contact-text-wrapper span {
    font-size: 12px;
    color: #728a86;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text-wrapper strong,
.contact-text-wrapper strong a {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
}

.contact-text-wrapper small {
    font-size: 13.5px;
    color: #a3b8b5;
}

/* Bottom Footer Base Bar Layout Area */
.footer-bottom-copyright-strip {
    background-color: #061210; /* Darker bottom ground anchor */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-size: 13.5px;
    color: #728a86;
}

.footer-back-to-top-btn {
    width: 40px;
    height: 40px;
    background-color: #e26a9c;
    color: #ffffff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-back-to-top-btn:hover {
    background-color: #019ec4;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Structural Collapse Handling */
@media (max-width: 991.98px) {
    .premium-curved-footer { padding-top: 100px; }
    .footer-top-curve-mask svg { height: 60px; }
}/* ==========================================================================
   HIGH-ATTRACTION MEDICAL BLOG SECTION STYLING
   ========================================================================== */
.blog-premium-section-layout {
    background-color: #ffffff;
    position: relative;
}

/* Attractive Micro Pill Shape Badge component */
.attractive-micro-badge {
    margin-bottom: 15px;
}

.attractive-micro-badge span {
    color: #019ec4; /* Site Primary Cyan Tint Variable */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: rgba(1, 158, 196, 0.08);
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-block;
}

.blog-section-main-headline {
    font-size: 38px;
    font-weight: 800;
    color: #121816;
    line-height: 1.25;
    margin-bottom: 15px;
}

/* Custom Decorative Header Baseline Split Ribbon rule */
.header-decorative-pill-line {
    width: 60px;
    height: 4px;
    background-color: #e26a9c; /* Site Secondary Pink Variable */
    border-radius: 2px;
}

/* Master Publication Card Architecture Frame */
.attractive-blog-card-blueprint {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(18, 24, 22, 0.04);
    border: 1px solid rgba(18, 24, 22, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Zoom Image Frame Mask Layer */
.attractive-image-frame-mask {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    background-color: #121816;
}

.attractive-image-frame-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Date Crest over top corner layouts */
.attractive-date-floating-tag {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: #ffffff;
    padding: 8px 14px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.3s ease;
}

.date-tag-day {
    font-size: 18px;
    font-weight: 800;
    color: #121816;
    line-height: 1.1;
}

.date-tag-month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e26a9c;
    letter-spacing: 0.5px;
}

/* Inner Text Area Box Compartments mapping fields */
.attractive-text-compartment-box {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

/* Meta Data Strings Formatting rules */
.article-meta-string-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.meta-item-badge {
    font-size: 13px;
    color: #6a7471;
    font-weight: 600;
}

.text-cyan {
    color: #019ec4;
}

.meta-item-separator {
    color: rgba(106, 116, 113, 0.3);
    font-size: 12px;
}

/* Core Link Titles weights */
.attractive-article-title-heading {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
}

.attractive-article-title-heading a {
    color: #121816;
    text-decoration: none;
    transition: color 0.25s ease;
}

.attractive-article-title-heading a:hover {
    color: #019ec4;
}

.attractive-article-summary-excerpt {
    font-size: 14px;
    color: #6a7471;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Bottom Actions Panel Deck Rules */
.attractive-card-footer-action-deck {
    border-top: 1px solid rgba(18, 24, 22, 0.06);
    padding-top: 18px;
    margin-top: auto;
}

/* Interactive Text Slide Arrow Link Buttons System */
.premium-read-more-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
}

.action-btn-text {
    font-size: 14px;
    font-weight: 700;
    color: #121816;
    transition: color 0.3s ease;
}

.action-btn-arrow {
    font-size: 13px;
    color: #e26a9c;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Master Micro Interactions Animations Hover Engines Matrix */
.attractive-blog-card-blueprint:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(18, 24, 22, 0.08);
    border-color: rgba(1, 158, 196, 0.15);
}

.attractive-blog-card-blueprint:hover .attractive-image-frame-mask img {
    transform: scale(1.06);
}

.attractive-blog-card-blueprint:hover .attractive-date-floating-tag {
    background-color: #019ec4;
}
.attractive-blog-card-blueprint:hover .attractive-date-floating-tag .date-tag-day {
    color: #ffffff;
}
.attractive-blog-card-blueprint:hover .attractive-date-floating-tag .date-tag-month {
    color: #ffffff;
}

.attractive-blog-card-blueprint:hover .action-btn-text {
    color: #019ec4;
}
a{
    text-decoration: none !important;
}
.attractive-blog-card-blueprint:hover .action-btn-arrow {
    transform: translateX(6px);
    color: #019ec4;
}

/* Responsive Structural Scales modifications */
@media (max-width: 991.98px) {
    .blog-section-main-headline { font-size: 30px; }
    .attractive-text-compartment-box { padding: 25px 20px; }
    .attractive-article-title-heading { font-size: 18px; }
}
/*.color1 .stat-box{
background: #019ec4;
}
.color2 .stat-box{
background: #e16b9c;
}
.stat-box h3{
    color: #fff;
}
.stat-box p{
    color: #fff;
}*/

.stat-box{
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}
/* FAQ  */
/* FAQ Section */
/* .shanti-faq-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  font-family: inherit;
}

.shanti-faq-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
} */
/* FAQ Section Professional col-12 Layout */
.shanti-faq-section {
  padding: 70px 20px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  font-family: inherit;
}

/* Top Heading Area */
.shanti-faq-left {
  text-align: center;
  margin: 0 auto 45px;
  position: static;
}

.shanti-section-tag {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 7px 14px;
  border-radius: 5px;
  margin-bottom: 16px;
}

.shanti-faq-left h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #12191c;
  font-weight: 900;
  margin-bottom: 15px;
}

.shanti-faq-left > p {
  color: #6f7f8f;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 auto 24px;
}

/* Highlight Box */
.shanti-faq-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  border-left: 5px solid #079db7;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  margin: 0 auto 24px;
  max-width: 480px;
  text-align: left;
}

.shanti-faq-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #079db7;
  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
}

.shanti-faq-highlight h4 {
  margin: 0 0 5px;
  color: #12191c;
  font-size: 15px;
  font-weight: 800;
}

.shanti-faq-highlight p {
  margin: 0;
  color: #6f7f8f;
  font-size: 12px;
  line-height: 1.6;
}

/* Button */
.shanti-faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #df5c98;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(223, 92, 152, 0.32);
  transition: all 0.3s ease;
}

.shanti-faq-btn span {
  width: 26px;
  height: 26px;
  background: #ffffff;
  color: #12191c;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.shanti-faq-btn:hover {
  transform: translateY(-3px);
  background: #079db7;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 157, 183, 0.28);
}

/* FAQ Accordion Full Width */
.shanti-faq-right {

  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.shanti-faq-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(7, 157, 183, 0.08);
  transition: all 0.3s ease;
}

.shanti-faq-item.active {
  border-color: rgba(223, 92, 152, 0.35);
  box-shadow: 0 12px 32px rgba(223, 92, 152, 0.12);
}

.shanti-faq-question {
  width: 100%;
  border: none;
  outline: none;
  background: #ffffff;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  color: #12191c;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
}

.shanti-faq-question span {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #eef9fb;
  color: #079db7;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.shanti-faq-item.active .shanti-faq-question span {
  background: #df5c98;
  color: #ffffff;
}

.shanti-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.shanti-faq-answer p {
  padding: 0 22px 20px;
  margin: 0;
  color: #6f7f8f;
  font-size: 14px;
  line-height: 1.75;
}

/* Tablet */
@media (max-width: 991px) {
  .shanti-faq-section {
    padding: 60px 18px 75px;
  }

  .shanti-faq-left h2 {
    font-size: 32px;
  }

  .shanti-faq-right {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .shanti-faq-section {
    padding: 45px 14px 60px;
  }

  .shanti-faq-left {
    margin-bottom: 35px;
  }

  .shanti-faq-left h2 {
    font-size: 28px;
  }

  .shanti-faq-left > p {
    font-size: 14px;
  }

  .shanti-faq-highlight {
    padding: 16px;
  }

  .shanti-faq-question {
    padding: 16px;
    font-size: 13.5px;
  }

  .shanti-faq-answer p {
    padding: 0 16px 17px;
    font-size: 13px;
  }
}
.shanti-faq-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  border-left: 5px solid #079db7;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.shanti-faq-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #079db7;
  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
}

.shanti-faq-highlight h4 {
  margin: 0 0 5px;
  color: #12191c;
  font-size: 15px;
  font-weight: 800;
}

.shanti-faq-highlight p {
  margin: 0;
  color: #6f7f8f;
  font-size: 12px;
  line-height: 1.6;
}

.shanti-faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #df5c98;
  color: #ffffff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(223, 92, 152, 0.32);
  transition: all 0.3s ease;
}

.shanti-faq-btn span {
  width: 26px;
  height: 26px;
  background: #ffffff;
  color: #12191c;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.shanti-faq-btn:hover {
  transform: translateY(-3px);
  background: #079db7;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 157, 183, 0.28);
}

/* Right FAQ - 2 Column Compact Layout */
.shanti-faq-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: flex-start;
}

.shanti-faq-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(7, 157, 183, 0.08);
  transition: all 0.3s ease;
}

.shanti-faq-item.active {
  border-color: rgba(223, 92, 152, 0.35);
  box-shadow: 0 12px 32px rgba(223, 92, 152, 0.12);
}

.shanti-faq-question {
  width: 100%;
  border: none;
  outline: none;
  background: #ffffff;
  padding: 17px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  color: #12191c;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.shanti-faq-question span {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #eef9fb;
  color: #079db7;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.shanti-faq-item.active .shanti-faq-question span {
  background: #df5c98;
  color: #ffffff;
}

.shanti-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.shanti-faq-answer p {
  padding: 0 18px 18px;
  margin: 0;
  color: #6f7f8f;
  font-size: 13px;
  line-height: 1.75;
}

/* Tablet */
@media (max-width: 991px) {
  .shanti-faq-section {
    padding: 60px 18px 75px;
  }

  .shanti-faq-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .shanti-faq-left {
    position: static;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
  }

  .shanti-faq-highlight {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .shanti-faq-right {
    grid-template-columns: 1fr;
  }

  .shanti-faq-left h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .shanti-faq-section {
    padding: 45px 14px 60px;
  }

  .shanti-faq-left h2 {
    font-size: 28px;
  }

  .shanti-faq-left > p {
    font-size: 14px;
  }

  .shanti-faq-highlight {
    padding: 16px;
  }

  .shanti-faq-question {
    padding: 16px;
    font-size: 13.5px;
  }

  .shanti-faq-answer p {
    padding: 0 16px 17px;
    font-size: 13px;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .shanti-faq-section {
    padding: 70px 18px;
  }

  .shanti-faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shanti-faq-left {
    text-align: center;
  }

  .shanti-faq-left > p,
  .shanti-faq-highlight {
    margin-left: auto;
    margin-right: auto;
  }

  .shanti-faq-highlight {
    text-align: left;
  }

  .shanti-faq-left h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .shanti-faq-section {
    padding: 55px 14px;
  }

  .shanti-faq-left h2 {
    font-size: 30px;
  }

  .shanti-faq-left > p {
    font-size: 15px;
  }

  .shanti-faq-highlight {
    padding: 18px;
  }

  .shanti-faq-question {
    padding: 18px;
    font-size: 15px;
  }

  .shanti-faq-answer p {
    padding: 0 18px 20px;
    font-size: 14px;
  }
}
/* Premature.php */
/* Premature Ejaculation Page */
.pme-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.pme-hero-section {
  position: relative;
  padding: 90px 20px 85px;
  overflow: hidden;
  background: #f8fcfd;
}

.pme-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.12), rgba(223, 92, 152, 0.14)),
    radial-gradient(circle at top right, rgba(223, 92, 152, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(7, 157, 183, 0.22), transparent 35%);
}

.pme-hero-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.pme-tag,
.pme-small-label,
.pme-section-title span,
.pme-cta-box span {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.pme-hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: #12191c;
  margin-bottom: 22px;
}

.pme-hero-content h1 span {
  color: #079db7;
  display: block;
}

.pme-hero-content p {
  color: #5f6f7f;
  font-size: 17px;
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 30px;
}

.pme-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.pme-primary-btn,
.pme-secondary-btn,
.pme-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
}

.pme-primary-btn,
.pme-cta-box a {
  background: #df5c98;
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(223, 92, 152, 0.32);
}

.pme-primary-btn span,
.pme-cta-box a span {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #12191c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
}

.pme-secondary-btn {
  color: #079db7;
  background: #ffffff;
  padding: 15px 26px;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.pme-primary-btn:hover,
.pme-cta-box a:hover {
  background: #079db7;
  color: #ffffff;
  transform: translateY(-3px);
}

.pme-secondary-btn:hover {
  background: #079db7;
  color: #ffffff;
  transform: translateY(-3px);
}

.pme-hero-image {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  min-height: 470px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.16);
}

.pme-hero-image img,
.pme-intro-image img,
.pme-causes-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.pme-image-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.pme-image-badge h4 {
  margin: 0;
  color: #079db7;
  font-size: 34px;
  font-weight: 900;
}

.pme-image-badge p {
  margin: 0;
  color: #6f7f8f;
  font-size: 13px;
  font-weight: 800;
}

/* Main Page */
.pme-page-section {
  padding: 85px 20px;
  background: #ffffff;
}

.pme-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 85px;
}

.pme-intro-image {
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.13);
}

.pme-intro-content h2,
.pme-causes-content h2,
.pme-deep-box h2,
.pme-section-title h2,
.pme-cta-box h2 {
  color: #12191c;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 18px;
}

.pme-intro-content p,
.pme-info-card p,
.pme-causes-content p,
.pme-deep-box p,
.pme-section-title p,
.pme-split-card p,
.pme-treatment-card p,
.pme-cta-box p {
  color: #647484;
  font-size: 15px;
  line-height: 1.85;
}

.pme-note-box {
  display: flex;
  gap: 15px;
  background: #f1fbfd;
  border-left: 5px solid #079db7;
  padding: 20px;
  border-radius: 14px;
  margin-top: 25px;
}

.pme-note-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.pme-note-box p {
  margin: 0;
  font-size: 14px;
}

/* Titles */
.pme-section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.pme-section-title h2 {
  margin-bottom: 14px;
}

.pme-section-title p {
  margin: 0;
}

/* Info Card */
.pme-info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(7, 157, 183, 0.08);
  margin-bottom: 85px;
}

.pme-info-card p:last-child {
  margin-bottom: 0;
}

/* Types */
.pme-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 90px;
}

.pme-type-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(7, 157, 183, 0.08);
  transition: all 0.3s ease;
}

.pme-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 92, 152, 0.35);
}

.pme-card-icon {
  width: 48px;
  height: 48px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.pme-type-card h3,
.pme-treatment-card h3,
.pme-split-card h3 {
  color: #12191c;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.pme-type-card p {
  color: #647484;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* Causes */
.pme-causes-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 85px;
  background: #f8fcfd;
  padding: 45px;
  border-radius: 32px;
}

.pme-cause-list {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

.pme-cause-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  padding: 15px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.pme-cause-item span {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.pme-cause-item p {
  margin: 0;
  color: #12191c;
  font-size: 14px;
  font-weight: 700;
}

.pme-causes-image {
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Split Box */
.pme-split-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 85px;
}

.pme-split-card {
  padding: 32px;
  border-radius: 24px;
  background: #f1fbfd;
  border: 1px solid rgba(7, 157, 183, 0.12);
}

.pme-pink-card {
  background: #fff1f7;
  border-color: rgba(223, 92, 152, 0.18);
}

.pme-split-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.pme-split-card li {
  color: #12191c;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Deep Box */
.pme-deep-box {
  display: flex;
  gap: 25px;
  background: #12191c;
  color: #ffffff;
  border-radius: 28px;
  padding: 42px;
  margin-bottom: 85px;
}

.pme-deep-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #df5c98;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.pme-deep-box h2 {
  color: #ffffff;
}

.pme-deep-box p {
  color: #d7e3e8;
}

/* Treatment */
.pme-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 85px;
}

.pme-treatment-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
  border-top: 5px solid #079db7;
  transition: all 0.3s ease;
}

.pme-treatment-card:nth-child(even) {
  border-top-color: #df5c98;
}

.pme-treatment-card:hover {
  transform: translateY(-7px);
}

/* CTA */
.pme-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.95), rgba(223, 92, 152, 0.95));
  padding: 45px;
  border-radius: 30px;
  overflow: hidden;
}

.pme-cta-box span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.pme-cta-box h2,
.pme-cta-box p {
  color: #ffffff;
}

.pme-cta-box p {
  max-width: 650px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .pme-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .pme-hero-section {
    padding: 70px 18px;
  }

  .pme-hero-wrapper,
  .pme-intro-grid,
  .pme-causes-wrapper,
  .pme-split-box {
    grid-template-columns: 1fr;
  }

  .pme-hero-content {
    text-align: center;
  }

  .pme-hero-content p,
  .pme-cta-box p {
    margin-left: auto;
    margin-right: auto;
  }

  .pme-hero-buttons {
    justify-content: center;
  }

  .pme-hero-content h1 {
    font-size: 42px;
  }

  .pme-hero-image,
  .pme-intro-image,
  .pme-causes-image {
    height: 430px;
  }

  .pme-page-section {
    padding: 70px 18px;
  }

  .pme-intro-grid,
  .pme-causes-wrapper,
  .pme-split-box,
  .pme-deep-box,
  .pme-treatment-grid {
    margin-bottom: 70px;
  }

  .pme-treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pme-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .pme-hero-section {
    padding: 55px 14px;
  }

  .pme-hero-content h1 {
    font-size: 32px;
  }

  .pme-hero-content p {
    font-size: 15px;
  }

  .pme-primary-btn,
  .pme-secondary-btn,
  .pme-cta-box a {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }

  .pme-hero-image,
  .pme-intro-image,
  .pme-causes-image {
    height: 320px;
    border-radius: 22px;
  }

  .pme-image-badge {
    left: 15px;
    bottom: 15px;
    padding: 14px 18px;
  }

  .pme-image-badge h4 {
    font-size: 28px;
  }

  .pme-page-section {
    padding: 55px 14px;
  }

  .pme-intro-content h2,
  .pme-causes-content h2,
  .pme-deep-box h2,
  .pme-section-title h2,
  .pme-cta-box h2 {
    font-size: 28px;
  }

  .pme-info-card,
  .pme-causes-wrapper,
  .pme-split-card,
  .pme-deep-box,
  .pme-cta-box {
    padding: 24px;
    border-radius: 22px;
  }

  .pme-type-grid,
  .pme-treatment-grid {
    grid-template-columns: 1fr;
  }

  .pme-deep-box {
    flex-direction: column;
  }

  .pme-type-card,
  .pme-treatment-card {
    padding: 24px;
  }
}
/* Erectile.php */
/* Erectile Dysfunction Page */
.ed-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* Hero */
.ed-hero-section {
  position: relative;
  padding: 90px 20px 85px;
  overflow: hidden;
  background: #f8fcfd;
}

.ed-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.12), rgba(223, 92, 152, 0.14)),
    radial-gradient(circle at top right, rgba(223, 92, 152, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(7, 157, 183, 0.22), transparent 35%);
}

.ed-hero-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.ed-tag,
.ed-small-label,
.ed-section-title span,
.ed-cta-box span {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.ed-hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 900;
  color: #12191c;
  margin-bottom: 22px;
}

.ed-hero-content h1 span {
  color: #079db7;
  display: block;
}

.ed-hero-content p {
  color: #5f6f7f;
  font-size: 17px;
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 30px;
}

.ed-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ed-primary-btn,
.ed-secondary-btn,
.ed-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
}

.ed-primary-btn,
.ed-cta-box a {
  background: #df5c98;
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(223, 92, 152, 0.32);
}

.ed-primary-btn span,
.ed-cta-box a span {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #12191c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
}

.ed-secondary-btn {
  color: #079db7;
  background: #ffffff;
  padding: 15px 26px;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.ed-primary-btn:hover,
.ed-cta-box a:hover {
  background: #079db7;
  color: #ffffff;
  transform: translateY(-3px);
}

.ed-secondary-btn:hover {
  background: #079db7;
  color: #ffffff;
  transform: translateY(-3px);
}

.ed-hero-image {
  position: relative;
  border-radius: 35px;
  overflow: hidden;
  min-height: 470px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.16);
}

.ed-hero-image img,
.ed-intro-image img,
.ed-causes-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ed-image-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.ed-image-badge h4 {
  margin: 0;
  color: #079db7;
  font-size: 34px;
  font-weight: 900;
}

.ed-image-badge p {
  margin: 0;
  color: #6f7f8f;
  font-size: 13px;
  font-weight: 800;
}

/* Page */
.ed-page-section {
  padding: 85px 20px;
  background: #ffffff;
}

.ed-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 85px;
}

.ed-intro-image {
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.13);
}

.ed-intro-content h2,
.ed-causes-content h2,
.ed-deep-box h2,
.ed-section-title h2,
.ed-cta-box h2 {
  color: #12191c;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 18px;
}

.ed-intro-content p,
.ed-info-card p,
.ed-causes-content p,
.ed-deep-box p,
.ed-section-title p,
.ed-treatment-card p,
.ed-cta-box p {
  color: #647484;
  font-size: 15px;
  line-height: 1.85;
}

/* Check List */
.ed-check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.ed-check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  padding: 15px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.ed-check-item span {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.ed-check-item p {
  margin: 0;
  color: #12191c;
  font-size: 14px;
  font-weight: 700;
}

/* Note */
.ed-note-box {
  display: flex;
  gap: 15px;
  background: #f1fbfd;
  border-left: 5px solid #079db7;
  padding: 20px;
  border-radius: 14px;
  margin-top: 25px;
}

.ed-note-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.ed-note-box p {
  margin: 0;
  font-size: 14px;
}

/* Section Titles */
.ed-section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.ed-section-title h2 {
  margin-bottom: 14px;
}

.ed-section-title p {
  margin: 0;
}

/* Info Card */
.ed-info-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(7, 157, 183, 0.08);
  margin-bottom: 85px;
}

.ed-info-card p:last-child {
  margin-bottom: 0;
}

/* Cards */
.ed-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 90px;
}

.ed-type-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(7, 157, 183, 0.08);
  transition: all 0.3s ease;
}

.ed-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 92, 152, 0.35);
}

.ed-card-icon {
  width: 48px;
  height: 48px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.ed-type-card h3,
.ed-treatment-card h3,
.ed-split-card h3 {
  color: #12191c;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.ed-type-card p {
  color: #647484;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

/* Anxiety Section */
.ed-causes-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 85px;
  background: #f8fcfd;
  padding: 45px;
  border-radius: 32px;
}

.ed-step-list {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

.ed-step-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.ed-step-item span {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: #df5c98;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.ed-step-item p {
  margin: 0;
  color: #12191c;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.ed-causes-image {
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Split Box */
.ed-split-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 85px;
}

.ed-split-card {
  padding: 32px;
  border-radius: 24px;
  background: #f1fbfd;
  border: 1px solid rgba(7, 157, 183, 0.12);
}

.ed-pink-card {
  background: #fff1f7;
  border-color: rgba(223, 92, 152, 0.18);
}

.ed-split-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.ed-split-card li {
  color: #12191c;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Deep Box */
.ed-deep-box {
  display: flex;
  gap: 25px;
  background: #12191c;
  color: #ffffff;
  border-radius: 28px;
  padding: 42px;
  margin-bottom: 85px;
}

.ed-deep-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: #df5c98;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.ed-deep-box h2 {
  color: #ffffff;
}

.ed-deep-box p {
  color: #d7e3e8;
}

/* Treatment */
.ed-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 85px;
}

.ed-treatment-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
  border-top: 5px solid #079db7;
  transition: all 0.3s ease;
}

.ed-treatment-card:nth-child(even) {
  border-top-color: #df5c98;
}

.ed-treatment-card:hover {
  transform: translateY(-7px);
}

/* CTA */
.ed-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.95), rgba(223, 92, 152, 0.95));
  padding: 45px;
  border-radius: 30px;
  overflow: hidden;
}

.ed-cta-box span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.ed-cta-box h2,
.ed-cta-box p {
  color: #ffffff;
}

.ed-cta-box p {
  max-width: 650px;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .ed-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .ed-hero-section {
    padding: 70px 18px;
  }

  .ed-hero-wrapper,
  .ed-intro-grid,
  .ed-causes-wrapper,
  .ed-split-box {
    grid-template-columns: 1fr;
  }

  .ed-hero-content {
    text-align: center;
  }

  .ed-hero-content p,
  .ed-cta-box p {
    margin-left: auto;
    margin-right: auto;
  }

  .ed-hero-buttons {
    justify-content: center;
  }

  .ed-hero-content h1 {
    font-size: 42px;
  }

  .ed-hero-image,
  .ed-intro-image,
  .ed-causes-image {
    height: 430px;
  }

  .ed-page-section {
    padding: 70px 18px;
  }

  .ed-intro-grid,
  .ed-causes-wrapper,
  .ed-split-box,
  .ed-deep-box,
  .ed-treatment-grid {
    margin-bottom: 70px;
  }

  .ed-treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ed-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .ed-hero-section {
    padding: 55px 14px;
  }

  .ed-hero-content h1 {
    font-size: 32px;
  }

  .ed-hero-content p {
    font-size: 15px;
  }

  .ed-primary-btn,
  .ed-secondary-btn,
  .ed-cta-box a {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }

  .ed-hero-image,
  .ed-intro-image,
  .ed-causes-image {
    height: 320px;
    border-radius: 22px;
  }

  .ed-image-badge {
    left: 15px;
    bottom: 15px;
    padding: 14px 18px;
  }

  .ed-image-badge h4 {
    font-size: 28px;
  }

  .ed-page-section {
    padding: 55px 14px;
  }

  .ed-intro-content h2,
  .ed-causes-content h2,
  .ed-deep-box h2,
  .ed-section-title h2,
  .ed-cta-box h2 {
    font-size: 28px;
  }

  .ed-info-card,
  .ed-causes-wrapper,
  .ed-split-card,
  .ed-deep-box,
  .ed-cta-box {
    padding: 24px;
    border-radius: 22px;
  }

  .ed-type-grid,
  .ed-treatment-grid {
    grid-template-columns: 1fr;
  }

  .ed-deep-box {
    flex-direction: column;
  }

  .ed-type-card,
  .ed-treatment-card {
    padding: 24px;
  }
}
/* Qualities of Dr Tejas */
/* Qualities to Look for in a Good Sexologist */
.sexologist-quality-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  font-family: inherit;
}

.sexologist-quality-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 45px;
  align-items: flex-start;
}

.sexologist-quality-left {
  position: sticky;
  top: 120px;
}

.sexologist-quality-tag {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.sexologist-quality-left h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #12191c;
  font-weight: 900;
  margin-bottom: 18px;
}

.sexologist-quality-left h2 span {
  color: #079db7;
  display: block;
}

.sexologist-quality-left > p {
  color: #647484;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.sexologist-doctor-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  border-left: 5px solid #079db7;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 15px 42px rgba(0, 0, 0, 0.08);
}

.sexologist-doctor-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
}

.sexologist-doctor-box h4 {
  color: #12191c;
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 7px;
}

.sexologist-doctor-box p {
  color: #647484;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.sexologist-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.sexologist-quality-card {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 26px;
  border: 1px solid rgba(7, 157, 183, 0.08);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.3s ease;
}

.sexologist-quality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #079db7;
}

.sexologist-quality-card:nth-child(even)::before {
  background: #df5c98;
}

.sexologist-quality-card:hover {
  transform: translateY(-7px);
  border-color: rgba(223, 92, 152, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
}

.sexologist-quality-number {
  width: 46px;
  height: 46px;
  background: #eef9fb;
  color: #079db7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.sexologist-quality-card:nth-child(even) .sexologist-quality-number {
  background: #fdeaf3;
  color: #df5c98;
}

.sexologist-quality-card h3 {
  color: #12191c;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 12px;
}

.sexologist-quality-card p {
  color: #647484;
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .sexologist-quality-section {
    padding: 70px 18px;
  }

  .sexologist-quality-container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sexologist-quality-left {
    position: static;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }

  .sexologist-doctor-box {
    text-align: left;
    max-width: 520px;
    margin: 0 auto;
  }

  .sexologist-quality-left h2 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .sexologist-quality-section {
    padding: 55px 14px;
  }

  .sexologist-quality-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sexologist-quality-left h2 {
    font-size: 29px;
  }

  .sexologist-quality-left > p {
    font-size: 14px;
  }

  .sexologist-doctor-box {
    padding: 18px;
  }

  .sexologist-quality-card {
    padding: 25px 22px;
    border-radius: 18px;
  }

  .sexologist-quality-card h3 {
    font-size: 18px;
  }

  .sexologist-quality-card p {
    font-size: 13.5px;
  }
}
/* Contact us.php */
/* Contact Us Page */
.shanti-contact-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.shanti-contact-hero {
  position: relative;
  padding: 90px 20px 80px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.12), rgba(223, 92, 152, 0.15)),
    radial-gradient(circle at top right, rgba(223, 92, 152, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(7, 157, 183, 0.22), transparent 35%);
  overflow: hidden;
}

.shanti-contact-hero-content {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.shanti-contact-tag,
.shanti-contact-small-tag {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.shanti-contact-hero h1 {
  font-size: 50px;
  line-height: 1.12;
  color: #12191c;
  font-weight: 900;
  margin-bottom: 20px;
}

.shanti-contact-hero h1 span {
  color: #079db7;
  display: block;
}

.shanti-contact-hero p {
  color: #5f6f7f;
  font-size: 16px;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 680px;
}

/* Main Section */
.shanti-contact-section {
  padding: 80px 20px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}

/* Contact Cards */
.shanti-contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 65px;
}

.shanti-contact-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 26px;
  text-align: center;
  border: 1px solid rgba(7, 157, 183, 0.08);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.shanti-contact-card:hover {
  transform: translateY(-7px);
  border-color: rgba(223, 92, 152, 0.3);
}

.shanti-contact-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  background: #eef9fb;
  color: #079db7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.shanti-contact-card:nth-child(even) .shanti-contact-icon {
  background: #fdeaf3;
  color: #df5c98;
}

.shanti-contact-card h3 {
  color: #12191c;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}

.shanti-contact-card p {
  color: #647484;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.shanti-contact-card a {
  display: inline-block;
  margin-top: 8px;
  color: #079db7;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

/* Main Grid */
.shanti-contact-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 45px;
  align-items: flex-start;
}

/* Form */
.shanti-contact-form-box,
.shanti-contact-info-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 38px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(7, 157, 183, 0.08);
}

.shanti-contact-form-box h2 {
  color: #12191c;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}

.shanti-contact-form-box > p {
  color: #647484;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.shanti-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.shanti-form-group {
  margin-bottom: 20px;
}

.shanti-form-group label {
  display: block;
  color: #12191c;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.shanti-form-group label span {
  color: #df5c98;
}

.shanti-form-group input,
.shanti-form-group select,
.shanti-form-group textarea {
  width: 100%;
  border: 1px solid rgba(7, 157, 183, 0.18);
  background: #f8fcfd;
  color: #12191c;
  border-radius: 12px;
  padding: 14px 15px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.shanti-form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.shanti-form-group input:focus,
.shanti-form-group select:focus,
.shanti-form-group textarea:focus {
  border-color: #079db7;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(7, 157, 183, 0.08);
}

.shanti-contact-submit-btn {
  border: none;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #df5c98;
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(223, 92, 152, 0.32);
  transition: all 0.3s ease;
}

.shanti-contact-submit-btn span {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #12191c;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.shanti-contact-submit-btn:hover {
  background: #079db7;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(7, 157, 183, 0.28);
}

.shanti-form-alert {
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 700;
}

.shanti-form-alert.success {
  background: #eafaf1;
  color: #087a3d;
}

.shanti-form-alert.error {
  background: #fff1f7;
  color: #df5c98;
}

/* Right Info */
.shanti-contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.shanti-private-box {
  background: #f1fbfd;
  border-left: 5px solid #079db7;
  border-radius: 18px;
  padding: 24px;
}

.shanti-private-icon {
  width: 46px;
  height: 46px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 15px;
}

.shanti-private-box h3,
.shanti-contact-doctor-box h3 {
  color: #12191c;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 10px;
}

.shanti-private-box p,
.shanti-contact-doctor-box p {
  color: #647484;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}

.shanti-contact-doctor-box {
  background: #fff1f7;
  border-radius: 18px;
  padding: 24px;
}

.shanti-contact-doctor-box ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.shanti-contact-doctor-box li {
  color: #12191c;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

.shanti-map-box {
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(7, 157, 183, 0.12);
}

.shanti-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .shanti-contact-hero {
    padding: 70px 18px;
  }

  .shanti-contact-hero h1 {
    font-size: 40px;
  }

  .shanti-contact-section {
    padding: 70px 18px;
  }

  .shanti-contact-card-grid,
  .shanti-contact-main {
    grid-template-columns: 1fr;
  }

  .shanti-contact-card-grid {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .shanti-contact-hero {
    padding: 55px 14px;
  }

  .shanti-contact-hero h1 {
    font-size: 31px;
  }

  .shanti-contact-hero p {
    font-size: 14px;
  }

  .shanti-contact-section {
    padding: 55px 14px;
  }

  .shanti-contact-card,
  .shanti-contact-form-box,
  .shanti-contact-info-box {
    padding: 24px;
    border-radius: 20px;
  }

  .shanti-contact-form-box h2 {
    font-size: 28px;
  }

  .shanti-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .shanti-contact-submit-btn {
    width: 100%;
    justify-content: center;
  }

  .shanti-map-box {
    height: 230px;
  }
}
/* Blogs.php */
/* Blog Page */
.shanti-blog-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* Hero */
.shanti-blog-hero {
  padding: 90px 20px 80px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.12), rgba(223, 92, 152, 0.15)),
    radial-gradient(circle at top right, rgba(223, 92, 152, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(7, 157, 183, 0.22), transparent 35%);
}

.shanti-blog-hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.shanti-blog-tag,
.shanti-blog-small-tag,
.shanti-blog-title span,
.shanti-blog-cta span {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.shanti-blog-hero h1 {
  font-size: 50px;
  line-height: 1.12;
  color: #12191c;
  font-weight: 900;
  margin-bottom: 20px;
}

.shanti-blog-hero h1 span {
  color: #079db7;
  display: block;
}

.shanti-blog-hero p {
  color: #5f6f7f;
  font-size: 16px;
  line-height: 1.85;
  margin: 0 auto;
  max-width: 680px;
}

/* Main Section */
.shanti-blog-section {
  padding: 80px 20px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}

/* Featured Blog */
.shanti-featured-blog {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 45px;
  align-items: center;
  background: #ffffff;
  padding: 35px;
  border-radius: 30px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(7, 157, 183, 0.08);
  margin-bottom: 80px;
}

.shanti-featured-image {
  height: 430px;
  border-radius: 24px;
  overflow: hidden;
}

.shanti-featured-image img,
.shanti-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shanti-featured-content h2 {
  color: #12191c;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 18px;
}

.shanti-featured-content p {
  color: #647484;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 26px;
}

.shanti-blog-btn,
.shanti-blog-card-content a,
.shanti-blog-cta a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
}

.shanti-blog-btn,
.shanti-blog-cta a {
  background: #df5c98;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(223, 92, 152, 0.32);
}

.shanti-blog-btn span,
.shanti-blog-cta a span {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #12191c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
}

.shanti-blog-btn:hover,
.shanti-blog-cta a:hover {
  background: #079db7;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Section Title */
.shanti-blog-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.shanti-blog-title h2 {
  color: #12191c;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}

.shanti-blog-title p {
  color: #647484;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* Blog Cards */
.shanti-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 85px;
}

.shanti-blog-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(7, 157, 183, 0.08);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.shanti-blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(223, 92, 152, 0.3);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
}

.shanti-blog-image {
  height: 230px;
  overflow: hidden;
}

.shanti-blog-image img {
  transition: all 0.4s ease;
}

.shanti-blog-card:hover .shanti-blog-image img {
  transform: scale(1.08);
}

.shanti-blog-card-content {
  padding: 26px 24px 28px;
}

.shanti-blog-card-content > span {
  display: inline-block;
  background: #eef9fb;
  color: #079db7;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 12px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.shanti-blog-card:nth-child(even) .shanti-blog-card-content > span {
  background: #fdeaf3;
  color: #df5c98;
}

.shanti-blog-card-content h3 {
  color: #12191c;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 12px;
}

.shanti-blog-card-content p {
  color: #647484;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.shanti-blog-card-content a {
  color: #df5c98;
  font-size: 14px;
}

.shanti-blog-card-content a span {
  width: 26px;
  height: 26px;
  background: #fdeaf3;
  color: #df5c98;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

.shanti-blog-card-content a:hover {
  color: #079db7;
}

.shanti-blog-card-content a:hover span {
  background: #079db7;
  color: #ffffff;
}

/* CTA */
.shanti-blog-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.95), rgba(223, 92, 152, 0.95));
  padding: 45px;
  border-radius: 30px;
  overflow: hidden;
}

.shanti-blog-cta span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.shanti-blog-cta h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 12px;
}

.shanti-blog-cta p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .shanti-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .shanti-blog-hero {
    padding: 70px 18px;
  }

  .shanti-blog-hero h1 {
    font-size: 40px;
  }

  .shanti-blog-section {
    padding: 70px 18px;
  }

  .shanti-featured-blog {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .shanti-featured-content {
    text-align: center;
  }

  .shanti-featured-image {
    height: 380px;
  }

  .shanti-blog-cta {
    flex-direction: column;
    text-align: center;
  }

  .shanti-blog-cta p {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .shanti-blog-hero {
    padding: 55px 14px;
  }

  .shanti-blog-hero h1 {
    font-size: 31px;
  }

  .shanti-blog-hero p {
    font-size: 14px;
  }

  .shanti-blog-section {
    padding: 55px 14px;
  }

  .shanti-featured-blog {
    padding: 22px;
    border-radius: 22px;
    margin-bottom: 60px;
  }

  .shanti-featured-image {
    height: 270px;
    border-radius: 18px;
  }

  .shanti-featured-content h2,
  .shanti-blog-title h2,
  .shanti-blog-cta h2 {
    font-size: 28px;
  }

  .shanti-blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 65px;
  }

  .shanti-blog-image {
    height: 220px;
  }

  .shanti-blog-card-content {
    padding: 24px 22px;
  }

  .shanti-blog-cta {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .shanti-blog-btn,
  .shanti-blog-cta a {
    width: 100%;
    justify-content: center;
  }
}
/* Responsive */
/* ================================
   CROSS PLATFORM RESPONSIVE CSS
   Paste at the bottom of style.css
================================ */

/* Global Responsive Safety */
* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

a {
  word-break: break-word;
}

/* ================================
   Large Laptop / Small Desktop
================================ */
@media (max-width: 1199px) {
  .navbar-brand-modern img {
    max-width: 170px;
  }

  .nav-links-premium-list {
    gap: 18px;
  }

  .nav-links-premium-list > li > a {
    font-size: 14px;
  }

  .btn-glow-premium {
    padding: 11px 16px;
    font-size: 13px;
  }

  .hero-main-heading {
    font-size: 52px;
  }

  .clone-section-main-title,
  .blog-section-main-headline,
  .clean-section-heading {
    font-size: 38px;
  }

  .sexologist-quality-container {
    grid-template-columns: 320px 1fr;
    gap: 35px;
  }

  .sexologist-quality-left h2 {
    font-size: 34px;
  }
}

/* ================================
   Tablet
================================ */
@media (max-width: 991px) {
  .top-bar-clean {
    height: auto;
    padding: 8px 0;
  }

  .top-bar-clean .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-info-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px !important;
  }

  .top-info-links span,
  .top-info-links a {
    font-size: 13px;
  }

  .top-social-glow-circles {
    justify-content: center;
  }

  .navbar-modern-container {
    padding: 14px 0;
  }

  .navbar-modern-container .container {
    flex-direction: column;
    gap: 18px;
  }

  .navbar-brand-modern img {
    max-width: 180px;
  }

  .nav-links-premium-list {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 0;
    margin: 0;
  }

  .nav-links-premium-list > li > a {
    font-size: 14px;
    padding: 8px 0;
  }

  .nav-dropdown-premium {
    position: relative;
  }

  .submenu-premium-panel {
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    z-index: 999;
  }

  .nav-actions-glow {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .exact-hero-slider-section {
    min-height: auto;
  }

  .hero-slide-split-wrapper {
    min-height: 650px;
  }

  .hero-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-floating-content-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-main-heading {
    font-size: 44px;
  }

  .hero-vertical-nav-pill {
    right: 18px;
  }

  .stats-section .row {
    row-gap: 20px;
  }

  .stat-box {
    padding: 25px 15px;
  }

  .about-premium-layout .row {
    flex-direction: column;
  }

  .about-compound-image-frame {
    max-width: 620px;
    margin: 0 auto;
  }

  .about-content-blueprint {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }

  .arrow-feature-banner,
  .about-checklist-group,
  .about-action-footer-flex {
    text-align: left;
  }

  .about-action-footer-flex {
    justify-content: center;
  }

  .exact-clone-services-section .row.align-items-end {
    text-align: center;
  }

  .clone-slider-navigation-arrows {
    margin: 20px auto 0;
  }

  .exact-split-card-layout {
    grid-template-columns: 1fr;
  }

  .split-card-content-side,
  .split-card-image-side {
    width: 100%;
  }

  .split-card-image-side {
    min-height: 320px;
  }

  .clean-feature-card {
    height: 100%;
  }

  .blog-premium-section-layout .row.g-4 {
    justify-content: center;
  }

  .sexologist-quality-container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .sexologist-quality-left {
    position: static;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }

  .sexologist-doctor-box {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
  }

  .sexologist-quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main-grid-container {
    padding-top: 60px;
  }

  .footer-brand-column,
  .footer-links-column,
  .footer-contact-column {
    text-align: center;
  }

  .footer-social-pill-row {
    justify-content: center;
  }

  .footer-menu-links {
    padding-left: 0;
  }

  .footer-contact-info-item {
    justify-content: center;
    text-align: left;
  }
}

/* ================================
   Mobile Landscape / Small Tablet
================================ */
@media (max-width: 767px) {
  .top-info-links {
    flex-direction: column;
    gap: 6px !important;
  }

  .top-info-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
  }

  .navbar-modern-container .container {
    align-items: center;
  }

  .nav-links-premium-list {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 18px;
    padding: 10px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links-premium-list::-webkit-scrollbar {
    display: none;
  }

  .nav-links-premium-list li {
    flex: 0 0 auto;
  }

  .nav-links-premium-list > li > a {
    white-space: nowrap;
    font-size: 13px;
  }

  .submenu-premium-panel {
    position: absolute;
    top: 100%;
    left: 0;
    transform: none;
    min-width: 230px;
  }

  .btn-glow-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-slide-split-wrapper {
    min-height: 600px;
  }

  .hero-split-media {
    width: 100%;
  }

  .hero-split-accent-sidebar {
    display: none;
  }

  .hero-floating-content-card {
    width: calc(100% - 28px);
    padding: 34px 24px;
  }

  .hero-main-heading {
    font-size: 36px;
    line-height: 1.18;
  }

  .hero-card-header-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-pill-cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-vertical-nav-pill {
    right: 12px;
    top: auto;
    bottom: 22px;
    transform: none;
    flex-direction: row;
  }

  .stats-section .col-6 {
    width: 50%;
  }

  .stat-box h3 {
    font-size: 30px;
  }

  .stat-box p {
    font-size: 13px;
  }

  .about-premium-layout {
    padding: 45px 0 !important;
  }

  .about-premium-layout .container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .main-image-asymmetric {
    height: 420px;
  }

  .floating-inset-frame {
    width: 190px;
    height: 160px;
  }

  .experience-seal-wrapper {
    width: 120px;
    height: 120px;
  }

  .about-main-headline {
    font-size: 32px;
  }

  .about-lead-paragraph {
    font-size: 15px;
  }

  .arrow-feature-banner {
    flex-direction: column;
    text-align: center;
  }

  .about-checklist-group {
    text-align: left;
  }

  .about-action-footer-flex {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-split-action {
    width: 100%;
    justify-content: center;
  }

  .exact-clone-services-section {
    padding: 45px 0 !important;
  }

  .clone-section-main-title {
    font-size: 30px;
  }

  .split-card-content-side {
    padding: 30px 24px;
  }

  .split-card-content-side h3 {
    font-size: 24px;
  }

  .split-card-image-side {
    min-height: 280px;
  }

  .clone-intersecting-yellow-arrow {
    right: 20px;
    bottom: 20px;
  }

  .why-us-clean-premium {
    padding: 60px 0;
  }

  .clean-section-heading {
    font-size: 30px;
  }

  .clean-section-desc {
    font-size: 15px;
  }

  .blog-premium-section-layout {
    padding: 45px 0 !important;
  }

  .blog-premium-section-layout .container {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .blog-section-main-headline {
    font-size: 30px;
  }

  .attractive-image-frame-mask {
    height: 240px;
  }

  .attractive-text-compartment-box {
    padding: 24px;
  }

  .attractive-article-title-heading {
    font-size: 21px;
  }

  .sexologist-quality-section {
    padding: 60px 14px;
  }

  .sexologist-quality-grid {
    grid-template-columns: 1fr;
  }

  .sexologist-quality-left h2 {
    font-size: 30px;
  }

  .sexologist-quality-card {
    padding: 26px 22px;
  }

  .premium-curved-footer {
    margin-top: 40px;
  }

  .footer-main-grid-container {
    padding-top: 50px;
    padding-bottom: 35px;
  }

  .footer-logo {
    max-width: 180px;
  }

  .footer-widget-title {
    font-size: 20px;
  }

  .footer-contact-info-item {
    align-items: flex-start;
  }

  .footer-bottom-copyright-strip {
    text-align: center;
  }
}

/* ================================
   Mobile Portrait
================================ */
@media (max-width: 575px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .custom-premium-header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  .top-bar-clean {
    padding: 7px 0;
  }

  .top-info-links a,
  .top-info-links span {
    font-size: 12px;
  }

  .top-social-glow-circles a {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .navbar-modern-container {
    padding: 12px 0;
  }

  .navbar-brand-modern img {
    max-width: 155px;
  }

  .nav-links-premium-list {
    padding: 9px 2px;
    gap: 16px;
  }

  .nav-links-premium-list > li > a {
    font-size: 12.5px;
  }

  .btn-glow-premium {
    padding: 11px 16px;
    font-size: 12px;
  }

  .btn-glow-circle {
    width: 34px;
    height: 34px;
  }

  .hero-slide-split-wrapper {
    min-height: 560px;
  }

  .hero-floating-content-card {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .hero-micro-tag {
    font-size: 11px;
  }

  .card-dashed-route-vector {
    width: 42px;
    height: 42px;
  }

  .hero-title-accent-block {
    gap: 14px;
  }

  .vertical-accent-line {
    width: 4px;
  }

  .hero-main-heading {
    font-size: 29px;
  }

  .hero-pill-cta-btn {
    padding: 13px 16px;
    font-size: 12px;
  }

  .cta-arrow-circle {
    width: 32px;
    height: 32px;
  }

  .hero-pill-btn {
    width: 38px;
    height: 38px;
  }

  .stats-section {
    padding: 35px 0;
  }

  .stats-section .col-6 {
    width: 50%;
  }

  .stat-box {
    padding: 22px 10px;
    border-radius: 16px;
  }

  .stat-box h3 {
    font-size: 26px;
  }

  .stat-box p {
    font-size: 12px;
  }

  .main-image-asymmetric {
    height: 340px;
    border-radius: 22px;
  }

  .vertical-challenge-tag {
    display: none;
  }

  .floating-inset-frame {
    width: 150px;
    height: 125px;
    right: 12px;
    bottom: 18px;
    border-radius: 16px;
  }

  .experience-seal-wrapper {
    width: 95px;
    height: 95px;
    left: 12px;
    bottom: 18px;
  }

  .seal-number {
    font-size: 24px;
  }

  .seal-text {
    font-size: 10px;
  }

  .about-main-headline {
    font-size: 28px;
  }

  .slanted-micro-tag span {
    font-size: 11px;
  }

  .arrow-feature-banner {
    padding: 20px;
    border-radius: 18px;
  }

  .banner-icon-box {
    width: 54px;
    height: 54px;
  }

  .banner-text-box h3 {
    font-size: 19px;
  }

  .checklist-item-row {
    align-items: flex-start;
    font-size: 14px;
  }

  .clone-section-main-title,
  .clean-section-heading,
  .blog-section-main-headline {
    font-size: 27px;
  }

  .clone-micro-tag-badge,
  .attractive-micro-badge {
    font-size: 11px;
  }

  .clone-slider-navigation-arrows {
    gap: 10px;
  }

  .clone-arrow-btn {
    width: 42px;
    height: 42px;
  }

  .split-card-content-side {
    padding: 26px 20px;
  }

  .split-card-content-side h3 {
    font-size: 22px;
  }

  .split-card-content-side p {
    font-size: 14px;
  }

  .split-card-image-side {
    min-height: 230px;
  }

  .clone-card-icon-box {
    width: 54px;
    height: 54px;
  }

  .clean-feature-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .clean-card-icon-wrapper {
    width: 58px;
    height: 58px;
  }

  .clean-feature-card h3 {
    font-size: 21px;
  }

  .attractive-image-frame-mask {
    height: 215px;
  }

  .attractive-text-compartment-box {
    padding: 22px 20px;
  }

  .article-meta-string-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .meta-item-separator {
    display: none;
  }

  .attractive-article-title-heading {
    font-size: 19px;
  }

  .premium-read-more-link-btn {
    width: 100%;
    justify-content: space-between;
  }

  .sexologist-quality-section {
    padding: 55px 14px;
  }

  .sexologist-quality-left h2 {
    font-size: 28px;
  }

  .sexologist-quality-left > p {
    font-size: 14px;
  }

  .sexologist-doctor-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 20px;
  }

  .sexologist-quality-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .sexologist-quality-card h3 {
    font-size: 18px;
  }

  .sexologist-quality-card p {
    font-size: 13.5px;
  }

  .footer-top-curve-mask {
    height: 55px;
  }

  .premium-curved-footer {
    padding-top: 40px;
  }

  .footer-main-grid-container {
    padding-top: 35px;
  }

  .footer-logo {
    max-width: 160px;
  }

  .footer-bio-text {
    font-size: 14px;
  }

  .footer-social-pill-row a {
    width: 38px;
    height: 38px;
  }

  .footer-menu-links li a {
    font-size: 14px;
  }

  .footer-contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-icon-wrapper {
    margin-bottom: 8px;
  }

  .contact-text-wrapper strong,
  .contact-text-wrapper small {
    word-break: break-word;
  }

  .copyright-text {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-back-to-top-btn {
    width: 40px;
    height: 40px;
  }
}

/* ================================
   Extra Small Devices
================================ */
@media (max-width: 380px) {
  .navbar-brand-modern img {
    max-width: 140px;
  }

  .hero-main-heading {
    font-size: 25px;
  }

  .hero-floating-content-card {
    padding: 24px 15px;
  }

  .stat-box h3 {
    font-size: 23px;
  }

  .stat-box p {
    font-size: 11px;
  }

  .main-image-asymmetric {
    height: 300px;
  }

  .floating-inset-frame {
    width: 130px;
    height: 110px;
  }

  .experience-seal-wrapper {
    width: 84px;
    height: 84px;
  }

  .about-main-headline,
  .clone-section-main-title,
  .clean-section-heading,
  .blog-section-main-headline,
  .sexologist-quality-left h2 {
    font-size: 24px;
  }

  .split-card-image-side {
    min-height: 205px;
  }

  .attractive-image-frame-mask {
    height: 195px;
  }

  .sexologist-quality-card h3 {
    font-size: 17px;
  }
}
/* Mobile Toggle Button */
.mobile-nav-toggle {
  display: none;
  border: none;
  outline: none;
  background: #df5c98;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(223, 92, 152, 0.35);
}

/* Desktop */
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none !important;
  }

  .nav-links-premium-list {
    display: flex !important;
  }
}

/* Tablet + Mobile */
@media (max-width: 991px) {
  .navbar-modern-container .container {
    position: relative;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .navbar-brand-modern {
    order: 1;
  }

  .mobile-nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .nav-actions-glow {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 14px;
  }

  .nav-links-premium-list {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    background: #ffffff;
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    gap: 0;
    overflow: visible;
  }

  .nav-links-premium-list.mobile-menu-open {
    display: flex;
  }

  .nav-links-premium-list > li {
    width: 100%;
    border-bottom: 1px solid rgba(7, 157, 183, 0.1);
  }

  .nav-links-premium-list > li:last-child {
    border-bottom: none;
  }

  .nav-links-premium-list > li > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 4px;
    font-size: 14px;
    color: #12191c;
  }

  .nav-dropdown-premium {
    position: relative;
  }

  .submenu-premium-panel {
    position: static;
    display: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 100%;
    box-shadow: none;
    background: #f8fcfd;
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 12px;
  }

  .nav-dropdown-premium.mobile-submenu-open .submenu-premium-panel {
    display: block;
  }

  .submenu-premium-panel li a {
    display: block;
    padding: 10px 6px;
    font-size: 13px;
    color: #12191c;
  }

  .dropdown-arrow {
    transition: all 0.3s ease;
  }

  .nav-dropdown-premium.mobile-submenu-open .dropdown-arrow {
    transform: rotate(180deg);
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .navbar-brand-modern img {
    max-width: 150px;
  }

  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .nav-links-premium-list {
    padding: 14px;
    border-radius: 16px;
  }

  .nav-actions-glow {
    margin-top: 12px;
  }

  .btn-glow-premium {
    width: 100%;
    justify-content: center;
  }
}
/* Toggle */
/* ===============================
   FIXED RESPONSIVE HEADER
================================ */

.mobile-nav-toggle {
  display: none;
}

/* Desktop Normal */
@media (min-width: 992px) {
  .navbar-modern-container .container {
    flex-wrap: nowrap;
  }

  .nav-links-premium-list {
    display: flex !important;
  }
}

/* Tablet + Mobile Header */
@media (max-width: 991px) {
  .custom-premium-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
  }

  .top-bar-clean {
    display: none;
  }

  .navbar-modern-container {
    padding: 10px 0;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  }

  .navbar-modern-container .container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 10px;
  }

  .navbar-brand-modern {
    display: flex;
    align-items: center;
    max-width: 170px;
    flex: 0 0 auto;
  }

  .navbar-brand-modern img {
    width: 160px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .mobile-nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: #df5c98;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(223, 92, 152, 0.35);
    margin-left: auto;
    z-index: 10001;
  }

  .nav-actions-glow {
    display: none !important;
  }

  .nav-links-premium-list {
    position: fixed;
    top: 72px;
    left: 14px;
    right: 14px;
    width: auto;
    max-height: calc(100vh - 90px);
    overflow-y: auto;

    display: none;
    flex-direction: column;
    gap: 0;

    background: #ffffff;
    padding: 14px;
    margin: 0;
    border-radius: 18px;
    list-style: none;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(7, 157, 183, 0.1);
    z-index: 10000;
  }

  .nav-links-premium-list.mobile-menu-open {
    display: flex;
  }

  .nav-links-premium-list > li {
    width: 100%;
    border-bottom: 1px solid rgba(7, 157, 183, 0.1);
  }

  .nav-links-premium-list > li:last-child {
    border-bottom: none;
  }

  .nav-links-premium-list > li > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #12191c;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 6px;
    text-decoration: none;
  }

  .nav-links-premium-list > li.active > a {
    color: #079db7;
  }

  .nav-dropdown-premium {
    position: relative;
  }

  .submenu-premium-panel {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    width: 100%;
    min-width: 100%;
    background: #f8fcfd;
    box-shadow: none;
    border-radius: 14px;
    padding: 8px 12px;
    margin: 0 0 12px;
  }

  .nav-dropdown-premium.mobile-submenu-open .submenu-premium-panel {
    display: block;
  }

  .submenu-premium-panel li {
    list-style: none;
  }

  .submenu-premium-panel li a {
    display: block;
    padding: 10px 4px;
    font-size: 14px;
    font-weight: 600;
    color: #4f6170;
    text-decoration: none;
  }

  .dropdown-arrow {
    transition: 0.3s ease;
  }

  .nav-dropdown-premium.mobile-submenu-open .dropdown-arrow {
    transform: rotate(180deg);
  }

  body.mobile-menu-active::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(18, 25, 28, 0.35);
    z-index: 9998;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .navbar-modern-container {
    padding: 9px 0;
  }

  .navbar-brand-modern {
    max-width: 145px;
  }

  .navbar-brand-modern img {
    width: 145px;
  }

  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }

  .nav-links-premium-list {
    top: 62px;
    left: 10px;
    right: 10px;
    padding: 12px;
    border-radius: 16px;
  }

  .nav-links-premium-list > li > a {
    font-size: 14px;
    padding: 13px 5px;
  }
}

/* Extra Small */
@media (max-width: 380px) {
  .navbar-brand-modern {
    max-width: 130px;
  }

  .navbar-brand-modern img {
    width: 130px;
  }

  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}
/* About Us */
/* About Us Page */
.aboutus-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* Hero */
.aboutus-hero-section {
  padding: 90px 20px 80px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.12), rgba(223, 92, 152, 0.15)),
    radial-gradient(circle at top right, rgba(223, 92, 152, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(7, 157, 183, 0.22), transparent 35%);
}

.aboutus-hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.aboutus-tag,
.aboutus-small-tag,
.aboutus-section-title span,
.aboutus-cta-box span {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.aboutus-hero-content h1 {
  color: #12191c;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 20px;
}

.aboutus-hero-content h1 span {
  display: block;
  color: #079db7;
}

.aboutus-hero-content p {
  color: #5f6f7f;
  font-size: 16px;
  line-height: 1.85;
  max-width: 720px;
  margin: 0 auto 30px;
}

.aboutus-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.aboutus-primary-btn,
.aboutus-secondary-btn,
.aboutus-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
}

.aboutus-primary-btn,
.aboutus-cta-box a {
  background: #df5c98;
  color: #ffffff;
  padding: 15px 28px;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(223, 92, 152, 0.32);
}

.aboutus-primary-btn span,
.aboutus-cta-box a span {
  width: 28px;
  height: 28px;
  background: #ffffff;
  color: #12191c;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.aboutus-secondary-btn {
  color: #079db7;
  background: #ffffff;
  padding: 15px 26px;
  border-radius: 50px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.aboutus-primary-btn:hover,
.aboutus-cta-box a:hover {
  background: #079db7;
  color: #ffffff;
  transform: translateY(-3px);
}

.aboutus-secondary-btn:hover {
  background: #079db7;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Main */
.aboutus-main-section {
  padding: 85px 20px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}

/* Doctor */
.aboutus-doctor-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.aboutus-doctor-image {
  position: relative;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.13);
}

.aboutus-doctor-image img,
.aboutus-clinic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aboutus-experience-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.aboutus-experience-badge h3 {
  color: #079db7;
  font-size: 36px;
  font-weight: 900;
  margin: 0;
}

.aboutus-experience-badge p {
  color: #6f7f8f;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
}

.aboutus-doctor-content h2,
.aboutus-clinic-content h2,
.aboutus-section-title h2,
.aboutus-approach-box h2,
.aboutus-cta-box h2 {
  color: #12191c;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 18px;
}

.aboutus-doctor-content p,
.aboutus-clinic-content p,
.aboutus-section-title p,
.aboutus-feature-card p,
.aboutus-approach-box p,
.aboutus-cta-box p {
  color: #647484;
  font-size: 15px;
  line-height: 1.85;
}

.aboutus-doctor-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 25px;
}

.aboutus-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #ffffff;
  padding: 15px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.aboutus-point span {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.aboutus-point p {
  margin: 0;
  color: #12191c;
  font-size: 14px;
  font-weight: 700;
}

/* Stats */
.aboutus-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 85px;
}

.aboutus-stat-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(7, 157, 183, 0.08);
}

.aboutus-stat-card h3 {
  color: #079db7;
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
}

.aboutus-stat-card p {
  color: #647484;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

/* Clinic */
.aboutus-clinic-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
  background: #ffffff;
  border-radius: 32px;
  padding: 45px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
  margin-bottom: 85px;
}

.aboutus-clinic-image {
  height: 470px;
  border-radius: 28px;
  overflow: hidden;
}

.aboutus-highlight-box {
  display: flex;
  gap: 15px;
  background: #f1fbfd;
  border-left: 5px solid #079db7;
  padding: 20px;
  border-radius: 16px;
  margin-top: 25px;
}

.aboutus-highlight-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #079db7;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.aboutus-highlight-box h4 {
  color: #12191c;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 7px;
}

.aboutus-highlight-box p {
  margin: 0;
  font-size: 14px;
}

/* Section Title */
.aboutus-section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.aboutus-section-title h2 {
  margin-bottom: 14px;
}

.aboutus-section-title p {
  margin: 0;
}

/* Features */
.aboutus-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 85px;
}

.aboutus-feature-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(7, 157, 183, 0.08);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.aboutus-feature-card:hover {
  transform: translateY(-7px);
  border-color: rgba(223, 92, 152, 0.28);
}

.aboutus-feature-icon {
  width: 48px;
  height: 48px;
  background: #eef9fb;
  color: #079db7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.aboutus-feature-card:nth-child(even) .aboutus-feature-icon {
  background: #fdeaf3;
  color: #df5c98;
}

.aboutus-feature-card h3 {
  color: #12191c;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
}

.aboutus-feature-card p {
  margin: 0;
  font-size: 14px;
}

/* Approach */
.aboutus-approach-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: center;
  background: #12191c;
  border-radius: 30px;
  padding: 45px;
  margin-bottom: 85px;
}

.aboutus-approach-box h2 {
  color: #ffffff;
}

.aboutus-approach-box p {
  color: #d7e3e8;
}

.aboutus-approach-list {
  display: grid;
  gap: 14px;
}

.aboutus-approach-item {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
}

.aboutus-approach-item span {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #df5c98;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.aboutus-approach-item p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
}

/* CTA */
.aboutus-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.95), rgba(223, 92, 152, 0.95));
  padding: 45px;
  border-radius: 30px;
}

.aboutus-cta-box span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.aboutus-cta-box h2,
.aboutus-cta-box p {
  color: #ffffff;
}

.aboutus-cta-box p {
  margin: 0;
  max-width: 650px;
}

/* Responsive */
@media (max-width: 1199px) {
  .aboutus-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .aboutus-hero-section {
    padding: 70px 18px;
  }

  .aboutus-hero-content h1 {
    font-size: 42px;
  }

  .aboutus-main-section {
    padding: 70px 18px;
  }

  .aboutus-doctor-grid,
  .aboutus-clinic-grid,
  .aboutus-approach-box {
    grid-template-columns: 1fr;
  }

  .aboutus-doctor-content,
  .aboutus-clinic-content {
    text-align: center;
  }

  .aboutus-doctor-points {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }

  .aboutus-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutus-doctor-image,
  .aboutus-clinic-image {
    height: 430px;
  }

  .aboutus-clinic-grid,
  .aboutus-approach-box {
    padding: 34px;
  }

  .aboutus-cta-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .aboutus-hero-section {
    padding: 55px 14px;
  }

  .aboutus-hero-content h1 {
    font-size: 31px;
  }

  .aboutus-hero-content p {
    font-size: 14px;
  }

  .aboutus-primary-btn,
  .aboutus-secondary-btn,
  .aboutus-cta-box a {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 13px;
  }

  .aboutus-main-section {
    padding: 55px 14px;
  }

  .aboutus-doctor-image,
  .aboutus-clinic-image {
    height: 320px;
    border-radius: 22px;
  }

  .aboutus-experience-badge {
    left: 15px;
    bottom: 15px;
    padding: 14px 18px;
  }

  .aboutus-experience-badge h3 {
    font-size: 28px;
  }

  .aboutus-doctor-content h2,
  .aboutus-clinic-content h2,
  .aboutus-section-title h2,
  .aboutus-approach-box h2,
  .aboutus-cta-box h2 {
    font-size: 28px;
  }

  .aboutus-doctor-points,
  .aboutus-stats-grid,
  .aboutus-feature-grid {
    grid-template-columns: 1fr;
  }

  .aboutus-clinic-grid,
  .aboutus-approach-box,
  .aboutus-cta-box {
    padding: 24px;
    border-radius: 22px;
  }

  .aboutus-highlight-box,
  .aboutus-approach-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .aboutus-feature-card {
    padding: 24px;
  }
}
/* CLinic View  */
/* Clinic View Page */
.clinic-view-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* Hero */
.clinic-view-hero {
  padding: 90px 20px 80px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.12), rgba(223, 92, 152, 0.15)),
    radial-gradient(circle at top right, rgba(223, 92, 152, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(7, 157, 183, 0.22), transparent 35%);
}

.clinic-view-hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.clinic-view-tag,
.clinic-gallery-title span {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.clinic-view-hero h1 {
  font-size: 50px;
  line-height: 1.12;
  color: #12191c;
  font-weight: 900;
  margin-bottom: 20px;
}

.clinic-view-hero h1 span {
  display: block;
  color: #079db7;
}

.clinic-view-hero p {
  color: #5f6f7f;
  font-size: 16px;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* Gallery */
.clinic-gallery-section {
  padding: 85px 20px 95px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
}

.clinic-gallery-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.clinic-gallery-title h2 {
  color: #12191c;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}

.clinic-gallery-title p {
  color: #647484;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* Cards */
.clinic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.clinic-view-card {
  position: relative;
  height: 360px;
  perspective: 1200px;
  cursor: pointer;
}

.clinic-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.clinic-view-card:hover .clinic-card-inner,
.clinic-view-card.active .clinic-card-inner {
  transform: rotateY(180deg);
}

.clinic-card-front,
.clinic-card-back {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
}

.clinic-card-front {
  background: #ffffff;
}

.clinic-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom Yellow/Pink Line Like Reference */
.clinic-card-line {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 5px;
  border-radius: 20px;
  background: #df5c98;
  box-shadow: 0 8px 20px rgba(223, 92, 152, 0.4);
}

.clinic-card-back {
  background:
    linear-gradient(135deg, rgba(7, 157, 183, 0.98), rgba(18, 25, 28, 0.98));
  transform: rotateY(180deg);
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clinic-card-small-line {
  width: 58px;
  height: 5px;
  border-radius: 20px;
  background: #df5c98;
  margin-bottom: 24px;
}

.clinic-card-back h3 {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 18px;
}

.clinic-card-back p {
  color: #d7e3e8;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.clinic-view-btn {
  width: fit-content;
  border: none;
  outline: none;
  background: #df5c98;
  color: #ffffff;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
}

.clinic-view-btn:hover {
  background: #ffffff;
  color: #12191c;
  transform: translateY(-3px);
}

/* Lightbox */
.clinic-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 25, 28, 0.88);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.clinic-lightbox.show {
  display: flex;
}

.clinic-lightbox img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.clinic-lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1199px) {
  .clinic-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .clinic-view-hero {
    padding: 70px 18px;
  }

  .clinic-view-hero h1 {
    font-size: 40px;
  }

  .clinic-gallery-section {
    padding: 70px 18px 80px;
  }

  .clinic-gallery-title h2 {
    font-size: 34px;
  }

  .clinic-view-card {
    height: 340px;
  }
}

@media (max-width: 575px) {
  .clinic-view-hero {
    padding: 55px 14px;
  }

  .clinic-view-hero h1 {
    font-size: 31px;
  }

  .clinic-view-hero p {
    font-size: 14px;
  }

  .clinic-gallery-section {
    padding: 55px 14px 65px;
  }

  .clinic-gallery-title {
    margin-bottom: 36px;
  }

  .clinic-gallery-title h2 {
    font-size: 28px;
  }

  .clinic-gallery-title p {
    font-size: 14px;
  }

  .clinic-gallery-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .clinic-view-card {
    height: 330px;
  }

  .clinic-card-inner,
  .clinic-card-front,
  .clinic-card-back {
    border-radius: 24px;
  }

  .clinic-card-back {
    padding: 32px 26px;
  }

  .clinic-card-back h3 {
    font-size: 27px;
  }

  .clinic-card-back p {
    font-size: 14px;
  }

  .clinic-lightbox img {
    max-width: 96%;
    border-radius: 18px;
  }

  .clinic-lightbox-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 380px) {
  .clinic-view-card {
    height: 300px;
  }

  .clinic-card-back h3 {
    font-size: 24px;
  }
}
/* ===============================
   Clinic View Page - Fixed Smooth
================================ */

.clinic-view-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* Hero */
.clinic-view-hero {
  padding: 90px 20px 80px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.12), rgba(223, 92, 152, 0.15)),
    radial-gradient(circle at top right, rgba(223, 92, 152, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(7, 157, 183, 0.22), transparent 35%);
}

.clinic-view-hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.clinic-view-tag,
.clinic-gallery-title span {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.clinic-view-hero h1 {
  font-size: 50px;
  line-height: 1.12;
  color: #12191c;
  font-weight: 900;
  margin-bottom: 20px;
}

.clinic-view-hero h1 span {
  display: block;
  color: #079db7;
}

.clinic-view-hero p {
  color: #5f6f7f;
  font-size: 16px;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* Gallery */
.clinic-gallery-section {
  padding: 85px 20px 95px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  overflow: hidden;
}

.clinic-gallery-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.clinic-gallery-title h2 {
  color: #12191c;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}

.clinic-gallery-title p {
  color: #647484;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.clinic-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Card */
.clinic-pro-card {
  position: relative;
  height: 430px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  isolation: isolate;
}

.clinic-pro-card.clinic-animate {
  opacity: 0;
  transform: translateY(40px);
}

.clinic-pro-card.clinic-animate.show {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.clinic-pro-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.clinic-pro-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.clinic-pro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.clinic-pro-card:hover .clinic-pro-media img {
  transform: scale(1.12);
}

.clinic-pro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 25, 28, 0.05) 0%, rgba(18, 25, 28, 0.35) 45%, rgba(18, 25, 28, 0.92) 100%),
    linear-gradient(120deg, rgba(7, 157, 183, 0.24), rgba(223, 92, 152, 0.18));
}

.clinic-pro-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 28px;
  color: #ffffff;
  transform: translateY(12px);
  transition: transform 0.45s ease;
}

.clinic-pro-card:hover .clinic-pro-content {
  transform: translateY(0);
}

.clinic-pro-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #df5c98;
  color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(223, 92, 152, 0.35);
}

.clinic-pro-content h3 {
  color: #ffffff;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 10px;
}

.clinic-pro-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.clinic-pro-content button {
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #12191c;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.clinic-pro-card:hover .clinic-pro-content button {
  opacity: 1;
  transform: translateY(0);
}

.clinic-pro-content button:hover {
  background: #df5c98;
  color: #ffffff;
}

/* Lightbox */
.clinic-pro-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(18, 25, 28, 0.88);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.clinic-pro-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.clinic-pro-lightbox img {
  max-width: 88%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.clinic-pro-close,
.clinic-pro-nav {
  border: none;
  outline: none;
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #12191c;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.clinic-pro-close {
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 20px;
}

.clinic-pro-nav {
  width: 52px;
  height: 52px;
  font-size: 18px;
}

.clinic-pro-prev {
  left: 28px;
}

.clinic-pro-next {
  right: 28px;
}

.clinic-pro-close:hover,
.clinic-pro-nav:hover {
  background: #df5c98;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1199px) {
  .clinic-pro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .clinic-view-hero {
    padding: 70px 18px;
  }

  .clinic-view-hero h1 {
    font-size: 40px;
  }

  .clinic-gallery-section {
    padding: 70px 18px 80px;
  }

  .clinic-pro-card {
    height: 390px;
  }

  .clinic-pro-content button {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575px) {
  .clinic-view-hero {
    padding: 55px 14px;
  }

  .clinic-view-hero h1 {
    font-size: 31px;
  }

  .clinic-view-hero p {
    font-size: 14px;
  }

  .clinic-gallery-section {
    padding: 55px 14px 65px;
  }

  .clinic-gallery-title h2 {
    font-size: 28px;
  }

  .clinic-pro-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .clinic-pro-card {
    height: 360px;
    border-radius: 24px;
  }

  .clinic-pro-content {
    padding: 24px;
  }

  .clinic-pro-content h3 {
    font-size: 24px;
  }

  .clinic-pro-lightbox img {
    max-width: 96%;
    border-radius: 18px;
  }

  .clinic-pro-nav {
    width: 42px;
    height: 42px;
    bottom: 22px;
    top: auto;
  }

  .clinic-pro-prev {
    left: calc(50% - 52px);
  }

  .clinic-pro-next {
    right: calc(50% - 52px);
  }
}
/* Testimonials */
/* Testimonials Page */
.testimonial-container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* Hero */
.testimonial-hero-section {
  padding: 90px 20px 80px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.12), rgba(223, 92, 152, 0.15)),
    radial-gradient(circle at top right, rgba(223, 92, 152, 0.25), transparent 35%),
    radial-gradient(circle at bottom left, rgba(7, 157, 183, 0.22), transparent 35%);
}

.testimonial-hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-tag,
.testimonial-section-title span,
.testimonial-cta-box span {
  display: inline-block;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.testimonial-hero-content h1 {
  color: #12191c;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 20px;
}

.testimonial-hero-content h1 span {
  display: block;
  color: #079db7;
}

.testimonial-hero-content p {
  color: #5f6f7f;
  font-size: 16px;
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

/* Main */
.testimonial-page-section {
  padding: 85px 20px 95px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcfd 100%);
  overflow: hidden;
}

/* Rating Box */
.testimonial-rating-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 80px;
}

.testimonial-rating-left {
  background:
    linear-gradient(135deg, rgba(7, 157, 183, 0.96), rgba(223, 92, 152, 0.96));
  border-radius: 30px;
  padding: 38px;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(7, 157, 183, 0.22);
}

.testimonial-rating-left span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
}

.testimonial-rating-left h2 {
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.testimonial-rating-left p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.testimonial-rating-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-rating-item {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(7, 157, 183, 0.08);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.07);
}

.testimonial-rating-item h3 {
  color: #079db7;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 8px;
}

.testimonial-rating-item p {
  color: #647484;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

/* Title */
.testimonial-section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.testimonial-section-title h2 {
  color: #12191c;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 14px;
}

.testimonial-section-title p {
  color: #647484;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* Grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 85px;
}

/* Card */
.testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  border: 1px solid rgba(7, 157, 183, 0.08);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.testimonial-card.testimonial-animate {
  opacity: 0;
  transform: translateY(40px);
}

.testimonial-card.testimonial-animate.show {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: #079db7;
}

.testimonial-card:nth-child(even)::before {
  background: #df5c98;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: rgba(223, 92, 152, 0.3);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.13);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(7, 157, 183, 0.25);
}

.testimonial-card:nth-child(even) .testimonial-avatar {
  background: #df5c98;
  box-shadow: 0 10px 25px rgba(223, 92, 152, 0.25);
}

.testimonial-top h3 {
  color: #12191c;
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 4px;
}

.testimonial-top p {
  color: #647484;
  font-size: 13px;
  margin: 0;
  font-weight: 700;
}

.testimonial-stars {
  color: #f5b301;
  font-size: 15px;
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-text {
  color: #647484;
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

.testimonial-quote-icon {
  position: absolute;
  right: 24px;
  bottom: 18px;
  color: rgba(7, 157, 183, 0.08);
  font-size: 54px;
}

.testimonial-card:nth-child(even) .testimonial-quote-icon {
  color: rgba(223, 92, 152, 0.09);
}

/* CTA */
.testimonial-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  background:
    linear-gradient(90deg, rgba(7, 157, 183, 0.95), rgba(223, 92, 152, 0.95));
  padding: 45px;
  border-radius: 30px;
}

.testimonial-cta-box span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.testimonial-cta-box h2 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 12px;
}

.testimonial-cta-box p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

.testimonial-cta-box a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #12191c;
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonial-cta-box a span {
  width: 28px;
  height: 28px;
  background: #df5c98;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  margin: 0;
}

.testimonial-cta-box a:hover {
  transform: translateY(-3px);
  background: #12191c;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1199px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .testimonial-hero-section {
    padding: 70px 18px;
  }

  .testimonial-hero-content h1 {
    font-size: 42px;
  }

  .testimonial-page-section {
    padding: 70px 18px 80px;
  }

  .testimonial-rating-box {
    grid-template-columns: 1fr;
  }

  .testimonial-rating-right {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-section-title h2 {
    font-size: 34px;
  }

  .testimonial-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-cta-box p {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .testimonial-hero-section {
    padding: 55px 14px;
  }

  .testimonial-hero-content h1 {
    font-size: 31px;
  }

  .testimonial-hero-content p {
    font-size: 14px;
  }

  .testimonial-page-section {
    padding: 55px 14px 65px;
  }

  .testimonial-rating-left {
    padding: 28px 24px;
    border-radius: 22px;
    text-align: center;
  }

  .testimonial-rating-left h2 {
    font-size: 48px;
  }

  .testimonial-rating-right {
    grid-template-columns: 1fr;
  }

  .testimonial-section-title {
    margin-bottom: 35px;
  }

  .testimonial-section-title h2 {
    font-size: 28px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 65px;
  }

  .testimonial-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .testimonial-top h3 {
    font-size: 17px;
  }

  .testimonial-text {
    font-size: 13.5px;
  }

  .testimonial-cta-box {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .testimonial-cta-box h2 {
    font-size: 27px;
  }

  .testimonial-cta-box a {
    width: 100%;
    justify-content: center;
  }
}
/* Languages Switcher *//* Language Switcher */
.website-language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher-button {
  border: 1px solid rgba(7, 157, 183, 0.16);
  outline: none;
  background: #ffffff;
  color: #12191c;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.language-switcher-button:hover {
  border-color: #df5c98;
  color: #df5c98;
}

.language-switcher-button > i:first-child {
  color: #079db7;
  font-size: 16px;
}

.language-switcher-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.website-language-switcher.open .language-switcher-arrow {
  transform: rotate(180deg);
}

.language-switcher-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 180px;
  background: #ffffff;
  border: 1px solid rgba(7, 157, 183, 0.12);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 10020;
}

.website-language-switcher.open .language-switcher-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #12191c;
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.25s ease;
}

.language-switcher-menu a span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #eef9fb;
  color: #079db7;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.language-switcher-menu a:hover,
.language-switcher-menu a.active {
  background: #fdeaf3;
  color: #df5c98;
}

.language-switcher-menu a.active span {
  background: #df5c98;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .website-language-switcher {
    margin-left: auto;
  }

  .language-switcher-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
  }

  .language-switcher-button span,
  .language-switcher-arrow {
    display: none;
  }

  .language-switcher-menu {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    width: auto;
  }
}

@media (max-width: 575px) {
  .language-switcher-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .language-switcher-menu {
    top: 62px;
    left: 10px;
    right: 10px;
  }
}
/* Header Dr's Picture */



/* Responsive code */
/* =====================================================
   RESPONSIVE HEADER FIX
   Switch to mobile navigation below 1200px
===================================================== */

@media (max-width: 1199.98px) {

    .navbar-modern-container .container {
        position: relative;
        min-height: 74px;
        padding-left: 16px;
        padding-right: 16px;
        gap: 10px;
        flex-wrap: nowrap !important;
    }

    /* Logo */
    .navbar-brand-modern,
    .doctor-header-brand {
        order: 1;
        flex: 0 1 auto;
        min-width: 0;
        margin-right: 0 !important;
    }

    /* Language button */
    .website-language-switcher {
        order: 2;
        margin-left: auto !important;
        flex-shrink: 0;
    }

    /* Hamburger button */
    .mobile-nav-toggle {
        order: 3;
        width: 44px;
        height: 44px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #079db7;
        color: #ffffff;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 19px;
        cursor: pointer;
        z-index: 10003;
    }

    /* Hide desktop appointment button */
    .nav-actions-glow {
        display: none !important;
    }

    /* Mobile dropdown menu */
    .nav-links-premium-list {
        position: absolute !important;
        top: calc(100% + 1px);
        left: 12px;
        right: 12px;
        width: auto !important;
        max-height: calc(100vh - 145px);
        overflow-y: auto;
        margin: 0 !important;
        padding: 14px !important;
        border: 1px solid rgba(7, 157, 183, 0.15);
        border-radius: 0 0 18px 18px;
        background: #ffffff;
        box-shadow: 0 20px 45px rgba(18, 25, 28, 0.14);
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 4px !important;
        z-index: 10000;

        display: none !important;
    }

    .nav-links-premium-list.mobile-menu-open {
        display: flex !important;
    }

    .nav-links-premium-list > li {
        width: 100% !important;
        display: block !important;
    }

    .nav-links-premium-list > li > a {
        width: 100% !important;
        min-height: 46px;
        padding: 11px 13px !important;
        border-radius: 10px;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        font-size: 15px !important;
        line-height: 1.4 !important;
        text-align: left;

        /* Prevent Gujarati/Hindi words breaking letter by letter */
        white-space: normal !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .nav-links-premium-list > li > a:hover {
        color: #df5c98;
        background: rgba(223, 92, 152, 0.08);
    }

    /* Treatment submenu */
    .submenu-premium-panel {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        margin: 4px 0 8px !important;
        padding: 7px !important;
        border: 0 !important;
        border-radius: 10px;
        background: #f2fbfc;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        display: none !important;
    }

    .nav-dropdown-premium.mobile-submenu-open
    .submenu-premium-panel {
        display: block !important;
    }

    .submenu-premium-panel li {
        width: 100%;
    }

    .submenu-premium-panel li a {
        width: 100%;
        padding: 10px 12px !important;
        display: block;
        font-size: 14px !important;
        line-height: 1.4;
        white-space: normal !important;
        word-break: keep-all !important;
    }

    .nav-dropdown-premium.mobile-submenu-open
    .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Hide long address at tablet width */
    .top-info-links > span:nth-child(3) {
        display: none !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {

    .navbar-modern-container .container {
        min-height: 66px;
        padding-left: 10px;
        padding-right: 10px;
        gap: 7px;
    }

    .mobile-nav-toggle {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .language-switcher-button {
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        justify-content: center;
    }

    .language-switcher-button > span,
    .language-switcher-arrow {
        display: none !important;
    }

    .nav-links-premium-list {
        left: 8px;
        right: 8px;
        padding: 10px !important;
    }

    .nav-links-premium-list > li > a {
        font-size: 14px !important;
    }
}
/* =========================================
   FIX HERO UP/DOWN NAVIGATION BUTTONS
========================================= */

.exact-hero-slider-section {
    position: relative;
    overflow: hidden;
}

#shantiPremiumHero {
    position: relative;
}

/* Vertical button container */
.hero-vertical-nav-pill {
    position: absolute !important;
    top: 50% !important;
    left: 18px !important;
    right: auto !important;
    bottom: auto !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    height: auto !important;

    padding: 6px !important;
    margin: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;

    transform: translateY(-50%) !important;

    background: #ffffff !important;
    border: 1px solid rgba(7, 157, 183, 0.15);
    border-radius: 50px !important;

    box-shadow: 0 10px 30px rgba(18, 25, 28, 0.15);
    z-index: 20 !important;
}

/* Individual up/down buttons */
.hero-pill-btn {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;

    height: 38px !important;
    min-height: 38px !important;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 38px !important;

    border: 1px solid rgba(7, 157, 183, 0.18) !important;
    border-radius: 50% !important;

    background: #ffffff !important;
    color: #079db7 !important;

    font-size: 13px;
    line-height: 1 !important;

    box-shadow: none !important;
}

.hero-pill-btn:hover {
    background: #079db7 !important;
    color: #ffffff !important;
    border-color: #079db7 !important;
}

/* Tablet and foldable devices */
@media (max-width: 991.98px) {
    .hero-vertical-nav-pill {
        left: 10px !important;
        padding: 5px !important;
        gap: 5px !important;
    }

    .hero-pill-btn {
        width: 34px !important;
        min-width: 34px !important;
        max-width: 34px !important;

        height: 34px !important;
        min-height: 34px !important;

        flex-basis: 34px !important;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .hero-vertical-nav-pill {
        top: auto !important;
        bottom: 14px !important;
        left: 14px !important;

        transform: none !important;
        flex-direction: row !important;
    }

    .hero-pill-btn {
        width: 32px !important;
        min-width: 32px !important;
        max-width: 32px !important;

        height: 32px !important;
        min-height: 32px !important;

        flex-basis: 32px !important;
    }
}
/* =========================================================
   FINAL RESPONSIVE HEADER FIX
========================================================= */

.custom-premium-header,
.navbar-modern-container,
.navbar-modern-container .container {
    width: 100%;
}

.navbar-modern-container .container {
    max-width: 100%;
}

/* Full desktop header */
@media (min-width: 1500px) {
    .mobile-nav-toggle {
        display: none !important;
    }

    .nav-links-premium-list {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .nav-links-premium-list > li {
        flex: 0 0 auto;
    }

    .nav-links-premium-list > li > a {
        white-space: nowrap !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }
}

/* Laptop, tablet and mobile header */
@media (max-width: 1499.98px) {

    /* Top information bar */
    .top-bar-clean .container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .top-info-links {
        min-width: 0;
        gap: 18px !important;
    }

    /* Hide address on smaller desktop/laptop */
    .top-info-links > span:nth-child(3) {
        display: none !important;
    }

    /* Main navbar */
    .navbar-modern-container .container {
        position: relative;
        min-height: 74px;
        padding-left: 18px;
        padding-right: 18px;
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 10px;
    }

    /* Logo */
    .navbar-brand-modern,
    .doctor-header-brand {
        order: 1;
        flex: 0 1 auto;
        min-width: 0;
        margin-right: auto !important;
    }

    .navbar-brand-modern img {
        width: auto;
        max-width: 190px;
        max-height: 58px;
        object-fit: contain;
    }

    /* Language selector */
    .website-language-switcher {
        order: 2;
        flex: 0 0 auto;
        margin-left: auto !important;
    }

    /* Hide appointment button from navbar */
    .nav-actions-glow {
        display: none !important;
    }

    /* Hamburger button */
    .mobile-nav-toggle {
        order: 3;
        width: 44px;
        height: 44px;
        min-width: 44px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #079db7;
        color: #ffffff;
        font-size: 18px;
        cursor: pointer;
        z-index: 10005;
    }

    /* Hide menu until hamburger is clicked */
    .nav-links-premium-list {
        position: absolute !important;
        top: 100%;
        left: 15px;
        right: 15px;
        width: auto !important;
        max-height: calc(100vh - 130px);
        overflow-y: auto;

        margin: 0 !important;
        padding: 12px !important;

        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 3px !important;

        background: #ffffff;
        border: 1px solid rgba(7, 157, 183, 0.14);
        border-radius: 0 0 18px 18px;
        box-shadow: 0 20px 45px rgba(18, 25, 28, 0.16);
        z-index: 10000;
    }

    .nav-links-premium-list.mobile-menu-open {
        display: flex !important;
    }

    .nav-links-premium-list > li {
        width: 100% !important;
        display: block !important;
    }

    .nav-links-premium-list > li > a {
        width: 100% !important;
        min-height: 46px;
        padding: 11px 13px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        border-radius: 10px;
        font-size: 15px !important;
        line-height: 1.4 !important;
        text-align: left;

        white-space: normal !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    .nav-links-premium-list > li > a:hover {
        background: rgba(223, 92, 152, 0.08);
        color: #df5c98;
    }

    /* Treatment dropdown */
    .submenu-premium-panel {
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;

        margin: 3px 0 8px !important;
        padding: 7px !important;

        display: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        border: 0 !important;
        border-radius: 10px;
        background: #eef9fb;
        box-shadow: none !important;
    }

    .nav-dropdown-premium.mobile-submenu-open
    .submenu-premium-panel {
        display: block !important;
    }

    .submenu-premium-panel li,
    .submenu-premium-panel li a {
        width: 100% !important;
    }

    .submenu-premium-panel li a {
        display: block !important;
        padding: 10px 12px !important;
        font-size: 14px !important;
        line-height: 1.4;
        white-space: normal !important;
        word-break: keep-all !important;
    }

    .nav-dropdown-premium.mobile-submenu-open
    .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Tablet */
@media (max-width: 991.98px) {
    .navbar-brand-modern img {
        max-width: 165px;
        max-height: 52px;
    }

    .top-social-glow-circles {
        gap: 5px;
    }

    .top-social-glow-circles a {
        width: 28px;
        height: 28px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .top-bar-clean .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .top-info-links > span:nth-child(2),
    .top-info-links > span:nth-child(3) {
        display: none !important;
    }

    .navbar-modern-container .container {
        min-height: 66px;
        padding-left: 10px;
        padding-right: 10px;
        gap: 7px;
    }

    .navbar-brand-modern img {
        max-width: 145px;
        max-height: 46px;
    }

    .mobile-nav-toggle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .language-switcher-button {
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        justify-content: center !important;
    }

    .language-switcher-button > span,
    .language-switcher-arrow {
        display: none !important;
    }

    .nav-links-premium-list {
        left: 8px;
        right: 8px;
        padding: 10px !important;
    }
}

/* Very small mobile */
@media (max-width: 420px) {
    .navbar-brand-modern img {
        max-width: 120px;
    }

    .top-social-glow-circles {
        display: none !important;
    }
}
/* vaginismus.php */
/* =====================================================
   VAGINISMUS PAGE
===================================================== */

.vag-page {
  overflow: hidden;
  background: #ffffff;
}

.vag-page *,
.vag-page *::before,
.vag-page *::after {
  box-sizing: border-box;
}

.vag-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.vag-section {
  padding: 90px 0;
}

.vag-label {
  display: inline-flex;
  align-items: center;
  background: #fdeaf3;
  color: #df5c98;
  padding: 8px 15px;
  margin-bottom: 17px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.45px;
}

.vag-section-heading {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.vag-section-heading h2,
.vag-intro-content h2,
.vag-causes-content h2,
.vag-emotional-box h2,
.vag-final-content h2 {
  margin: 0 0 18px;
  color: #11191c;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 900;
}

.vag-section-heading p,
.vag-intro-content > p,
.vag-causes-content > p,
.vag-emotional-box p,
.vag-final-content p {
  color: #657482;
  font-size: 15px;
  line-height: 1.85;
}

.vag-section-heading p {
  margin: 0;
}


/* =====================================================
   HERO
===================================================== */

.vag-hero {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(7, 157, 183, 0.1),
      rgba(255, 255, 255, 0.96) 47%,
      rgba(223, 92, 152, 0.12)
    );
}

.vag-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.vag-shape-one {
  width: 330px;
  height: 330px;
  top: -150px;
  right: -90px;
  background: rgba(223, 92, 152, 0.16);
}

.vag-shape-two {
  width: 300px;
  height: 300px;
  bottom: -180px;
  left: -120px;
  background: rgba(7, 157, 183, 0.16);
}

.vag-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.97fr);
  gap: 60px;
  align-items: center;
}

.vag-hero-content h1 {
  max-width: 680px;
  margin: 0 0 24px;
  color: #11191c;
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 1.07;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.vag-hero-content h1 span {
  display: block;
  color: #079db7;
}

.vag-hero-content > p {
  max-width: 650px;
  margin: 0 0 30px;
  color: #5f707f;
  font-size: 17px;
  line-height: 1.82;
}

.vag-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.vag-primary-btn,
.vag-outline-btn,
.vag-final-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.vag-primary-btn {
  background: #df5c98;
  color: #ffffff;
  box-shadow: 0 13px 30px rgba(223, 92, 152, 0.3);
}

.vag-primary-btn > span,
.vag-final-btn > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #11191c;
  font-size: 16px;
}

.vag-outline-btn {
  border: 1px solid rgba(7, 157, 183, 0.22);
  background: #ffffff;
  color: #079db7;
  box-shadow: 0 12px 30px rgba(17, 25, 28, 0.07);
}

.vag-primary-btn:hover,
.vag-final-btn:hover {
  transform: translateY(-3px);
  background: #079db7;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(7, 157, 183, 0.28);
}

.vag-outline-btn:hover {
  transform: translateY(-3px);
  background: #079db7;
  color: #ffffff;
}

.vag-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.vag-hero-point {
  display: flex;
  align-items: center;
  gap: 9px;
}

.vag-hero-point span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.vag-hero-point p {
  margin: 0;
  color: #34434b;
  font-size: 13px;
  font-weight: 700;
}

.vag-hero-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 35px 35px 100px 35px;
  box-shadow: 0 28px 70px rgba(17, 25, 28, 0.18);
}

.vag-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(8, 24, 29, 0.28)
    );
  pointer-events: none;
}

.vag-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
}

.vag-image-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: calc(100% - 44px);
  padding: 16px 20px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(17, 25, 28, 0.19);
}

.vag-image-card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-weight: 900;
}

.vag-image-card strong,
.vag-image-card span {
  display: block;
}

.vag-image-card strong {
  color: #11191c;
  font-size: 15px;
  font-weight: 900;
}

.vag-image-card span {
  margin-top: 3px;
  color: #6d7b86;
  font-size: 11px;
}


/* =====================================================
   INTRODUCTION
===================================================== */

.vag-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 65px;
  align-items: center;
}

.vag-intro-image {
  position: relative;
  height: 590px;
  overflow: hidden;
  border-radius: 30px 100px 30px 30px;
  box-shadow: 0 24px 65px rgba(17, 25, 28, 0.14);
}

.vag-intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vag-vertical-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #079db7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.65px;
  box-shadow: 0 13px 32px rgba(7, 157, 183, 0.28);
}

.vag-intro-content > p {
  margin: 0 0 15px;
}

.vag-information-box {
  display: flex;
  gap: 15px;
  margin-top: 26px;
  padding: 21px;
  border-left: 5px solid #079db7;
  border-radius: 14px;
  background: #f1fafc;
}

.vag-information-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-weight: 900;
}

.vag-information-box p {
  margin: 0;
  color: #5d6e7a;
  font-size: 14px;
  line-height: 1.75;
}


/* =====================================================
   FEAR RESPONSE
===================================================== */

.vag-fear-section {
  padding: 90px 0;
  background: #f7fbfc;
}

.vag-fear-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.vag-fear-card {
  position: relative;
  min-height: 270px;
  padding: 29px 24px;
  overflow: hidden;
  border: 1px solid rgba(7, 157, 183, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 13px 38px rgba(17, 25, 28, 0.065);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.vag-fear-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: rgba(223, 92, 152, 0.08);
}

.vag-fear-card:hover {
  transform: translateY(-7px);
  border-color: rgba(223, 92, 152, 0.3);
  box-shadow: 0 18px 44px rgba(17, 25, 28, 0.1);
}

.vag-card-number {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.vag-fear-card:nth-child(even) .vag-card-number {
  background: #df5c98;
}

.vag-fear-card h3 {
  margin: 0 0 13px;
  color: #11191c;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.vag-fear-card p {
  margin: 0;
  color: #687783;
  font-size: 14px;
  line-height: 1.75;
}

.vag-phobia-note {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border-radius: 22px;
  background: #10191d;
}

.vag-phobia-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.vag-phobia-note h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
}

.vag-phobia-note p {
  margin: 0;
  color: #d0dce1;
  font-size: 14px;
  line-height: 1.75;
}


/* =====================================================
   CAUSES
===================================================== */

.vag-causes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 58px;
  align-items: center;
}

.vag-causes-content > p {
  margin: 0 0 15px;
}

.vag-cause-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 25px;
}

.vag-cause-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid rgba(7, 157, 183, 0.08);
  border-radius: 13px;
  background: #ffffff;
  box-shadow: 0 9px 25px rgba(17, 25, 28, 0.055);
}

.vag-cause-item > span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.vag-cause-item p {
  margin: 1px 0 0;
  color: #25343c;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.vag-causes-image {
  height: 440px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(17, 25, 28, 0.14);
}

.vag-causes-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.vag-sensitive-note {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  margin: -50px auto 0;
  padding: 24px;
  border-top: 4px solid #df5c98;
  border-radius: 17px;
  background: #ffffff;
  box-shadow: 0 17px 45px rgba(17, 25, 28, 0.15);
}

.vag-sensitive-note h3 {
  margin: 0 0 9px;
  color: #11191c;
  font-size: 18px;
  font-weight: 900;
}

.vag-sensitive-note p {
  margin: 0;
  color: #647480;
  font-size: 13px;
  line-height: 1.7;
}


/* =====================================================
   EMOTIONAL SECTION
===================================================== */

.vag-emotional-section {
  padding: 20px 0 90px;
}

.vag-emotional-box {
  position: relative;
  display: grid;
  grid-template-columns: 85px minmax(0, 1fr);
  gap: 26px;
  padding: 45px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(
      120deg,
      rgba(223, 92, 152, 0.12),
      rgba(7, 157, 183, 0.1)
    );
}

.vag-emotional-symbol {
  color: #df5c98;
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 0.75;
  font-weight: 900;
}

.vag-emotional-box p {
  margin: 0 0 12px;
}


/* =====================================================
   IMPACT
===================================================== */

.vag-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.vag-impact-card {
  padding: 27px 23px;
  border-radius: 21px;
  background: #ffffff;
  box-shadow: 0 13px 38px rgba(17, 25, 28, 0.07);
  border-bottom: 4px solid #079db7;
}

.vag-impact-card:nth-child(even) {
  border-bottom-color: #df5c98;
}

.vag-impact-icon {
  margin-bottom: 17px;
  color: #079db7;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.vag-impact-card:nth-child(even) .vag-impact-icon {
  color: #df5c98;
}

.vag-impact-card h3 {
  margin: 0 0 12px;
  color: #11191c;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.vag-impact-card p {
  margin: 0;
  color: #667680;
  font-size: 13px;
  line-height: 1.72;
}

.vag-medical-note {
  margin-top: 28px;
  padding: 32px;
  border-left: 5px solid #079db7;
  border-radius: 18px;
  background: #f1fafc;
}

.vag-medical-note h3 {
  margin: 0 0 11px;
  color: #11191c;
  font-size: 22px;
  font-weight: 900;
}

.vag-medical-note p {
  margin: 0 0 10px;
  color: #60717d;
  font-size: 14px;
  line-height: 1.75;
}

.vag-medical-note p:last-child {
  margin-bottom: 0;
}


/* =====================================================
   PARTNER RESPONSE
===================================================== */

.vag-response-section {
  padding: 90px 0;
  background: #f7fbfc;
}

.vag-response-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

.vag-response-card {
  padding: 30px;
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(17, 25, 28, 0.065);
}

.vag-response-negative {
  border-top: 5px solid #df5c98;
}

.vag-response-neutral {
  border-top: 5px solid #efa646;
}

.vag-response-positive {
  border-top: 5px solid #079db7;
}

.vag-response-top {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.vag-response-top > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 900;
}

.vag-response-negative .vag-response-top > span {
  background: #df5c98;
}

.vag-response-neutral .vag-response-top > span {
  background: #efa646;
}

.vag-response-positive .vag-response-top > span {
  background: #079db7;
}

.vag-response-top h3 {
  margin: 4px 0 0;
  color: #11191c;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.vag-response-card > p {
  margin: 0;
  color: #667680;
  font-size: 14px;
  line-height: 1.75;
}

.vag-couple-message {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(17, 25, 28, 0.075);
}

.vag-couple-message-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-size: 25px;
}

.vag-couple-message h3 {
  margin: 0 0 8px;
  color: #11191c;
  font-size: 21px;
  font-weight: 900;
}

.vag-couple-message p {
  margin: 0;
  color: #62727d;
  font-size: 14px;
  line-height: 1.75;
}


/* =====================================================
   TREATMENT
===================================================== */

.vag-treatment-section {
  background: #ffffff;
}

.vag-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vag-treatment-card {
  position: relative;
  padding: 29px 25px;
  overflow: hidden;
  border: 1px solid rgba(7, 157, 183, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 13px 38px rgba(17, 25, 28, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vag-treatment-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 46px rgba(17, 25, 28, 0.11);
}

.vag-treatment-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: #079db7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.vag-treatment-card:nth-child(even) .vag-treatment-number {
  background: #df5c98;
}

.vag-treatment-card h3 {
  margin: 0 0 11px;
  color: #11191c;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.vag-treatment-card p {
  margin: 0;
  color: #667680;
  font-size: 14px;
  line-height: 1.75;
}

.vag-treatment-message {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
  padding: 35px;
  border-radius: 24px;
  background: #10191d;
}

.vag-treatment-message-content > span {
  display: inline-block;
  margin-bottom: 9px;
  color: #df5c98;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.vag-treatment-message h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.vag-treatment-message p {
  max-width: 850px;
  margin: 0;
  color: #cfdae0;
  font-size: 14px;
  line-height: 1.75;
}

.vag-treatment-message-mark {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 29px;
  font-weight: 900;
}


/* =====================================================
   ALTERNATIVE TREATMENT NOTE
===================================================== */

.vag-alternative-section {
  padding: 0 0 90px;
}

.vag-alternative-box {
  display: flex;
  gap: 23px;
  align-items: flex-start;
  padding: 38px;
  border: 1px solid rgba(223, 92, 152, 0.15);
  border-radius: 25px;
  background: #fff3f8;
}

.vag-alternative-icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.vag-alternative-box h2 {
  margin: 0 0 12px;
  color: #11191c;
  font-size: 27px;
  line-height: 1.3;
  font-weight: 900;
}

.vag-alternative-box p {
  margin: 0 0 10px;
  color: #657580;
  font-size: 14px;
  line-height: 1.75;
}

.vag-alternative-box p:last-child {
  margin-bottom: 0;
}


/* =====================================================
   FINAL CTA
===================================================== */

.vag-final-section {
  padding: 0 0 90px;
}

.vag-final-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: center;
  padding: 48px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(
      120deg,
      #079db7,
      #088ca6 45%,
      #df5c98
    );
}

.vag-final-cta::after {
  content: "";
  position: absolute;
  right: -75px;
  top: -85px;
  width: 250px;
  height: 250px;
  border: 45px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.vag-final-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.vag-final-content > span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.vag-final-content h2 {
  color: #ffffff;
}

.vag-final-content p {
  margin: 0;
  color: #edf9fc;
}

.vag-final-btn {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  background: #ffffff;
  color: #11191c;
  box-shadow: 0 14px 36px rgba(17, 25, 28, 0.18);
}

.vag-final-btn > span {
  background: #11191c;
  color: #ffffff;
}


/* =====================================================
   LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1199px) {
  .vag-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 40px;
  }

  .vag-fear-grid,
  .vag-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vag-intro-grid,
  .vag-causes-grid {
    gap: 45px;
  }
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {
  .vag-section,
  .vag-fear-section,
  .vag-response-section {
    padding: 72px 0;
  }

  .vag-hero {
    padding: 70px 0;
  }

  .vag-hero-grid,
  .vag-intro-grid,
  .vag-causes-grid {
    grid-template-columns: 1fr;
  }

  .vag-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .vag-hero-content h1,
  .vag-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .vag-hero-actions,
  .vag-hero-points {
    justify-content: center;
  }

  .vag-hero-image {
    width: min(700px, 100%);
    min-height: 440px;
    margin: 0 auto;
  }

  .vag-hero-image img {
    min-height: 440px;
  }

  .vag-intro-image {
    width: min(680px, 100%);
    height: 500px;
    margin: 0 auto;
  }

  .vag-causes-side {
    width: min(680px, 100%);
    margin: 0 auto;
  }

  .vag-causes-image {
    height: 450px;
  }

  .vag-treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vag-response-grid {
    grid-template-columns: 1fr;
  }

  .vag-final-cta {
    flex-direction: column;
    text-align: center;
  }

  .vag-final-content {
    max-width: 800px;
  }
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {
  .vag-container {
    width: min(100% - 28px, 1180px);
  }

  .vag-section,
  .vag-fear-section,
  .vag-response-section {
    padding: 58px 0;
  }

  .vag-hero {
    padding: 55px 0;
  }

  .vag-hero-content h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .vag-hero-content > p {
    font-size: 15px;
  }

  .vag-hero-actions {
    flex-direction: column;
  }

  .vag-primary-btn,
  .vag-outline-btn,
  .vag-final-btn {
    width: 100%;
  }

  .vag-hero-points {
    display: grid;
    justify-content: center;
  }

  .vag-hero-image {
    min-height: 350px;
    border-radius: 25px 25px 65px 25px;
  }

  .vag-hero-image img {
    min-height: 350px;
  }

  .vag-image-card {
    right: 14px;
    bottom: 14px;
    padding: 13px 15px;
  }

  .vag-intro-image {
    height: 400px;
    border-radius: 24px 65px 24px 24px;
  }

  .vag-section-heading {
    margin-bottom: 32px;
  }

  .vag-section-heading h2,
  .vag-intro-content h2,
  .vag-causes-content h2,
  .vag-emotional-box h2,
  .vag-final-content h2 {
    font-size: 30px;
  }

  .vag-fear-grid,
  .vag-impact-grid,
  .vag-treatment-grid,
  .vag-cause-list {
    grid-template-columns: 1fr;
  }

  .vag-fear-card {
    min-height: 0;
  }

  .vag-phobia-note,
  .vag-couple-message,
  .vag-alternative-box {
    align-items: flex-start;
  }

  .vag-emotional-box {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 28px;
  }

  .vag-emotional-symbol {
    font-size: 75px;
  }

  .vag-causes-image {
    height: 350px;
  }

  .vag-treatment-message {
    align-items: flex-start;
  }

  .vag-treatment-message-mark {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
  }

  .vag-final-cta {
    padding: 34px 25px;
  }

  .vag-alternative-section,
  .vag-final-section,
  .vag-emotional-section {
    padding-bottom: 58px;
  }
}


/* =====================================================
   SMALL MOBILE RESPONSIVE
===================================================== */

@media (max-width: 480px) {
  .vag-hero-content h1 {
    font-size: 31px;
  }

  .vag-label {
    font-size: 10px;
  }

  .vag-hero-image {
    min-height: 300px;
  }

  .vag-hero-image img {
    min-height: 300px;
  }

  .vag-image-card {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .vag-intro-image,
  .vag-causes-image {
    height: 310px;
  }

  .vag-vertical-badge {
    left: 12px;
    bottom: 12px;
    padding: 12px 15px;
    font-size: 10px;
  }

  .vag-information-box,
  .vag-phobia-note,
  .vag-medical-note,
  .vag-couple-message,
  .vag-treatment-message,
  .vag-alternative-box {
    padding: 21px;
  }

  .vag-phobia-note,
  .vag-couple-message,
  .vag-treatment-message,
  .vag-alternative-box {
    flex-direction: column;
  }

  .vag-sensitive-note {
    width: calc(100% - 22px);
    margin-top: -35px;
    padding: 20px;
  }

  .vag-response-card,
  .vag-treatment-card,
  .vag-impact-card,
  .vag-fear-card {
    padding: 23px 20px;
  }

  .vag-final-content h2,
  .vag-section-heading h2,
  .vag-intro-content h2,
  .vag-causes-content h2,
  .vag-emotional-box h2 {
    font-size: 27px;
  }
}
/* Right-side image and clarification card */
.vag-causes-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.vag-causes-image {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: #f4f8f9;
  box-shadow: 0 20px 55px rgba(17, 25, 28, 0.12);
}

.vag-causes-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Clarification card appears normally below image */
.vag-sensitive-note {
  position: static;
  width: 100%;
  margin: 0;
  padding: 26px 28px;
  border: 1px solid rgba(223, 92, 152, 0.18);
  border-top: 4px solid #df5c98;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(17, 25, 28, 0.09);
}

.vag-sensitive-note h3 {
  margin: 0 0 10px;
  color: #11191c;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.vag-sensitive-note p {
  margin: 0;
  color: #647480;
  font-size: 14px;
  line-height: 1.75;
}
/* Low Libido */
/* =====================================================
   LOW SEXUAL DESIRE PAGE
===================================================== */

.lowdes-page {
  overflow: hidden;
  background: #ffffff;
}

.lowdes-page *,
.lowdes-page *::before,
.lowdes-page *::after {
  box-sizing: border-box;
}

.lowdes-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.lowdes-section {
  padding: 90px 0;
}

.lowdes-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 17px;
  padding: 8px 15px;
  border-radius: 6px;
  background: #fdeaf3;
  color: #df5c98;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.45px;
}

.lowdes-section-heading {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.lowdes-section-heading h2,
.lowdes-intro-content h2,
.lowdes-emotional-content h2,
.lowdes-final-content h2 {
  margin: 0 0 18px;
  color: #11191c;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 900;
}

.lowdes-section-heading p,
.lowdes-intro-content > p,
.lowdes-emotional-content > p,
.lowdes-final-content p {
  color: #657482;
  font-size: 15px;
  line-height: 1.85;
}

.lowdes-section-heading p {
  margin: 0;
}


/* =====================================================
   HERO SECTION
===================================================== */

.lowdes-hero {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      rgba(7, 157, 183, 0.11),
      rgba(255, 255, 255, 0.96) 48%,
      rgba(223, 92, 152, 0.13)
    );
}

.lowdes-hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.lowdes-shape-one {
  width: 360px;
  height: 360px;
  top: -190px;
  right: -90px;
  background: rgba(223, 92, 152, 0.15);
}

.lowdes-shape-two {
  width: 310px;
  height: 310px;
  bottom: -190px;
  left: -110px;
  background: rgba(7, 157, 183, 0.16);
}

.lowdes-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.95fr);
  gap: 60px;
  align-items: center;
}

.lowdes-hero-content h1 {
  max-width: 720px;
  margin: 0 0 24px;
  color: #11191c;
  font-size: clamp(40px, 4.1vw, 57px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.lowdes-hero-content h1 span {
  display: block;
  color: #079db7;
}

.lowdes-hero-content > p {
  max-width: 650px;
  margin: 0 0 30px;
  color: #5f707f;
  font-size: 17px;
  line-height: 1.82;
}

.lowdes-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.lowdes-primary-btn,
.lowdes-secondary-btn,
.lowdes-final-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.lowdes-primary-btn {
  background: #df5c98;
  color: #ffffff;
  box-shadow: 0 13px 30px rgba(223, 92, 152, 0.3);
}

.lowdes-primary-btn > span,
.lowdes-final-btn > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #11191c;
  font-size: 16px;
}

.lowdes-secondary-btn {
  border: 1px solid rgba(7, 157, 183, 0.22);
  background: #ffffff;
  color: #079db7;
  box-shadow: 0 12px 30px rgba(17, 25, 28, 0.07);
}

.lowdes-primary-btn:hover,
.lowdes-final-btn:hover {
  transform: translateY(-3px);
  background: #079db7;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(7, 157, 183, 0.28);
}

.lowdes-secondary-btn:hover {
  transform: translateY(-3px);
  background: #079db7;
  color: #ffffff;
}

.lowdes-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.lowdes-hero-point {
  display: flex;
  align-items: center;
  gap: 9px;
}

.lowdes-hero-point span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.lowdes-hero-point p {
  margin: 0;
  color: #34434b;
  font-size: 13px;
  font-weight: 700;
}

.lowdes-hero-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 35px 35px 100px 35px;
  background: #f1f6f7;
  box-shadow: 0 28px 70px rgba(17, 25, 28, 0.18);
}

.lowdes-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 56%,
      rgba(8, 24, 29, 0.28)
    );
  pointer-events: none;
}

.lowdes-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.lowdes-image-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: calc(100% - 44px);
  padding: 16px 20px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 40px rgba(17, 25, 28, 0.19);
}

.lowdes-image-card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-size: 18px;
}

.lowdes-image-card strong,
.lowdes-image-card span {
  display: block;
}

.lowdes-image-card strong {
  color: #11191c;
  font-size: 15px;
  font-weight: 900;
}

.lowdes-image-card span {
  margin-top: 3px;
  color: #6d7b86;
  font-size: 11px;
}


/* =====================================================
   INTRODUCTION
===================================================== */

.lowdes-intro-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 65px;
  align-items: center;
}

.lowdes-intro-image {
  position: relative;
  height: 570px;
  overflow: hidden;
  border-radius: 30px 100px 30px 30px;
  background: #f1f6f7;
  box-shadow: 0 24px 65px rgba(17, 25, 28, 0.14);
}

.lowdes-intro-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lowdes-image-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #079db7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  box-shadow: 0 13px 32px rgba(7, 157, 183, 0.28);
}

.lowdes-intro-content > p {
  margin: 0 0 15px;
}

.lowdes-info-box {
  display: flex;
  gap: 15px;
  margin-top: 26px;
  padding: 21px;
  border-left: 5px solid #079db7;
  border-radius: 14px;
  background: #f1fafc;
}

.lowdes-info-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-weight: 900;
}

.lowdes-info-box p {
  margin: 0;
  color: #5d6e7a;
  font-size: 14px;
  line-height: 1.75;
}


/* =====================================================
   SIGNS AND SYMPTOMS
===================================================== */

.lowdes-signs-section {
  padding: 90px 0;
  background: #f7fbfc;
}

.lowdes-signs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lowdes-sign-card {
  padding: 28px 24px;
  border: 1px solid rgba(7, 157, 183, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 13px 38px rgba(17, 25, 28, 0.065);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.lowdes-sign-card:hover {
  transform: translateY(-7px);
  border-color: rgba(223, 92, 152, 0.3);
  box-shadow: 0 18px 44px rgba(17, 25, 28, 0.1);
}

.lowdes-sign-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 19px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.lowdes-sign-card:nth-child(even) .lowdes-sign-number {
  background: #df5c98;
}

.lowdes-sign-card h3 {
  margin: 0 0 12px;
  color: #11191c;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.lowdes-sign-card p {
  margin: 0;
  color: #687783;
  font-size: 14px;
  line-height: 1.75;
}

.lowdes-normal-note {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border-radius: 22px;
  background: #10191d;
}

.lowdes-normal-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
}

.lowdes-normal-note h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
}

.lowdes-normal-note p {
  margin: 0;
  color: #d0dce1;
  font-size: 14px;
  line-height: 1.75;
}


/* =====================================================
   CAUSES
===================================================== */

.lowdes-causes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lowdes-cause-card {
  padding: 31px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(7, 157, 183, 0.09);
  box-shadow: 0 14px 42px rgba(17, 25, 28, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lowdes-cause-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 19px 48px rgba(17, 25, 28, 0.11);
}

.lowdes-cause-icon {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 15px;
  background: #079db7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.lowdes-cause-card:nth-child(even) .lowdes-cause-icon {
  background: #df5c98;
}

.lowdes-cause-card h3 {
  margin: 0 0 12px;
  color: #11191c;
  font-size: 21px;
  font-weight: 900;
}

.lowdes-cause-card > p {
  margin: 0 0 18px;
  color: #667680;
  font-size: 14px;
  line-height: 1.75;
}

.lowdes-cause-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lowdes-cause-card li {
  position: relative;
  padding-left: 26px;
  color: #293940;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.lowdes-cause-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e7f8fb;
  color: #079db7;
  font-size: 10px;
  font-weight: 900;
}


/* =====================================================
   DESIRE TYPES
===================================================== */

.lowdes-desire-section {
  padding: 90px 0;
  background: #f7fbfc;
}

.lowdes-desire-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.lowdes-desire-card {
  padding: 34px;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(17, 25, 28, 0.075);
}

.lowdes-spontaneous-card {
  border-top: 5px solid #df5c98;
}

.lowdes-responsive-card {
  border-top: 5px solid #079db7;
}

.lowdes-desire-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 17px;
}

.lowdes-desire-top span {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.lowdes-spontaneous-card .lowdes-desire-top span {
  background: #df5c98;
}

.lowdes-responsive-card .lowdes-desire-top span {
  background: #079db7;
}

.lowdes-desire-top h3 {
  margin: 0;
  color: #11191c;
  font-size: 22px;
  font-weight: 900;
}

.lowdes-desire-card > p {
  margin: 0 0 12px;
  color: #657580;
  font-size: 14px;
  line-height: 1.78;
}

.lowdes-desire-card > p:last-child {
  margin-bottom: 0;
}

.lowdes-desire-message {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 27px;
  padding: 30px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(17, 25, 28, 0.075);
}

.lowdes-desire-message-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-size: 23px;
}

.lowdes-desire-message h3 {
  margin: 0 0 8px;
  color: #11191c;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
}

.lowdes-desire-message p {
  margin: 0;
  color: #62727d;
  font-size: 14px;
  line-height: 1.75;
}

.lowdes-mismatch-note {
  margin-top: 24px;
  padding: 28px;
  border-left: 5px solid #079db7;
  border-radius: 18px;
  background: #ecf9fb;
}

.lowdes-mismatch-note h3 {
  margin: 0 0 9px;
  color: #11191c;
  font-size: 20px;
  font-weight: 900;
}

.lowdes-mismatch-note p {
  margin: 0;
  color: #60717d;
  font-size: 14px;
  line-height: 1.75;
}


/* =====================================================
   EMOTIONAL NEGLECT
===================================================== */

.lowdes-emotional-section {
  background: #ffffff;
}

.lowdes-emotional-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  align-items: center;
}

.lowdes-emotional-image {
  position: relative;
  height: 580px;
  overflow: hidden;
  border-radius: 30px 100px 30px 30px;
  background: #f1f6f7;
  box-shadow: 0 24px 65px rgba(17, 25, 28, 0.14);
}

.lowdes-emotional-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lowdes-emotional-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #df5c98;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.55px;
  box-shadow: 0 13px 32px rgba(223, 92, 152, 0.28);
}

.lowdes-emotional-content > p {
  margin: 0 0 15px;
}

.lowdes-emotional-example {
  margin-top: 24px;
  padding: 25px;
  border-radius: 18px;
  background: #fff2f7;
  border: 1px solid rgba(223, 92, 152, 0.16);
}

.lowdes-emotional-example h3 {
  margin: 0 0 11px;
  color: #11191c;
  font-size: 20px;
  font-weight: 900;
}

.lowdes-emotional-example p {
  margin: 0 0 11px;
  color: #63737f;
  font-size: 14px;
  line-height: 1.75;
}

.lowdes-emotional-example p:last-child {
  margin-bottom: 0;
}

.lowdes-emotional-conclusion {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 19px;
  border-left: 5px solid #079db7;
  border-radius: 14px;
  background: #eef9fb;
}

.lowdes-emotional-conclusion > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.lowdes-emotional-conclusion p {
  margin: 0;
  color: #394950;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}


/* =====================================================
   EVERYDAY PATTERNS
===================================================== */

.lowdes-patterns-section {
  padding: 90px 0;
  background: #f7fbfc;
}

.lowdes-patterns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 21px;
}

.lowdes-pattern-card {
  padding: 28px 23px;
  border-radius: 22px;
  background: #ffffff;
  border-bottom: 4px solid #079db7;
  box-shadow: 0 13px 38px rgba(17, 25, 28, 0.065);
}

.lowdes-pattern-card:nth-child(even) {
  border-bottom-color: #df5c98;
}

.lowdes-pattern-icon {
  margin-bottom: 17px;
  color: #079db7;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.lowdes-pattern-card:nth-child(even) .lowdes-pattern-icon {
  color: #df5c98;
}

.lowdes-pattern-card h3 {
  margin: 0 0 11px;
  color: #11191c;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.lowdes-pattern-card p {
  margin: 0;
  color: #667680;
  font-size: 13px;
  line-height: 1.72;
}

.lowdes-pattern-note {
  position: relative;
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 30px;
  border-radius: 22px;
  background:
    linear-gradient(
      120deg,
      rgba(223, 92, 152, 0.12),
      rgba(7, 157, 183, 0.1)
    );
}

.lowdes-pattern-note-symbol {
  color: #df5c98;
  font-family: Georgia, serif;
  font-size: 95px;
  line-height: 0.7;
  font-weight: 900;
}

.lowdes-pattern-note p {
  margin: 0;
  color: #455760;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}


/* =====================================================
   TREATMENT
===================================================== */

.lowdes-treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.lowdes-treatment-card {
  padding: 29px 25px;
  border: 1px solid rgba(7, 157, 183, 0.09);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 13px 38px rgba(17, 25, 28, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.lowdes-treatment-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 46px rgba(17, 25, 28, 0.11);
}

.lowdes-treatment-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: #079db7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.lowdes-treatment-card:nth-child(even) .lowdes-treatment-number {
  background: #df5c98;
}

.lowdes-treatment-card h3 {
  margin: 0 0 11px;
  color: #11191c;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 900;
}

.lowdes-treatment-card p {
  margin: 0;
  color: #667680;
  font-size: 14px;
  line-height: 1.75;
}


/* =====================================================
   MYTH SECTION
===================================================== */

.lowdes-myth-section {
  padding: 90px 0;
  background: #f7fbfc;
}

.lowdes-myth-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 23px;
}

.lowdes-myth-card {
  padding: 30px;
  border-top: 5px solid #df5c98;
  border-radius: 23px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(17, 25, 28, 0.065);
}

.lowdes-myth-top {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.lowdes-myth-top > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-weight: 900;
}

.lowdes-myth-top h3 {
  margin: 3px 0 0;
  color: #11191c;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
}

.lowdes-myth-card > p {
  margin: 0;
  color: #667680;
  font-size: 14px;
  line-height: 1.75;
}


/* =====================================================
   FINAL CTA
===================================================== */

.lowdes-final-section {
  padding: 0 0 90px;
}

.lowdes-final-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: center;
  padding: 48px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(
      120deg,
      #079db7,
      #088ca6 45%,
      #df5c98
    );
}

.lowdes-final-cta::after {
  content: "";
  position: absolute;
  right: -75px;
  top: -85px;
  width: 250px;
  height: 250px;
  border: 45px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.lowdes-final-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.lowdes-final-content > span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.lowdes-final-content h2 {
  color: #ffffff;
}

.lowdes-final-content p {
  margin: 0;
  color: #edf9fc;
}

.lowdes-final-btn {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  background: #ffffff;
  color: #11191c;
  box-shadow: 0 14px 36px rgba(17, 25, 28, 0.18);
}

.lowdes-final-btn > span {
  background: #11191c;
  color: #ffffff;
}


/* =====================================================
   LAPTOP RESPONSIVE
===================================================== */

@media (max-width: 1199px) {
  .lowdes-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: 42px;
  }

  .lowdes-patterns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lowdes-intro-grid,
  .lowdes-emotional-grid {
    gap: 45px;
  }
}


/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media (max-width: 991px) {
  .lowdes-section,
  .lowdes-signs-section,
  .lowdes-desire-section,
  .lowdes-patterns-section,
  .lowdes-myth-section {
    padding: 72px 0;
  }

  .lowdes-hero {
    padding: 70px 0;
  }

  .lowdes-hero-grid,
  .lowdes-intro-grid,
  .lowdes-emotional-grid {
    grid-template-columns: 1fr;
  }

  .lowdes-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .lowdes-hero-content h1,
  .lowdes-hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }

  .lowdes-hero-actions,
  .lowdes-hero-points {
    justify-content: center;
  }

  .lowdes-hero-image {
    width: min(700px, 100%);
    min-height: 440px;
    margin: 0 auto;
  }

  .lowdes-hero-image img {
    min-height: 440px;
  }

  .lowdes-intro-image,
  .lowdes-emotional-image {
    width: min(680px, 100%);
    height: 500px;
    margin: 0 auto;
  }

  .lowdes-signs-grid,
  .lowdes-treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lowdes-myth-grid {
    grid-template-columns: 1fr;
  }

  .lowdes-final-cta {
    flex-direction: column;
    text-align: center;
  }

  .lowdes-final-content {
    max-width: 800px;
  }
}


/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 767px) {
  .lowdes-container {
    width: min(100% - 28px, 1180px);
  }

  .lowdes-section,
  .lowdes-signs-section,
  .lowdes-desire-section,
  .lowdes-patterns-section,
  .lowdes-myth-section {
    padding: 58px 0;
  }

  .lowdes-hero {
    padding: 55px 0;
  }

  .lowdes-hero-content h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .lowdes-hero-content > p {
    font-size: 15px;
  }

  .lowdes-hero-actions {
    flex-direction: column;
  }

  .lowdes-primary-btn,
  .lowdes-secondary-btn,
  .lowdes-final-btn {
    width: 100%;
  }

  .lowdes-hero-points {
    display: grid;
    justify-content: center;
  }

  .lowdes-hero-image {
    min-height: 350px;
    border-radius: 25px 25px 65px 25px;
  }

  .lowdes-hero-image img {
    min-height: 350px;
  }

  .lowdes-image-card {
    right: 14px;
    bottom: 14px;
    padding: 13px 15px;
  }

  .lowdes-intro-image,
  .lowdes-emotional-image {
    height: 400px;
    border-radius: 24px 65px 24px 24px;
  }

  .lowdes-section-heading {
    margin-bottom: 32px;
  }

  .lowdes-section-heading h2,
  .lowdes-intro-content h2,
  .lowdes-emotional-content h2,
  .lowdes-final-content h2 {
    font-size: 30px;
  }

  .lowdes-signs-grid,
  .lowdes-causes-grid,
  .lowdes-desire-grid,
  .lowdes-patterns-grid,
  .lowdes-treatment-grid {
    grid-template-columns: 1fr;
  }

  .lowdes-normal-note,
  .lowdes-desire-message {
    align-items: flex-start;
  }

  .lowdes-pattern-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lowdes-pattern-note-symbol {
    font-size: 75px;
  }

  .lowdes-final-cta {
    padding: 34px 25px;
  }

  .lowdes-final-section {
    padding-bottom: 58px;
  }
}


/* =====================================================
   SMALL MOBILE RESPONSIVE
===================================================== */

@media (max-width: 480px) {
  .lowdes-hero-content h1 {
    font-size: 31px;
  }

  .lowdes-label {
    font-size: 10px;
  }

  .lowdes-hero-image {
    min-height: 300px;
  }

  .lowdes-hero-image img {
    min-height: 300px;
  }

  .lowdes-image-card {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .lowdes-intro-image,
  .lowdes-emotional-image {
    height: 310px;
  }

  .lowdes-image-label,
  .lowdes-emotional-badge {
    left: 12px;
    bottom: 12px;
    padding: 12px 15px;
    font-size: 10px;
  }

  .lowdes-info-box,
  .lowdes-normal-note,
  .lowdes-desire-message,
  .lowdes-mismatch-note {
    padding: 21px;
  }

  .lowdes-normal-note,
  .lowdes-desire-message {
    flex-direction: column;
  }

  .lowdes-sign-card,
  .lowdes-cause-card,
  .lowdes-desire-card,
  .lowdes-pattern-card,
  .lowdes-treatment-card,
  .lowdes-myth-card {
    padding: 23px 20px;
  }

  .lowdes-final-content h2,
  .lowdes-section-heading h2,
  .lowdes-intro-content h2,
  .lowdes-emotional-content h2 {
    font-size: 27px;
  }
}
/* Final CTA Buttons */
.lowdes-final-actions {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.lowdes-faq-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 13px 25px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  background: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

.lowdes-faq-btn > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #079db7;
  font-size: 15px;
  font-weight: 900;
}

.lowdes-faq-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: #11191c;
  box-shadow: 0 14px 35px rgba(17, 25, 28, 0.18);
}

.lowdes-faq-btn:hover > span {
  background: #079db7;
  color: #ffffff;
}
/* Contact Us form */
/* =====================================================
   PRIVATE CONSULTATION FORM
===================================================== */

.shanti-private-whatsapp-box {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 45px;
    padding: 30px 34px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(
            120deg,
            #079db7 0%,
            #078ca5 52%,
            #df5c98 100%
        );
    box-shadow: 0 18px 45px rgba(7, 157, 183, 0.2);
}

.shanti-private-whatsapp-box::after {
    content: "";
    position: absolute;
    right: -65px;
    top: -90px;
    width: 220px;
    height: 220px;
    border: 38px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.shanti-private-whatsapp-icon {
    position: relative;
    z-index: 2;
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: #25d366;
    font-size: 31px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.shanti-private-whatsapp-content {
    position: relative;
    z-index: 2;
}

.shanti-private-whatsapp-content > span {
    display: inline-block;
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.shanti-private-whatsapp-content h2 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 900;
}

.shanti-private-whatsapp-content > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.7;
}

.shanti-whatsapp-privacy-note {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-top: 11px;
}

.shanti-whatsapp-privacy-note > span {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
}

.shanti-whatsapp-privacy-note p {
    margin: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
}

.shanti-whatsapp-private-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    min-width: 210px;
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 50px;
    background: #ffffff;
    color: #11191c;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.17);
    transition:
        transform 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.shanti-whatsapp-private-btn i {
    color: #25d366;
    font-size: 19px;
}

.shanti-whatsapp-private-btn:hover {
    transform: translateY(-3px);
    color: #079db7;
    box-shadow: 0 17px 38px rgba(0, 0, 0, 0.22);
}


/* Form introduction */

.shanti-private-form-box {
    position: relative;
}

.shanti-form-confidential-message {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 22px 0 27px;
    padding: 16px 18px;
    border-left: 4px solid #079db7;
    border-radius: 12px;
    background: #effafd;
}

.shanti-form-confidential-message > span {
    font-size: 20px;
}

.shanti-form-confidential-message p {
    margin: 0;
    color: #44545d;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 700;
}


/* Fieldsets */

.shanti-choice-fieldset {
    min-width: 0;
    margin: 0 0 28px;
    padding: 23px;
    border: 1px solid rgba(7, 157, 183, 0.12);
    border-radius: 18px;
    background: #f9fcfd;
}

.shanti-choice-fieldset legend {
    width: auto;
    float: none;
    margin: 0;
    padding: 0 8px;
    color: #11191c;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 900;
}

.shanti-choice-fieldset legend > span,
.shanti-form-group label > span {
    color: #df5c98;
}

.shanti-field-help {
    display: block;
    margin: 7px 0 17px;
    color: #75838c;
    font-size: 12px;
    line-height: 1.6;
}


/* Radio and checkbox cards */

.shanti-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.shanti-choice-card {
    position: relative;
    min-width: 0;
    min-height: 58px;
    display: flex;
    gap: 11px;
    align-items: center;
    margin: 0;
    padding: 13px 15px;
    cursor: pointer;
    border: 1px solid rgba(7, 157, 183, 0.12);
    border-radius: 13px;
    background: #ffffff;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.shanti-choice-card:hover {
    transform: translateY(-2px);
    border-color: rgba(7, 157, 183, 0.45);
    box-shadow: 0 9px 24px rgba(17, 25, 28, 0.07);
}

.shanti-choice-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.shanti-choice-card strong {
    color: #26343b;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.shanti-choice-indicator,
.shanti-checkbox-indicator {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border: 2px solid #b8cbd1;
    background: #ffffff;
    transition: 0.25s ease;
}

.shanti-choice-indicator {
    border-radius: 50%;
}

.shanti-checkbox-indicator {
    border-radius: 6px;
}

.shanti-choice-card input:checked ~ .shanti-choice-indicator,
.shanti-choice-card input:checked ~ .shanti-checkbox-indicator {
    border-color: #079db7;
    background: #079db7;
}

.shanti-choice-card input:checked ~ .shanti-choice-indicator::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #ffffff;
}

.shanti-choice-card input:checked ~ .shanti-checkbox-indicator::after {
    content: "✓";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.shanti-choice-card:has(input:checked) {
    border-color: rgba(7, 157, 183, 0.55);
    background: #eefafd;
    box-shadow: 0 9px 22px rgba(7, 157, 183, 0.1);
}


/* Other detail fields */

.shanti-other-field {
    margin-top: 15px;
}

.shanti-other-field[hidden] {
    display: none;
}

.shanti-other-field label {
    display: block;
    margin-bottom: 8px;
    color: #26343b;
    font-size: 13px;
    font-weight: 800;
}

.shanti-other-field input {
    width: 100%;
    min-height: 48px;
    padding: 12px 15px;
    border: 1px solid #d8e4e8;
    border-radius: 11px;
    background: #ffffff;
    color: #11191c;
    outline: none;
}

.shanti-other-field input:focus {
    border-color: #079db7;
    box-shadow: 0 0 0 4px rgba(7, 157, 183, 0.08);
}


/* Yes, no, unsure */

.shanti-answer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.shanti-answer-card {
    position: relative;
    min-height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 13px;
    cursor: pointer;
    border: 1px solid rgba(7, 157, 183, 0.12);
    border-radius: 13px;
    background: #ffffff;
    transition: 0.25s ease;
}

.shanti-answer-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shanti-answer-card > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf8fa;
    color: #079db7;
    font-size: 12px;
    font-weight: 900;
}

.shanti-answer-card strong {
    color: #26343b;
    font-size: 13px;
    font-weight: 800;
}

.shanti-answer-card:has(input:checked) {
    border-color: #df5c98;
    background: #fff1f7;
    box-shadow: 0 9px 24px rgba(223, 92, 152, 0.12);
}

.shanti-answer-card:has(input:checked) > span {
    background: #df5c98;
    color: #ffffff;
}


/* Submit privacy */

.shanti-submit-privacy {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin: 18px 0 22px;
    padding: 15px 17px;
    border-radius: 12px;
    background: #fff2f7;
}

.shanti-submit-privacy > span {
    flex: 0 0 auto;
}

.shanti-submit-privacy p {
    margin: 0;
    color: #5e4a53;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 700;
}


/* Right response note */

.shanti-doctor-response-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    border-left: 4px solid #df5c98;
    border-radius: 14px;
    background: #fff2f7;
}

.shanti-doctor-response-note > div {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #df5c98;
    color: #ffffff;
    font-weight: 900;
}

.shanti-doctor-response-note p {
    margin: 0;
    color: #5f5057;
    font-size: 13px;
    line-height: 1.7;
}


/* Responsive */

@media (max-width: 991px) {
    .shanti-private-whatsapp-box {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .shanti-whatsapp-private-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .shanti-private-whatsapp-box {
        grid-template-columns: 1fr;
        padding: 25px;
        text-align: center;
    }

    .shanti-private-whatsapp-icon {
        margin: 0 auto;
    }

    .shanti-whatsapp-privacy-note {
        justify-content: center;
        text-align: left;
    }

    .shanti-choice-grid {
        grid-template-columns: 1fr;
    }

    .shanti-answer-grid {
        grid-template-columns: 1fr;
    }

    .shanti-answer-card {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .shanti-private-whatsapp-box {
        padding: 21px 18px;
        border-radius: 20px;
    }

    .shanti-private-whatsapp-content h2 {
        font-size: 22px;
    }

    .shanti-choice-fieldset {
        padding: 19px 15px;
        border-radius: 15px;
    }

    .shanti-choice-fieldset legend {
        font-size: 14px;
    }

    .shanti-choice-card {
        padding: 12px;
    }
}
/* Testimonials */
/* Original testimonial review improvements */

.testimonial-original-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.testimonial-original-card .testimonial-top {
  position: relative;
  padding-right: 96px;
}

.testimonial-reviewer {
  min-width: 0;
}

.testimonial-reviewer h3 {
  overflow-wrap: anywhere;
}

.testimonial-review-time {
  display: inline-block;
  margin-top: 4px;
  color: #849099;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}

.testimonial-google-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 9px;
  border-radius: 50px;
  background: #eef9fb;
  color: #079db7;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.testimonial-text-wrap {
  flex: 1;
}

.testimonial-real-text {
  white-space: normal;
  overflow-wrap: anywhere;
}


.testimonial-real-text.is-collapsed {
  display: -webkit-box;
  overflow: hidden;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;

  /* Standard property */
  line-clamp: 8;
}
.testimonial-real-text.is-expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.testimonial-read-more {
  align-self: flex-start;
  margin: 13px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #079db7;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.testimonial-read-more:hover {
  color: #df5c98;
}

.testimonial-read-more[hidden] {
  display: none;
}

@media (max-width: 480px) {
  .testimonial-original-card .testimonial-top {
    padding-right: 0;
  }

  .testimonial-google-label {
    position: static;
    display: inline-flex;
    margin-top: 8px;
  }
}
/* Appearence */
.aboutus-media-section {
  margin: 90px 0;
}

.aboutus-media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.aboutus-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.aboutus-media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(7, 157, 183, 0.18);
}

.aboutus-media-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.aboutus-media-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 25, 28, 0.82),
    rgba(17, 25, 28, 0.12),
    transparent
  );
}

.aboutus-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.aboutus-media-card:hover .aboutus-media-image img {
  transform: scale(1.08);
}

.aboutus-media-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.aboutus-media-content span {
  display: inline-block;
  margin-bottom: 9px;
  padding: 7px 13px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.aboutus-media-content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

@media (max-width: 991px) {
  .aboutus-media-section {
    margin: 70px 0;
  }

  .aboutus-media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutus-media-image {
    height: 250px;
  }
}

@media (max-width: 575px) {
  .aboutus-media-section {
    margin: 55px 0;
  }

  .aboutus-media-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .aboutus-media-image {
    height: 240px;
  }

  .aboutus-media-content h3 {
    font-size: 20px;
  }
}
.aboutus-media-popup-card {
  cursor: pointer;
}

.aboutus-view-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 25, 28, 0.45);
  opacity: 0;
  transition: 0.35s ease;
}

.aboutus-view-overlay span {
  padding: 11px 22px;
  border-radius: 50px;
  background: #ffffff;
  color: #079db7;
  font-size: 13px;
  font-weight: 800;
}

.aboutus-media-card:hover .aboutus-view-overlay {
  opacity: 1;
}

/* Popup */
.aboutus-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 25px;
}

.aboutus-lightbox.active {
  display: flex;
}

.aboutus-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.aboutus-lightbox-content {
  position: relative;
  z-index: 2;
  width: min(950px, 100%);
  background: #ffffff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  animation: aboutusPopupZoom 0.25s ease;
}

.aboutus-lightbox-content img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #f4f7f8;
}

.aboutus-lightbox-content h3 {
  margin: 14px 8px 4px;
  color: #11191c;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

.aboutus-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s ease;
}

.aboutus-lightbox-close:hover {
  background: #079db7;
  transform: rotate(90deg);
}

body.aboutus-popup-open {
  overflow: hidden;
}

@keyframes aboutusPopupZoom {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 575px) {
  .aboutus-lightbox {
    padding: 15px;
  }

  .aboutus-lightbox-content {
    padding: 10px;
    border-radius: 18px;
  }

  .aboutus-lightbox-content img {
    max-height: 72vh;
    border-radius: 14px;
  }

  .aboutus-lightbox-content h3 {
    font-size: 18px;
  }

  .aboutus-lightbox-close {
    top: -14px;
    right: -10px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}
/* Why us */
.aboutus-sexologist-section {
  margin: 90px 0;
}

.aboutus-sexologist-title {
  max-width: 980px;
  margin: 0 auto 45px;
  text-align: center;
}

.aboutus-sexologist-title span,
.aboutus-sexologist-heading span,
.aboutus-sexologist-content > span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 17px;
  border-radius: 50px;
  background: rgba(7, 157, 183, 0.1);
  color: #079db7;
  font-size: 13px;
  font-weight: 800;
}

.aboutus-sexologist-title h2 {
  margin: 0;
  color: #11191c;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 900;
}

.aboutus-sexologist-box,
.aboutus-sexologist-content,
.aboutus-sexologist-prepare,
.aboutus-sexologist-info {
  padding: 38px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
}

.aboutus-sexologist-box {
  margin-top: 38px;
}

.aboutus-sexologist-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.aboutus-sexologist-heading h3,
.aboutus-sexologist-content h3,
.aboutus-sexologist-prepare h3,
.aboutus-sexologist-info h3,
.aboutus-sexologist-darkbox h3 {
  margin: 0 0 14px;
  color: #11191c;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 900;
}

.aboutus-sexologist-heading p,
.aboutus-sexologist-content p,
.aboutus-sexologist-prepare p,
.aboutus-sexologist-info p,
.aboutus-sexologist-darkbox p {
  margin: 0;
  color: #5e6b70;
  font-size: 16px;
  line-height: 1.85;
}

.aboutus-sexologist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.aboutus-sexologist-card {
  padding: 24px;
  border-radius: 20px;
  background: #f7fbfc;
  border: 1px solid rgba(7, 157, 183, 0.12);
}

.aboutus-sexologist-card > span {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.aboutus-sexologist-card h4 {
  margin: 0 0 10px;
  color: #11191c;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.aboutus-sexologist-card p {
  margin: 0;
  color: #536368;
  font-size: 15px;
  line-height: 1.75;
}

.aboutus-sexologist-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 38px;
}

.aboutus-sexologist-checklist {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

.aboutus-sexologist-checklist div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.aboutus-sexologist-checklist span {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #df5c98;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.aboutus-sexologist-checklist p {
  margin: 0;
}

.aboutus-sexologist-note {
  margin-top: 24px;
  padding: 20px;
  border-left: 4px solid #079db7;
  border-radius: 16px;
  background: rgba(7, 157, 183, 0.08);
}

.aboutus-sexologist-note p {
  margin: 0;
  color: #11191c;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 700;
}

.aboutus-sexologist-prepare {
  background: linear-gradient(135deg, #079db7, #0b6f82);
}

.aboutus-sexologist-prepare h3,
.aboutus-sexologist-prepare p,
.aboutus-sexologist-prepare li {
  color: #ffffff;
}

.aboutus-sexologist-prepare ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.aboutus-sexologist-prepare li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.75;
}

.aboutus-sexologist-prepare li + li {
  margin-top: 14px;
}

.aboutus-sexologist-prepare li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.aboutus-sexologist-darkbox {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-top: 38px;
  padding: 38px;
  border-radius: 28px;
  background: #11191c;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
}

.aboutus-sexologist-darkbox h3,
.aboutus-sexologist-darkbox p {
  color: #ffffff;
}

.aboutus-sexologist-dark-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #df5c98;
  font-size: 27px;
}

.aboutus-sexologist-info {
  margin-top: 38px;
  background: linear-gradient(
    135deg,
    rgba(223, 92, 152, 0.1),
    rgba(7, 157, 183, 0.1)
  );
}

.aboutus-sexologist-steps {
  display: grid;
  gap: 15px;
}

.aboutus-sexologist-steps div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 18px;
  background: #f7fbfc;
}

.aboutus-sexologist-steps span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #079db7;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.aboutus-sexologist-steps p {
  margin: 0;
  color: #536368;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .aboutus-sexologist-section {
    margin: 70px 0;
  }

  .aboutus-sexologist-title h2 {
    font-size: 36px;
  }

  .aboutus-sexologist-split {
    grid-template-columns: 1fr;
  }

  .aboutus-sexologist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .aboutus-sexologist-section {
    margin: 55px 0;
  }

  .aboutus-sexologist-title h2 {
    font-size: 30px;
  }

  .aboutus-sexologist-box,
  .aboutus-sexologist-content,
  .aboutus-sexologist-prepare,
  .aboutus-sexologist-info,
  .aboutus-sexologist-darkbox {
    padding: 24px;
    border-radius: 22px;
  }

  .aboutus-sexologist-heading h3,
  .aboutus-sexologist-content h3,
  .aboutus-sexologist-prepare h3,
  .aboutus-sexologist-info h3,
  .aboutus-sexologist-darkbox h3 {
    font-size: 25px;
  }

  .aboutus-sexologist-darkbox {
    flex-direction: column;
  }
}
.aboutus-patients-location-section {
  margin: 90px 0;
}

.aboutus-location-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 26px;
}

.aboutus-location-card {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(7, 157, 183, 0.1);
}

.aboutus-location-card-highlight {
  background: linear-gradient(135deg, #079db7, #0b6f82);
}

.aboutus-location-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(7, 157, 183, 0.12);
  font-size: 28px;
}

.aboutus-location-card-highlight .aboutus-location-icon {
  background: rgba(255, 255, 255, 0.18);
}

.aboutus-location-card h3 {
  margin: 0 0 22px;
  color: #11191c;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 900;
}

.aboutus-location-card-highlight h3 {
  color: #ffffff;
}

.aboutus-location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aboutus-location-list span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 50px;
  background: #f7fbfc;
  color: #536368;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.aboutus-location-card-highlight .aboutus-location-list span {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.aboutus-location-note {
  margin-top: 32px;
  padding: 30px 34px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(223, 92, 152, 0.1),
    rgba(7, 157, 183, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.aboutus-location-note p {
  margin: 0;
  color: #11191c;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 800;
}

.aboutus-location-note a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 50px;
  background: #df5c98;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.aboutus-location-note a:hover {
  background: #079db7;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .aboutus-location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutus-location-card-highlight {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .aboutus-patients-location-section {
    margin: 65px 0;
  }

  .aboutus-location-grid {
    grid-template-columns: 1fr;
  }

  .aboutus-location-card-highlight {
    grid-column: span 1;
  }

  .aboutus-location-card {
    padding: 26px;
    border-radius: 22px;
  }

  .aboutus-location-card h3 {
    font-size: 22px;
  }

  .aboutus-location-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    border-radius: 22px;
  }

  .aboutus-location-note p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .aboutus-location-list {
    gap: 10px;
  }

  .aboutus-location-list span {
    width: 100%;
    justify-content: flex-start;
  }

  .aboutus-location-note a {
    width: 100%;
    justify-content: center;
  }
}
/* ===== Sexual Health Highlight Styles ===== */

/* Filter Buttons */
.testimonial-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 700px;
}

.testimonial-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  background: #fff;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.testimonial-filter-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.15);
}

.testimonial-filter-btn.active {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
}

.testimonial-filter-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
}

/* Highlighted Sexual Health Card */
.testimonial-sexual-highlight {
  position: relative;
  border: 2px solid rgba(192, 57, 43, 0.25);
  background: linear-gradient(135deg, #fff9f8 0%, #fff 40%, #fff5f3 100%);
  box-shadow:
    0 4px 20px rgba(192, 57, 43, 0.08),
    0 0 0 1px rgba(192, 57, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.testimonial-sexual-highlight::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #c0392b, #e74c3c, #ff6b6b, #c0392b);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: sexualBorderShimmer 4s ease infinite;
}

.testimonial-sexual-highlight:hover::before {
  opacity: 1;
}

.testimonial-sexual-highlight:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(192, 57, 43, 0.15),
    0 0 0 1px rgba(192, 57, 43, 0.1);
  border-color: rgba(192, 57, 43, 0.4);
}

@keyframes sexualBorderShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Sexual Health Badge */
.testimonial-sexual-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.35);
  z-index: 2;
  animation: badgePulse 2.5s ease-in-out infinite;
}

.testimonial-sexual-badge i {
  font-size: 12px;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(192, 57, 43, 0.35); }
  50% { box-shadow: 0 4px 25px rgba(192, 57, 43, 0.55); }
}

/* Avatar highlight for sexual health cards */
.testimonial-sexual-highlight .testimonial-avatar.avatar-sexual {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* Highlighted card stars get a warm tint */
.testimonial-sexual-highlight .testimonial-stars i {
  color: #e74c3c;
}

/* Highlighted card quote icon */
.testimonial-sexual-highlight .testimonial-quote-icon {
  color: rgba(192, 57, 43, 0.12);
}

/* Highlighted read more button */
.testimonial-sexual-highlight .testimonial-read-more {
  color: #c0392b;
}

.testimonial-sexual-highlight .testimonial-read-more:hover {
  color: #e74c3c;
}

/* Filter animation - hide/show cards */
.testimonial-original-card.filter-hidden {
  display: none !important;
}

.testimonial-original-card.filter-show {
  animation: filterFadeIn 0.4s ease forwards;
}

@keyframes filterFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-filter-wrap {
    gap: 8px;
    margin-bottom: 25px;
  }

  .testimonial-filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .testimonial-sexual-badge {
    top: -12px;
    left: 12px;
    font-size: 10px;
    padding: 5px 12px;
  }
}


/* New Testimonials */
/* ===== Sexual Health Highlight Styles ===== */

/* Filter Buttons */
.testimonial-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 700px;
}

.testimonial-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  background: #fff;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.testimonial-filter-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.15);
}

.testimonial-filter-btn.active {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.3);
}

.testimonial-filter-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4);
}

/* Highlighted Sexual Health Card */
.testimonial-sexual-highlight {
  position: relative;
  border: 2px solid rgba(192, 57, 43, 0.25);
  background: linear-gradient(135deg, #fff9f8 0%, #fff 40%, #fff5f3 100%);
  box-shadow:
    0 4px 20px rgba(192, 57, 43, 0.08),
    0 0 0 1px rgba(192, 57, 43, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.testimonial-sexual-highlight::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #c0392b, #e74c3c, #ff6b6b, #c0392b);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: sexualBorderShimmer 4s ease infinite;
}

.testimonial-sexual-highlight:hover::before {
  opacity: 1;
}

.testimonial-sexual-highlight:hover {
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(192, 57, 43, 0.15),
    0 0 0 1px rgba(192, 57, 43, 0.1);
  border-color: rgba(192, 57, 43, 0.4);
}

@keyframes sexualBorderShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Sexual Health Badge */
.testimonial-sexual-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(192, 57, 43, 0.35);
  z-index: 2;
  animation: badgePulse 2.5s ease-in-out infinite;
}

.testimonial-sexual-badge i {
  font-size: 12px;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(192, 57, 43, 0.35); }
  50% { box-shadow: 0 4px 25px rgba(192, 57, 43, 0.55); }
}

/* Avatar highlight for sexual health cards */
.testimonial-sexual-highlight .testimonial-avatar.avatar-sexual {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

/* Highlighted card stars get a warm tint */
.testimonial-sexual-highlight .testimonial-stars i {
  color: #e74c3c;
}

/* Highlighted card quote icon */
.testimonial-sexual-highlight .testimonial-quote-icon {
  color: rgba(192, 57, 43, 0.12);
}

/* Highlighted read more button */
.testimonial-sexual-highlight .testimonial-read-more {
  color: #c0392b;
}

.testimonial-sexual-highlight .testimonial-read-more:hover {
  color: #e74c3c;
}

/* Filter animation - hide/show cards */
.testimonial-original-card.filter-hidden {
  display: none !important;
}

.testimonial-original-card.filter-show {
  animation: filterFadeIn 0.4s ease forwards;
}

@keyframes filterFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-filter-wrap {
    gap: 8px;
    margin-bottom: 25px;
  }

  .testimonial-filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .testimonial-sexual-badge {
    top: -12px;
    left: 12px;
    font-size: 10px;
    padding: 5px 12px;
  }
}
.testimonial-doctor-name {
  font-size: 2.2rem;
  margin: 20px 0;
  color: #c0392b;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.testimonial-doctor-name strong {
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(192, 57, 43, 0.15);
}

@media (max-width: 992px) {
  .testimonial-doctor-name {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .testimonial-doctor-name {
    font-size: 1.4rem;
    margin: 15px 0;
  }
}

@media (max-width: 480px) {
  .testimonial-doctor-name {
    font-size: 1.2rem;
  }
}
/* Floating Buttons */
/* ==============================
   Proper Floating Contact Popup
================================= */

.shanti-contact-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99999;
  font-family: inherit;
}

.shanti-contact-main-btn {
  position: relative;
  min-width: 172px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(135deg, #079db7, #df5c98);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(7, 157, 183, 0.35);
  transition: 0.35s ease;
  overflow: visible;
}

.shanti-contact-main-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(223, 92, 152, 0.35);
}

.shanti-contact-main-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #079db7;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.shanti-contact-main-text {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.shanti-contact-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  background: rgba(7, 157, 183, 0.25);
  animation: shantiContactPulse 2s infinite;
  z-index: -1;
}

@keyframes shantiContactPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* Popup Box */
.shanti-contact-popup {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 390px;
  max-width: calc(100vw - 32px);
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 25px 80px rgba(17, 25, 28, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.94);
  transform-origin: bottom right;
  transition: 0.35s ease;
  pointer-events: none;
}

.shanti-contact-widget.is-open .shanti-contact-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.shanti-contact-popup::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -10px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  transform: rotate(45deg);
}

.shanti-contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f4f7f8;
  color: #11191c;
  cursor: pointer;
  transition: 0.3s ease;
}

.shanti-contact-close:hover {
  background: #df5c98;
  color: #ffffff;
}

/* Popup Header */
.shanti-contact-popup-head {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-right: 34px;
  margin-bottom: 22px;
}

.shanti-contact-head-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #079db7, #df5c98);
  color: #ffffff;
  font-size: 22px;
}

.shanti-contact-popup-head span {
  display: inline-block;
  margin-bottom: 5px;
  color: #079db7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shanti-contact-popup-head h4 {
  margin: 0 0 6px;
  color: #11191c;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}
.shanti-contact-popup-head p {
  margin: 0;
  color: #5e6b70;
  font-size: 14px;
  line-height: 1.55;
}
/* Options */
.shanti-contact-popup-options {
  display: grid;
  gap: 12px;
}
.shanti-contact-action {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 18px;
  text-decoration: none;
  background: #f7fbfc;
  border: 1px solid rgba(7, 157, 183, 0.1);
  transition: 0.3s ease;
}
.shanti-contact-action:hover {
  transform: translateX(-5px);
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}
.shanti-contact-action-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
}
.shanti-contact-call .shanti-contact-action-icon {
  background: linear-gradient(135deg, #079db7, #0b7890);
}
.shanti-contact-email .shanti-contact-action-icon {
  background: linear-gradient(135deg, #df5c98, #c44480);
}
.shanti-contact-whatsapp .shanti-contact-action-icon {
  background: linear-gradient(135deg, #128c7e, #25d366);
}
.shanti-contact-action h5 {
  margin: 0 0 3px;
  color: #11191c;
  font-size: 15px;
  font-weight: 900;
}

.shanti-contact-action p {
  margin: 0;
  color: #5e6b70;
  font-size: 13px;
  line-height: 1.35;
}

.shanti-contact-arrow {
  margin-left: auto;
  color: #079db7;
  font-size: 20px;
  font-weight: 900;
  transition: 0.3s ease;
}

.shanti-contact-action:hover .shanti-contact-arrow {
  transform: translateX(4px);
}

/* Open State */
.shanti-contact-widget.is-open .shanti-contact-pulse {
  display: none;
}

.shanti-contact-widget.is-open .shanti-contact-main-btn {
  background: #11191c;
}

/* Mobile */
@media (max-width: 575px) {
  .shanti-contact-widget {
    right: 14px;
    bottom: 14px;
  }

  .shanti-contact-main-btn {
    min-width: 58px;
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .shanti-contact-main-text {
    display: none;
  }

  .shanti-contact-main-icon {
    background: transparent;
    color: #ffffff;
    font-size: 22px;
  }

  .shanti-contact-popup {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 86px;
    width: auto;
    max-width: none;
    padding: 20px;
    border-radius: 24px;
    transform-origin: bottom center;
  }

  .shanti-contact-popup::after {
    display: none;
  }

  .shanti-contact-popup-head {
    padding-right: 30px;
  }

  .shanti-contact-popup-head h4 {
    font-size: 19px;
  }

  .shanti-contact-popup-head p {
    font-size: 13px;
  }

  .shanti-contact-action {
    padding: 13px;
  }
}
@media (max-width:1199px){

.nav-dropdown-premium.active .submenu-premium-panel{
display:block !important;
opacity:1 !important;
visibility:visible !important;
position:static !important;
max-height:1000px !important;
overflow:visible !important;
transform:none !important;
}
}
@media (max-width: 991px) {
    .submenu-premium-panel {
        max-height: 0;
        overflow: hidden;
        transition: all .4s ease;
    }
    .nav-dropdown-premium.active .submenu-premium-panel {
        max-height: 700px;
    }
    .dropdown-arrow {
        transition: .3s ease;
    }
    .nav-dropdown-premium.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}
@media (min-width: 992px) {
    .nav-dropdown-premium:hover .submenu-premium-panel {
        display: block;
    }
}
/* =====================================================
   BULLETPROOF MOBILE DROPDOWN ACCORDION
===================================================== */
@media (max-width: 1499.98px) {
    .submenu-premium-panel {
        display: block !important; /* Required so max-height can animate */
        max-height: 0;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        transform: none !important;
        transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
        box-shadow: none !important;
    }

    .nav-dropdown-premium.active .submenu-premium-panel {
        max-height: 600px !important; /* Expands the accordion */
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        margin-top: 4px !important;
        margin-bottom: 12px !important;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .nav-dropdown-premium.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Desktop Hover Recovery */
@media (min-width: 1500px) {
    .nav-dropdown-premium:hover .submenu-premium-panel {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}
/* =====================================================
   BULLETPROOF MOBILE & TABLET SUBMENU OVERRIDE
===================================================== */
@media (max-width: 1499.98px) {
    /* Base hidden state on mobile/tablet */
    .nav-dropdown-premium .submenu-premium-panel {
        display: none !important;
        position: static !important;
        width: 100% !important;
        min-width: 0 !important;
        box-shadow: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: #f8fcfd !important;
        border-radius: 12px !important;
        padding: 8px 12px !important;
        margin: 6px 0 12px 0 !important;
        border: none !important;
    }

    /* Expanded state (triggers on either class) */
    .nav-dropdown-premium.active .submenu-premium-panel,
    .nav-dropdown-premium.mobile-submenu-open .submenu-premium-panel {
        display: block !important;
    }

    /* Rotate arrow indicator */
/*    .nav-dropdown-premium.active .dropdown-arrow,
    .nav-dropdown-premium.mobile-submenu-open .dropdown-arrow {
        transform: rotate(180deg) !important;
        transition: transform 0.3s ease;
    }
}
*/
    .nav-dropdown-premium.show .dropdown-arrow {
    transform: rotate(180deg);
}
/* Desktop Hover Restoration */
@media (min-width: 1500px) {
    .nav-dropdown-premium:hover .submenu-premium-panel {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
}
/*Youtube channel*/
.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.18);
}

.youtube-channel-btn:hover {
    transform: translateY(-3px);
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.28);
}

.youtube-channel-btn i {
    font-size: 20px;
}

@media (max-width: 576px) {
    .youtube-channel-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
}
/*Instagram*/
.social-media-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

/* YouTube Button */

.youtube-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(255,0,0,.18);
}

.youtube-channel-btn:hover {
    transform: translateY(-3px);
    color: #fff !important;
    box-shadow: 0 15px 35px rgba(255,0,0,.28);
}


/* Instagram Button */

.instagram-channel-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 28px;
    border-radius:50px;
    background:linear-gradient(
        135deg,
        #833AB4,
        #FD1D1D,
        #FCAF45
    );
    color:#fff !important;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(253,29,29,.18);
}

.instagram-channel-btn:hover{
    transform:translateY(-3px);
    color:#fff !important;
    box-shadow:0 15px 35px rgba(253,29,29,.28);
}


/* Icons */

.youtube-channel-btn i,
.instagram-channel-btn i{
    font-size:20px;
}


/* Mobile */

@media(max-width:576px){

    .youtube-channel-btn,
    .instagram-channel-btn{
        width:100%;
        justify-content:center;
        padding:12px 20px;
    }

}