
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; background: #fff; color: #1e293b; scroll-behavior: smooth; overflow-x: hidden; }
    :root { --primary-red: #dc2626; --primary-dark: #0f172a; --primary-light: #fef2f2; }
    .bg-red { background-color: var(--primary-red); }
    .text-red { color: var(--primary-red); }
    .btn-red { background-color: var(--primary-red); color: #fff; border-radius: 40px; padding: 12px 28px; font-weight: 600; transition: 0.3s; border: none; }
    .btn-red:hover { background-color: #b91c1c; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(220,38,38,0.2); color: white; }
    .btn-outline-red { border: 2px solid var(--primary-red); color: var(--primary-red); border-radius: 40px; padding: 10px 24px; font-weight: 600; transition: 0.3s; background: transparent; }
    .btn-outline-red:hover { background: var(--primary-red); color: #fff; transform: translateY(-2px); }
    .navbar { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); padding: 12px 0; position: sticky; top: 0; z-index: 1000; }
    .navbar-brand { font-weight: 800; font-size: 1.7rem; color: var(--primary-dark); }
    .navbar-brand span { color: var(--primary-red); }
    .nav-link { font-weight: 500; color: #1e293b !important; margin: 0 8px; transition: 0.2s; }
    .nav-link:hover { color: var(--primary-red) !important; }
    .hero-section { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); padding: 120px 0 80px; position: relative; }
    .section-title { font-weight: 800; font-size: 2.5rem; position: relative; display: inline-block; margin-bottom: 3rem; }
    .section-title:after { content: ''; position: absolute; bottom: -12px; left: 0; width: 80px; height: 4px; background: var(--primary-red); border-radius: 4px; }
    .course-card, .testimonial-card { background: white; border-radius: 24px; overflow: hidden; transition: 0.3s; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.08); height: 100%; border: 1px solid rgba(0,0,0,0.05); }
    .course-card:hover, .testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 25px 40px -12px rgba(220,38,38,0.2); }
    .card-img-wrapper { height: 200px; overflow: hidden; }
    .card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
    .course-card:hover .card-img-wrapper img { transform: scale(1.05); }
    .badge-popular { position: absolute; top: 15px; right: 15px; background: linear-gradient(135deg, #f97316, #dc2626); color: white; padding: 5px 14px; border-radius: 40px; font-size: 0.7rem; font-weight: 700; }
    .icon-lg { font-size: 2.5rem; color: var(--primary-red); }
    .process-step { background: white; border-radius: 20px; padding: 1.5rem; text-align: center; height: 100%; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
    .process-step .step-num { width: 50px; height: 50px; background: var(--primary-red); color: white; border-radius: 60px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.4rem; margin: 0 auto 15px auto; }
    .salary-highlight { font-size: 1.6rem; font-weight: 800; color: #dc2626; }
    .logo-slider { width: 100%; overflow: hidden; padding: 20px 0; position: relative; }
    .logo-track { display: flex; gap: 50px; animation: scrollLogos 30s linear infinite; width: max-content; }
    .logo-slider:hover .logo-track { animation-play-state: paused; }
    .logo-item { flex: 0 0 auto; min-width: 130px; display: flex; align-items: center; justify-content: center; }
    .logo-item img { max-width: 110px; max-height: 60px; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; object-fit: contain; }
    .logo-item:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
    @keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .faq-accordion .accordion-button:not(.collapsed) { background-color: var(--primary-light); color: var(--primary-red); }
    .map-frame { width: 100%; height: 250px; border-radius: 1rem; border: 0; }
    .footer { background-color: #0f172a; color: #cbd5e1; }
    /* Modal Styles */
    .modal-content { border-radius: 28px; border: none; overflow: hidden; }
    .modal-header-custom { background: linear-gradient(135deg, #dc2626, #f97316); padding: 24px 28px; color: white; }
    .modal-header-custom h4 { font-weight: 800; font-size: 1.6rem; margin: 0; }
    .input-icon { position: relative; }
    .input-icon i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #dc2626; z-index: 2; }
    .form-control, .form-select { padding: 12px 15px 12px 45px; border-radius: 60px; border: 1.5px solid #e2e8f0; }
    .form-control:focus, .form-select:focus { border-color: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,0.1); }
    .error-message { color: #dc2626; font-size: 0.7rem; margin-top: 5px; margin-left: 15px; display: none; }
    .error-message.show { display: block; }
    .btn-submit-popup { background: linear-gradient(95deg, #dc2626, #f97316); border: none; border-radius: 60px; padding: 14px; font-weight: 700; width: 100%; color: white; }
    .btn-whatsapp-popup { background: #25D366; border: none; border-radius: 60px; padding: 12px; font-weight: 600; width: 100%; color: white; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .success-toast { background: #10b981; color: white; text-align: center; padding: 12px; border-radius: 60px; margin-top: 15px; display: none; }
    @media (max-width: 768px) { .section-title { font-size: 1.8rem; } .hero-section { padding: 100px 0 60px; } .logo-item { min-width: 100px; } .logo-item img { max-width: 80px; } }
  