/*=============================
RESET
=============================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#f8fafc;
    line-height:1.7;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=============================
HEADER
=============================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:999;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

nav{
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#0F4C81;
}

.logo span{
    color:#1E88E5;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#1E88E5;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/*=============================
BUTTONS
=============================*/

.btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:40px;
    background:#1E88E5;
    color:#fff;
    transition:.3s;
}

.btn:hover{
    background:#0F4C81;
}

.btn.outline{
    background:transparent;
    border:2px solid #fff;
    margin-left:15px;
}

/*=============================
HERO
=============================*/

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 0 80px;
    background:linear-gradient(135deg,#0F4C81,#2196f3);
    color:#fff;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.hero h1{
    font-size:58px;
    line-height:1.2;
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    margin-bottom:35px;
}

.hero-box{
    background:#fff;
    color:#333;
    padding:50px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.hero-box i{
    font-size:60px;
    color:#2196f3;
    margin-bottom:20px;
}

/*=============================
SECTIONS
=============================*/

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#0F4C81;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/*=============================
ABOUT
=============================*/

.about-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.about-grid h3{
    font-size:32px;
    color:#0F4C81;
    margin-bottom:20px;
}

.about-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.about-card i{
    font-size:55px;
    color:#1E88E5;
    margin-bottom:20px;
}

/*=============================
SERVICES
=============================*/

#services{
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card{
    background:#f5f9ff;
    border-radius:18px;
    padding:35px;
    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.card:hover{
    background:#1E88E5;
    color:#fff;
    transform:translateY(-8px);
}

.card i{
    font-size:45px;
    color:#1E88E5;
    margin-bottom:20px;
}

.card:hover i{
    color:#fff;
}

.card h3{
    margin-bottom:15px;
}

/*=============================
COMPLIANCE
=============================*/

.dark{
    background:#0F4C81;
    color:#fff;
}

.dark h2{
    color:#fff;
}

.check-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.check-list li{
    background:rgba(255,255,255,.1);
    padding:20px;
    border-radius:12px;
}

/*=============================
CONTACT
=============================*/

.contact-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.contact-grid div{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.contact-grid i{
    font-size:42px;
    color:#1E88E5;
    margin-bottom:20px;
}

.contact-grid h4{
    margin-bottom:10px;
}

/*=============================
FOOTER
=============================*/

footer{
    background:#081f38;
    color:#fff;
    text-align:center;
    padding:30px 0;
}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:991px){

.hero-grid,
.about-grid,
.services-grid,
.contact-grid,
.check-list{

grid-template-columns:1fr;

}

.hero{
text-align:center;
}

.hero h1{
font-size:42px;
}

}

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-links{
position:fixed;
top:80px;
left:-100%;
width:100%;
height:calc(100vh - 80px);
background:#fff;
display:flex;
flex-direction:column;
align-items:center;
justify-content:flex-start;
padding-top:50px;
gap:25px;
transition:.4s;
}

.nav-links.active{
left:0;
}

.hero h1{
font-size:34px;
}

.section-title h2{
font-size:32px;
}

.btn{
display:block;
margin-bottom:15px;
text-align:center;
}

.btn.outline{
margin-left:0;
}

}
/* Fade Animation */

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:0.8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* Active Menu */

.nav-links a.active{
    color:#1E88E5;
    font-weight:600;
}
:root{
    --primary:#1E293B;
    --secondary:#334155;
    --accent:#D4A017;
    --accent-hover:#B8860B;
    --light:#F8FAFC;
    --white:#FFFFFF;
    --text:#334155;
    --shadow:0 10px 30px rgba(0,0,0,.08);
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:var(--light);
    line-height:1.7;
}
header{
    position:fixed;
    width:100%;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    box-shadow:var(--shadow);
}

.logo{
    color:var(--primary);
}

.logo span{
    color:var(--accent);
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--accent);
}
.btn{
    background:var(--accent);
    color:#fff;
    transition:.35s;
}

.btn:hover{
    background:var(--accent-hover);
    transform:translateY(-3px);
}

.btn.outline{
    border:2px solid #fff;
    background:transparent;
}
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 0 80px;
    background:linear-gradient(135deg,#1E293B,#334155);
    color:#fff;
}
.hero-box{
    background:#fff;
    color:#333;
    border-radius:20px;
    padding:50px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.hero-box i{
    color:var(--accent);
}
.section-title h2{
    color:var(--primary);
}
.about-grid h3{
    color:var(--primary);
}

.about-card{
    box-shadow:var(--shadow);
}

.about-card i{
    color:var(--accent);
}
.card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:var(--shadow);
    transition:.35s;
    border-top:4px solid var(--accent);
}

.card:hover{

    transform:translateY(-10px);

    background:var(--primary);

    color:#fff;

}

.card i{

    color:var(--accent);

    font-size:45px;

}

.card:hover i{

    color:#FFD369;

}
.dark{

    background:var(--primary);

    color:#fff;

}

.check-list li{

    background:rgba(255,255,255,.08);

    border-left:4px solid var(--accent);

}
.contact-grid div{

    background:#fff;

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.contact-grid div:hover{

    transform:translateY(-8px);

}

.contact-grid i{

    color:var(--accent);

}
footer{

    background:#111827;

    color:#fff;

}
.card,
.about-card,
.contact-grid div,
.hero-box,
.btn{

    transition:.35s ease;

}