/*=====================================
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;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=====================================
COLORS
======================================*/

:root{

--primary:#071B3A;
--secondary:#C89B3C;
--white:#ffffff;
--light:#F5F6F8;
--text:#555;
--dark:#111;

}

/*=====================================
COMMON
======================================*/

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

section{
    padding:100px 0;
}

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

.section-title h5{
    color:var(--secondary);
    letter-spacing:3px;
    font-size:14px;
    margin-bottom:15px;
    font-weight:600;
}

.section-title h2{
    color:var(--primary);
    font-size:42px;
    margin-bottom:20px;
    font-weight:700;
}

.section-title p{
    max-width:800px;
    margin:auto;
    color:var(--text);
}

/*=====================================
BUTTONS
======================================*/

.btn{

display:inline-block;
padding:15px 35px;
background:var(--secondary);
color:#fff;
border-radius:50px;
font-weight:600;
transition:.4s;

}

.btn:hover{

background:#a67b26;
transform:translateY(-3px);

}

.btn-outline{

display:inline-block;
padding:15px 35px;
border:2px solid #fff;
color:#fff;
border-radius:50px;
margin-left:15px;
transition:.4s;

}

.btn-outline:hover{

background:#fff;
color:var(--primary);

}

/*=====================================
HEADER
======================================*/

.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

header{

position:fixed;
width:100%;
top:0;
left:0;
background:rgba(7,27,58,.96);
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.15);

}

.nav{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;

}

.logo img{

height:70px;

}

nav ul{

display:flex;
gap:35px;

}

nav ul li a{

color:#fff;
font-weight:500;
transition:.3s;

}

nav ul li a:hover{

color:var(--secondary);

}

/*=====================================
HERO
======================================*/

.hero{

position:relative;
background:url(images/hero-building.png) center center/cover no-repeat;
height:100vh;
display:flex;
align-items:center;

}

.overlay{

position:absolute;
width:100%;
height:100%;
left:0;
top:0;
background:rgba(7,27,58,.78);

}

.hero-content{

position:relative;
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;
z-index:2;

}

.hero-left h1{

font-size:64px;
font-weight:800;
line-height:1.15;
color:#fff;
margin:20px 0;

}

.hero-left p{

font-size:18px;
color:#ddd;
margin-bottom:35px;

}

.gold-text{

color:var(--secondary);
font-weight:600;
letter-spacing:2px;

}

.hero-buttons{

margin-bottom:40px;

}

.hero-right{

text-align:right;

}

.hero-right img{

max-height:650px;
margin-left:auto;

}

/*=====================================
FEATURES
======================================*/

.features{

display:flex;
gap:25px;
flex-wrap:wrap;

}

.features div{

background:rgba(255,255,255,.08);
padding:18px 22px;
border-radius:12px;
color:#fff;
backdrop-filter:blur(6px);
transition:.3s;

}

.features div:hover{

background:var(--secondary);
transform:translateY(-5px);

}

.features i{

font-size:26px;
margin-bottom:10px;
display:block;
color:#fff;

}
/*=====================================
ABOUT SECTION
======================================*/

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
    transition:.4s;
}

.about-image img:hover{
    transform:scale(1.03);
}

.about-content h3{
    color:var(--primary);
    font-size:34px;
    margin-bottom:20px;
}

.about-content p{
    color:var(--text);
    margin-bottom:18px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:35px;
}

.feature-box{
    background:#fff;
    border-radius:12px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.feature-box:hover{
    background:var(--primary);
    transform:translateY(-8px);
}

.feature-box i{
    font-size:42px;
    color:var(--secondary);
    margin-bottom:18px;
}

.feature-box h4{
    margin-bottom:12px;
    color:var(--primary);
    font-size:20px;
}

.feature-box p{
    font-size:15px;
    margin:0;
}

.feature-box:hover h4,
.feature-box:hover p{
    color:#fff;
}


/*=====================================
WHY CHOOSE US
======================================*/

.why-us{
    background:var(--light);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.why-card:hover{
    transform:translateY(-10px);
    background:var(--primary);
}

.why-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
}

.why-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:22px;
}

.why-card p{
    color:var(--text);
    font-size:15px;
}

.why-card:hover h3,
.why-card:hover p{
    color:#fff;
}


/*=====================================
VISION SECTION
======================================*/

.vision{
    background:
    linear-gradient(rgba(7,27,58,.90),
    rgba(7,27,58,.90)),
    url(images/vision.jpg) center/cover;
    color:#fff;
}

.vision-box{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.vision-box h5{
    color:var(--secondary);
    letter-spacing:3px;
    margin-bottom:15px;
    font-size:15px;
}

.vision-box h2{
    font-size:48px;
    margin-bottom:25px;
    font-weight:700;
}

.vision-box p{
    font-size:18px;
    color:#ddd;
    line-height:1.9;
    margin-bottom:35px;
}


/*=====================================
OPTIONAL STATS SECTION
======================================*/

.stats{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.stat-box h2{
    color:var(--secondary);
    font-size:42px;
    margin-bottom:10px;
}

.stat-box p{
    color:var(--text);
    font-weight:500;
}


/*=====================================
IMAGE HOVER EFFECT
======================================*/

.about-image{
    overflow:hidden;
    border-radius:18px;
}

.about-image img{
    transition:.6s;
}

.about-image:hover img{
    transform:scale(1.08);
}


/*=====================================
SMOOTH ANIMATION
======================================*/

.feature-box,
.why-card,
.stat-box{
    transition:all .35s ease;
}

.feature-box:hover,
.why-card:hover,
.stat-box:hover{
    box-shadow:0 25px 50px rgba(0,0,0,.18);
}
/*=====================================
SERVICES
======================================*/

.services{
    background:#f7f8fa;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:#fff;
    padding:40px 30px;
    border-radius:15px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border-bottom:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:var(--secondary);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card i{
    font-size:52px;
    color:var(--secondary);
    margin-bottom:25px;
}

.service-card h3{
    font-size:22px;
    color:var(--primary);
    margin-bottom:15px;
}

.service-card p{
    color:var(--text);
    font-size:15px;
}

/*=====================================
QUALITY
======================================*/

.quality{
    background:var(--primary);
    color:#fff;
}

.quality .section-title h2{
    color:#fff;
}

.quality-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.quality-box{
    background:rgba(255,255,255,.08);
    border-radius:15px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
}

.quality-box:hover{
    background:var(--secondary);
    transform:translateY(-8px);
}

.quality-box i{
    font-size:50px;
    margin-bottom:20px;
}

.quality-box h3{
    margin-bottom:15px;
}

.quality-box p{
    color:#eee;
}

/*=====================================
CONTACT
======================================*/

.contact{
    background:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info h3{
    font-size:34px;
    color:var(--primary);
    margin-bottom:20px;
}

.contact-info p{
    color:var(--text);
    margin-bottom:30px;
}

.info{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
    font-size:17px;
}

.info i{
    width:50px;
    height:50px;
    line-height:50px;
    text-align:center;
    background:var(--secondary);
    color:#fff;
    border-radius:50%;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #ddd;
    border-radius:8px;
    font-family:Poppins,sans-serif;
    font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:var(--secondary);
}

.contact-form textarea{
    resize:vertical;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

/*=====================================
FOOTER
======================================*/

footer{
    background:#071B3A;
    color:#fff;
    text-align:center;
    padding:70px 0 30px;
}

.footer-logo img{
    height:100px;
    margin:auto;
    margin-bottom:25px;
}

.footer-social{
    margin:30px 0;
}

.footer-social a{
    display:inline-block;
    width:45px;
    height:45px;
    line-height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    color:#fff;
    margin:0 8px;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--secondary);
}

.copyright{
    margin-top:25px;
    color:#bbb;
    font-size:14px;
}

/*=====================================
ANIMATION
======================================*/

.service-card,
.feature-box,
.why-card,
.quality-box{
    transition:all .35s ease;
}

img{
    transition:.4s;
}

img:hover{
    transform:scale(1.03);
}

/*=====================================
SCROLLBAR
======================================*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eee;
}

::-webkit-scrollbar-thumb{
    background:var(--secondary);
}

::-webkit-scrollbar-thumb:hover{
    background:#a67b26;
}

/*=====================================
RESPONSIVE
======================================*/

@media(max-width:992px){

.hero-content,
.about-grid,
.contact-wrapper{
    grid-template-columns:1fr;
    text-align:center;
}

.hero{
    height:auto;
    padding:180px 0 100px;
}

.hero-left h1{
    font-size:46px;
}

.hero-right{
    text-align:center;
    margin-top:40px;
}

.hero-right img{
    max-height:450px;
    margin:auto;
}

.about-features{
    grid-template-columns:1fr 1fr;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.quality-grid{
    grid-template-columns:repeat(2,1fr);
}

.features{
    justify-content:center;
}

nav ul{
    gap:18px;
}

}

/*=====================================
MOBILE
======================================*/

@media (max-width:768px){

.menu-toggle{
    display:block;
}

nav{
    position:absolute;
    top:85px;
    left:-100%;
    width:100%;
    background:#071B3A;
    transition:.4s;
}

nav.active{
    left:0;
}

nav ul{
    display:flex;
    flex-direction:column;
    padding:20px 0;
}

nav ul li{
    text-align:center;
    margin:15px 0;
}

.nav .btn{
    display:none;
}

}

/*=====================================
SMALL MOBILE
======================================*/

@media(max-width:480px){

.container{
    width:92%;
}

.hero{
    padding-top:150px;
}

.hero-left h1{h
    font-size:30px;
}

.section-title h2{
    font-size:26px;
}

.about-content h3,
.contact-info h3{
    font-size:28px;
}

.info{
    font-size:15px;
    align-items:flex-start;
}

.info i{
    min-width:45px;
}

}
/*==============================
WHATSAPP BUTTON
===============================*/

.whatsapp{

position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
background:#25D366;
color:#fff;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:38px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:9999;
transition:.3s;
animation:whatsappPulse 2s infinite;

}

.whatsapp:hover{

background:#128C7E;
transform:scale(1.1);

}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.7);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}