/* =======================================
   FLOWPOINT 2.0
======================================= */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',Arial,sans-serif;

    background:#08111f;

    color:#ffffff;

    line-height:1.6;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:min(1200px,92%);

    margin:auto;

}

section{

    padding:100px 0;

}

h1{

    font-size:clamp(3rem,7vw,5rem);

    line-height:1.1;

    margin-bottom:20px;

}

h2{

    font-size:clamp(2rem,5vw,3rem);

    margin-bottom:20px;

}

h3{

    margin-bottom:15px;

}

p{

    color:#cbd5e1;

}

.section-tag{

    display:inline-block;

    background:#2563eb;

    padding:8px 18px;

    border-radius:999px;

    font-size:.9rem;

    margin-bottom:20px;

}

.section-text{

    max-width:700px;

    margin-bottom:60px;

}

.primary-btn{

    display:inline-block;

    background:#2563eb;

    color:white;

    padding:18px 36px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.primary-btn:hover{

    background:#3b82f6;

    transform:translateY(-3px);

}

.secondary-btn{

    display:inline-block;

    border:2px solid white;

    padding:18px 36px;

    border-radius:999px;

    transition:.3s;

}

.secondary-btn:hover{

    background:white;

    color:#08111f;

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

header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#08111f;
    padding:10px 20px;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}
.logo{
    display:flex;
    align-items:center;
}
.logo img{
    width:90px;
    height:auto;
    display:block;
}
.menu-toggle{
    background:none;
    border:none;
    color:#fff;
    font-size:36px;
    cursor:pointer;
    margin-left:auto;
    padding:8px;
    transition:.3s;
}

.menu-toggle:hover{
    color:#3b82f6;
}


.nav-links{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#08111f;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:30px;
    z-index:999;
}

.nav-links.active{
    display:flex;
}

.nav-links a{
    color:#fff;
    font-size:1.4rem;
    font-weight:600;
}

.call-btn{
    background:#2563eb;
    padding:15px 30px;
    border-radius:50px;
}
/* =======================================
   HERO
======================================= */

.hero{

    min-height:calc(100vh - 90px);

    display:flex;

    align-items:center;

    background:
    linear-gradient(
        rgba(8,17,31,.80),
        rgba(8,17,31,.85)
    ),
    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}
.hero-content{
    max-width:720px;
    margin:auto;
    text-align:center;
    padding:40px 20px;
    animation:fadeUp 1s ease;
}


.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.08);

    padding:10px 18px;

    border-radius:999px;

    margin-bottom:25px;

}
.hero h1{
    font-size:clamp(3rem,7vw,5rem);
    line-height:1;
    margin-bottom:25px;
    font-weight:800;
}
.hero p{
    font-size:1.2rem;
    max-width:650px;
    margin:25px auto 40px;
    line-height:1.8;
    color:#d1d5db;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

/* =======================================
   TRUST BAR
======================================= */

.trust-bar{

    background:#10233d;

    padding:40px 0;

}

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.trust-item{

    background:#152b48;

    padding:30px 20px;

    border-radius:18px;

    text-align:center;

    font-weight:700;

    transition:.3s;

}

.trust-item:hover{

    transform:translateY(-6px);

    background:#1a3559;

}

.trust-item span{

    display:block;

    margin-top:10px;

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

.services{

    background:#08111f;

}

.services h2{

    text-align:center;

}

.services .section-tag,
.services .section-text{

    display:block;

    text-align:center;

    margin-left:auto;

    margin-right:auto;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:60px;

}

.service-card{

    background:#12233d;

    padding:40px;

    border-radius:20px;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.service-card h3{

    margin-bottom:18px;

    font-size:1.4rem;

}

.service-card p{

    color:#cbd5e1;

}

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

.why-us{

    background:#0d1c31;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:25px;

    margin-top:60px;

}

.why-card{

    background:#12233d;

    padding:35px;

    border-radius:18px;

    text-align:center;

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-8px);

}

.why-icon{

    font-size:3rem;

    margin-bottom:20px;

}

/* =======================================
   PROJECTS
======================================= */

.projects{

    background:#08111f;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:60px;

}

.project-card{

    background:#12233d;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-8px);

}

.project-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.project-info{

    padding:25px;

}

.project-info h3{

    margin-bottom:12px;

}

.projects-button{

    text-align:center;

    margin-top:50px;

}
/* =======================================
   REVIEWS
======================================= */

.reviews{

    background:#0d1c31;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:60px;

}

.review-card{

    background:#12233d;

    padding:35px;

    border-radius:20px;

    transition:.3s;

    border:1px solid rgba(255,255,255,.05);

}

.review-card:hover{

    transform:translateY(-8px);

}

.stars{

    color:#fbbf24;

    font-size:1.4rem;

    margin-bottom:20px;

}

.review-card h4{

    margin-top:20px;

    color:white;

}


/* =======================================
   EMERGENCY CTA
======================================= */

.emergency{

    background:#2563eb;

    text-align:center;

}

.emergency h2{

    color:white;

    font-size:3rem;

    margin-bottom:20px;

}

.emergency p{

    color:white;

    margin-bottom:40px;

}

.emergency .primary-btn{

    background:white;

    color:#2563eb;

}

.emergency .primary-btn:hover{

    background:#f8fafc;

}


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

footer{

    background:#050b14;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-logo{

    width:140px;

    margin-bottom:20px;

}

.footer-column h3{

    margin-bottom:20px;

}

.footer-column ul li{

    margin-bottom:12px;

}

.footer-column a{

    color:#cbd5e1;

}

.footer-column a:hover{

    color:#3b82f6;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

}


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

@media(max-width:900px){

    nav{

        flex-direction:column;

        gap:25px;

    }

    .nav-links{

        flex-direction:column;

        text-align:center;

        gap:15px;

    }

    .hero{

        text-align:center;

        min-height:80vh;

    }

    .hero-buttons{

        justify-content:center;

    }

    .trust-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

}

@media(max-width:600px){

    h1{

        font-size:2.8rem;

    }

    h2{

        font-size:2.2rem;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .primary-btn,
    .secondary-btn{

        width:100%;

        text-align:center;

    }

    .trust-grid{

        grid-template-columns:1fr;

    }
}
   @keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/* CONTACT FORM */

.contact-form-section{
    padding:100px 0;
    background:#0d1b2f;
}

.contact-form{
    max-width:700px;
    margin:50px auto 0;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:18px;
    border:none;
    border-radius:12px;
    font-size:16px;
    background:#132640;
    color:#fff;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#cbd5e1;
}

.contact-form textarea{
    resize:vertical;
    min-height:180px;
}

}
