/* =========================
GENERAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
    scroll-behavior:smooth;
}

/* Success Modal */

.modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.6);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.modal-content{
    width:90%;
    max-width:450px;
    background:#fff;
    padding:40px;
    border-radius:10px;
    text-align:center;
    animation:popup .3s ease;
}

.modal-content i{
    font-size:70px;
    color:#007336;
    margin-bottom:20px;
}

.modal-content h2{
    margin-bottom:15px;
}

.modal-content p{
    line-height:28px;
    color:#666;
}

.modal-content button{
    margin-top:25px;
    padding:14px 35px;
    border:none;
    background:#007336;
    color:#fff;
    cursor:pointer;
    border-radius:6px;
    font-size:16px;
}

.modal-content button:hover{
    background:#000;
}

@keyframes popup{

from{
    transform:scale(.8);
    opacity:0;
}

to{
    transform:scale(1);
    opacity:1;
}

}

body{
    background:#fff;
    color:#222;
}

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

header{
    position:sticky;
    top:0;
    width:100%;
    background:#fff;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

/* =========================
TOP BAR
========================= */

.top-bar{
    height:55px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 80px;
    border-bottom:1px solid #eee;
    font-size:14px;
    font-weight: 600;
}

.top-left{
    display:flex;
    gap:35px;
}

.top-left span{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-left a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.top-left a:hover{
    color:#007336;
}

/* =========================
SOCIAL ICONS
========================= */

.socials{
    display:flex;
}

.socials a{
    width:45px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#111;
    text-decoration:none;
    border-left:1px solid #eee;
    transition:.3s;
}

.socials a:last-child{
    border-right:1px solid #eee;
}

.socials a:hover{
    background:#007336;
    color:#fff;
}

/* =========================
NAVIGATION
========================= */

nav{
    height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 80px;
    position:relative;
    font-size:16px;
}

.logo img{
    height:80px;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin:0 20px;
}

nav ul li a{
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#007336;
}

.btn{
    background:#007336;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#000;
}

.menu-toggle{
    display:none;
    font-size:30px;
    color:#007336;
    cursor:pointer;
}

/* =========================
CONTACT HERO
========================= */

.contact-hero{
    height:25vh;
    background:url("../Images/Overay/1.jpg") center/cover no-repeat;
}

.overlay{
    height:100%;
    background:rgba(0,0,0,.6);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-text{
    color:#fff;
}

.hero-text h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero-text p{
    font-size:18px;
}

/* =========================
CONTACT SECTION
========================= */

.contact-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    padding:80px 8%;
    background:#f7f7f7;
}

.card{
    display:flex;
    gap:20px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    margin:20px 0;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card i{
    width:55px;
    height:55px;
    background:#007336;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
   
}
.card a {
     text-decoration: none;
    color: #000;
}
.contact-form{
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#007336;
}

.contact-form button{
    width:100%;
    padding:15px;
    background:#007336;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#000;
}

/* =========================
MAP
========================= */

.map iframe{
    width:100%;
    height:400px;
    border:0;
}

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

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:25px;
}

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

@media(max-width:768px){

.top-bar{
    display:none;
}

nav{
    height:80px;
    padding:0 20px;
}

.logo img{
    height:60px;
}

.menu-toggle{
    display:block;
}

.btn{
    display:none;
}

nav ul{
    display:none;
    flex-direction:column;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

nav ul.active{
    display:flex;
}

nav ul li{
    margin:0;
    border-bottom:1px solid #eee;
}

nav ul li a{
    display:block;
    padding:18px 25px;
}

.contact-section{
    grid-template-columns:1fr;
}

.contact-hero{
    height:25vh;
}

.hero-text h1{
    font-size:42px;
}

.hero-text p{
    font-size:16px;
    line-height:28px;
}

}

@media(max-width:480px){

.logo img{
    height:50px;
}

.hero-text h1{
    font-size:32px;
}

.hero-text p{
    font-size:15px;
}

.contact-section{
    padding:50px 20px;
}

.contact-form{
    padding:25px;
}

}