*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f9f9f9;
color:#222;
line-height:1.6;
}

/* HEADER */

header{
background:#0a1f44;
color:white;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.18);
flex-wrap:wrap;
gap:15px;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:20px;
font-weight:600;
}

.logo img{
height:46px;
width:auto;
display:block;
}

.gold{
color:#d4af37;
}

nav{
display:flex;
flex-wrap:wrap;
gap:16px;
}

nav a{
color:white;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

nav a:hover,
nav a.active{
color:#d4af37;
}

/* HERO */

.hero{
min-height:88vh;
background:
linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:80px 8%;
}



.hero-content{
max-width:760px;
}

.hero h1{
font-size:48px;
line-height:1.2;
margin-bottom:12px;
}

.hero p{
font-size:18px;
}

.hero-trust{
margin-top:10px;
color:#d4af37;
font-weight:600;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
margin-top:22px;
justify-content:center;
}

/* GENERIC PAGE TITLE */

.page-hero{
padding:70px 8% 35px;
text-align:center;
}

.page-hero h1{
font-size:38px;
margin-bottom:10px;
}

.page-hero p{
max-width:760px;
margin:0 auto;
color:#777;
}

.banner-image{
width:100%;
max-width:900px;
border-radius:14px;
margin:28px auto 0;
display:block;
box-shadow:0 6px 22px rgba(0,0,0,0.12);
}

/* BUTTONS */

.btn{
padding:12px 24px;
background:#d4af37;
color:black;
text-decoration:none;
border-radius:8px;
font-weight:600;
transition:0.3s;
display:inline-block;
border:none;
cursor:pointer;
}

.btn:hover{
background:#b8962e;
transform:translateY(-2px);
}

.btn.outline{
background:transparent;
border:2px solid #d4af37;
color:#d4af37;
}

.btn.outline:hover{
background:#d4af37;
color:black;
}

/* SECTIONS */

section{
padding:60px 8%;
text-align:center;
}

section h2{
margin-bottom:12px;
font-size:32px;
color:#0a1f44;
}

.subtext{
margin-top:10px;
color:#777;
max-width:760px;
margin-left:auto;
margin-right:auto;
}

.dark{
background:#0a1f44;
color:white;
}

.dark h2{
color:white;
}

/* CARDS */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
gap:24px;
margin-top:28px;
}

.card{
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.card:hover{
transform:translateY(-6px);
}

.card h3{
font-size:20px;
margin-bottom:10px;
color:#0a1f44;
}

.card p{
color:#555;
}

.card .btn{
margin-top:16px;
}

/* TEXT BLOCKS */

.content-wrap{
max-width:850px;
margin:20px auto 0;
color:#555;
line-height:1.85;
text-align:left;
}

.content-wrap p + p{
margin-top:15px;
}

.points{
max-width:850px;
margin:28px auto 0;
text-align:left;
color:#555;
line-height:1.9;
padding-left:18px;
}

.points li{
margin-bottom:8px;
}

/* CTA */

.cta{
background:#d4af37;
color:black;
}

.cta h2{
color:#111;
}

.cta p{
margin-bottom:18px;
}

.cta .btn{
background:#0a1f44;
color:white;
}

.cta .btn:hover{
background:#081733;
}

/* CONTACT CARDS */

.contact-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:28px;
}

.contact-card{
background:white;
padding:22px;
border-radius:14px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
text-align:left;
transition:0.3s;
}

.contact-card:hover{
transform:translateY(-5px);
}

.contact-card h4{
font-size:18px;
color:#0a1f44;
margin-bottom:10px;
}

.contact-card p{
color:#555;
margin-bottom:8px;
}

.contact-card a{
color:#0a1f44;
text-decoration:none;
font-weight:500;
word-break:break-word;
}

.contact-card a:hover{
text-decoration:underline;
}

.contact-block + .contact-block{
margin-top:14px;
}

/* FORMS */

.form-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:24px;
margin-top:28px;
}

.form-card{
background:white;
padding:25px;
border-radius:14px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
text-align:left;
}

.form-card h3{
margin-bottom:14px;
color:#0a1f44;
text-align:center;
}

form{
display:flex;
flex-direction:column;
gap:12px;
margin-top:10px;
}

form input,
form textarea{
padding:12px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
width:100%;
}

form textarea{
min-height:110px;
resize:vertical;
}

form button{
padding:12px;
background:#0a1f44;
color:white;
border:none;
border-radius:8px;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

form button:hover{
background:#d4af37;
color:black;
}

/* QR */

.qr-img{
width:180px;
max-width:100%;
margin-top:20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* SIMPLE CONTACT PREVIEW */

.contact-preview p{
margin-bottom:8px;
}

/* FOOTER */

footer{
background:#0a1f44;
color:white;
text-align:center;
padding:20px;
margin-top:20px;
}

/* WHATSAPP FLOAT */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
padding:12px;
border-radius:50%;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
display:flex;
align-items:center;
justify-content:center;
z-index:1200;
}

.whatsapp img{
width:28px;
height:28px;
display:block;
}

/* THANK YOU */

.thankyou-page{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
}

.thankyou-box{
background:white;
padding:40px 30px;
border-radius:16px;
box-shadow:0 6px 24px rgba(0,0,0,0.08);
max-width:600px;
width:100%;
text-align:center;
}

.thankyou-box h1{
margin-bottom:12px;
color:#0a1f44;
}

/* RESPONSIVE */

@media (max-width: 900px){
header{
justify-content:center;
}
nav{
justify-content:center;
}
.hero h1{
font-size:38px;
}
.page-hero h1{
font-size:32px;
}
section h2{
font-size:28px;
}
}

@media (max-width: 600px){
header{
padding:14px 5%;
}
section,
.page-hero{
padding-left:5%;
padding-right:5%;
}
.hero{
padding-left:5%;
padding-right:5%;
min-height:78vh;
}
.hero h1{
font-size:30px;
}
.hero p{
font-size:16px;
}
.logo{
font-size:18px;
}
.logo img{
height:40px;
}
nav{
gap:12px;
}
nav a{
font-size:14px;
}
}