 .modern-footer {
    background: #1f1f1f;
    color: #fff;
    padding: 70px 0 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.7;
    color: #d1d1d1;
}

.footer-logo img {
    max-width: 140px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1d1d1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00d4aa;
}

.subscribe-form input {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #2b2b2b;
    color: #fff;
}

.subscribe-form input::placeholder {
    color: #aaa;
}

.subscribe-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #ffffff;
    color: #1f1f1f;
    font-weight: 600;
    cursor: pointer;
}

.subscribe-form button:hover {
    background: #00d4aa;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom img {
    height: 90px;
}

.footer-bottom-center {
    font-size: 14px;
    color: #bbb;
}

.footer-bottom-right a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-left: 10px;
    transition: all 0.3s;
}

.footer-bottom-right a:hover {
    background: #00d4aa;
    border-color: #00d4aa;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
        gap: 20px;
    }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        /* :root {
            --primary: #0a2540;
            --secondary: #00d4aa;
            --accent: #ff6b6b;
            --light: #f8f9fa;
            --dark: #1a1a2e;
            --gold: #d4af37;
            --gray: #6c757d;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        } */
.hero::before {
    background: linear-gradient(rgba(10,37,64,0.5), rgba(10,37,64,0.6));
}
.hero::before {
    background: linear-gradient(rgba(11,60,73,0.7), rgba(11,60,73,0.8));
}



 :root {
    --primary: #123D3B;
    --secondary: #2FA84F;
    --accent: #F9C74F;
    --light: #F7FBF9;
    --dark: #1B2B2B;
    --gray: #6c757d;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            font-family: 'Segoe UI', sans-serif;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--primary);
            color: white;
            padding: 1.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--gold);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background: linear-gradient(45deg, var(--secondary), #00b894);
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
        }

        /* linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.9)), */
        
        /* Hero Section */
       .hero {
    position: relative;
    width: 100%;
    min-height: 690px; /* desktop fixed height */
    
    background-image: url('../Malaria\ Banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin-top: 80px;
    color: #fff;
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10,37,64,0.5), rgba(10,37,64,0.6));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        
        .hero-date {
            font-size: 1.5rem;
            color: #f9fbfc;;
            font-weight: 600;
            margin-bottom: 2rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }
        
        /* Sections */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .light-bg {
            background-color: var(--light);
        }
        
        /* Why Attend Cards */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            text-align: center;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-card.featured {
            border-top: 5px solid var(--gold);
            transform: scale(1.05);
        }
        
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
        }
        
        .pricing-features {
            list-style: none;
            margin: 20px 0;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .pricing-features i {
            color: var(--secondary);
            margin-right: 10px;
        }
        
        .full-width {
            width: 100%;
        }
        
        /* Speakers */
        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .speaker-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .speaker-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .speaker-img {
            height: 250px;
            overflow: hidden;
        }
        
        .speaker-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .speaker-card:hover .speaker-img img {
            transform: scale(1.05);
        }
        
        .speaker-info {
            padding: 25px;
        }
        
        .speaker-info h3 {
            font-size: 1.4rem;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .speaker-info p {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .speaker-info .bio {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Popup */
        .registration-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        .registration-popup.show {
            display: flex;
        }
        
        .popup-content {
            background: white;
            padding: 40px;
            border-radius: 16px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.35s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .close-popup {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: background 0.3s;
        }
        
        .close-popup:hover {
            background: var(--dark);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-column p {
            opacity: 0.8;
            margin-bottom: 20px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
            
            nav ul {
                display: none;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-date {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
            
            .speakers-grid {
                grid-template-columns: 1fr;
            }
            
            .popup-content {
                width: 95%;
                padding: 25px;
                border-radius: 16px 16px 0 0;
            }
            
            @keyframes slideUp {
                from { transform: translateY(100%); }
                to { transform: translateY(0); }
            }
        }
        
        @media (max-width: 576px) {
            .header-container {
                padding: 15px;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .cta-button {
                padding: 10px 25px;
            }
            
            .price {
                font-size: 2.5rem;
            }
        }
        
        /* Utility Classes */
        .hidden {
            display: none;
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .text-center {
            text-align: center;
        }
        
        .mt-4 { margin-top: 2rem; }
        .mb-4 { margin-bottom: 2rem; }
        
        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            font-family: 'Segoe UI', sans-serif;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.2);
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }
        
        .plan-info {
            background: var(--primary);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .plan-info h3 {
            color: white;
            margin-bottom: 10px;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: white;
            color: var(--primary);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .quantity-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .quantity-display {
            font-size: 1.5rem;
            font-weight: bold;
            min-width: 40px;
            text-align: center;
        }
        
        .total-price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin: 20px 0;
            text-align: center;
        }
        
        .order-summary {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        
        .order-summary h4 {
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .order-summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .order-total {
            display: flex;
            justify-content: space-between;
            font-size: 1.2rem;
            font-weight: bold;
            padding-top: 10px;
            margin-top: 10px;
            border-top: 2px solid #ddd;
        }
        
        .payment-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .payment-form-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .step-indicator {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            gap: 20px;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ddd;
            color: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .step.active .step-number {
            background: var(--secondary);
            color: white;
        }
        
        .step-label {
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .step.active .step-label {
            color: var(--primary);
            font-weight: 600;
        }
        
        .step-content {
            display: none;
        }
        
        .step-content.active {
            display: block;
        }
        
        /* Error styles */
        .error {
            border-color: #dc3545 !important;
        }
        
        .error-message {
            color: #dc3545;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        /* Loader */
        .loader {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .loader-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--secondary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 15px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }
        
        .success-icon {
            font-size: 4rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        /* Disabled button */
        .cta-button:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none !important;
        }

        header {
    z-index: 9999;
}
nav a {
    pointer-events: auto;
}


.program-section {
    padding: 40px 0 60px;
}

.program-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}

.pdf-viewer {
    width: 100%;
    height: 850px;
    border: 1px solid #ddd;
    background: #f5f5f5;
}

.pdf-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 65px;       
    width: auto;
    display: block;
}

.logo-with-text span {
    margin-left: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.logo-with-text span span {
    color: var(--secondary);


    
}



/* Hamburger button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
        z-index: 10001;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        display: none;
        z-index: 10000;
    }

    nav.active {
        display: block;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 15px 0;
        text-align: center;
    }
}

        .policy-section {
            padding: 140px 0 80px;
            background: #f5f7fa;
        }

        .policy-card {
            max-width: 900px;
            margin: auto;
            background: #ffffff;
            padding: 50px;
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .policy-card h1 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 30px;
        }

        .policy-card h3 {
            color: var(--secondary);
            margin-top: 30px;
            margin-bottom: 10px;
        }

        .policy-card p,
        .policy-card li {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
        }

        .policy-card ul {
            padding-left: 20px;
            margin-top: 10px;
        }

        .policy-card li {
            margin-bottom: 10px;
        }

        .back-link {
            display: inline-block;
            margin-top: 40px;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        .footer-bottom-center a.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom-center a.footer-link:hover {
    text-decoration: underline;
}


.program-section {
    padding-top: 150px;   /* space from header */
    padding-bottom: 80px;
}