*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#F8FAFC;
    color:#1e293b;
}

/* Navbar */

.navbar{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(12px);
    z-index:1000;
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    height:70px;
    width:auto;
    object-fit:contain;
}

.logo-text{
    font-size:28px;
    font-weight:700;
    color:#0F172A;
    line-height:1.2;
}

.logo-text span{
    color:#D4AF37;
}
.nav-links{
    display:flex;
    list-style:none;
    gap:40px;
}

.nav-links a{
    text-decoration:none;
    color:#334155;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:#1E3A8A;
}


/* Hero */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:0 8%;
    background:linear-gradient(
        135deg,
        #0F172A,
        #1E3A8A
    );
}

.hero-content{
    max-width:700px;
}

.hero-content h1{
    font-size:65px;
    color:white;
    line-height:1.2;
    margin-bottom:25px;
}

.hero-content p{
    color:#dbeafe;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn{
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.primary-btn{
    background:#D4AF37;
    color:white;
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    border:2px solid white;
    color:white;
}

.secondary-btn:hover{
    background:white;
    color:#1E3A8A;
}


/* About */

.about{
    padding:120px 8%;
}

.about-container{
    display:flex;
    justify-content:space-between;
    gap:60px;
}

.about-left{
    width:40%;
}

.about-right{
    width:60%;
}

.about h4{
    color:#1E3A8A;
    margin-bottom:15px;
}

.about h2{
    font-size:42px;
    color:#0F172A;
}

.about p{
    color:#475569;
    line-height:1.9;
    font-size:17px;
}
.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h4{
    color:#1E3A8A;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    color:#0F172A;
}

.services{
    padding:120px 8%;
    background:#f8fafc;
}

.service-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:45px;
    color:#D4AF37;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
}

.why-us{
    padding:120px 8%;
    background:#0F172A;
}

.why-us .section-title h2{
    color:white;
}

.stats-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    background:#1e293b;
    text-align:center;
    padding:50px;
    border-radius:20px;
}

.stat-box h2{
    color:#D4AF37;
    font-size:55px;
}

.stat-box p{
    color:white;
}

.process{
    padding:120px 8%;
}

.process-container{
    display:flex;
    justify-content:space-between;
    gap:25px;
    flex-wrap:wrap;
}

.step{
    flex:1;
    min-width:180px;
    background:white;
    padding:40px;
    text-align:center;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.step span{
    width:70px;
    height:70px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#D4AF37;
    color:white;
    font-size:25px;
    font-weight:600;
    margin-bottom:20px;
}
.contact{
    padding:120px 8%;
    background:#f8fafc;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:50px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.contact-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-card i{
    font-size:40px;
    color:#D4AF37;
    margin-bottom:20px;
}

.contact-card a{
    color:#1E3A8A;
    text-decoration:none;
}

.contact-form-container{
    background:white;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form-container form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea{
    padding:18px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.contact-form-container button{
    padding:18px;
    border:none;
    background:#1E3A8A;
    color:white;
    border-radius:10px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
}
.whatsapp-float{
    position:fixed;
    right:30px;
    bottom:30px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:white;
    font-size:30px;
    z-index:1000;
}
footer{
    background:#0F172A;
    color:white;
    text-align:center;
    padding:50px;
}

footer p{
    color:#cbd5e1;
    margin-top:15px;
}
.know-more-btn{
    margin-top:20px;
    padding:12px 25px;
    background:#1E3A8A;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
}

.know-more-btn:hover{
    background:#0F172A;
}

.modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    z-index:9999;
}

.modal-content{
    width:85%;
    max-width:1100px;
    background:white;
    margin:4% auto;
    padding:40px;
    border-radius:20px;
    display:flex;
    gap:40px;
    position:relative;
    max-height:85vh;
    overflow-y:auto;
}

.modal-left{
    width:35%;
}

.modal-left img{
    width:100%;
    height:auto;
    border-radius:20px;
    object-fit:cover;
}

.modal-right{
    width:65%;
}

.close-btn{
    position:absolute;
    right:20px;
    top:15px;
    font-size:40px;
    color:red;
    cursor:pointer;
}

.contact-now-btn{
    display:block;
    margin-top:20px;
    background:red;
    color:white;
    text-align:center;
    padding:18px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}
.clients-section{
    margin-top:80px;
    overflow:hidden;
}

.logo-slider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.logo-track{
    display:flex;
    gap:35px;
    width:max-content;
    animation:scroll 30s linear infinite;
}

.logo-card{
    min-width:180px;
    height:120px;

    background:#fff;
    border-radius:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.logo-card img{
    width:130px;
    height:80px;
    object-fit:contain;
}

.logo-card:hover{
    transform:translateY(-8px);
    transition:.3s;
}

@keyframes scroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(calc(-215px * 8));
    }

}
.logo-slider::before,
.logo-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
}

.logo-slider::before{
    left:0;
    background:linear-gradient(to right,#08152f,transparent);
}

.logo-slider::after{
    right:0;
    background:linear-gradient(to left,#08152f,transparent);
}
/* ================= TABLETS ================= */

@media (max-width:1024px){

    .hero-content h1{
        font-size:55px;
    }

    .about-container{
        flex-direction:column;
    }

    .about-left,
    .about-right{
        width:100%;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .modal-content{
        width:95%;
    }

}

/* ================= SMALL TABLETS ================= */

@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    section{
        padding-left:5%;
        padding-right:5%;
    }

    .navbar{
        padding:20px 5%;
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .logo img{
        height:55px;
    }

    .logo-text{
        font-size:22px;
    }

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }

    .modal-content{
        flex-direction:column;
        margin-top:40px;
    }

    .modal-left,
    .modal-right{
        width:100%;
    }

}
/* ================= SMALL TABLETS ================= */

@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    section{
        padding-left:5%;
        padding-right:5%;
    }

    .navbar{
        padding:20px 5%;
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .logo img{
        height:55px;
    }

    .logo-text{
        font-size:22px;
    }

    .hero{
        text-align:center;
        padding-top:120px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }

    .modal-content{
        flex-direction:column;
        margin-top:40px;
    }

    .modal-left,
    .modal-right{
        width:100%;
    }

}
/* ================= MOBILE ================= */

@media (max-width:576px){

    .hero{
        min-height:auto;
        padding-top:180px;
        padding-bottom:80px;
    }

    .hero-content h1{
        font-size:36px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .section-title h2{
        font-size:32px;
    }

    .about h2{
        font-size:32px;
    }

    .service-card{
        padding:30px;
    }

    .stats-container{
        grid-template-columns:1fr;
    }

    .process-container{
        flex-direction:column;
    }

    .step{
        min-width:100%;
    }

    .contact-form-container{
        padding:30px;
    }

    .contact-card{
        padding:30px;
    }

    .stat-box{
        padding:40px;
    }

    .logo-card{
        min-width:140px;
        height:90px;
    }

    .logo-card img{
        width:100px;
        height:60px;
    }

    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:25px;
        right:20px;
        bottom:20px;
    }

}