/* =============================================
   CalCure - Professional Healthcare Platform
   ============================================= */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    /* Secondary Colors */
    --secondary: #10B981;
    --accent: #F59E0B;
    /* Neutral Colors */
    --dark: #1E293B;
    --gray-900: #0F172A;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;
    --white: #FFFFFF;
    /* Background */
    --bg-light: #F8FAFC;
    --bg-blue: #EFF6FF;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =============================================
   Top Bar
   ============================================= */
.top-bar {
    /* background: var(--primary-dark);*/
    background: linear-gradient(135deg, #4169E1 0%, #00B4D8 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 25px;
}

.top-left i,
.top-right a {
    margin-right: 8px;
}

.top-right a {
    color: white;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-decoration: none;
}

    .top-right a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* =============================================
   Header
   ============================================= */
.header {
    background: white;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

    .logo i {
        font-size: 32px;
    }

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--primary);
    }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-login:hover {
        color: var(--primary);
    }

.dropdown {
    position: relative;
}

.btn-register {
    /*background: var(--primary);*/
    background: linear-gradient(135deg, #4169E1 0%, #00B4D8 100%);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

    .btn-register:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    min-width: 200px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

    .dropdown-content a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        color: var(--gray-700);
        text-decoration: none;
        transition: var(--transition);
        border-left: 3px solid transparent;
    }

        .dropdown-content a:hover {
            background: var(--bg-light);
            border-left-color: var(--primary);
            color: var(--primary);
        }

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

    .mobile-toggle:hover {
        color: var(--primary-dark);
    }

    .mobile-toggle i {
        transition: var(--transition);
    }

/* =============================================
   Hero Section
   ============================================= */
.hero {
    background: linear-gradient(135deg, var(--bg-blue) 0%, #DBEAFE 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

    .hero-badge i {
        color: var(--secondary);
    }

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

    .hero-text h1 .highlight {
        color: var(--primary);
    }

.hero-text p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-weight: 500;
}

    .feature-item i {
        color: var(--primary);
        font-size: 20px;
    }

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    text-align: center;
}

    .image-wrapper img {
        max-width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
        display: block;
    }

.floating-card {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

    .floating-card i {
        font-size: 24px;
        color: var(--primary);
    }

.card-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.rating-badge {
    position: absolute;
    bottom: 10%;
    right: 10%;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

    .rating-badge i {
        font-size: 32px;
        color: #EF4444;
    }

    .rating-badge strong {
        display: block;
        font-size: 20px;
        color: var(--dark);
    }

    .rating-badge span {
        display: block;
        font-size: 12px;
        color: var(--gray-500);
    }

/* =============================================
   Buttons
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    /*background: var(--primary); >> MH >> 25 JAN 2026 */
    background: linear-gradient(135deg, #4169E1 0%, #00B4D8 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
    }

.btn-secondary {
    background: white;
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-secondary:hover {
        background: var(--primary);
        color: white;
    }

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

    .btn-outline-primary:hover {
        background: var(--primary);
        color: white;
    }

.btn-white {
    background: white;
    color: var(--primary);
}

    .btn-white:hover {
        background: var(--gray-100);
    }

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

    .btn-outline-white:hover {
        background: white;
        color: var(--primary);
    }

/* =============================================
   Stats Section
   ============================================= */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

    .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.stat-info h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-info p {
    color: var(--gray-600);
    font-size: 14px;
}

/* =============================================
   Section Headers
   ============================================= */
.section-header {
    margin-bottom: 50px;
}

    .section-header.centered {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
    }

.section-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* =============================================
   About Section
   ============================================= */
.about-section {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: var(--shadow-xl);
    }

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

    .experience-badge h3 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .experience-badge p {
        font-size: 14px;
        opacity: 0.9;
    }

.about-features {
    margin: 30px 0;
}

.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .about-feature i {
        font-size: 24px;
        color: var(--secondary);
        flex-shrink: 0;
    }

    .about-feature h4 {
        font-size: 18px;
        font-weight: 600;
        color: var(--dark);
        margin-bottom: 5px;
    }

    .about-feature p {
        color: var(--gray-600);
        font-size: 14px;
    }

/* =============================================
   Services Section
   ============================================= */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

    .service-link:hover {
        gap: 12px;
    }

/* =============================================
   Pricing Section
   ============================================= */
.pricing-section {
    padding: 100px 0;
    background: white;
}

    .pricing-section.clinic-pricing {
        background: var(--bg-light);
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary);
    }

    .pricing-card.featured {
        border-color: var(--primary);
        background: linear-gradient(135deg, #ffffff 0%, var(--bg-blue) 100%);
        transform: scale(1.05);
    }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.05);
        }

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 15px;
    margin-bottom: 25px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

    .pricing-price .currency {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary);
    }

    .pricing-price .amount {
        font-size: 56px;
        font-weight: 900;
        color: var(--primary);
    }

    .pricing-price .period {
        font-size: 16px;
        color: var(--gray-600);
        margin-left: 5px;
    }

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

    .pricing-features li {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-200);
        color: var(--gray-700);
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

    .pricing-features i {
        color: var(--secondary);
        font-size: 18px;
    }

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* =============================================
   Footer
   ============================================= */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

    .footer-logo i {
        color: var(--primary);
    }

.footer-col p {
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 10px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

.footer-col h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: var(--gray-400);
            text-decoration: none;
            transition: var(--transition);
        }

            .footer-col ul li a:hover {
                color: var(--primary);
                padding-left: 5px;
            }

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 20px;
}

    .footer-links a {
        color: var(--gray-400);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-links a:hover {
            color: var(--primary);
        }

/* =============================================
   Responsive Design
   ============================================= */
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-left {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

        .top-left span {
            margin-right: 0;
        }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        box-shadow: var(--shadow-xl);
        transition: left 0.3s ease;
        z-index: 998;
        overflow-y: auto;
    }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu ul {
            flex-direction: column;
            padding: 20px;
            gap: 0;
        }

            .nav-menu ul li {
                border-bottom: 1px solid var(--gray-200);
            }

                .nav-menu ul li a {
                    display: block;
                    padding: 15px 10px;
                }

    .header-actions {
        position: fixed;
        bottom: 0;
        left: -100%;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

        .header-actions.active {
            left: 0;
        }

    .btn-login {
        text-align: center;
        padding: 12px;
        border: 2px solid var(--primary);
        border-radius: 50px;
        display: block;
    }

    .dropdown {
        width: 100%;
    }

    .btn-register {
        width: 100%;
        justify-content: center;
        display: flex;
    }

        .btn-register i {
            transition: transform 0.3s ease;
        }

    .dropdown.active .btn-register i {
        transform: rotate(180deg);
    }

    .dropdown-content {
        position: static;
        margin-top: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--gray-200);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--gray-50);
    }

    .dropdown:hover .dropdown-content {
        display: none; /* Disable hover on mobile */
    }

    .dropdown.active .dropdown-content {
        display: block;
        max-height: 300px;
    }

    .dropdown-content a {
        border-left: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 15px 20px;
        background: white;
    }

        .dropdown-content a:hover {
            background: var(--bg-light);
        }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-content {
        padding-top: 40px;
    }

    .hero-features {
        justify-content: center;
    }

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

    .services-grid,
    .pricing-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

        .cta-buttons .btn {
            width: 100%;
            justify-content: center;
        }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

        .hero-buttons .btn {
            width: 100%;
            justify-content: center;
        }

    .about-content {
        gap: 30px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1);
        }



    /* >> MH >> 15 DEC 2025*/

    /* Add smooth transitions and modern effects */
    .header {
        transition: all 0.3s ease;
    }

        .header.scrolled {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

    /* Ensure dropdown works smoothly */
    .dropdown {
        position: relative;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: white;
        min-width: 200px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        border-radius: 8px;
        margin-top: 0.5rem;
        z-index: 1000;
    }

        .dropdown-content a {
            padding: 12px 20px;
            display: block;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .dropdown-content a:hover {
                background: linear-gradient(135deg, #4169E1 0%, #00B4D8 100%);
                color: white;
            }
/*
    .dropdown:hover .dropdown-content {
        display: block;
    }*/
}






/* ===== FORCE REGISTER DROPDOWN TO BE CLICK-ONLY ===== */

/* Kill ALL hover behavior */
.dropdown:hover .dropdown-content {
    display: none !important;
}

/* Base state */
.dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    z-index: 999999;
}

/* Active state */
.dropdown.active .dropdown-content {
    display: block !important;
}





/* ===== MOBILE REGISTER DROPDOWN FIX ===== */
@media (max-width: 768px) {
    .dropdown-content {
        display: none !important;
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #e5e7eb;
    }

    .dropdown.active .dropdown-content {
        display: block !important;
    }
}



.logo-img {
    height: 77px; /* adjust as needed */
}
