*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f7f9fc;
    color:#222;
    overflow-x:hidden;
}

/* HERO SECTION */
.contact-hero{
    min-height:85vh;
    margin-top: 3px;
    background: #1E3561;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:50px 20px;
    position:relative;
}
.contact-hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-200px;
    right:-100px;
}
.contact-hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    bottom:-150px;
    left:-100px;
}

.hero-content{
    max-width:900px;
    z-index:2;
    animation:fadeUp 1s ease;
}

.hero-content h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:15px 35px;
    background:#fff;
    color:#1E3561;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.hero-btn:hover{
    transform:translateY(-5px);
}

/* CONTACT CARDS */

.contact-cards{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card span{
    font-size:40px;
}

.card h3{
    margin:15px 0;
    color:#1E3561;
}
/* CONTACT FORM */
.contact-section{
    max-width:1700px;
    margin:auto;
    padding:30px 20px 80px;
}
.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}
.form-box{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.form-box h2{
    margin-bottom:25px;
    color:#1E3561;
}
.input-group{
    margin-bottom:18px;
}
.input-group input,
.input-group textarea,
.input-group select{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}
.input-group textarea{
    height:150px;
}
.submit-btn{
    width:100%;
    border:none;
    background:#1E3561;
    color:white;
    padding:16px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
    transition:.4s;
}
.submit-btn:hover{
    background:#1E3561;
}
/* WHY CHOOSE */
/* .why-box{ */
    /* background:#1E3561;
    color:white;
    padding:40px;
     margin-left: 360px;
    margin-right: 180px; 
     border-radius:20px;
    width: 800px; */
.why-box{
    background:#1E3561;
    color:white;
    padding:40px;
    border-radius:20px;
    max-width:1000px;
    width:100%;
    margin:40px auto;
/* } */
}
.why-box h2{
    margin-bottom:25px;
    text-align: center;
}
.why-box ul{
    list-style:none;
}
.why-box li{
    padding:12px 0;
    text-align: center;
    border-bottom:1px solid rgba(255,255,255,.15);
}
/* MAP */
.map-section{
    padding:80px 20px;
}
.map-section h2{
    text-align:center;
    margin-bottom:30px;
    color:#1E3561;
}
.map{
    max-width:1200px;
    margin:auto;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}
.map iframe{
    width:100%;
    height:450px;
    border:none;
}
/* FLOATING BUTTONS */
.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:greenyellow;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:28px;
    animation:float 2s infinite;
}
.call{
    position:fixed;
    right:25px;
    bottom:100px;
    width:60px;
    height:60px;
    background:greenyellow;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:28px;
    animation:float 2s infinite;
}
/* ANIMATION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}

@media(max-width:991px){

.contact-wrapper{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:38px;
}

}
/* Header */

.header-section{
background:#fff;
padding:10px 0;
box-shadow:0 2px 10px rgba(0,0,0,.08);
}
.navbar-brand img{
height:80px;
margin-right: 20;
}
.nav-link{
font-weight:200;
color:#1E3561;
margin:0 10px;
}
.nav-link:hover{
color:#c89b2d;
}
.contact-btn{
background:#1E3561;
color:#fff;
padding:10px 20px;
border-radius:8px;
}
/* =========================
 CONTACT SECTION
========================= */

.contact-section{
background:#1E3561;
padding:80px 8%;
position:relative;
overflow:hidden;
}

.contact-section::before{
content:'';
position:absolute;
width:400px;
height:400px;
background:rgba(255,255,255,.05);
border-radius:50%;
top:-120px;
right:-120px;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1.2fr;
gap:40px;
align-items:center;
}

.left-contact{
color:white;
}

.left-contact h2{
font-size:34px;
margin-bottom:30px;
}

.contact-info{
margin-bottom:25px;
display:flex;
gap:15px;
align-items:flex-start;
transition:.4s;
}

.contact-info:hover{
transform:translateX(10px);
}

.contact-info i{
color:#f4b400;
font-size:20px;
margin-top:5px;
}

.contact-info p{
font-size:14px;
line-height:1.8;
}

.social-icons{
margin-top:30px;
display:flex;
gap:15px;
}

.social-icons a{
width:45px;
height:45px;
background:rgba(255,255,255,.08);
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:white;
transition:.4s;
backdrop-filter:blur(10px);
}

.social-icons a:hover{
background:#f4b400;
transform:translateY(-8px);
}
/* FORM */

.contact-form{
background:rgba(255,255,255,.12);
padding:35px;
border-radius:20px;
backdrop-filter:blur(20px);
box-shadow:0 15px 40px rgba(0,0,0,.2);
animation:fadeUp 1s ease;
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
border:none;
outline:none;
border-radius:10px;
background:rgba(255,255,255,.95);
font-size:14px;
}

.contact-form textarea{
grid-column:span 2;
resize:none;
height:120px;
}

.submit-btn{
margin-top:20px;
background:#f4b400;
color:white;
border:none;
padding:14px 35px;
font-weight:600;
border-radius:50px;
cursor:pointer;
transition:.4s;
}

.submit-btn:hover{
transform:translateY(-5px);
box-shadow:0 15px 25px rgba(244,180,0,.4);
}
/* .name{
    margin-left: 40px;
    
} */
/* #left{
    margin-right: 320px;
} */
/* #right{
    margin-left: 320px;
} */
 /* Responsive */
 /* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px){

    .contact-wrapper,
    .contact-container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .hero-content h1{
        font-size:32px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
    }

    .contact-cards{
        grid-template-columns:1fr;
        padding:50px 15px;
    }

    .card{
        padding:25px;
    }

    .why-box{
        width:100%;
        margin:0;
        padding:25px;
    }

    .form-box,
    .contact-form{
        padding:25px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .contact-form textarea{
        grid-column:span 1;
    }

    .left-contact h2{
        font-size:28px;
        text-align:center;
    }

    .contact-info{
        flex-direction:row;
        align-items:flex-start;
    }

    .social-icons{
        justify-content:center;
    }

    .map iframe{
        height:300px;
    }

    .navbar-brand img{
        height:60px;
        width:auto;
    }

    .contact-btn{
        margin-top:15px;
        width:100%;
        text-align:center;
    }
}

@media (max-width: 576px){

    .contact-hero{
        min-height:65vh;
        padding:40px 15px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
    }

    .hero-btn{
        padding:12px 25px;
        font-size:14px;
    }

    .card h3{
        font-size:20px;
    }

    .card p{
        font-size:14px;
    }

    .why-box h2{
        font-size:22px;
    }

    .why-box li{
        font-size:14px;
    }

    .call,
    .whatsapp{
        width:50px;
        height:50px;
        font-size:22px;
        right:15px;
    }

    .call{
        bottom:80px;
    }

    .whatsapp{
        bottom:20px;
    }
}
