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

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

.container{
    width: min(1200px, 90%);
    margin: 0 auto;
}

section{
    padding:100px 0;
}

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

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:1000;
}

.navbar{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    flex-shrink:0;
}

.logo-icon{
    width:100px;
    height:100px;
}

.logo-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.3s;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text h3{
    font-size:24px;
    color:#1b3767;
    margin:0;
    line-height:1.2;
    font-weight:700;
}

.logo-text span{
    font-size:13px;
    color:#12aa17;
    margin-top:3px;
    letter-spacing:.5px;
}

.logo:hover img{
    transform:scale(1.05);
}

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

/* Navigation */

.nav-menu{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-menu ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-menu a{
    text-decoration:none;
    color:var(--dark);
    font-weight:600;
    position:relative;
    transition:.3s;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.nav-menu a:hover{
    color:var(--primary);
}

.nav-menu a:hover::after{
    width:100%;
}

/* Call Button */

.call-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:50px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    flex-shrink:0;
}

.call-btn:hover{
    background:var(--secondary);
    transform:translateY(-2px);
}

.menu-btn{
    display:none;
    font-size:28px;
    color:var(--dark);
    cursor:pointer;
}
/*====================
HERO
====================*/
.hero{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top:90px;
}

/* Blurred Background */
.hero::before{
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(0,0,0,0.55),
            rgba(0,0,0,0.65)
        ),
        url("../icons/scrap.jpeg");

    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    z-index: -2;
}

/* Dark Overlay */
.hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: -1;
}

.hero-container{
    display: flex;
    justify-content: left;
    align-items: center;
    min-height: calc(100vh - 90px);
    width: 100%;
    position: relative;
    z-index: 2;
    padding-left: 250px;
}

.hero-content{
    text-align: left;
    max-width: 800px;
    max-width: 750px;
    color: #fff;
}

.hero-content h1{
    font-size: 2.8rem;
    line-height: 1.2;
    margin: 20px 0;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#E5E7EB;
    max-width:620px;
    margin:0;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    width:fit-content;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(22,163,74,.2);
    border:1px solid rgba(255,255,255,.25);
    backdrop-filter:blur(12px);
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-top:10px;
}

.hero-buttons a{
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 32px;
    border-radius:35px;
    font-weight:600;
}

.hero-buttons .btn-primary{
    background:#2563EB;
    color:#fff;
}

.hero-buttons .btn-primary:hover{
    background:rgba(37,99,235,.35);
    transform:translateY(-3px);
}

.hero-buttons .btn-secondary{
    background:var(--primary);
    color:#fff;
}

.hero-buttons .btn-secondary:hover{
    transform:translateY(-3px);
    background: var(--secondary);
}

.hero-features{
    display:flex;
    gap:20px;
    margin-top:25px;
    flex-wrap:wrap;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px 22px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:14px;
    backdrop-filter:blur(12px);
    padding: 15px 20px;
}

.feature-box i{
    font-size:30px;
    color:var(--primary);
}

.feature-box h4{
    margin:0 0 4px;
    font-size:17px;
}

.feature-box span{
    font-size:14px;
    color:#CBD5E1;
}

/*====================
SECTION TITLE
====================*/
.section-title{
    margin-bottom:70px;
}

.section-title span {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

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

.section-title span{
    display:block;
    text-align:center;
    color:var(--primary);
    font-size:15px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.section-title h2{
    text-align:center;
    font-size:42px;
    color:var(--dark);
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    text-align:center;
    color:var(--gray);
    line-height:1.8;
}

/*====================
SERVICES
====================*/
.services-section{
    padding:100px 0;
    background:var(--background);
}

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

.service-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px 30px;
    box-shadow:var(--shadow-sm);
    transition:all .3s ease;

    display:flex;
    flex-direction:column;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.service-card i{
    width:75px;
    height:75px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    margin-bottom:25px;

    font-size:30px;

    background:rgba(22,163,74,.12);
    color:var(--primary);
}

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

.service-card p{
    color:var(--gray);
    line-height:1.8;
    margin-bottom:25px;

    flex-grow:1;
}

.service-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;

    text-decoration:none;
    color:var(--primary);
    font-weight:600;

    margin-top:auto;
    transition:.3s;
}

.service-card a:hover{
    color:var(--secondary);
    gap:14px;
}

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

.why-us{
    padding:100px 0;
    background:linear-gradient(135deg,#14532D,#166534);
    color:#fff;
}

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

.why-us .section-title span{
    color:#86EFAC;
}

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

.why-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(12px);

    border-radius:20px;
    padding:40px 30px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;

    transition:.3s ease;
}

.why-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.12);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.why-card i{
    width:80px;
    height:80px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    margin-bottom:25px;

    font-size:34px;

    color:var(--primary);
    background:rgba(12, 12, 12, 0.12);
}

.why-card h3{
    font-size:22px;
    margin-bottom:15px;
    color:#fff;
}

.why-card p{
    color:#D1FAE5;
    line-height:1.8;
    font-size:16px;
}

/*====================
PROCESS
====================*/

.process{
    padding:100px 0;
    background:var(--background);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
    align-items:stretch;
}

.process-card{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px 25px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    text-align:center;

    box-shadow:var(--shadow-sm);
    transition:.3s ease;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

/* Circle Icon */

.process-icon{
    width:90px;
    height:90px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:rgba(22,163,74,.12);
    border:2px solid rgba(22,163,74,.2);

    margin-bottom:25px;
}

.process-icon i{
    font-size:36px;
    color:var(--primary);
}

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

.process-card p{
    color:var(--gray);
    line-height:1.8;
    font-size:15px;
}
.step-number{
    position:absolute;
    top:20px;
    right:20px;

    width:35px;
    height:35px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:var(--primary);
    color:#fff;
    font-size:14px;
    font-weight:700;
}

/*====================
GALLERY
=====================*/

.gallery{
    padding:100px 0;
    background:white;
}

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

}

.gallery-item{
    position:relative;

    overflow:hidden;
    border-radius:20px;
}

.gallery-item img{
    height:350px;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;

    bottom:0;

    width:100%;
    padding:30px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.gallery-overlay h3{
    color:white;
}

/*====================
CALL TO ACTION
====================*/

.cta{
    padding:100px 0;
    background:var(--background);
}

.cta-box{
    max-width:900px;
    margin:auto;

    text-align:center;

    background:linear-gradient(135deg,#16A34A,#14532D);

    color:#fff;

    padding:70px 50px;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

    position:relative;

    overflow:hidden;
}

/* Decorative circles */

.cta-box::before,
.cta-box::after{
    content:"";
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.cta-box::before{
    width:220px;
    height:220px;
    top:-80px;
    left:-80px;
}

.cta-box::after{
    width:180px;
    height:180px;
    right:-60px;
    bottom:-60px;
}

.cta-box h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:20px;
    position:relative;
    z-index:1;
}

.cta-box p{
    max-width:650px;
    margin:0 auto 40px;
    font-size:18px;
    line-height:1.8;
    color:#E5E7EB;
    position:relative;
    z-index:1;
}

.cta-box .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 38px;

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

    text-decoration:none;
    font-weight:700;

    border-radius:50px;

    transition:.3s;

    position:relative;
    z-index:1;
}

.cta-box .btn:hover{
    background:#F3F4F6;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

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

.footer{
    background:#0F172A;
    color:#fff;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2.5fr 3fr 0.5fr 3fr;
    gap:50px;
}

.footer h3,
.footer h4{
    margin-bottom:22px;
    font-size:22px;
    color:#fff;
}

.footer p{
    color:#CBD5E1;
    line-height:1.8;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    margin-bottom:15px;
}

.footer ul li a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
}

.footer ul li a:hover{
    color:var(--primary);
    padding-left:6px;
}

.footer-about{
    max-width:350px;
}

.footer-service{
    column-count: 2;
}

.footer i{
    color:var(--primary);
    margin-right:10px;
    width:18px;
}

.footer li::marker{
    content: ">";
    color:#12aa17;
}

.footer li{
    padding-left: 10px;
}

.footer hr{
    margin:60px 0 30px;
    border:none;
    border-top:1px solid rgba(255,255,255,.15);
}

.footer-contact p a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
}

.footer-contact p a:hover{
    color:#16A34A;
}

.footer-contact i{
    color:#16A34A;
}

.copyright{
    text-align:center;
}

.copyright p{
    color:#94A3B8;
    margin:0;
    font-size:15px;
}

.copyright strong{
    color:#fff;
}

.service-card,
.process-card,
.why-card,
.gallery-item{
    transition:.35s ease;
}

.service-card:hover,
.process-card:hover,
.why-card:hover{
    transform:translateY(-10px);
}

.gallery-item:hover{
    box-shadow:var(--shadow-lg);
}

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

.floating-buttons{
    position:fixed;
    right:25px;
    bottom:25px;

    display:flex;
    flex-direction:column;
    gap:15px;

    z-index:9999;
}

.floating-buttons a{
    width:60px;
    height:60px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;
    text-decoration:none;

    color:#fff;
    font-size:26px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    transition:all .3s ease;
}

/* WhatsApp */

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    background:#1EBE57;
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 15px 35px rgba(37,211,102,.45);
}

/* Phone */

.phone-btn{
    background:#2563EB;
}

.phone-btn:hover{
    background:#2563EB;
    transform:translateY(-5px) scale(1.08);
    box-shadow:0 15px 35px rgba(133, 155, 201, 0.35);;
}

/* Click Animation */

.floating-buttons a:active{
    transform:scale(.95);
}