*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

:root{
    --primary-red:#C8102E;
    --dark:#1F2937;
    --white:#ffffff;
    --gray:#f5f5f5;
    --gold:#FBBF24;
}

body{
    overflow-x:hidden;
}

.navbar{
    background:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    position:fixed;
    width:100%;
    z-index:1000;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:50px;
}

.logo h3{
    color:var(--primary-red);
}

.logo span{
    font-size:12px;
    color:#777;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
}

.quote-btn{
    background: #C8102E;
    color:white;
    padding:14px 25px;
    border-radius:8px;
    text-decoration:none;
}

.hero{
    height:100vh;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        rgba(200,16,46,.75),
        rgba(31,41,55,.85)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
}

.badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 20px;
    border-radius:30px;
    margin-bottom:25px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
}

.hero h1 span{
    color:var(--gold);
}

.hero p{
    margin-top:25px;
    font-size:22px;
    max-width:700px;
}

.hero-buttons{
    margin-top:35px;
}

.btn-primary{
    background:var(--primary-red);
    color:white;
    text-decoration:none;
    padding:16px 32px;
    border-radius:10px;
    margin-right:15px;
}

.btn-secondary{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:16px 32px;
    border-radius:10px;
}

.services{
    padding:100px 8%;
    background:#fff;
}

.services h2{
    text-align:center;
    color:var(--primary-red);
    margin-bottom:50px;
    font-size:40px;
}

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

.card{
    background:white;
    padding:40px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:50px;
    color:var(--primary-red);
    margin-bottom:20px;
}

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    z-index:1000;
}

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

.about-section{
    background:#f8f8f8;
    padding:100px 8%;
}

.about-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.section-tag{
    color:#b30000;
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:58px;
    line-height:1.1;
    margin:20px 0;
    color:#0f172a;
    font-weight:800;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.about-features{
    list-style:none;
    padding:0;
    margin:35px 0;
}

.about-features li{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:18px;
    font-size:18px;
    color:#111;
}

.about-features li::before{
    content:"✓";
    width:28px;
    height:28px;
    border-radius:50%;
    background:#b30000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:bold;
}

.learn-btn{
    display:inline-block;
    margin-top:15px;
    text-decoration:none;
    color:#b30000;
    font-weight:700;
    font-size:18px;
    transition:.3s;
}

.learn-btn:hover{
    transform:translateX(5px);
}

/* IMAGE SIDE */

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:25px;
    display:block;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.experience-card{
    position:absolute;
    bottom:-30px;
    left:-40px;
    background:#fff;
    padding:25px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    border-left:6px solid #f7b500;
}

.experience-card h3{
    font-size:52px;
    color:#b30000;
    margin:0;
    line-height:1;
}

.experience-card p{
    margin-top:8px;
    color:#444;
    font-weight:600;
}

.services-section{
    background:#f8f8f8;
    padding:100px 8%;
}

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

.section-header span{
    color:#b30000;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:52px;
    color:#0f172a;
    margin:15px 0;
    font-weight:800;
}

.section-header p{
    color:#666;
    font-size:18px;
}

/* GRID */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    max-width:1400px;
    margin:auto;
}

/* CARD */

.service-card{
    background:#fff;
    padding:35px 28px;
    border-radius:20px;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    border-top:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-top:4px solid #f7b500;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.icon-box{
    width:65px;
    height:65px;
    background:#b30000;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.icon-box i{
    color:#fff;
    font-size:28px;
}

.service-card h3{
    color:#0f172a;
    font-size:24px;
    margin-bottom:15px;
    font-weight:700;
}

.service-card p{
    color:#666;
    line-height:1.7;
    font-size:16px;
}

/* BUTTON */

.services-btn{
    text-align:center;
    margin-top:60px;
}

.services-btn a{
    display:inline-block;
    background:#b30000;
    color:#fff;
    text-decoration:none;
    padding:18px 40px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.services-btn a:hover{
    background:#8e0000;
    transform:translateY(-3px);
}

/* TESTIMONIALS */
.testimonials-section{
    background:#C8102E;
    padding:100px 0;
    text-align:center;
    color:#FBBF24;
}

.testimonials-section h2{
    margin-bottom:50px;
    font-size:40px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.testimonial-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:15px;
    padding:30px;
    text-align:left;
}



.testimonial-card p{
    color:#d7d7d7;
}

.testimonial-card h5{
    margin-top:20px;
    color:white;
}

/* CTA */
.cta-section{
    padding:100px 0;
    background:#f5f7fa;
}

.cta-box{
    max-width:850px;
    margin:auto;
    background: #C8102E;
    color:#FBBF24;
    text-align:center;
    padding:60px;
    border-radius:20px;
}

.cta-box h2{
    font-size:40px;
    margin-bottom:15px;
}

.cta-buttons{
    margin-top:25px;
}

.cta-buttons .btn{
    margin:10px;
    padding:12px 30px;
}


@media(max-width:768px){

    .hero-content{
        width:90%;
    }

    .hero h1{
        font-size:42px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .nav-links{
        display:none;
    }

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

    .about-content h2{
        font-size:42px;
    }

    .about-image img{
        height:450px;
    }

    .experience-card{
        left:20px;
    }

    .section-header h2{
        font-size:36px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    
}

