/* POPUP OVERLAY */

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
justify-content:center;
align-items:center;
z-index:1000;
}

/* POPUP BOX */

.popup-content{
background:white;
padding:40px;
border-radius:12px;
width:420px;
max-width:90%;
text-align:center;
box-shadow:0 20px 50px rgba(0,0,0,0.25);
animation:popupFade .35s ease;
}

/* TEXT */

.popup-content h3{
margin-top:0;
color:#1e3c72;
font-size:24px;
}

.popup-content p{
margin:15px 0 25px 0;
color:#555;
line-height:1.5;
}

/* BUTTONS */

.popup-content .cta{
display:inline-block;
margin-bottom:15px;
}

.popup-content button{
background:#eee;
border:none;
padding:10px 18px;
border-radius:6px;
cursor:pointer;
}

/* ANIMATION */

@keyframes popupFade{
from{
opacity:0;
transform:translateY(20px);
}
to{
opacity:1;
transform:translateY(0);
}
}

body{
font-family: 'Segoe UI', Arial, sans-serif;
margin:0;
background:#f4f6f9;
color:#333;
}

/* HEADER */

header{
background:#0b1f3a;
color:white;
padding:18px 40px;
display:flex;
justify-content:space-between;
align-items:center;
}

header h1{
margin:0;
font-size:26px;
letter-spacing:1px;
}

nav a{
color:white;
margin-left:25px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#ff7a18;
}

/* HERO */

.hero{
padding:100px 20px;
text-align:center;
background:linear-gradient(135deg,#1e3c72,#2a5298);
color:white;
}

.hero h2{
font-size:36px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
opacity:0.9;
}

/* BUTTON */

.cta{
display:inline-block;
margin-top:25px;
background:#ff7a18;
padding:14px 28px;
border-radius:6px;
color:white;
font-weight:bold;
text-decoration:none;
transition:0.3s;
}

.cta:hover{
background:#ff8f3a;
transform:translateY(-2px);
}

/* SERVICES */

.services{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:30px;
padding:60px 20px;
max-width:1200px;
margin:auto;
}

/* CARDS */

.card{
background:white;
padding:30px;
border-radius:10px;
width:280px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.card h3{
margin-top:0;
color:#1e3c72;
}

.card p{
line-height:1.6;
}

/* CONTACT FORM */

form{
display:flex;
flex-wrap:wrap;
gap:15px;
max-width:800px;
margin:auto;
padding:40px;
}

input, textarea{
padding:12px;
border-radius:6px;
border:1px solid #ccc;
font-size:14px;
flex:1;
}

textarea{
min-height:80px;
flex-basis:100%;
}

button{
background:#ff7a18;
color:white;
border:none;
padding:12px 20px;
border-radius:6px;
cursor:pointer;
font-weight:bold;
transition:0.3s;
}

button:hover{
background:#ff8f3a;
}

/* FOOTER */

footer{
background:#0b1f3a;
color:white;
text-align:center;
padding:25px;
margin-top:60px;
}

.contact-section{
display:flex;
justify-content:center;
padding:70px 20px;
}

.contact-card{
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
width:600px;
}

.contact-card h3{
margin-top:0;
color:#1e3c72;
}

.form-row{
display:flex;
gap:15px;
margin-bottom:15px;
}

.contact-card input,
.contact-card textarea{
width:100%;
padding:12px;
border-radius:6px;
border:1px solid #ccc;
font-size:14px;
}

.contact-card textarea{
min-height:120px;
margin-top:15px;
}

.contact-card button{
margin-top:20px;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
background:#0b1f3a;
color:white;
position:sticky;
top:0;
z-index:100;
}

.logo{
font-size:22px;
font-weight:600;
}

nav a{
margin-left:25px;
text-decoration:none;
color:white;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#ff7a18;
}

/*animated service cards*/
.card{
background:white;
padding:30px;
border-radius:10px;
width:280px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:all .3s ease;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 25px 45px rgba(0,0,0,0.12);
}

/*Client  Logos section*/
.clients{
padding:80px 20px;
text-align:center;
background:#f7f9fc;
}

.client-logos{
display:flex;
justify-content:center;
gap:50px;
margin-top:30px;
font-weight:600;
opacity:.7;
}

/*popup styling*/
.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.6);
justify-content:center;
align-items:center;
}

.popup-content{
background:white;
padding:40px;
border-radius:10px;
text-align:center;
width:400px;
}

/*logo*/
.logo img{
height:50px;
width:auto;
display:block;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:16px 40px;
background:#0b1f3a;
color:white;
position:sticky;
top:0;
z-index:100;
}

.logo{
display:flex;
align-items:center;
gap:10px;
}