/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* ===== COLOR PALETTE ===== */
:root {
    --blue: #0b5ed7;
    --orange: #f57c00;
    --dark: #1f1f1f;
    --white: #ffffff;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(90deg, #ffffff, #f8fbff);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1300px; /* Increased width for better spacing */
    margin: 0 auto; /* Changed from 'auto' to '0 auto' */
    padding: 0 30px; /* Increased side padding */
    min-height: 85px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto; /* Pushes logo to the left */
    min-width: 280px; /* Ensures consistent spacing */
}

.logo img {
    width: 110px;   /* BIG & CLEAR LOGO */
    height: auto;
    transition: transform 0.3s ease;
}

/* Slight hover zoom (premium feel) */
.logo:hover img {
    transform: scale(1.05);
}

.logo-text h1 {
    font-size: 28px; /* Slightly larger */
    font-weight: 800;
    color: var(--blue);
    text-shadow: 0 0 6px rgba(11, 94, 215, 0.4);
    line-height: 1.1;
}

.logo-text h1 span {
    color: var(--orange);
    text-shadow: 0 0 6px rgba(245, 124, 0, 0.5);
}

.logo-text p {
    font-size: 13px;
    color: #555;
    font-style: italic;
    margin-top: 2px;
}

/* ===== NAVBAR ===== */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 500px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 35px; /* Slightly increased gap */
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    position: relative;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 0;
    font-size: 15px;
    transition: 0.3s;
}

/* ===== GLOWY UNDERLINE EFFECT ===== */
.navbar ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    box-shadow: 0 0 8px rgba(11, 94, 215, 0.7);
    transition: width 0.4s ease;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.navbar ul li a:hover {
    color: var(--blue);
    text-shadow: 0 0 6px rgba(11, 94, 215, 0.6);
}

/* ===== CTA CONTAINER ===== */
.cta-container {
    margin-left: auto; /* Pushes CTA to the right */
    min-width: 140px; /* Ensures consistent spacing */
    display: flex;
    justify-content: flex-end;
}

/* ===== CALL BUTTON ===== */
.call-btn {
    background: linear-gradient(90deg, var(--orange), #ff9800);
    color: var(--white);
    padding: 11px 22px; /* Slightly increased padding */
    border-radius: 8px; /* Slightly more rounded */
    text-decoration: none;
    font-weight: 700; /* Bolder text */
    font-size: 15px;
    box-shadow: 0 0 15px rgba(245, 124, 0, 0.6);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.call-btn:hover {
    box-shadow: 0 0 22px rgba(245, 124, 0, 0.9);
    transform: translateY(-2px);
}

.call-btn i {
    font-size: 14px;
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--blue);
    background: transparent;
    border: none;
    padding: 5px;
    margin-left: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .navbar ul {
        gap: 25px;
    }
    
    .logo {
        min-width: 250px;
    }
}

@media (max-width: 900px) {
    .navbar ul {
        gap: 20px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo {
        min-width: 220px;
    }
    
    .call-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        min-height: 75px;
    }
    
    .logo {
        min-width: auto;
        margin-right: 0;
    }
    
    .logo img {
        width: 70px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .navbar {
        position: fixed;
        top: 75px;
        left: 0;
        background: white;
        width: 100%;
        height: calc(100vh - 75px);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 30px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        z-index: 999;
    }
    
    .navbar.active {
        display: flex;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        width: 100%;
    }
    
    .navbar ul li a {
        font-size: 18px;
        padding: 10px 0;
    }
    
    .cta-container {
        display: none;
    }
    
    .menu-toggle {
        display: block;
        order: 3; /* Ensures it's on the right */
    }
    
    /* Add mobile call button in menu */
    .navbar .mobile-call-btn {
        display: block;
        background: linear-gradient(90deg, var(--orange), #ff9800);
        color: var(--white);
        padding: 12px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 700;
        font-size: 16px;
        margin-top: 30px;
        text-align: center;
        box-shadow: 0 0 15px rgba(245, 124, 0, 0.6);
    }
    
    /* Add this to HTML for mobile call button */

    /* ===== MOBILE MENU FIX ===== */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 75px;
        left: 0;
        background: white;
        width: 100%;
        height: calc(100vh - 75px);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 30px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        z-index: 1001; /* Increased z-index */
        overflow-y: auto; /* Allow scrolling if menu is too long */
    }
    
    .navbar.active {
        display: flex;
    }
    
    .navbar ul {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        width: 100%;
    }
    
    .navbar ul li {
        width: 100%;
        text-align: center;
    }
    
    .navbar ul li a {
        font-size: 18px;
        padding: 15px 0; /* Increased padding for easier tapping */
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Make sure links are clickable */
    .navbar a {
        pointer-events: auto !important;
        cursor: pointer;
    }
    
    .menu-toggle {
        z-index: 1002; /* Higher than navbar */
        position: relative;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    .logo img {
        width: 60px;
    }
}
/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    flex: 1;
    max-width: 600px;
}

/* Tagline */
.hero-tagline {
    margin-bottom: 20px;
}

.tagline-badge {
    display: inline-block;
    background: linear-gradient(90deg, #f57c00, #ff9800);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

/* Hero Title */
.hero-title {
    font-size: 42px;
    color: #111;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title .highlight {
    color: #0b5ed7;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(11, 94, 215, 0.15);
    z-index: -1;
    border-radius: 4px;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 540px;
}

/* Launch Offer */
.launch-offer {
    margin: 30px 0;
}

.offer-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(245, 124, 0, 0.1), rgba(11, 94, 215, 0.1));
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #f57c00;
}

.offer-card i {
    font-size: 32px;
    color: #f57c00;
}

.offer-card h4 {
    color: #111;
    margin-bottom: 5px;
    font-size: 18px;
}

.offer-card p {
    color: #555;
    margin: 0;
    font-size: 15px;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(90deg, #0b5ed7, #0d47a1);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(11, 94, 215, 0.4);
}

.btn-secondary {
    background: white;
    color: #0b5ed7;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #0b5ed7;
}

.btn-secondary:hover {
    background: #0b5ed7;
    color: white;
    transform: translateY(-3px);
}

/* Quick Features */
.quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 15px;
    font-weight: 500;
}

.feature i {
    color: #0b5ed7;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.main-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    animation: gentleFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(11, 94, 215, 0.2));
}

.launch-count {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #f57c00;
    animation: pulse 2s infinite;
}

.launch-count h3 {
    color: #0b5ed7;
    margin-bottom: 5px;
    font-size: 18px;
}

.launch-count p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Animations */
@keyframes gentleFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Background Elements */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(11, 94, 215, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .quick-features {
        justify-content: center;
    }
    
    .visual-container {
        max-width: 300px;
    }
    
    .main-logo {
        max-width: 250px;
    }
    
    .launch-count {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .offer-card {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-features {
        flex-direction: column;
        align-items: 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 {
  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: #2563eb;
}

.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-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: #2563eb;
  width: 20px;
}

/* Form */
.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: #111;
  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;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Radio Group Styling */
.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: #2563eb;
}

.radio-option input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
}

.radio-option input[type="radio"]:checked + span {
  color: #2563eb;
  font-weight: 600;
}

/* Class Button Group */
.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: #2563eb;
}

.class-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

/* Submit Button */
.contact-form button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #2563eb;
  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: #1e4ed8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 15px;
}

/* Responsive */
@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;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 5%;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .contact-info h2 {
    font-size: 28px;
  }
}

/* ============================
   FOOTER
============================= */

.site-footer {
  background: #0a2540;
  color: #ffffff;
  padding: 60px 8% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

/* Columns */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-col h3 {
  font-size: 22px;
}

.footer-col h4 {
  font-size: 18px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #d1d5db;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #60a5fa;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}