:root{
    --primary:#071c45;
    --secondary:#ff6600;
    --white:#ffffff;
    --dark:#111111;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

.top-bar{
    background:var(--primary);
}

.top-bar a{
    color:white;
    text-decoration:none;
    font-size:14px;
}

.whatsapp-top-btn{
    background:#25d366;
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
}

.custom-navbar{
    background:white;
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
}

.navbar-brand img{
    height:75px;
}

.nav-link{
    color:var(--primary);
    font-weight:600;
    margin-left:15px;
}

.nav-link:hover{
    color:var(--secondary);
}

.whatsapp-btn{
    background:#25d366;
    color:white;
    border-radius:50px;
    padding:12px 24px;
    font-weight:600;
}

.whatsapp-btn:hover{
    background:#1db954;
    color:white;
}

.hero-section{
    min-height:90vh;
    background:
    linear-gradient(rgba(7,28,69,0.75),rgba(7,28,69,0.75)),
    url('../images/hero.jpg');
    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    color:white;
}

.hero-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.2;
}

.hero-content p{
    font-size:20px;
    margin-top:20px;
}

.primary-btn{
    background:var(--secondary);
    color:white;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    display:inline-block;
}

.primary-btn:hover{
    background:#e65c00;
    color:white;
}

.section-padding{
    padding:100px 0;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:var(--primary);
    margin-bottom:20px;
}

.service-card{
    background:white;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.4s;
    height:100%;
}

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

.service-icon{
    font-size:50px;
    color:var(--secondary);
    margin-bottom:20px;
}

.footer-section{
    background:var(--primary);
    color:white;
    padding:80px 0 20px;
}

.footer-logo{
    width:220px;
}

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

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer-whatsapp-btn{
    background:#25d366;
    color:white;
    border-radius:50px;
    padding:12px 25px;
}

.floating-whatsapp{
    position:fixed;
    width:65px;
    height:65px;
    background:#25d366;
    color:white;
    border-radius:50%;
    right:20px;
    bottom:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    z-index:999;
    text-decoration:none;
    box-shadow:0 5px 25px rgba(0,0,0,0.25);
}

@media(max-width:768px){

    .hero-content h1{
        font-size:40px;
    }

    .section-title{
        font-size:32px;
    }

    .navbar-brand img{
        height:60px;
    }

}

.page-banner{
    background:
    linear-gradient(rgba(7,28,69,0.8),rgba(7,28,69,0.8)),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;

    padding:120px 0;
    color:white;
}

.page-banner h1{
    font-size:60px;
    font-weight:800;
}

.counter-box{
    background:white;
    padding:25px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    text-align:center;
}

.counter-box h3{
    color:var(--secondary);
    font-size:40px;
    font-weight:800;
}

.why-choose{
    background:#f8f9fa;
}

.choose-card{
    background:white;
    padding:40px 30px;
    border-radius:20px;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.4s;
}

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

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

.service-btn{
    display:inline-block;
    margin-top:20px;
    background:var(--primary);
    color:white;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.service-btn:hover{
    background:var(--secondary);
    color:white;
}

@media(max-width:768px){

    .page-banner h1{
        font-size:38px;
    }

}

.project-card{
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    background:white;
}

.project-card img{
    height:280px;
    width:100%;
    object-fit:cover;
}

.project-content{
    padding:25px;
}

.project-content h4{
    color:var(--primary);
    font-weight:700;
}

.contact-section{
    background:#f8f9fa;
}

.contact-info-box,
.contact-form-box{
    background:white;
    padding:50px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    height:100%;
}

.contact-info-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    align-items:flex-start;
}

.contact-info-item .icon{
    min-width:60px;
    width:60px;
    height:60px;
    background:var(--secondary);
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

.contact-info-item h5{
    font-weight:700;
    color:var(--primary);
}

.contact-info-item a{
    color:#333;
    text-decoration:none;
}

.contact-info-item p{
    margin:0;
}

.form-control,
.form-select{
    height:58px;
    border-radius:15px;
    border:1px solid #ddd;
    padding-left:20px;
    font-size:16px;
}

textarea.form-control{
    height:auto;
    padding-top:15px;
}

.form-control:focus,
.form-select:focus{
    box-shadow:none;
    border-color:var(--secondary);
}

.submit-btn{
    width:100%;
    border:none;
    background:var(--primary);
    color:white;
    padding:18px;
    border-radius:15px;
    font-size:18px;
    font-weight:600;
    transition:0.4s;
}

.submit-btn:hover{
    background:var(--secondary);
}

.whatsapp-contact-btn{
    background:#25d366;
    color:white;
    padding:15px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.whatsapp-contact-btn:hover{
    color:white;
    background:#1ebe5d;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .contact-info-box,
    .contact-form-box{
        padding:30px 20px;
    }

    .contact-info-item{
        gap:15px;
    }

    .contact-info-item .icon{
        width:50px;
        height:50px;
        min-width:50px;
        font-size:18px;
    }

    .form-control,
    .form-select{
        height:54px;
        font-size:15px;
    }

    .submit-btn{
        padding:16px;
        font-size:16px;
    }

}

.mobile-sticky-cta{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:9999;
}

.call-btn-mobile,
.whatsapp-btn-mobile{
    width:50%;
    text-align:center;
    padding:15px;
    color:white;
    text-decoration:none;
    font-weight:700;
    font-size:16px;
}

.call-btn-mobile{
    background:var(--primary);
}

.whatsapp-btn-mobile{
    background:#25d366;
}

body{
    padding-bottom:60px;
}

@media(min-width:992px){

    body{
        padding-bottom:0;
    }

}

.services-section{
    background:#f8f9fa;
}

.section-subtitle{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:auto;
}

.service-card{
    text-align:center;
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:15px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .service-card{
        padding:30px 20px;
    }

    .service-card h4{
        font-size:20px;
    }

}