/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    line-height:1.6;
    color:#1e293b;
    background:#ffffff;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    width:230px;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#0f172a;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:#0a66c2;
}

/* HERO SECTION */

.hero{
    background:
        linear-gradient(rgba(15,23,42,0.55),
        rgba(15,23,42,0.55)),
        url("images/hero.jpg");

    background-size:cover;
    background-position:center;
    height:85vh;

    display:flex;
    align-items:center;
}

.hero-content{
    color:#ffffff;
    max-width:750px;
}

.hero h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    margin-bottom:35px;
    color:#e2e8f0;
}

.btn{
    background:#0a66c2;
    color:#ffffff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:8px;
    display:inline-block;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#084b91;
}

/* ABOUT */

.about-preview{
    padding:55px 0;
    text-align:center;
}

.about-preview h2{
    font-size:40px;
    color:#0f172a;
    margin-top:45px;
    margin-bottom:15px;
}

.about-preview p{
    max-width:850px;
    margin:0 auto 30px;
    color:#475569;
    font-size:18px;
    line-height:1.8;
}

.about-preview .service-grid{
    margin-top:25px;
    margin-bottom:45px;
}

.about-preview h2:first-child{
    margin-top:0;
}
/* SERVICES */

.services{
    padding:55px 0;
    background:#f8fafc;
}

.services h2{
    text-align:center;
    font-size:40px;
    margin-bottom:30px;
}
.services p{
    max-width:900px;
    margin:0 auto 35px;
    color:#475569;
    font-size:18px;
    line-height:1.8;
    text-align:center;
}

.services-intro{
    max-width:900px;
    margin:0 auto 35px;
    color:#475569;
    font-size:18px;
    line-height:1.8;
    text-align:center;
}
.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1100px;
    margin:30px auto 50px;
}

.card{
    background:#ffffff;
    padding:30px;
    border-radius:14px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:0.3s;
    min-height:170px;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    color:#0a66c2;
    margin-bottom:15px;
    text-align:center;
}

.card a{
    color:#1e293b;
    text-decoration:none;
    font-weight:500;
}

.card a:hover{
    color:#0a66c2;
}
/* LEADERSHIP */

.leadership-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin-top:30px;
    margin-bottom:50px;
}

.leadership-grid .card{
    text-align:left;
}

.leadership-grid .card h3{
    text-align:center;
    margin-bottom:10px;
}

.leadership-grid .card h4{
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    margin:22px 0 10px;
}

.leadership-grid .card .expertise{
    font-size:18px;
    line-height:1.8;
    color:#475569;
    margin:0;
}

.leadership-grid .card p:nth-child(2){
    text-align:center;
    font-weight:600;
    color:#0a66c2;
    margin-bottom:5px;
}

.leadership-grid .card p:nth-child(3){
    text-align:center;
    font-style:italic;
    margin-bottom:20px;
}

.leadership-grid .card strong{
    color:#0f172a;
}

.leadership-grid .card p{
    text-align:left;
    max-width:100%;
    margin:0 0 18px 0;
}
.leadership-grid .card h3{
    text-align:center;
}

.leadership-grid .card p:nth-of-type(1){
    text-align:center;
    font-weight:600;
    color:#0a66c2;
}

.leadership-grid .card p:nth-of-type(2){
    text-align:center;
    font-style:italic;
}

/* CTA */

.cta{
    background:#0f172a;
    color:#ffffff;
    text-align:center;
    padding:35px 0 20px;
}

.cta h2{
    font-size:38px;
    margin-bottom:12px;
}

.cta p{
    margin-bottom:18px;
    font-size:18px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}
/* FOOTER */

.footer{

    background:#0f172a;

    color:#ffffff;

    text-align:center;

    padding:15px 0 8px;

}

.footer-grid{

display:grid;

grid-template-columns:1.6fr 1fr 1.2fr;

gap:25px;

text-align:left;

margin-bottom:10px;

}

.footer-grid p{
    max-width:320px;
}

.footer h3{

    color:#ffffff;

    font-size:18px;

    margin-bottom:12px;

}

.footer p{

    color:#cbd5e1;

    margin-bottom:8px;

    line-height:1.6;

    font-size:17px;

}

.footer a{

color:#cbd5e1;

text-decoration:none;

transition:.3s;
display:inline-block;

margin:1px 0;

}

.footer strong{

color:white;

}

.footer a:hover{

color:#38bdf8;

padding-left:5px;

}
.footer-line{

border:none;

border-top:1px solid rgba(255,255,255,.15);

margin:12px 0 8px;

}

.copyright{

    margin-top:8px;

    color:#94a3b8;

    font-size:15px;

}

/* MOBILE */

@media(max-width:768px){

    .nav-container{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero{
        height:auto;
        padding:120px 0;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:18px;
    }

    .about-preview h2,
    .services h2,
    .cta h2{
        font-size:32px;
    }

}

/* New Footer Mobile Layout */

/* New Footer Mobile Layout */

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

text-align:center;

gap:35px;

}

.leadership-grid{

grid-template-columns:1fr;

}

}