*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f8fafc;
color:#111827;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}


/* COLORS
Red  : #c8102e
Navy   : #0f172a
Dark   : #020617
*/


/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 5%;
background:#ffffff;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.logo{
font-size:28px;
font-weight:700;
color:#0f172a;
}

.logo span{
color:#c8102e;
}

nav a{
text-decoration:none;
margin:0 15px;
color:#0f172a;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#c8102e;
}

.btn{
background:#c8102e;
color:white;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
display:inline-block;
font-weight:600;
transition:.3s;
border:none;
cursor:pointer;
}

.btn:hover{
transform:translateY(-2px);
}


/* HERO */

.hero{
min-height:80vh;
background-size:cover;
background-position:center;
display:flex;
align-items:center;
color:white;
}

.hero-content{
width:55%;
margin-left:8%;
}

.hero-content h4{
color:#c8102e;
font-size:14px;
letter-spacing:2px;
margin-bottom:15px;
}

.hero-content h1{
font-size:56px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content p{
margin-bottom:30px;
}


/* COMMON SECTIONS */

.section{
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:40px;
color:#0f172a;
}


/* CARDS */

.cards{
display:flex;
gap:25px;
margin-top:40px;
}

.card{
flex:1;
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
border-top:4px solid #c8102e;
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
}


/* ABOUT / PROCESS */

.about,
.process,
.mission,
.contact-wrapper{
display:flex;
align-items:center;
gap:50px;
}

.about img,
.process img,
.mission img{
width:100%;
border-radius:15px;
}


/* JOB CARDS */

.job-card{
background:white;
padding:30px;
margin-bottom:25px;
border-radius:12px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.tags span{
display:inline-block;
padding:8px 12px;
background:#e2e8f0;
border-radius:6px;
margin-right:10px;
margin-top:15px;
font-size:14px;
}


/* FORM */

.contact-form{
background:white;
padding:40px;
border-radius:15px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
flex:1;
}

.row{
display:flex;
gap:20px;
}

input,
select,
textarea{
width:100%;
padding:15px;
border:1px solid #d1d5db;
border-radius:6px;
margin-bottom:20px;
font-size:15px;
}

textarea{
height:160px;
resize:none;
}


/* TEAM */

.team-grid{
display:flex;
gap:25px;
margin-top:40px;
}

.member{
flex:1;
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.member img{
width:100%;
}

.member-info{
padding:20px;
}


/* STATS */

.stats{
background:#0f172a;
color:white;
padding:80px 0;
text-align:center;
}

.stat-grid{
display:flex;
justify-content:space-between;
margin-top:40px;
}

.stat h2{
font-size:48px;
color:#c8102e;
}


/* FAQ */

.faq-item{
background:white;
padding:25px;
border-radius:10px;
margin-bottom:20px;
box-shadow:0 4px 12px rgba(0,0,0,.08);
}


/* CTA */

.cta{
background:#0f172a;
color:white;
padding:70px;
border-radius:20px;
display:flex;
justify-content:space-between;
align-items:center;
margin:80px auto;
}


/* FOOTER */


footer{
background:#020617;
color:#c8102e;
padding:60px 5%;
margin-top:60px;
}

footer p {
  color: #ffffff;
}
.footer-grid{
display:flex;
justify-content:space-between;
gap:30px;
}

footer h4{
color:#c8102e;
margin-bottom:15px;
}

footer a{
display:block;
text-decoration:none;
color:#cbd5e1;
margin-bottom:8px;
}

footer a:hover{
color:#c8102e;
}


/* MOBILE */

@media(max-width:768px){

nav{
display:none;
}

.hero-content{
width:90%;
}

.hero-content h1{
font-size:38px;
}

.cards,
.about,
.process,
.mission,
.contact-wrapper,
.team-grid,
.footer-grid,
.stat-grid,
.cta,
.row{
flex-direction:column;
}

}
.site-logo {
  height: 64px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .site-logo {
    height: 48px;
  }
}
.contact-details{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:40px;
}

.contact-box{
    background:#f8f8f8;
    padding:25px;
    border-radius:10px;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.contact-box h3{
    color:#ff8c42;
    margin-bottom:10px;
}

.contact-box p{
    color:#333;
    line-height:1.8;
}