:root {
            --primary: #3F69AA;
            --secondary: #6F9FD8;
            --accent: #FFD700;
            --bg-light: #EDF1FF;
            --white: #ffffff;
            --footer-blue: #2c4d82; 
        }
        
        
        

        body { margin: 0; background: var(--bg-light); font-family: 'Segoe UI', sans-serif; color: #333; }

        /* Navigation */
        .navbar {
            background: var(--primary); position: fixed; top: 0; width: 100%; z-index: 1000;
            padding: 10px 0; color: white; display: flex; justify-content: space-between; align-items: center;
        }
        .mainbar { cursor: pointer; padding: 0 20px; font-weight: bold; font-size: 22px; }
        .login-pulse-btn { background: var(--accent); color: #222; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 800; margin-right: 20px; animation: pulse-animation 2s infinite; }
        
        @keyframes pulse-animation {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }
        
        
        

        /* Side Menu */
        .side-menu {
            display: none; background: rgba(63, 105, 170, 0.98); padding: 20px; list-style: none;
            position: absolute; top: 55px; left: 0; width: 250px; z-index: 2000; box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }
        .menu-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
        .img-box-menu img { width: 35px; height: 35px; border-radius: 50%; border: 2px solid white; object-fit: cover; }
        .side-menu a { color: white; text-decoration: none; font-weight: bold; }

        /* Sections hero */
        .hero { margin-top: 55px; background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); padding: 90px 20px; text-align: center; color: white; }
        .cta-button { background: var(--accent); color: #2c3e50; padding: 18px 45px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 20px; display: inline-block; transition: 0.3s; }
        /* Sections Styling */




        /* Footer Styles */
        footer { background: var(--footer-blue); color: white; padding: 40px 20px; margin-top: 50px; border-top: 4px solid var(--accent); }
        .footer-grid { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
        .footer-links h4 { margin-bottom: 20px; color: var(--accent); }
        .footer-links a { color: #eee; text-decoration: none; display: block; margin-bottom: 10px; transition: 0.3s; }
        .footer-links a:hover { color: var(--accent); }
        .img-footer { width: 40px; background: white; border-radius: 4px; padding: 2px; }
        .copyright { text-align: center; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #ccc; font-size: 14px; }

