* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
    background: #fff;
    color: #1e2a3e;
    line-height: 1.5;
    overflow-x: hidden;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: hidden;
}
/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 0;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.site-logo {
    max-height: 60px;
    width: auto;
    display: block;
}
.logo-text {
    font-size: 1.8rem;
    color: #0a2b4e;
    margin: 0;
    line-height: 1.2;
}
.logo-text span {
    color: #e6b422;
}
.nav-menu {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}
.nav-menu a {
    text-decoration: none;
    font-weight: 600;
    color: #1e2a3e;
    transition: 0.2s;
}
.nav-menu a:hover {
    color: #e6b422;
}
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.btn-primary {
    background: #e6b422;
    color: #1e2a3e;
    padding: 10px 28px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #cf9f1a;
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 2px solid #e6b422;
    color: #1e2a3e;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}
.btn-outline:hover {
    background: #e6b422;
    color: #fff;
}
.hero {
    padding: 70px 0;
    background: linear-gradient(135deg, #f9f7f0, #fff);
}
.hero-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}
.hero-content { flex: 1; }
.hero-content h2 { font-size: 2.8rem; color: #0a2b4e; margin-bottom: 16px; }
.hero-image { flex: 1; text-align: center; }
.hero-image img { 
    max-width: 100%; 
    height: auto;
    border-radius: 32px; 
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1);
}

/* Section background colors */
#about { background-color: #ffffff; }
#programs { background-color: #f8f9fc; }
#elearning { background-color: #ffffff; }
#partnerships { background-color: #fef9e6; }
#news { background-color: #f0f4f8; }
#contact { background-color: #ffffff; }
#latest-news { background-color: #f0f4f8; }
section[style*="background:#faf9f5"] { background-color: #f2f5f9 !important; }

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #0a2b4e;
}
.section-title:after {
    content: '';
    width: 70px;
    height: 4px;
    background: #e6b422;
    display: block;
    margin: 12px auto 0;
    border-radius: 4px;
}
.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 24px;
    flex: 1 1 240px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.2s;
}
.card i { font-size: 2.8rem; color: #e6b422; margin-bottom: 20px; }
.two-column {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.two-column > div {
    flex: 1;
    min-width: 0;
}
.two-column img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}
.course-list {
    columns: 2;
    list-style: none;
    column-gap: 30px;
}
.course-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    break-inside: avoid;
}
.value-tag {
    background: #e6b42220;
    padding: 6px 16px;
    border-radius: 40px;
    display: inline-block;
    margin: 8px 8px 0 0;
    font-weight: bold;
}
/* Certification badges - FULLY VISIBLE ON MOBILE */
.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin: 20px 0 10px;
}
.cert-badges span {
    background: #0a2b4e;
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    display: inline-block;
    font-size: 0.9rem;
    white-space: nowrap;
}
/* Partners grid */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}
.partner-logo {
    background: #fff;
    padding: 20px 30px;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    max-height: 70px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}
.partner-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
}
.partner-logo:hover img {
    transform: scale(1.05);
}
/* Marquee for certifications */
.cert-marquee {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin-top: 30px;
    background: rgba(255,255,255,0.6);
    border-radius: 60px;
    padding: 15px 0;
    -webkit-overflow-scrolling: touch;
}
.marquee-content {
    display: flex;
    gap: 50px;
    width: max-content;
}
.marquee-content img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.marquee-content img:hover {
    transform: scale(1.05);
}
/* Compact News Section */
.compact-news {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.news-badge {
    background: #e6b42220;
    color: #e6b422;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 10px;
}
.compact-news h3 {
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    color: #0a2b4e;
}
.compact-news p {
    margin: 0;
    color: #555;
}
.news-readmore {
    white-space: nowrap;
}
/* Contact form */
.contact-form {
    background: #faf9f5;
    padding: 32px;
    border-radius: 32px;
}
.form-group {
    margin-bottom: 20px;
}
input, textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #ddd;
    border-radius: 28px;
    font-family: inherit;
}
/* Footer */
footer {
    background: #0a2b4e;
    color: #ccc;
    padding: 50px 0 30px;
    margin-top: 50px;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
}
.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
.social-icons a {
    display: inline-block;
    margin-right: 18px;
    font-size: 1.4rem;
    color: #fff;
}
.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 30px;
    border-top: 1px solid #1e4a6e;
}
/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}
/* Responsive */
@media (max-width: 768px) {
    body, .container {
        overflow-x: hidden;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-menu.show {
        display: flex;
    }
    .nav-menu li {
        width: 100%;
    }
    .nav-menu a {
        display: block;
        padding: 14px 24px;
        border-bottom: 1px solid #eee;
    }
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    .mobile-toggle {
        display: block;
    }
    /* Hero image - stack vertically, image on top (or below) */
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        order: 2;
    }
    .hero-image {
        order: 1;
        margin-bottom: 20px;
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    /* Professional Courses alignment */
    .two-column {
        flex-direction: column;
        gap: 30px;
    }
    .course-list {
        columns: 1;
        column-gap: 0;
    }
    .course-list li {
        margin-bottom: 12px;
        padding: 0;
    }
    /* Certification badges - fully visible */
    .cert-badges {
        justify-content: center;
        gap: 10px;
    }
    .cert-badges span {
        font-size: 0.8rem;
        padding: 6px 14px;
        white-space: nowrap;
    }
    .partners-grid {
        gap: 20px;
    }
    .partner-logo {
        padding: 15px 20px;
    }
    .partner-logo img {
        max-height: 50px;
    }
    .site-logo {
        max-height: 45px;
    }
    .logo-text {
        font-size: 1.4rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    .cert-marquee {
        overflow-x: auto;
        border-radius: 30px;
    }
    .marquee-content {
        gap: 30px;
    }
    .marquee-content img {
        height: 45px;
    }
    .compact-news {
        flex-direction: column;
        text-align: center;
        border-radius: 30px;
        padding: 20px;
    }
    .news-readmore {
        white-space: normal;
    }
    .two-column img {
        margin-top: 20px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}