/* ==========================
GOOGLE FONT & RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

html,
body{
    overflow-x:hidden;
}

body{

    background:#f8f7f4;
    color:#111827;
    line-height:1.7;

    position:relative;
}


/* ==========================
BACKGROUND GLOW EFFECT
========================== */

body::before{

    content:"";

    position:fixed;

    top:-250px;
    right:-250px;

    width:600px;
    height:600px;

    background:
    rgba(212,163,115,.12);

    border-radius:50%;

    filter:blur(140px);

    z-index:-2;
}

body::after{

    content:"";

    position:fixed;

    bottom:-250px;
    left:-250px;

    width:600px;
    height:600px;

    background:
    rgba(17,24,39,.08);

    border-radius:50%;

    filter:blur(140px);

    z-index:-2;
}


/* ==========================
CONTAINER
========================== */

.container{

    width:90%;
    max-width:1300px;

    margin:auto;
}


/* ==========================
NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    padding:22px 0;

    background:
    rgba(255,255,255,.55);

    backdrop-filter:
    blur(25px);

    border-bottom:
    1px solid rgba(255,255,255,.25);

    transition:.4s;
}


.nav-container{

    display:flex;

    justify-content:
    space-between;

    align-items:center;

    position:relative;
}


/* ==========================
LOGO
========================== */

.logo{

    text-decoration:none;

    font-size:32px;

    font-weight:800;

    color:#111827;
}

.logo span{

    color:#D4A373;
}


/* ==========================
NAV LINKS
========================== */

.nav-links{

    display:flex;

    list-style:none;

    gap:40px;
}

.nav-links a{

    text-decoration:none;

    color:#111827;

    font-weight:500;

    transition:.3s;
}

.nav-links a:hover,
.nav-links .active{

    color:#D4A373;
}


/* ==========================
HAMBURGER
========================== */

.menu-btn{

    display:none;

    font-size:30px;

    cursor:pointer;

    z-index:99999;
}


/* ==========================
GLOBAL BUTTONS
========================== */

.btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    padding:
    15px 35px;

    border-radius:60px;

    background:#D4A373;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

    border:none;

    cursor:pointer;

    box-shadow:
    0 20px 40px
    rgba(212,163,115,.25);
}

.btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 30px 60px
    rgba(212,163,115,.35);
}


.btn.secondary{

    background:#111827;
}


/* ==========================
SECTIONS
========================== */

section{

    padding:120px 0;
}


.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:20px;
}

.section-title p{

    max-width:800px;

    margin:auto;

    color:#6b7280;

    font-size:18px;
}


/* ==========================
HERO SECTION
========================== */

.hero,
.about-hero,
.contact-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:

    linear-gradient(
    rgba(17,24,39,.55),
    rgba(17,24,39,.65)
    ),

    url('../assets/images/hero.jpg');

    background-size:cover;
    background-position:center;
}


.hero-overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:
    radial-gradient(
    circle,
    transparent,
    rgba(0,0,0,.35)
    );
}


.hero-content{

    position:relative;

    z-index:2;
}


.hero-text{

    max-width:760px;

    color:#fff;
}

.hero-text h1{

    font-size:76px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:30px;
}

.hero-text p{

    font-size:20px;

    color:
    rgba(255,255,255,.85);

    margin-bottom:40px;
}


.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}













































/* ==========================
FLOATING HERO CARDS
========================== */

.floating-card{

    position:absolute;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:
    blur(20px);

    border:
    1px solid
    rgba(255,255,255,.15);

    padding:20px 30px;

    border-radius:25px;

    color:#fff;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:
    0 20px 50px
    rgba(0,0,0,.2);

    animation:
    floating 6s ease-in-out infinite;
}

.floating-card i{

    font-size:28px;

    color:#D4A373;
}

.card-1{

    top:25%;
    right:8%;
}

.card-2{

    top:50%;
    right:15%;

    animation-delay:2s;
}

.card-3{

    bottom:15%;
    right:10%;

    animation-delay:4s;
}



/* ==========================
ABOUT GRID
========================== */

.about-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,
    minmax(320px,1fr));

    gap:35px;
}


.about-card{

    background:
    rgba(255,255,255,.7);

    backdrop-filter:
    blur(20px);

    border:
    1px solid
    rgba(255,255,255,.4);

    padding:45px;

    border-radius:35px;

    text-align:center;

    transition:.5s;

    box-shadow:
    0 20px 60px
    rgba(0,0,0,.07);
}

.about-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 35px 70px
    rgba(0,0,0,.12);
}


.about-card i{

    font-size:60px;

    color:#D4A373;

    margin-bottom:25px;
}

.about-card h3{

    font-size:30px;

    margin-bottom:20px;
}

.about-card p{

    color:#6b7280;
}



/* ==========================
WHY SECTION
========================== */

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,
    minmax(300px,1fr));

    gap:35px;
}


.why-card{

    background:#fff;

    padding:45px;

    border-radius:35px;

    text-align:center;

    transition:.5s;

    box-shadow:
    0 25px 60px
    rgba(0,0,0,.08);
}


.why-card:hover{

    transform:
    translateY(-10px);
}


.why-card i{

    font-size:60px;

    color:#D4A373;

    margin-bottom:25px;
}


.why-card h3{

    font-size:28px;

    margin-bottom:15px;
}

.why-card p{

    color:#6b7280;
}



/* ==========================
SERVICES
========================== */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,
    minmax(320px,1fr));

    gap:35px;
}


.service-card{

    background:
    linear-gradient(
    135deg,
    rgba(255,255,255,.8),
    rgba(255,255,255,.55)
    );

    backdrop-filter:
    blur(20px);

    padding:50px;

    border-radius:35px;

    text-align:center;

    transition:.5s;

    box-shadow:
    0 25px 60px
    rgba(0,0,0,.08);
}


.service-card:hover{

    transform:
    translateY(-12px)
    rotateX(5deg);
}


.service-card i{

    font-size:65px;

    color:#D4A373;

    margin-bottom:25px;
}


.service-card h3{

    font-size:30px;

    margin-bottom:20px;
}

.service-card p{

    color:#6b7280;
}



/* ==========================
COUNTER SECTION
========================== */

.counter-section{

    background:
    linear-gradient(
    135deg,
    #111827,
    #1f2937
    );

    color:#fff;
}


.counter-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;
}


.counter-card{

    background:
    rgba(255,255,255,.08);

    backdrop-filter:
    blur(20px);

    padding:45px;

    border-radius:35px;

    text-align:center;

    border:
    1px solid
    rgba(255,255,255,.1);
}


.counter-card h3{

    font-size:55px;

    color:#D4A373;

    margin-bottom:15px;
}


.counter-card p{

    color:
    rgba(255,255,255,.8);
}



/* ==========================
CONTACT SECTION
========================== */

.contact-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,
    minmax(320px,1fr));

    gap:35px;
}


.contact-card{

    background:#fff;

    padding:50px;

    border-radius:35px;

    text-align:center;

    transition:.5s;

    box-shadow:
    0 25px 60px
    rgba(0,0,0,.08);
}


.contact-card:hover{

    transform:
    translateY(-12px);
}


.contact-icon i,
.contact-card i{

    font-size:60px;

    color:#D4A373;

    margin-bottom:25px;
}


.contact-card h3{

    font-size:28px;

    margin-bottom:15px;
}

.contact-card p{

    color:#6b7280;

    margin-bottom:30px;
}




































/* ==========================
CTA SECTION
========================== */

.cta-section{

    background:
    linear-gradient(
    135deg,
    #f3f4f6,
    #ffffff
    );
}


.cta-card{

    background:
    rgba(255,255,255,.75);

    backdrop-filter:
    blur(25px);

    padding:80px 60px;

    border-radius:45px;

    text-align:center;

    box-shadow:
    0 30px 80px
    rgba(0,0,0,.08);
}


.cta-card h2{

    font-size:55px;

    margin-bottom:25px;
}


.cta-card p{

    max-width:850px;

    margin:auto;

    color:#6b7280;

    font-size:18px;

    line-height:1.9;
}



/* ==========================
CONTACT FORM
========================== */

.contact-form-card{

    max-width:850px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:40px;

    box-shadow:
    0 30px 80px
    rgba(0,0,0,.08);
}


.contact-form-card h2{

    text-align:center;

    font-size:45px;

    margin-bottom:20px;
}


.contact-form-card p{

    text-align:center;

    color:#6b7280;

    margin-bottom:40px;
}


.input-group{

    margin-bottom:25px;
}


.input-group input,
.input-group textarea{

    width:100%;

    padding:18px 25px;

    border:none;

    outline:none;

    background:#f8f8f8;

    border-radius:20px;

    font-size:16px;

    transition:.4s;
}


.input-group input:focus,
.input-group textarea:focus{

    background:#fff;

    box-shadow:
    0 0 0 3px
    rgba(212,163,115,.25);
}



/* ==========================
QUALITY CARD
========================== */

.quality-card,
.why-contact-card,
.map-card{

    background:
    rgba(255,255,255,.75);

    backdrop-filter:
    blur(20px);

    padding:70px;

    border-radius:40px;

    text-align:center;

    box-shadow:
    0 30px 80px
    rgba(0,0,0,.08);
}


.quality-card h2,
.why-contact-card h2,
.map-card h2{

    font-size:48px;

    margin-bottom:25px;
}


.quality-card p,
.why-contact-card p,
.map-card p{

    color:#6b7280;

    font-size:18px;

    line-height:1.9;
}



/* ==========================
FOOTER
========================== */

footer{

    background:#111827;

    color:#fff;

    padding-top:100px;
}


.footer-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:60px;
}


.footer-grid h3{

    font-size:30px;

    margin-bottom:25px;

    color:#D4A373;
}


.footer-grid p{

    color:
    rgba(255,255,255,.75);

    line-height:2;
}


.footer-grid a{

    display:block;

    margin-bottom:15px;

    color:
    rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;
}


.footer-grid a:hover{

    color:#D4A373;
}


.copyright{

    text-align:center;

    padding:35px 0;

    margin-top:70px;

    border-top:
    1px solid
    rgba(255,255,255,.1);

    color:
    rgba(255,255,255,.6);
}



/* ==========================
WHATSAPP BUTTON
========================== */

.whatsapp{

    position:fixed;

    right:30px;
    bottom:30px;

    width:70px;
    height:70px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    font-size:34px;

    z-index:9999;

    box-shadow:
    0 20px 50px
    rgba(37,211,102,.4);

    animation:
    floatWhatsapp 3s infinite;

    transition:.4s;
}


.whatsapp:hover{

    transform:
    scale(1.1);
}



/* ==========================
SMOOTH HOVER EFFECTS
========================== */

.about-card,
.why-card,
.service-card,
.contact-card,
.counter-card,
.btn{

    transition:
    all .45s ease;
}



/* ==========================
IMAGE FIX
========================== */

img{

    max-width:100%;

    display:block;
}



/* ==========================
LARGE SCREEN FIX
========================== */

@media(min-width:1500px){

.container{

    max-width:1450px;
}

.hero-text h1{

    font-size:85px;
}

}














.service-card img,
.about-image img,
.contact-card img{

    width:100%;
    height:280px;

    object-fit:cover;

    border-radius:30px;

    margin-bottom:25px;
}