/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

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


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

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}


.top-bar {
    background: #111;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 14px;
}


.navbar {
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    box-shadow: 0 3px 15px rgba(0,0,0,.15);
}


.logo img {
    height: 70px;
}


.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
}


.navbar ul li a {
    color: #111;
    font-weight: 600;
}


.navbar ul li a:hover {
    color: #f5b400;
}


.quote-button {
    background: #f5b400;
    color: #111;
    padding: 12px 25px;
    border-radius: 40px;
    font-weight: 700;
}





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


.hero {

    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 160px 20px 80px;

    color: white;

    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.65)
    ),
    url("../images/hero.jpg") center/cover no-repeat;

}



.hero-overlay {

    max-width: 900px;

}



.hero h3 {

    font-size: 2rem;

}



.hero h1 {

    font-size: clamp(3rem,6vw,5rem);
    color:#f5b400;
    font-weight:800;
    line-height:1;

}



.hero p {

    font-size:1.3rem;
    margin:30px 0;

}



.buttons {

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}



.gold-btn,
.black-btn {

    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    display:inline-block;
    transition:.3s;

}



.gold-btn {

    background:#f5b400;
    color:#111;

}



.black-btn {

    background:#111;
    color:white;
    border:2px solid white;

}



.gold-btn:hover,
.black-btn:hover {

    transform:translateY(-3px);

}




/* =========================
   TRUST SECTION
========================= */


.trust {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    padding:70px 5%;

}



.card {

    background:white;
    text-align:center;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    font-size:2rem;

}



.card h3 {

    font-size:1.1rem;
    margin-top:15px;

}




/* =========================
   ABOUT
========================= */


.about-preview {

    padding:80px 20px;
    background:#f7f7f7;
    text-align:center;

}



.about-preview h2 {

    font-size:2.5rem;
    margin-bottom:20px;

}



.about-preview p {

    max-width:800px;
    margin:0 auto 30px;

}





/* =========================
   SERVICES
========================= */


.services {

    padding:80px 20px;

}



.section-title {

    text-align:center;
    font-size:2.5rem;
    margin-bottom:40px;

}



.service-grid {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}



.service-card {

    padding:30px;
    background:white;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    text-align:center;

}



.service-card h3 {

    margin-bottom:15px;

}




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


.contact {

    background:#111;
    color:white;
    text-align:center;
    padding:80px 20px;

}



.contact h2 {

    font-size:2.5rem;

}





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


footer {

    background:#000;
    color:white;
    text-align:center;
    padding:40px 20px;

}





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


@media(max-width:900px){


.navbar {

    flex-direction:column;
    gap:15px;

}


.navbar ul {

    flex-wrap:wrap;
    justify-content:center;

}


.trust,
.service-grid {

    grid-template-columns:1fr;

}


}



@media(max-width:600px){


.hero h1 {

    font-size:2.8rem;

}


.hero p {

    font-size:1rem;

}


.logo img {

    height:55px;

}


}
