/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #003366;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-item i {
    color: #f57c00;
    font-size: 12px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f57c00;
}
/* ===== MODE OF CLASSES STYLES ===== */

/* Mode Classes Section (Left Side) */
.mode-classes {
    margin: 30px 0;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
    border: 1px solid rgba(0, 51, 102, 0.1);
}

.mode-classes h3 {
    color: #003366;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mode-classes h3 i {
    color: #f57c00;
    font-size: 24px;
}

.mode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mode-card {
    background: white;
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e7f0;
    position: relative;
    overflow: hidden;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(245, 124, 0, 0.15);
    border-color: #f57c00;
}

.mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #003366, #f57c00);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mode-card:hover::before {
    transform: scaleX(1);
}

.mode-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.mode-icon.home {
    background: rgba(0, 51, 102, 0.1);
    color: #003366;
}

.mode-icon.online {
    background: rgba(245, 124, 0, 0.1);
    color: #f57c00;
}

.mode-icon.offline {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.mode-card:hover .mode-icon.home {
    background: #003366;
    color: white;
    animation: pulse 1s ease;
}

.mode-card:hover .mode-icon.online {
    background: #f57c00;
    color: white;
    animation: pulse 1s ease;
}

.mode-card:hover .mode-icon.offline {
    background: #4CAF50;
    color: white;
    animation: pulse 1s ease;
}

.mode-details h4 {
    color: #333;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.mode-details p {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 10px;
}

.mode-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Mode Selector in Form (Right Side) */
.mode-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 5px;
}

.mode-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: #f8faff;
    border: 2px solid #e0e7f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.mode-option i {
    font-size: 24px;
    color: #003366;
    transition: all 0.3s ease;
}

.mode-option span {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.mode-option:hover {
    border-color: #f57c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.1);
}

.mode-option input[type="radio"] {
    display: none;
}

.mode-option input[type="radio"]:checked + i + span,
.mode-option input[type="radio"]:checked ~ span {
    color: #f57c00;
    font-weight: 600;
}

.mode-option input[type="radio"]:checked + i {
    color: #f57c00;
    transform: scale(1.1);
}

.mode-option input[type="radio"]:checked ~ i {
    color: #f57c00;
    transform: scale(1.1);
}

.mode-option:has(input[type="radio"]:checked) {
    border-color: #f57c00;
    background: linear-gradient(135deg, #fff5e6, #ffffff);
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.2);
}

/* ===== RESPONSIVE MODE CLASSES ===== */
@media (max-width: 1024px) {
    .mode-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mode-grid {
        grid-template-columns: 1fr;
    }
    
    .mode-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 15px;
    }
    
    .mode-icon {
        margin: 0 15px 0 0;
    }
    
    .mode-details {
        flex: 1;
    }
    
    .mode-selector {
        grid-template-columns: 1fr;
    }
    
    .mode-option {
        flex-direction: row;
        justify-content: center;
    }
    
    .mode-option i {
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .mode-classes {
        padding: 15px;
    }
    
    .mode-card {
        padding: 12px;
    }
    
    .mode-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .mode-details h4 {
        font-size: 15px;
    }
    
    .mode-details p {
        font-size: 11px;
    }
}
.divider {
    color: rgba(255,255,255,0.3);
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #20b859;
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 90px;
    transition: transform 0.3s ease;
}

.logo-text h2 {
    font-size: 22px;
    color: #003366;
    text-shadow: 0 0 8px rgba(0, 51, 102, 0.25);
    transition: all 0.3s ease;
}

.logo-text h2 span {
    color: #f57c00;
}

.logo-text p {
    font-size: 11px;
    color: #666;
}
.logo:hover img {
    transform: scale(1.08);
}

.logo:hover .logo-text h2 {
    color: #f57c00;
    text-shadow: 0 0 12px rgba(245, 124, 0, 0.6);
}
.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #003366, #f57c00);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #003366;
}

/* Call Button */
.call-btn {
    background: linear-gradient(90deg, #f57c00, #ff9800);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245,124,0,0.3);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #003366;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .logo img {
        width: 55px;
    }
}
/* Mobile Only */
.mobile-only {
    display: none;
}
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .call-btn {
        display: none;
    }

    .navbar {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        justify-content: flex-start;
        padding-top: 20px;
    }

    .navbar.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        gap: 14px;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 14px 12px;
        font-size: 16px;
        border-radius: 6px;
    }

    .nav-link:hover {
        background: rgba(0, 51, 102, 0.05);
    }

    .mobile-only {
        display: block;
    }
}
@media (max-width: 768px) {
    .header .container {
        height: 70px;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 10px;
    }
}
/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,51,102,0.8) 0%, rgba(245,124,0,0.4) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    color: white;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: #f57c00;
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-title span {
    color: #f57c00;
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.2);
    z-index: -1;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #f57c00;
    color: white;
}

.btn-primary:hover {
    background: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245,124,0,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #003366;
    transform: translateY(-2px);
}

/* ===== COURSES SECTION ===== */
.courses {
    padding: 80px 0;
    background: #f8faff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    color: #003366;
    margin-bottom: 10px;
}

.section-desc {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,51,102,0.1);
    border-color: #f57c00;
}

.course-card.featured {
    border: 2px solid #f57c00;
    box-shadow: 0 10px 30px rgba(245,124,0,0.1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f57c00;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-icon {
    width: 60px;
    height: 60px;
    background: #003366;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.course-icon i {
    font-size: 30px;
    color: white;
}

.course-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 5px;
}

.board {
    color: #f57c00;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.course-features i {
    color: #f57c00;
    font-size: 12px;
}

.course-btn {
    display: inline-block;
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.course-btn:hover {
    color: #f57c00;
    transform: translateX(5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Top Bar */
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left {
        justify-content: center;
    }
    
    .divider {
        display: none;
    }
    
    /* Header */
    .menu-toggle {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 150px; /* Top bar height (40px) + header height (80px) + gap */
        left: -100%;
        width: 100%;
        height: calc(100vh - 132px);
        background: white;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .navbar.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: #f8faff;
        color: #003366;
        padding-left: 25px;
    }
    
    .call-btn {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .mobile-only .nav-link {
    color: #f57c00;
    font-weight: 600;
}
.mobile-only i {
    margin-right: 6px;
}
    
    /* Hero */
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    /* Courses */
    .courses {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
}

/* ===== COURSES SECTION ===== */
.courses {
    background: linear-gradient(180deg, #f0f7ff 0%, #e6f0ff 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.courses-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11, 94, 215, 0.05) 0%, transparent 70%);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    right: -100px;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.05) 0%, transparent 70%);
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(11, 94, 215, 0.08) 0%, transparent 70%);
}

.courses-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, #0b5ed7, #4dabf7);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: #111;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #0b5ed7, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Course Cards */
.course-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(11, 94, 215, 0.08);
    border: 1px solid rgba(11, 94, 215, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}

.course-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(11, 94, 215, 0.15);
    border-color: rgba(11, 94, 215, 0.2);
}

.course-card.featured {
    border: 2px solid #f57c00;
    position: relative;
}

.course-card.featured::before {
    content: "🔥 Most Popular";
    position: absolute;
    top: 10px;
    right: 20px;
    background: linear-gradient(90deg, #f57c00, #ff9800);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.3);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 94, 215, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.course-card:hover .card-glow {
    opacity: 1;
}

/* Card Icon */
.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0b5ed7, #4dabf7);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
}

.course-card.featured .card-icon {
    background: linear-gradient(135deg, #f57c00, #ff9800);
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
}

.card-badge {
    display: inline-block;
    background: rgba(11, 94, 215, 0.1);
    color: #0b5ed7;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.course-card.featured .card-badge {
    background: rgba(245, 124, 0, 0.1);
    color: #f57c00;
}

.card-content h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Card Features */
.card-features {
    margin: 25px 0;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    margin-bottom: 12px;
    font-size: 15px;
}

.card-features i {
    color: #0b5ed7;
    font-size: 14px;
}

.course-card.featured .card-features i {
    color: #f57c00;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(11, 94, 215, 0.1);
}

.duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.duration i {
    color: #0b5ed7;
}

.enroll-btn {
    background: linear-gradient(90deg, #0b5ed7, #0d47a1);
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.enroll-btn:hover {
    background: linear-gradient(90deg, #0d47a1, #0b5ed7);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.3);
}

.course-card.featured .enroll-btn {
    background: linear-gradient(90deg, #f57c00, #e65100);
}

.course-card.featured .enroll-btn:hover {
    background: linear-gradient(90deg, #e65100, #f57c00);
}

/* Courses Info */
.courses-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 94, 215, 0.08);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(11, 94, 215, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b5ed7;
    font-size: 22px;
    flex-shrink: 0;
}

.info-item h4 {
    color: #111;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Section Transition */
.section-transition {
    height: 80px;
    background: linear-gradient(to bottom, #e6f0ff, #f0f7ff);
    width: 100%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .courses {
        padding: 70px 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .courses-info {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .course-card.featured::before {
        right: 50%;
        transform: translateX(50%);
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 13px;
        padding: 6px 15px;
    }
    
    .course-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .enroll-btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================
   WHY CHOOSE – CLEAN UI
============================= */

.why-section {
    padding: 90px 20px;
    background: #f6f9ff;
}

.why-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Header */
.why-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0a2540;
    margin-bottom: 12px;
}

.why-header h2 span {
    color: #165acb;
}

.why-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Cards Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.why-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.why-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 20px;
    color: #0a2540;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hover */
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(22, 90, 203, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-header h2 {
        font-size: 28px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

.about-brainbridge {
  padding: 80px 8%;
  background: #f8fbff;
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Left Content */
.about-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #111;
}

.about-content h2 span {
  color: #2563eb;
}

.about-tagline {
  font-size: 18px;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #1e4ed8;
}

/* Right Cards */
.about-cards {
  display: grid;
  gap: 20px;
}

.about-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
}

.about-card h3 {
  font-size: 18px;
  color: #111;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-cards {
    margin-top: 30px;
  }
}

/* ===== CONTACT SECTION UPDATES ===== */
.contact-section {
  padding: 80px 8%;
  background: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Content */
.contact-info h2 {
  font-size: 34px;
  margin-bottom: 15px;
  color: #111;
}

.contact-info h2 span {
  color: #003366; /* Changed to match theme */
}

.contact-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-details {
  background: #f8fbff;
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
}

.contact-details p {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #f57c00;
}

/* Contact Features */
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 14px;
}

.feature i {
  color: #f57c00; /* Changed to match theme */
  width: 20px;
}

/* Map Styles */
.contact-map {
  margin-top: 30px;
  background: #f8fbff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-map h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 15px;
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.map-address i {
  color: #f57c00;
  font-size: 18px;
  margin-top: 2px;
}

.map-address p {
  margin: 0;
  flex: 1;
}

/* Form Styles */
.contact-form {
  background: #f8fbff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #003366; /* Changed to match theme */
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f57c00; /* Changed to match theme */
  box-shadow: 0 0 0 3px rgba(245,124,0,0.1);
}

/* Radio Group */
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 5px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-option:hover {
  border-color: #f57c00; /* Changed to match theme */
}

.radio-option input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
}

.radio-option input[type="radio"]:checked + span {
  color: #f57c00; /* Changed to match theme */
  font-weight: 600;
}

/* Class Buttons */
.button-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.class-btn {
  padding: 10px 20px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 50px;
  text-align: center;
}

.class-btn:hover {
  background: #f0f7ff;
  border-color: #f57c00; /* Changed to match theme */
}

.class-btn.active {
  background: #f57c00; /* Changed to match theme */
  color: white;
  border-color: #f57c00;
}

/* Submit Button */
.contact-form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #003366; /* Changed to match theme */
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.contact-form button[type="submit"]:hover {
  background: #f57c00; /* Changed to match theme */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245,124,0,0.3);
}

/* Form Status */
.form-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(76,175,80,0.1);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}

.form-status.error {
  display: block;
  background: rgba(244,67,54,0.1);
  color: #f44336;
  border: 1px solid #f44336;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 15px;
}

/* ===== SEO OPTIMIZED FOOTER ===== */
.site-footer {
  background: #0a2540;
  color: #ffffff;
  padding: 60px 8% 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Element */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f57c00, #003366, #f57c00);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Footer Columns */
/* Fix Address Alignment */
.address-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.address-line i {
  margin-top: 4px;
}

.address-sub {
  margin-left: 30px;
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
}

.footer-col {
  animation: fadeInUp 0.8s ease;
}
/* ===== Premium Address Styling ===== */

.premium-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}

.premium-address i {
  color: #f57c00;
  font-size: 16px;
  margin-top: 4px;
  flex-shrink: 0;
}

.address-content {
  color: #d1d5db;
  font-size: 14px;
}

/* Better text wrapping */
.address-content span {
  display: inline;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after,
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #f57c00;
}

.footer-col h3 {
  font-size: 22px;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 500;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 15px;
}

/* About Column */
.about-col p {
  margin-bottom: 20px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  background: #f57c00;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-col ul li a:hover {
  color: #f57c00;
  transform: translateX(5px);
}

/* Contact Column Icons */
.contact-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-col i {
  color: #f57c00;
  width: 20px;
  font-size: 14px;
}

.contact-col a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-col a:hover {
  color: #f57c00;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 13px;
  color: #cbd5e1;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #f57c00;
}

.separator {
  color: rgba(255,255,255,0.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-form {
    margin-top: 30px;
  }
  
  .radio-group {
    grid-template-columns: 1fr;
  }
  
  .button-group {
    justify-content: center;
  }
  
  .map-address {
    text-align: left;
  }
  
  .contact-details p {
    justify-content: center;
  }
  
  .feature {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-col h3::after,
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-col ul li a {
    justify-content: center;
  }
  
  .contact-col p {
    justify-content: center;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 5%;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .contact-info h2 {
    font-size: 28px;
  }
  
  .map-container {
    height: 200px;
  }
}
.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    background: #e6f9ed;
    color: #1b7c3c;
    border: 1px solid #b6e7c9;
}