/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fcff;
    color: #1e2b3a;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 40, 70, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 112, 192, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 2.2rem;
    color: #0066b3;
    background: rgba(0, 102, 179, 0.08);
    padding: 0.4rem;
    border-radius: 14px;
}

.logo h1 {
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: -0.5px;
    color: #003153;
}

.logo span {
    font-weight: 300;
    color: #0066b3;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #1e3b50;
    font-size: 1rem;
    transition: 0.2s ease;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    color: #0066b3;
    border-bottom-color: #0066b3;
}

/* ===== BUTTONS ===== */
.btn-outline {
    border: 1.5px solid #0066b3;
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    color: #0066b3;
    transition: 0.25s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: #0066b3;
    color: #ffffff !important;
    border-color: #0066b3;
    box-shadow: 0 4px 12px rgba(0, 102, 179, 0.25);
    transform: translateY(-1px);
}

.btn-solid {
    background: #0066b3;
    color: white;
    border: none;
    padding: 0.6rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 179, 0.25);
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
}

.btn-solid i {
    margin-right: 8px;
}

.btn-solid:hover {
    background: #004b8a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 70, 140, 0.35);
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0 5rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 45%;
}

.hero-content .badge {
    display: inline-block;
    background: #e6f0fa;
    color: #0066b3;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
    margin-bottom: 1.5rem;
}

.hero-content h2 {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #003153;
    letter-spacing: -1px;
}

.hero-content h2 i {
    color: #0066b3;
    font-size: 2.8rem;
    margin-right: 0.2rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #3e5a70;
    margin: 1.5rem 0 2rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #003153;
}

.stat-label {
    font-size: 0.9rem;
    color: #5b768b;
    letter-spacing: 0.2px;
}

.hero-image {
    flex: 1 1 45%;
    background: linear-gradient(145deg, #dceaf5, #f0f8ff);
    padding: 2.5rem 2rem;
    border-radius: 60px 60px 60px 20px;
    box-shadow: 0 20px 40px rgba(0, 60, 120, 0.08);
    text-align: center;
    position: relative;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image i {
    font-size: 5.5rem;
    color: #0066b3;
    background: white;
    padding: 1.8rem;
    border-radius: 60px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    margin-bottom: 1.2rem;
}

.hero-image h3 {
    font-weight: 600;
    color: #003153;
    font-size: 1.6rem;
}

.hero-image p {
    color: #3e5a70;
    margin-top: 0.3rem;
}

/* ===== TRAINING SECTION ===== */
.training-section {
    background: white;
    border-radius: 60px;
    padding: 3.5rem 3rem;
    margin: 3rem 0 4rem;
    box-shadow: 0 6px 30px rgba(0, 40, 70, 0.02);
    border: 1px solid rgba(0, 102, 179, 0.06);
}

.training-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.training-header .icon-big {
    font-size: 3.2rem;
    color: #0066b3;
    background: #eaf3fb;
    padding: 1.2rem;
    border-radius: 40px;
}

.training-header h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003153;
    flex: 1;
}

.training-header p {
    color: #3e5a70;
    font-size: 1.1rem;
    max-width: 500px;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.training-card {
    background: #f8fcff;
    padding: 2rem 1.5rem;
    border-radius: 32px;
    transition: 0.25s ease;
    border: 1px solid rgba(0, 102, 179, 0.04);
    text-align: center;
}

.training-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 70, 140, 0.06);
    border-color: rgba(0, 102, 179, 0.12);
}

.training-card i {
    font-size: 2.4rem;
    color: #0066b3;
    background: white;
    padding: 0.8rem;
    border-radius: 30px;
    margin-bottom: 1.2rem;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.training-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #003153;
    margin-bottom: 0.4rem;
}

.training-card p {
    color: #4b697f;
    font-size: 0.95rem;
}

.training-card .tag {
    display: inline-block;
    background: #e6f0fa;
    color: #0066b3;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    margin-top: 0.8rem;
}

/* ===== SERVICES / FEATURES ===== */
.section-title {
    text-align: center;
    margin: 5rem 0 2.5rem;
}

.section-title h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #003153;
    letter-spacing: -0.5px;
}

.section-title p {
    color: #5b768b;
    max-width: 600px;
    margin: 0.6rem auto 0;
    font-size: 1.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem 1.8rem;
    border-radius: 32px;
    box-shadow: 0 8px 30px rgba(0, 40, 70, 0.04);
    transition: 0.25s ease;
    border: 1px solid rgba(0, 102, 179, 0.04);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 70, 140, 0.08);
    border-color: rgba(0, 102, 179, 0.15);
}

.service-card i {
    font-size: 2.8rem;
    color: #0066b3;
    background: #eaf3fb;
    padding: 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #003153;
}

.service-card p {
    color: #4b697f;
    font-size: 0.98rem;
}

.service-card .learn-link {
    display: inline-block;
    margin-top: 1.4rem;
    font-weight: 600;
    color: #0066b3;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}

.service-card .learn-link:hover {
    border-bottom-color: #0066b3;
    color: #004b8a;
}

/* ===== ABOUT / MISSION ===== */
.about-wrap {
    background: white;
    border-radius: 60px;
    padding: 3.5rem 3rem;
    margin: 3.5rem 0 4rem;
    box-shadow: 0 6px 30px rgba(0, 40, 70, 0.02);
    border: 1px solid rgba(0, 102, 179, 0.05);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 2;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #003153;
    margin-bottom: 0.8rem;
}

.about-text p {
    color: #3e5a70;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    max-width: 600px;
}

.about-highlight {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 0.5rem;
}

.about-highlight span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.about-highlight i {
    color: #0066b3;
    font-size: 1.3rem;
}

.about-image {
    flex: 1;
    background: #e8f2fa;
    border-radius: 40px;
    padding: 2rem 1.5rem;
    text-align: center;
    min-width: 200px;
}

.about-image i {
    font-size: 4rem;
    color: #0066b3;
    background: white;
    padding: 1.5rem;
    border-radius: 60px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.02);
}

.about-image p {
    margin-top: 0.8rem;
    font-weight: 500;
    color: #003153;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
    background: linear-gradient(145deg, #f3f9ff, #ffffff);
    border-radius: 60px;
    padding: 3rem 3.5rem;
    margin: 3rem 0 4rem;
    border-left: 4px solid #0066b3;
    box-shadow: 0 6px 20px rgba(0, 60, 120, 0.02);
}

.testimonial i {
    color: #0066b3;
    font-size: 2.5rem;
    opacity: 0.5;
    margin-right: 0.5rem;
}

.testimonial blockquote {
    font-size: 1.4rem;
    font-weight: 400;
    color: #1e3b50;
    max-width: 80%;
    margin: 0.5rem 0 1rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #003153;
    display: block;
    margin-top: 0.5rem;
}

.testimonial cite span {
    font-weight: 400;
    color: #5b768b;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: #003153;
    border-radius: 70px;
    padding: 3.5rem 3rem;
    margin: 4rem 0 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
    gap: 2rem;
    background: linear-gradient(135deg, #002a4a, #004074);
}

.cta-text h3 {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.cta-text p {
    opacity: 0.8;
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.cta-btn .btn-solid {
    background: white;
    color: #003153;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    font-weight: 700;
    padding: 0.8rem 2.8rem;
}

.cta-btn .btn-solid:hover {
    background: #e6f0fa;
    color: #002a4a;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.cta-btn .btn-solid i {
    margin-right: 10px;
}

/* ===== FOOTER ===== */
footer {
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 102, 179, 0.08);
    padding: 2.5rem 0 2rem;
    color: #2b4a62;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col h5 {
    font-weight: 700;
    color: #003153;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-col p, .footer-col a {
    color: #3e5a70;
    text-decoration: none;
    display: block;
    margin: 0.3rem 0;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #0066b3;
}

.footer-social i {
    font-size: 1.3rem;
    margin-right: 1rem;
    color: #3e5a70;
    transition: 0.2s;
}

.footer-social i:hover {
    color: #0066b3;
}

.copyright {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #6f8ba0;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    padding-top: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 850px) {
    .navbar {
        flex-direction: column;
        gap: 0.8rem;
        align-items: stretch;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content p {
        margin: 1rem auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .testimonial blockquote {
        max-width: 100%;
        font-size: 1.2rem;
    }
    
    .about-wrap {
        flex-direction: column;
        text-align: center;
    }
    
    .about-text p {
        margin: 0 auto 1rem;
    }
    
    .about-highlight {
        justify-content: center;
    }
    
    .cta-section {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social i {
        margin: 0 0.6rem;
    }
    
    .training-header {
        flex-direction: column;
        text-align: center;
    }
    
    .training-header p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title h3 {
        font-size: 2rem;
    }
}