/* STRONG 2024 - Redesign CSS */

:root {
    --primary-color: #fc7b02;
    /* Orange */
    --primary-hover: #fbb36b;
    /* Darker Orange */
    --secondary-color: #5D4037;
    /* Brown */
    --accent-color: #D4AF37;
    /* Yellow Gold */
    --text-color: #666666;
    --heading-color: #3E2723;
    /* Dark Brown for Headings */
    --bg-light: #f9f9f9;
    --bg-hero-start: #3E2723;
    /* Dark Brown */
    --bg-hero-end: #000000;
    --font-main: 'Inter', 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
}

/* Buttons */
.btn {
    border-radius: 50px !important;
    /* Force pill shape */
    font-family: var(--font-main) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    padding: 12px 30px !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    border-width: 2px !important;
    /* Ensure visible borders */
}

/* Primary Button (Solid) */
.btn-primary,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:visited {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover) !important;
    border-color: #FFE0B2 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
    color: #F4C430 !important;

}

/* Outline Primary Button (Matches user's class combo) */
.btn-outline.btn-primary {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: none;
}

.btn-outline.btn-primary:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

/* White Outline Button (for dark backgrounds) */
.btn-outline-light {
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    background: transparent !important;
}

.btn-outline-light:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Override Theme Specifics */
.custom-border-width {
    border-width: 2px !important;
}

.custom-border-radius {
    border-radius: 50px !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-hero-start) 0%, var(--bg-hero-end) 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    color: #fff;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fallback or gradient if image missing */
    background: radial-gradient(circle at center, rgba(255, 165, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 1px 4px 15px rgba(212, 175, 55, 0.3);
}

.hero-title-description {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: -10px;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #F4C430;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Login Card in Hero */
.login-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.login-card h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    text-align: center;
}

/* Cards */
.custom-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Countdown */
.countdown-wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

/* Footer */
.footer {
    background: #1a1a1a !important;
    padding: 20px 0 20px !important;
    color: #999 !important;
    border-top: none !important;
}

.footer h4 {
    color: #fff !important;
}

.footer a {
    color: #ccc !important;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.footer .container .row>div {
    margin-bottom: 20px !important;
}

.bg-light-gray {
    background-color: var(--bg-light) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .d-flex.gap-3 {
        justify-content: center;
    }
}

/* --- NEW SECTIONS --- */

/* --- HEADER & NAVIGATION REDESIGN --- */

/* Force White Header Background with Blur */
/* Force White Header Background with Blur */
html #header .header-body {
    background: rgba(255, 255, 255, 0.98) !important;
    /* Semi-transparent for blur effect */
    border-bottom: 1px solid rgba(238, 238, 238, 0.4);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    min-height: 90px;
    /* Ensure enough height */
}

/* Remove transparent overlays from theme */
#header.header-semi-transparent .header-body:before {
    display: none !important;
}

/* Logo Area */
.header-logo img {
    margin-top: 5px;
    transition: all 0.3s ease;
}

/* Main Menu Items */
.header-nav-main nav>ul>li>a {
    font-family: var(--font-main) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 14px !important;
    color: #333 !important;
    /* Dark text */
    padding: 25px 18px !important;
    background: transparent !important;
    transition: all 0.3s ease;
}

/* Hover & Active States */
.header-nav-main nav>ul>li:hover>a,
.header-nav-main nav>ul>li.active>a,
.header-nav-main nav>ul>li.open>a {
    color: var(--primary-color) !important;
    background: rgba(255, 165, 0, 0.05) !important;
    /* Subtle green bg on hover */
    box-shadow: none !important;
    border: none !important;
    border-radius: 5px !important;
}

/* Desktop Menu Specifics (Borders & Font Size) */
@media (min-width: 992px) {
    .header-nav-main nav>ul>li>a {
        padding: 22px 18px !important;
        /* Reduced padding for borders */
        border-top: 3px solid transparent !important;
        border-bottom: 3px solid transparent !important;
        border-radius: 0 !important;
    }

    .header-nav-main nav>ul>li:hover>a,
    .header-nav-main nav>ul>li.active>a,
    .header-nav-main nav>ul>li.open>a {
        border-top: 3px solid var(--primary-color) !important;
        border-bottom: 3px solid var(--primary-color) !important;
        border-radius: 0 !important;
        font-size: 15px !important;
        background: rgba(255, 165, 0, 0.05) !important;
    }
}

/* Dropdown Menu */
.dropdown-menu {
    background: #ffffff !important;
    border: none !important;
    border-top: 3px solid var(--primary-color) !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    margin-top: 0 !important;
    padding: 10px 0 !important;
}

.dropdown-item {
    padding: 12px 25px !important;
    font-size: 14px !important;
    color: #555 !important;
    font-weight: 500 !important;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f9f9f9 !important;
    color: var(--primary-color) !important;
    padding-left: 30px !important;
    /* Slide effect */
}

/* Mobile Menu Button */
.header-btn-collapse-nav {
    background: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 5px;
}

/* Cart & Member Area Specifics */
.header-nav-main i.fa {
    margin-right: 5px;
    font-size: 1.1em;
}

.my-cart {
    background: var(--primary-color);
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 11px;
    position: relative;
    top: -2px;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Activity Cards */
.activity-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 32px;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-icon {
    background: var(--primary-color);
    color: #fff;
}

/* Speaker Avatars */
.speaker-item {
    text-align: center;
    margin-bottom: 30px;
}

.speaker-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.speaker-item:hover .speaker-avatar {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline */
.timeline-box {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.timeline-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

/* Pricing Cards */
.pricing-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.pricing-card.popular small {
    color: #fff !important;
}

.pricing-header {
    padding: 30px;
    background: var(--bg-light);
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-card.popular .pricing-header {
    background: var(--primary-color);
    color: #fff;
}

.pricing-card.popular .pricing-header h3,
.pricing-card.popular .pricing-header .price {
    color: #fff;
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
}

.pricing-footer {
    padding: 30px;
    text-align: center;
    background: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--heading-color);
    margin: 15px 0;
}

.price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-color);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
    font-size: 1.8rem;
    text-transform: none !important;
}

/* Mobile Menu Background Blur */

/* Mobile: Hamburger menu button to the right */
@media (max-width: 991px) {
    html #header .header-container {
        flex-direction: column;
        position: relative;
    }

    /* Position hamburger button to top-right of header */
    html #header .header-btn-collapse-nav {
        position: absolute !important;
        top: 18px !important;
        right: 15px !important;
        margin: 0 !important;
        z-index: 10;
    }

    /* Sticky header: adjust hamburger position */
    html.sticky-header-active #header .header-btn-collapse-nav {
        top: 50% !important;
        transform: translateY(-50%);
    }
}



/* Sticky Header Shadow & Blur & Compact Layout */
/* Sticky Header Shadow & Blur & Compact Layout */
html.sticky-header-active #header .header-body {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    /* Semi-transparent to let image show */
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    min-height: 70px !important;
    height: 70px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Switch to Row Layout on Sticky to save space */
/* Switch to Row Layout on Sticky to save space */
html.sticky-header-active #header .header-container {
    flex-direction: row !important;
    justify-content: center !important;
    /* Center the menu since logo is gone */
    height: 100% !important;
    align-items: center !important;
}

/* Hide Logo on Sticky */
html.sticky-header-active #header .header-logo,
html.sticky-header-active #header .header-logo-area {
    display: none !important;
}

/* Remove padding/margins that push content down to fix centering */
html.sticky-header-active #header .header-row,
html.sticky-header-active #header .header-nav {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
    flex-grow: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* Larger font and Orange Color as requested */
html.sticky-header-active .header-nav-main nav>ul>li>a {
    font-size: 16px !important;
    color: var(--primary-color) !important;
    font-weight: 700 !important;
}

.welcome-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.welcome-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    padding: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    border-bottom: 3px solid #cd9e1e;
    /* Brand color */
}

.welcome-heading-wrapper {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.welcome-heading-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #cd9e1e;
}

.welcome-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 165, 0, 0.1);
    position: absolute;
    top: 30px;
    right: 30px;
}

.signature-box {
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #cd9e1e;
    border-radius: 0 10px 10px 0;
    display: inline-block;
    width: 100%;
}

.signature-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    display: block;
}

.signature-role {
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
}

.img-frame-wrapper {
    position: relative;
    padding: 15px;
}

.img-frame-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #E65100;
    opacity: 0.3;
    border-radius: 15px;
    transform: translate(15px, 15px);
    z-index: 0;
}

.img-frame {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.img-placeholder {
    width: 100%;
    height: 450px;
    /* Taller */
    background: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.img-placeholder i {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 15px;
}

.img-placeholder span {
    color: #6c757d;
    font-weight: 600;
    text-align: center;
    padding: 0 20px;
}

/* Video Section Custom Styles */
.video-wrapper-stylized {
    background: #333;
    /* Dark frame for cinema feel */
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    position: relative;
    background: linear-gradient(145deg, #2a2a2a, #383838);
}

/* Decorative abstract elements behind video */
.video-wrapper-stylized::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--primary-color);
    border-right: 5px solid var(--primary-color);
    border-radius: 0 25px 0 0;
    z-index: -1;
    opacity: 0.6;
}

.video-wrapper-stylized::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 0 0 0 25px;
    z-index: -1;
    opacity: 0.6;
}

.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

/* Play button overlay effect (optional, implies interactivity) */
.video-overlay-hint {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
    z-index: 10;
}

/* --- NEW HEADER LAYOUT FIXES (Stacked Logo & Menu) --- */

/* Stacked Header Layout */
html #header .header-body {
    height: auto !important;
    /* Allow variable height */
    min-height: 120px !important;
}

html #header .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 0px;
}

/* Ensure Row width is correct for stacked layout */
html #header .header-row {
    width: 100%;
    justify-content: center;
}

/* Logo Center Alignment */
html #header .header-logo {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

html #header .header-logo a {
    display: inline-block;
}

/* Menu Center Alignment */
html #header .header-nav-main {
    margin-top: 0 !important;
}

html #header .header-nav {
    min-height: auto !important;
    padding: 0 !important;
}

/* Adjust sticky header behavior */
html.sticky-header-active #header .header-body {
    min-height: 80px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

html.sticky-header-active .header-logo img {
    max-height: 50px !important;
    /* Shrink logo on scroll */
}

/* Hide top row spacing on sticky if needed */
html.sticky-header-active .header-row.pt-3 {
    padding-top: 0.5rem !important;
    padding-bottom: 0 !important;
}

/* Menu items spacing fix */
html #header .header-nav-main nav>ul {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

/* Menu items spacing fix */
html #header .header-nav-main nav>ul {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

/* Logo Area Adjustment */
.header-logo-area {
    padding-bottom: 0 !important;
    /* Reduce gap */
}

/* Menu Text Styling - Bold Pink Uppercase */
html #header .header-nav-main nav>ul>li>a {
    color: var(--primary-color) !important;
    /* Specific Pink/Magenta */
    font-weight: 800 !important;
    /* Extra bold */
    font-size: 12px !important;
    /* Small, compact text */
    text-transform: uppercase !important;
    padding: 10px 15px !important;
    background: transparent !important;
    /* No colored backgrounds */
}

/* Hover State - Subtle Pink Text Highlight */
html #header .header-nav-main nav>ul>li:hover>a,
html #header .header-nav-main nav>ul>li.active>a {
    color: var(--primary-hover) !important;
    /* Darker Pink on hover */
    background: rgba(216, 27, 96, 0.04) !important;
    /* Very subtle tint */
    border-radius: 4px;
    box-shadow: none !important;
    border: none !important;
}

/* Dropdown styling to match */
.dropdown-menu {
    border-top: 2px solid var(--primary-hover) !important;
}

.dropdown-item:hover {
    color: var(--primary-hover) !important;
}

/* Sticky Header - Hide Logo Logic (User requested this previously, likely still wants it) */
html.sticky-header-active .header-logo-area {
    display: none !important;
}

html.sticky-header-active #header .header-body {
    min-height: 40px !important;
    padding: 0 !important;
}

html.sticky-header-active .header-menu-area {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    margin-bottom: 0 !important;
}

/* Separator Line between Logo and Menu */
.header-separator {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 10px;
    height: 4px;
    background: radial-gradient(ellipse at center, var(--primary-color) 0%, transparent 70%);
    border-radius: 100%;
    opacity: 0.9;
}

/* Hide separator when sticky header is active */
html.sticky-header-active .header-separator {
    display: none !important;
}

/* Fix for Step/Timeline Green Shadow logic */
.custom-step-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    /* Clean shadow, overriding any green */
    margin: 20px;
    border: 1px solid #f0f0f0;
}

.custom-step-item .step {
    flex-shrink: 0;
    margin-right: 25px;
    position: relative;
}

/* Circle background for number */
.custom-step-item .step-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 80px;
    width: 80px;
    height: 80px;
    color: var(--primary-color) !important;
    display: block;
    text-align: center;
    background: rgba(235, 126, 17, 0.1);
    /* Light orange bg */
    border-radius: 50%;
    /* Remove any weird shadows */
    text-shadow: none !important;
    box-shadow: none !important;
}

.custom-step-item .step-content {
    padding-top: 10px;
    margin-left: 1px !important;
    box-shadow: none !important;
}

.custom-step-item .step-content h4 {
    margin-top: 0;
    font-weight: 700;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.custom-step-item .step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Doctor Frame Styles (Responsive) */
.doctor-overlay {
    position: absolute;
    z-index: 2;
    bottom: 1vw;
    right: 1vw;
    width: 27vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .doctor-overlay {
        display: none;
    }

    .primary-hero {
        padding-top: 60px;
    }

    .logo-animate {
        padding-top: 80px;
    }
}

.doctor-frame {
    background: #fff;
    padding: 0.4vw;
    border-radius: 0.8vw;
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: docFadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: transform 0.3s ease;
}

.doctor-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 1vw 2vw rgba(0, 0, 0, 0.4);
}

.doctor-frame img {
    border-radius: 0.5vw;
    display: block;
}

@keyframes docFadeIn {
    from {
        opacity: 0;
        transform: translateY(2vw);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {


    html #header .header-nav-bar-primary {
        background: rgba(249, 249, 249, 0.5) !important;
        color: #FFF !important;
    }
}

.logo-animate {
    animation: heartbeat 1.5s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    /* Realistic easing */
    transform-origin: center center;
    display: inline-block;
    width: 30vw;
    /* Ensure base width is consistent */
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.1);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(1);
    }
}