/* =========================
GLOBAL STYLES
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    line-height:1.6;
    color:#333;
    padding-top:90px;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

/* =========================
HEADER
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#0A3D62;
    color:white;
    padding:15px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.15);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
}

.logo h2{
    color:white;
}

/* =========================
NAVIGATION
========================= */

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.nav-links li a:hover{
    color:#f1c40f;
}

/* Hamburger Menu */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:white;
}

/* =========================
HERO SECTION
========================= */

.hero{
    background:
    linear-gradient(
        rgba(10,61,98,0.75),
        rgba(10,61,98,0.75)
    ),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1600');

    background-size:cover;
    background-position:center;
    min-height:85vh;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:800px;
}

.hero h1{
    font-size:3rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:25px;
}

/* =========================
BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:12px 30px;
    background:#f1c40f;
    color:#333;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
}

.btn:hover{
    background:white;
}

/* =========================
SECTIONS
========================= */

section{
    padding:70px 0;
}

section h2{
    text-align:center;
    margin-bottom:25px;
    color:#0A3D62;
}
/* =========================
ABOUT
========================= */

.about{
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    color: #fff;

    background:
        linear-gradient(
            rgba(10,61,98,0.80),
            rgba(10,61,98,0.80)
        ),
        url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1920");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about .container{
    position: relative;
    z-index: 2;
}

.about h2{
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about p{
    max-width: 1000px;
    margin: 0 auto 20px;
    line-height: 1.8;
    text-align: center;
    color: #fff;
}

.about-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.about-card{
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 30px;
    border-radius: 12px;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.20);

    box-shadow: 0 5px 15px rgba(0,0,0,0.20);

    transition: all 0.3s ease;
}

.about-card:hover{
    transform: translateY(-8px);
    background: rgba(255,255,255,0.20);
}

.about-card{
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s ease;
}

.about-card:hover{
    transform: translateY(-10px);
}

.about-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.about-card h3{
    color: #fff;
    margin: 20px 0 10px;
    font-size: 1.4rem;
}

.about-card p{
    color: #fff;
    padding: 0 20px 25px;
    line-height: 1.7;
}
/* =========================
SERVICES BACKGROUND
========================= */

.services{
    position: relative;
    padding: 80px 0;

    background:
        linear-gradient(
            rgba(10,61,98,0.88),
            rgba(10,61,98,0.88)
        ),
        url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services .container{
    position: relative;
    z-index: 2;
}

/* Section Heading */
.services h2{
    color: #fff;
}

.section-intro{
    color: #f5f5f5;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Keep current card layout */
.service-card{
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    border-radius: 10px;
}

/* Optional hover enhancement */
.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* =========================
SERVICES HERO BANNER
========================= */

.services-hero{
    height: 450px;
    background:
        linear-gradient(
            rgba(10,61,98,0.65),
            rgba(10,61,98,0.65)
        ),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay{
    width: 100%;
    text-align: center;
    color: white;
}

.services-hero h1{
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
}

.services-hero p{
    max-width: 700px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Mobile */
@media (max-width:768px){

    .services-hero{
        height: 320px;
        padding: 20px;
    }

    .services-hero h1{
        font-size: 2rem;
    }

    .services-hero p{
        font-size: 1rem;
    }
}
/* =========================
TRAINING
========================= */

.training-section{
    background:#eef4fa;
}

.training-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:40px;
}

.training-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.training-card:hover{
    transform:translateY(-8px);
}

.training-icon{
    font-size:48px;
    color:#0A3D62;
    margin-bottom:15px;
    transition:0.3s;
}

.training-card:hover .training-icon{
    color:#f1c40f;
    transform:scale(1.15);
}

/* =========================
WHY US
========================= */

.why-us{
    background:#eef4fa;
}

.reasons{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    text-align:center;
}

/* =========================
CAREERS
========================= */

.careers{
    background:#f8f9fa;
}

.career-card{
    max-width:700px;
    margin:auto;
    padding:40px;
    text-align:center;
    background:#fff;
    border-radius:10px;
    border-top:4px solid #f1c40f;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.career-card i{
    font-size:60px;
    color:#0A3D62;
    margin-bottom:20px;
}

/* =========================
TRUST BAR
========================= */

.trust-bar{
    background:#5CFF5C;
    padding:10px 0;
    text-align:center;
    font-weight:600;
}

.trust-bar span{
    margin:0 20px;
    color:#0A3D62;
}

/* =========================
CTA
========================= */

.cta{
    background:#00A300;
    color:white;
    text-align:center;
}

.cta h2{
    color:white;
}

/* =========================
FOOTER
========================= */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:20px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:1.5rem;
    margin:1.5rem 0;
}

.social-icons a{
    color:white;
    font-size:1.8rem;
    transition:0.3s;
}

.social-icons a:hover{
    color:#f1c40f;
    transform:translateY(-4px);
}

/* =========================
PAGE BANNER
========================= */

.page-banner{
    position:relative;
    width:100%;
    height:400px;
    overflow:hidden;
}

.page-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.banner-overlay{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    text-align:center;
    color:#fff;
    background:rgba(0,0,0,0.5);
    padding:20px 30px;
    border-radius:8px;
}

.banner-overlay h1{
    font-size:2.5rem;
    margin-bottom:10px;
}

.banner-overlay p{
    font-size:1.1rem;
}

/* =========================
SERVICE IMAGE CARDS
========================= */

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
    transition:all .4s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.20);
}

.service-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:0.4s ease;
}

.service-card:hover img{
    transform:scale(1.05);
}

.service-card h3{
    padding:20px;
    text-align:center;
    font-size:1.1rem;
    color:#0A3D62;
    font-weight:600;
}

/* =========================
MOBILE
========================= */

@media (max-width:768px){

    body{
        padding-top:80px;
    }

    .menu-toggle{
        display:block;
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        background:#0A3D62;
        padding:20px 0;
        gap:0;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        text-align:center;
        margin:10px 0;
    }

    .hero{
        min-height:70vh;
        padding:40px 20px;
    }

    .hero h1{
        font-size:2rem;
    }

    .hero p{
        font-size:1rem;
    }

    .services-hero{
        height:320px;
        padding:20px;
    }

    .services-hero h1{
        font-size:2rem;
    }

    .services-hero p{
        font-size:1rem;
    }

    .page-banner{
        height:250px;
    }

    .banner-overlay h1{
        font-size:1.6rem;
    }

    .banner-overlay p{
        font-size:0.95rem;
    }

    .trust-bar span{
        display:block;
        margin:5px 0;
    }

    .social-icons{
        flex-wrap:wrap;
    }

    .career-card{
        padding:25px;
    }

    .about h2{
        font-size:2rem;
    }

    .about p{
        font-size:1rem;
    }

    .service-card img{
        height:200px;
    }
}

/* =========================
CAREERS BANNER
========================= */

.careers-banner{
    height:450px;
    background:
        linear-gradient(
            rgba(10,61,98,0.65),
            rgba(10,61,98,0.65)
        ),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1920');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.careers-banner .banner-overlay{
    width:100%;
    color:white;
}

.careers-banner h1{
    font-size:3rem;
    margin-bottom:15px;
    text-shadow:2px 2px 10px rgba(0,0,0,0.4);
}

.careers-banner p{
    max-width:700px;
    margin:auto;
    font-size:1.2rem;
    line-height:1.8;
}

/* Mobile */
@media(max-width:768px){

    .careers-banner{
        height:300px;
        padding:20px;
    }

    .careers-banner h1{
        font-size:2rem;
    }

    .careers-banner p{
        font-size:1rem;
    }
}

.clients-section{
    padding:80px 0;
    background:#f8f9fa;
    text-align:center;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:40px;
}

.client-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
    font-weight:600;
}
/* Trusted By Banner */
.trusted-banner{
    background:
        linear-gradient(rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)),
        url('trained.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay{
    width: 100%;
    color: #fff;
}

.trusted-banner h1{
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.trusted-banner p{
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

@media (max-width:768px){
    .trusted-banner{
        height: 300px;
    }

    .trusted-banner h1{
        font-size: 2rem;
    }

    .trusted-banner p{
        font-size: 1rem;
        padding: 0 20px;
    }
}
.clients-section{
    background: #f8fafc;
    padding: 80px 0;
}

.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.client-card{
    background:#ffffff;
    border-left:5px solid #d4a017;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    font-weight:600;
    text-align:center;
}

.client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    background:#0b3d91;
    color:white;
}
/* Statistics Section */
.stats{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
    margin:50px 0;
}

.stat-box{
    background:#fff;
    min-width:250px;
    padding:35px 25px;
    text-align:center;
    border-radius:15px;
    border-top:5px solid #d4a017;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    position:relative;
    overflow:hidden;
}

.stat-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        135deg,
        rgba(11,61,145,0.05),
        rgba(212,160,23,0.05)
    );
    z-index:0;
}

.stat-box h3{
    font-size:3rem;
    color:#0b3d91;
    margin-bottom:10px;
    position:relative;
    z-index:1;
    font-weight:700;
}

.stat-box p{
    color:#555;
    font-size:1.1rem;
    font-weight:500;
    position:relative;
    z-index:1;
}

.stat-box:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
    background:#0b3d91;
}

.stat-box:hover h3{
    color:#d4a017;
}

.stat-box:hover p{
    color:#fff;
}

/* Mobile Responsive */
@media(max-width:768px){
    .stats{
        flex-direction:column;
    }

    .stat-box{
        width:100%;
        max-width:350px;
    }

    .stat-box h3{
        font-size:2.5rem;
    }
}