/*==========================
  GOOGLE FONT
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
  RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*==========================
  COLORS
==========================*/

:root{

--primary:#0B1F4D;
--secondary:#D4AF37;
--white:#ffffff;
--light:#f5f7fb;
--text:#555;
--shadow:0 15px 35px rgba(0,0,0,.08);

}

/*==========================
 HEADER
==========================*/

header{

position:fixed;

top:0;

left:0;

width:100%;

background:var(--primary);

z-index:999;

box-shadow:0 3px 15px rgba(0,0,0,.15);

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

padding:14px 0;

}

.logo img{

height:35px;

width:auto;

}

nav ul{

display:flex;

gap:35px;

align-items:center;

}

nav ul li a{

color:#fff;

font-size:16px;

font-weight:500;

transition:.3s;

}

nav ul li a:hover{

color:var(--secondary);

}

.call-btn{

background:var(--secondary);

padding:11px 24px;

border-radius:50px;

font-weight:600;

color:#fff;

transition:.3s;

}

.call-btn:hover{

background:#b88f16;

transform:translateY(-2px);

}

/*==========================
 HERO
==========================*/

.hero{

padding:170px 0 90px;

background:linear-gradient(135deg,#081A43,#123B84);

color:#fff;

}

.hero-grid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.tagline{

display:inline-block;

background:rgba(255,255,255,.15);

padding:8px 20px;

border-radius:50px;

margin-bottom:20px;

font-size:14px;

}

.hero h1{

font-size:54px;

font-weight:800;

line-height:1.2;

margin-bottom:25px;

}

.hero p{

font-size:18px;

opacity:.9;

margin-bottom:35px;

max-width:550px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

}

.primary-btn{

background:var(--secondary);

color:#fff;

padding:14px 32px;

border-radius:40px;

font-weight:600;

transition:.3s;

}

.primary-btn:hover{

transform:translateY(-3px);

}

.secondary-btn{

border:2px solid #fff;

padding:14px 32px;

border-radius:40px;

color:#fff;

font-weight:600;

transition:.3s;

}

.secondary-btn:hover{

background:#fff;

color:var(--primary);

}

.hero-image img{

width:100%;

max-width:520px;

margin:auto;

}
/*==========================================
    SECTION TITLE
==========================================*/

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    background:#EAF2FF;
    color:var(--primary);
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    color:var(--primary);
    margin-bottom:15px;
    font-weight:700;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
}

/*==========================================
ABOUT
==========================================*/

.about{
    background:#fff;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    width:100%;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.about-content h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:20px;

}

.about-content p{

    color:#666;

    margin-bottom:30px;

}

.about-box{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.box{

    background:#fff;

    border-radius:15px;

    padding:25px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.box:hover{

    transform:translateY(-8px);

}

.box i{

    font-size:40px;

    color:var(--secondary);

    margin-bottom:15px;

}

.box h4{

    color:var(--primary);

}

/*==========================================
WHY CHOOSE
==========================================*/

.why{

    background:#F6F9FC;

}

.why-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

transition:.35s;

box-shadow:var(--shadow);

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card i{

font-size:50px;

color:var(--secondary);

margin-bottom:20px;

}

.why-card h3{

margin-bottom:15px;

color:var(--primary);

font-size:22px;

}

.why-card p{

color:#666;

}

/*==========================================
COUNTER
==========================================*/

.counter{

background:linear-gradient(135deg,#0B1F4D,#163E8C);

padding:70px 0;

}

.counter-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.counter-box{

text-align:center;

color:#fff;

}

.counter-box h2{

font-size:48px;

font-weight:700;

color:var(--secondary);

margin-bottom:10px;

}

.counter-box p{

font-size:18px;

}

/*==========================================
SERVICES
==========================================*/

.services{

background:#fff;

}

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:30px;

}

.service-card{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

transition:.35s;

border-top:5px solid transparent;

}

.service-card:hover{

transform:translateY(-10px);

border-top:5px solid var(--secondary);

}

.service-card i{

font-size:48px;

color:var(--secondary);

margin-bottom:20px;

}

.service-card h3{

font-size:24px;

margin-bottom:15px;

color:var(--primary);

}

.service-card p{

color:#666;

line-height:1.8;

}
/*==========================================
PROCESS SECTION
==========================================*/

.process{
    background:#f8fbff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:30px;
    margin-top:40px;
}

.step{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.step:hover{
    transform:translateY(-10px);
}

.number{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),#1d4da5);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:700;
}

.step h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:24px;
}

.step p{
    color:#666;
    line-height:1.8;
}

/*==========================================
CTA SECTION
==========================================*/

.cta{

background:linear-gradient(135deg,#081A43,#123B84);

color:#fff;

text-align:center;

padding:90px 20px;

}

.cta h2{

font-size:42px;

margin-bottom:20px;

}

.cta p{

max-width:700px;

margin:0 auto 35px;

font-size:18px;

opacity:.95;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/*==========================================
FAQ
==========================================*/

.faq{

background:#fff;

}

.faq-box{

max-width:900px;

margin:auto;

}

.faq-item{

background:#fff;

padding:28px;

margin-bottom:20px;

border-radius:15px;

box-shadow:var(--shadow);

border-left:5px solid var(--secondary);

transition:.3s;

}

.faq-item:hover{

transform:translateX(8px);

}

.faq-item h3{

font-size:22px;

color:var(--primary);

margin-bottom:12px;

}

.faq-item p{

color:#666;

line-height:1.8;

}

/*==========================================
CONTACT
==========================================*/

.contact{

background:#f8fbff;

}

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

margin-top:40px;

}

.contact-info{

display:flex;

flex-direction:column;

gap:25px;

}

.info-box{

display:flex;

gap:20px;

align-items:flex-start;

background:#fff;

padding:25px;

border-radius:18px;

box-shadow:var(--shadow);

}

.info-box i{

font-size:30px;

color:var(--secondary);

margin-top:5px;

}

.info-box h3{

color:var(--primary);

margin-bottom:8px;

}

.info-box p,
.info-box a{

color:#666;

text-decoration:none;

}

.contact-form{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:var(--shadow);

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:15px 18px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:10px;

font-size:16px;

font-family:'Poppins',sans-serif;

outline:none;

transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:var(--secondary);

box-shadow:0 0 8px rgba(212,175,55,.25);

}

.contact-form button{

width:100%;

border:none;

cursor:pointer;

font-size:17px;

}

/*==========================================
GOOGLE MAP
==========================================*/

.map{

padding:0;

}

.map iframe{

width:100%;

height:450px;

border:none;

display:block;

}
/*==========================================
FOOTER
==========================================*/

footer{
    background:#081A43;
    color:#fff;
    padding:70px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    margin-bottom:40px;
}

footer h3{
    color:#D4AF37;
    margin-bottom:20px;
    font-size:22px;
}

footer p{
    color:#d8d8d8;
    line-height:1.8;
}

footer ul{
    padding:0;
}

footer ul li{
    margin-bottom:12px;
}

footer ul li a{
    color:#ddd;
    transition:.3s;
}

footer ul li a:hover{
    color:#D4AF37;
    padding-left:8px;
}

footer hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:35px 0;
}

.copyright{
    text-align:center;
    font-size:15px;
    margin-bottom:15px;
}

.disclaimer{
    text-align:center;
    font-size:14px;
    color:#cfcfcf;
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

/*==========================================
WHATSAPP BUTTON
==========================================*/

.whatsapp-float{

position:fixed;

right:25px;

bottom:25px;

width:60px;

height:60px;

background:#25D366;

color:#fff;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

box-shadow:0 10px 25px rgba(0,0,0,.25);

z-index:999;

transition:.3s;

animation:whatsapp 2s infinite;

}

.whatsapp-float:hover{

transform:scale(1.1);

}

@keyframes whatsapp{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

/*==========================================
SCROLLBAR
==========================================*/

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-thumb{
background:#D4AF37;
border-radius:20px;
}

::-webkit-scrollbar-track{
background:#f2f2f2;
}

/*==========================================
ANIMATION
==========================================*/

.service-card,
.why-card,
.box,
.step,
.info-box{
transition:.35s ease;
}

.service-card:hover,
.why-card:hover,
.box:hover,
.step:hover,
.info-box:hover{
box-shadow:0 20px 45px rgba(0,0,0,.12);
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:992px){

.hero-grid,
.about-grid,
.contact-grid{
grid-template-columns:1fr;
}

.hero{
text-align:center;
}

.hero h1{
font-size:42px;
}

.hero p{
margin:auto auto 30px;
}

.hero-buttons{
justify-content:center;
}

.counter-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:repeat(2,1fr);
}

nav ul{
gap:18px;
}

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:768px){

header{
padding:0;
}

nav{
flex-direction:column;
gap:15px;
padding:15px 0;
}

.logo img{
height:32px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
gap:15px;
}

.hero{
padding:150px 0 70px;
}

.hero h1{
font-size:34px;
}

.section-title h2{
font-size:32px;
}

.counter-grid{
grid-template-columns:1fr;
}

.about-box{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr;
}

.process-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.whatsapp-float{
width:55px;
height:55px;
font-size:28px;
right:15px;
bottom:15px;
}

}

/*==========================================
SMALL MOBILE
==========================================*/

@media(max-width:480px){

.container{
width:92%;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.primary-btn,
.secondary-btn,
.call-btn{
display:block;
width:100%;
text-align:center;
margin-bottom:12px;
}

.contact-form{
padding:25px;
}

}