/* ================= GLOBAL RESET ================= */
* { box-sizing: border-box; }
body {
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0;
    background-color: #f4f6f9;
    color: #333;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-container { padding: 80px 0; }
.section-title { text-align: center; font-size: 32px; font-weight: 700; margin-bottom: 50px; color: #1a2b4b; }
.bg-light { background-color: #ffffff; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }

/* ================= HEADER FIX (FORCE LAYOUT) ================= */

/* 1. Header Container ko Seedha (Row) karein */
.site-header {
    background-color: #1a2b4b !important; /* Dark Blue */
    padding: 15px 0 !important;
    width: 100%;
    position: relative;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-wrapper {
    display: flex !important;       /* Layout ko Flexible banata hai */
    justify-content: space-between !important; /* Logo Left, Menu Right */
    align-items: center !important; /* Center Align */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. Logo Styling (Yellow & Big) */
.logo a {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #ffbc00 !important; /* Yellow */
    text-decoration: none !important;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

/* 3. Menu ko Horizontal (Side-by-Side) karein */
.main-navigation {
    display: block;
}

/* Ye zaroori line hai jo bullets hatayegi aur line mein layegi */
.main-navigation ul, 
.main-navigation .menu, 
.menu-main-menu-container ul {
    list-style: none !important;   /* Bullets hatana */
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;      /* Line mein lana */
    flex-direction: row !important; /* Left to Right */
    gap: 25px !important;          /* Beech mein gap */
}

.main-navigation ul li,
.main-navigation .menu li {
    display: inline-block !important;
    margin-bottom: 0 !important;
}

/* 4. Links Styling (White Text) */
.main-navigation ul li a,
.main-navigation .menu li a {
    color: #ffffff !important;     /* White Text */
    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    font-family: 'Poppins', sans-serif;
    padding: 5px 0;
    transition: 0.3s;
}

.main-navigation ul li a:hover {
    color: #ffbc00 !important; /* Hover pe Yellow */
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column !important;
        text-align: center;
    }
    .main-navigation ul {
        flex-direction: column !important; /* Mobile pr wapis vertical */
        gap: 10px !important;
        margin-top: 15px !important;
    }
}

/* ================= HERO SECTION (Dark Blue) ================= */
.hero-section {
    background-color: #1a2b4b !important; /* Solid Dark Blue */
    padding: 80px 0 100px;
    color: #fff;
    overflow: hidden;
}

.hero-wrapper {
    display: flex; align-items: center; justify-content: space-between; gap: 50px;
}

/* Left Text */
.hero-text { flex: 1; max-width: 600px; }
.hero-text h1 { font-size: 48px; font-weight: 700; line-height: 1.2; margin-bottom: 20px; color: #fff; }
.hero-text .highlight { color: #ffbc00; }
.hero-text p { font-size: 18px; color: #dce3f0; margin-bottom: 30px; line-height: 1.6; }

/* Buttons */
.hero-btns { display: flex; gap: 15px; }
.btn-primary {
    background: #ffbc00; color: #1a2b4b; padding: 14px 35px; border-radius: 5px;
    text-decoration: none; font-weight: 700; transition: 0.3s; border: 2px solid #ffbc00;
}
.btn-primary:hover { background: #e5a900; border-color: #e5a900; }

.btn-secondary {
    background: transparent; border: 2px solid #fff; color: #fff;
    padding: 14px 35px; border-radius: 5px; text-decoration: none; font-weight: 600; transition: 0.3s;
}
.btn-secondary:hover { background: #fff; color: #1a2b4b; }

/* Right Video Card */
.hero-video-box { flex: 1; display: flex; justify-content: flex-end; }
.video-card {
    width: 100%; max-width: 480px; background: #fff; border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4); overflow: hidden;
}
.video-header {
    background: #f1f3f4; padding: 10px 15px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #ddd;
}
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.video-header .text { margin-left: auto; font-size: 12px; color: #888; font-weight: 600; }
.video-content { height: 260px; background: #000; }

/* ================= COURSE CARDS ================= */
.courses-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.course-card {
    background: #fff; padding: 40px; border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); width: 320px; text-align: center;
    border-top: 4px solid transparent; transition: 0.3s;
}
.course-card:hover { transform: translateY(-5px); }
.course-card.free { border-color: #27c93f; }
.course-card.paid { border-color: #1a2b4b; }
.badge {
    display: inline-block; padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: bold; margin-bottom: 15px;
}
.badge { background: #eefdf2; color: #27c93f; }
.badge.premium { background: #eef2ff; color: #1a2b4b; }

/* ================= CONTACT FORM ================= */
.contact-section { background: #f4f6f9; padding: 80px 0; }
.contact-box-wrapper {
    max-width: 700px; margin: 0 auto; background: #ffffff; border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); overflow: hidden;
}
.contact-header { background: #1a2b4b; padding: 30px; text-align: center; color: white; }
.contact-header h2 { margin: 0; font-size: 24px; color: white; }
.contact-header p { margin: 5px 0 0; color: #aab6cd; font-size: 14px; }

.pro-form { padding: 40px; }
.input-row { display: flex; gap: 20px; }
.input-group { margin-bottom: 25px; width: 100%; text-align: left; }
.input-group label { display: block; font-size: 14px; font-weight: 600; color: #444; margin-bottom: 8px; }
.input-group input, .input-group textarea {
    width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px;
    font-size: 15px; transition: 0.3s; background: #fbfbfb; font-family: inherit;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: #1a2b4b; background: #fff; outline: none;
}
.input-group textarea { height: 120px; resize: vertical; }

.btn-submit {
    width: 100%; background: #1a2b4b; color: #fff; padding: 15px; border: none;
    border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.btn-submit:hover { background: #13203a; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .header-wrapper, .hero-wrapper, .input-row { flex-direction: column; text-align: center; }
    .main-navigation ul { flex-direction: column; gap: 15px; margin-top: 15px; }
    .hero-btns, .hero-video-box { justify-content: center; }
    .hero-video-box { margin-top: 40px; }
    .hero-text h1 { font-size: 36px; }
    .pro-form { padding: 20px; }
}