        /* =========================
GLOBAL
========================= */

body{
font-family:'Poppins',sans-serif;
margin:0;
background:#F7F9FC;
color:#333;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* =========================
NAVIGATION
========================= */

header{
background:rgba(255,255,255,0.92);
backdrop-filter:blur(8px);
padding:10px 0;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

.logo{
height:150px;
}

nav{
display:flex;
align-items:center;
}

nav a{
text-decoration:none;
margin-left:30px;
color:#1E6FB8;
font-weight:500;
font-size:15px;
transition:0.3s;
}

nav a:hover{
color:#F58220;
}


/* =========================
HOME HERO
========================= */

.hero{
height:70vh;

background:
linear-gradient(
rgba(30,111,184,0.75),
rgba(30,111,184,0.70)
),
url("../images/hero.png");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
}


/* =========================
ABOUT HERO
========================= */

.about-hero{
height:60vh;

background:url("../images/about-hero.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
}


/* =========================
HERO CARD
========================= */

.hero-card{

background:rgba(255,255,255,0.15);

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,0.25);

padding:55px 70px;

border-radius:14px;

text-align:center;

color:white;

max-width:750px;

box-shadow:0 20px 40px rgba(0,0,0,0.25);

animation:fadeIn 1.2s ease;

}

.hero-card h1{
font-size:48px;
margin-bottom:20px;
font-weight:600;
}

.hero-card p{
font-size:18px;
}


/* =========================
BUTTON
========================= */

.btn{
background:#F58220;
padding:14px 30px;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:500;
display:inline-block;
margin-top:20px;

box-shadow:0 6px 15px rgba(0,0,0,0.15);

transition:0.3s;
}

.btn:hover{
background:#FDB913;
transform:translateY(-2px);
}


/* =========================
SERVICES
========================= */

.services{
padding:110px 0;
background:white;
}

.section-title{
text-align:center;
margin-bottom:60px;
font-size:32px;
color:#1E6FB8;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:35px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
transition:all 0.35s ease;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.service-card i{
font-size:38px;
color:#F58220;
margin-bottom:15px;
}

.service-card h3{
margin-bottom:10px;
color:#1E6FB8;
}


/* =========================
ABOUT SECTION
========================= */

.about{
padding:110px 0;
background:#F7F9FC;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about h2{
color:#1E6FB8;
margin-bottom:20px;
}


/* =========================
STATISTICS
========================= */

.stats{
display:flex;
justify-content:center;
gap:90px;

background:#1E6FB8;
color:white;

padding:80px;
text-align:center;
}

.stat h2{
font-size:42px;
margin-bottom:5px;
color:#FDB913;
}

.stat p{
font-size:16px;
opacity:0.9;
}


/* =========================
CTA
========================= */

.cta{
padding:100px 0;
text-align:center;
background:#F5F7FA;
}

.cta h2{
margin-bottom:20px;
color:#1E6FB8;
}

/* CONTACT HERO */

.contact-hero{
height:60vh;

background:
linear-gradient(
rgba(30,111,184,0.75),
rgba(30,111,184,0.70)
),
url("../images/Hero-Contactus.jpg");

background-size:cover;
background-position:center;

display:flex;
align-items:center;
justify-content:center;
}


/* CONTACT CARDS */

.contact-cards{
padding:80px 0;
background:white;
}

.contact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
text-align:center;
}

.contact-card{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-8px);
}


/* CONTACT FORM */

.contact-form-section{
padding:100px 0;
background:#F7F9FC;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

form{
display:flex;
flex-direction:column;
gap:15px;
}

form input,
form textarea{
padding:12px;
border:1px solid #ddd;
border-radius:6px;
font-family:Poppins;
}

form textarea{
height:120px;
resize:none;
}


/* MAP */

.map{
margin-top:40px;
}

/* =========================
FOOTER
========================= */

footer{
background:#0F4F8A;
color:white;
padding:50px 0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

footer h3,
footer h4{
margin-bottom:15px;
}

footer p{
opacity:0.9;
}


/* =========================
ANIMATION
========================= */

@keyframes fadeIn{

from{
opacity:0;
transform:translateY(20px);
}

to{
opacity:1;
transform:translateY(0);
}

}


/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.hero-card{
padding:35px;
}

.hero-card h1{
font-size:34px;
}

.about-grid{
grid-template-columns:1fr;
}

.stats{
flex-direction:column;
gap:40px;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

nav{
display:none;
}

}    