/* =====================================
   BBG Landing Page
   Author : BBG
===================================== */

:root{
    --primary:#0B3D91;
    --secondary:#D4AF37;
    --dark:#03152f;
    --light:#f8f9fa;
    --white:#ffffff;
    --text:#555;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#f3f3f3;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/* Container */

.container{
    max-width:1200px;
}

/* Section */

section{
    position:relative;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
}

.section-title p{
    color:#777;
    margin-top:10px;
}

/* =========================
HEADER
========================= */

.header{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:20px 0;
}

.logo img{

    height:70px;
}

.top-contact{

    color:#fff;
    font-weight:600;
    font-size:16px;
}

.top-contact i{

    color:var(--secondary);
    margin-right:8px;
}


.right-logo{

    height: 60px;
    width:auto;
    object-fit:contain;

}

@media(max-width:768px){

.right-logo{

    height:40px;

}

.top-contact{

    font-size:14px;

}

}
/* =========================
HERO
========================= */

.hero{

    height:100vh;
    background:url('../images/banner.jpg') center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
}

.hero::before{

    content:'';
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    background:rgba(2,18,43,.72);
}

.hero .container{

    position:relative;
    z-index:2;
}

.hero-title{

    color:#fff;
    font-size:40px;
    font-weight:800;
    line-height:1.2;
    margin-top: 15px;
}

.hero-title span{

    color:var(--secondary);
}

.hero-desc{

    color:#fff;
    font-size:18px;
    line-height:30px;
    margin:15px 0;
    margin-bottom:20px;
}

.hero-points{

    list-style:none;
    padding:0;
}

.hero-points li{

    color:#fff;
    margin-bottom:15px;
    font-size:17px;
}

.hero-points i{

    color:var(--secondary);
    margin-right:10px;
}

/*====================================
GLASSMORPHISM LEAD FORM
====================================*/

.lead-form{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.20);
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.30);
}

.lead-form h3{
    color:#fff;
    text-align:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.form-control,
.form-select{
    height:55px;
    border-radius:12px;
    border:none;
    margin-bottom:18px;
    font-size:15px;
    padding:0 18px;
    box-shadow:none;
}

.form-control:focus,
.form-select:focus{
    border:2px solid var(--secondary);
    box-shadow:0 0 15px rgba(212,175,55,.30);
}

.btn-submit{
    width:100%;
    height:55px;
    background:linear-gradient(135deg,#D4AF37,#C49716);
    border:none;
    color:#fff;
    font-size:18px;
    font-weight:600;
    border-radius:12px;
    transition:.35s;
}

.btn-submit:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(212,175,55,.40);
}

/*====================================
TRUST BAR
====================================*/

.trust-bar{
    background:#0B3D91;
    padding:25px 0;
}

.trust-box{
    text-align:center;
    color:#fff;
}

.trust-box i{
    font-size:36px;
    color:var(--secondary);
    margin-bottom:12px;
}

.trust-box h5{
    font-size:18px;
    font-weight:600;
}

.trust-box p{
    margin:0;
    color:#ddd;
    font-size:14px;
}

/*====================================
PROJECT SECTION
====================================*/

.project-box{
    background:#fff;
    border:2px solid #0B3D91;
    border-radius:18px;
    padding:45px 25px;
    text-align:center;
    transition:.3s;
    cursor:pointer;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.project-box:hover{
    background:#0B3D91;
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.project-box h3{
    color:#0B3D91;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.project-box:hover h3{
    color:#fff;
}

.location{
    font-size:18px;
    color:#666;
}

.location i{
    color:#D4AF37;
    margin-right:8px;
}

.project-box:hover .location{
    color:#fff;
}

.project-box:hover .location i{
    color:#FFD700;
}
/*====================================
BUTTON ANIMATION
====================================*/

.btn-submit,
.btn-project{
    cursor:pointer;
}

.btn-submit:active,
.btn-project:active{
    transform:scale(.98);
}


/*====================================
WHY CHOOSE BBG
====================================*/

.why-section{
    background:#f8f9fb;
    padding:90px 0;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.why-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#0B3D91;
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
}

.why-card h4{
    color:#0B3D91;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:28px;
}

/*====================================
CTA SECTION
====================================*/

.cta-section{
    background:linear-gradient(135deg,#0B3D91,#021B3A);
    padding:70px 0;
}

.cta-section h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
}

.cta-section p{
    color:#ddd;
    font-size:18px;
}

.cta-btn{
    background:#D4AF37;
    color:#fff;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    background:#BF9617;
    color:#fff;
}

/*====================================
FOOTER
====================================*/

footer{
    background:#021B3A;
    color:#fff;
    padding:70px 0 20px;
}

footer h5{
    margin-bottom:25px;
    font-weight:700;
}

footer p{
    color:#d9d9d9;
    line-height:28px;
}

footer a{
    color:#d9d9d9;
    text-decoration:none;
    transition:.3s;
}

footer a:hover{
    color:#D4AF37;
}

footer hr{
    margin:35px 0 20px;
    border-color:rgba(255,255,255,.15);
}

/*====================================
FLOATING BUTTONS
====================================*/

.whatsapp-btn,
.call-btn{

    position:fixed;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    z-index:9999;
    font-size:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:.3s;

}

.whatsapp-btn{

    bottom:95px;
    background:#25D366;

}

.call-btn{

    bottom:20px;
    background:#0B3D91;

}

.whatsapp-btn:hover,
.call-btn:hover{

    transform:scale(1.08);

}

/*====================================
ANIMATIONS
====================================*/

.project-card,
.why-card,
.lead-form{

    transition:all .35s ease;

}

img{

    transition:.35s;

}

.project-card:hover img{

    transform:scale(1.05);

}


@media(max-width:991px){

.hero{

height:auto;
padding:140px 0 80px;

}

.hero-title{

font-size:38px;

}

.hero-desc{

font-size:16px;

}

.lead-form{

margin-top:40px;

}

.section-title h2{

font-size:32px;

}

.cta-section h2{

font-size:30px;

}

}

@media(max-width:576px){

.hero-title{

font-size:30px;

}

.section-title h2{

font-size:28px;

}

.project-card img{

height:220px;

}

.logo img{

height:55px;

}

.top-contact{

display:none;

}

}


#topBtn{

position:fixed;

bottom:20px;

left:20px;

width:50px;

height:50px;

background:#0B3D91;

color:#fff;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

text-decoration:none;

display:none;

z-index:999;

}



/*new CSS*/

.featured-projects{

    display:flex;
    gap:18px;
    margin-top:25px;
    flex-wrap:wrap;
    margin-bottom:30px;

}

.project-card{

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.20);

    border-radius:15px;

    padding:18px;

    width:200px;

    transition:.35s;

    cursor:pointer;

}

.project-card:hover{

    transform:translateY(-8px);

    background:#D4AF37;

    box-shadow:0 15px 35px rgba(0,0,0,.30);

}

.project-card h5{

    color:#fff;

    font-weight:700;

    margin-bottom:10px;

}

.project-card:hover h5{

    color:#000;

}

.project-card p{

    color:#ddd;

    margin:0;

    font-size:15px;

}

.project-card:hover p{

    color:#000;

}

.project-card i{

    color:#D4AF37;

    margin-right:6px;

}

.project-card:hover i{

    color:#000;

}

@media(max-width:768px){

.featured-projects{

justify-content:center;

}

.project-card{

width:100%;

}

}