body{
    margin:0;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== HEADER ===== */
.header{
    display:flex;
    align-items:center;
    height:90px;
}

/* LOGO */
.header-left{
    width:25%;
    padding-left:20px;
}
.header-left img{
    height:70px;
}

/* MENU */
.header-center{
    width:50%;
    background:#2f9b5f;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.header-center a{
    color:#fff;
    text-decoration:none;
    margin:0 18px;
    font-size:16px;
    font-weight:500;
}
.header-center a:hover{
    text-decoration:underline;
}

.header-center :hover{
      color:#f7931e;
}

/* CONTACT */
.header-right{
    width:25%;
    background:#f7931e;
    color:#fff;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding-right:20px;
    text-align:right;
    font-size:15px;
}

/* ===== BANNER ===== */
.banner{
    position:relative;
    height:320px;
    background:url(".//thumb.jpg") center/cover no-repeat;
}

.banner::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

/* BANNER TEXT */
.banner-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
}
.banner-content h1{
    font-size:48px;
    margin:0;
    font-weight:bold;
}
.banner-content p{
    margin-top:8px;
    font-size:16px;
}

/* ENQUIRY BUTTON */
.enquiry{
    position:absolute;
    right:30px;
    bottom:50px;
    background:#2f9b5f;
    color:#fff;
    padding:10px 22px;
    border:none;
    font-size:15px;
    cursor:pointer;
    z-index:2;
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    bottom:20px;
    left:20px;
}
.whatsapp img{
    width:55px;
}


/* ===== FOOTER ===== */
.footer{
    background:#2f9b5f;
    color:#fff;
    padding:70px 40px;
    position:relative;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
}

/* COLUMNS */
.footer-col{
    width:22%;
}

.footer-left{
    width:28%;
}

.footer-logo{
    width:200px;
    margin-bottom:15px;
}

.footer p{
    font-size:14px;
    line-height:1.6;
}

/* HEADINGS */
.footer h3{
    font-size:20px;
    margin-bottom:20px;
    font-weight:500;
}

/* LIST */
.footer ul{
    list-style:none;
    padding:0;
}
.footer ul li{
    margin-bottom:14px;
    font-size:15px;
}
.footer ul li a{
    color:#fff;
    text-decoration:none;
}
.footer ul li a:hover{
    text-decoration:underline;
}

/* SOCIAL ICONS */
.social-icons{
    margin-top:20px;
}
.social-icons a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border:1px solid #fff;
    border-radius:50%;
    margin-right:10px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
}
.social-icons :hover{
     background:#f7931e;
}

/* ENQUIRY BUTTON */
.footer-enquiry{
    position:absolute;
    right:40px;
    top:50%;
    transform:translateY(-50%);
    background:#2f9b5f;
    color:#fff;
    border:1px solid #fff;
    padding:12px 26px;
    font-size:15px;
    cursor:pointer;
}



.footer-menu li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    cursor:pointer;
}

/* icon default */
.footer-menu i{
    color:#ffffff;
    font-size:14px;
    transition:color 0.3s ease;
}

/* text */
.footer-menu a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
}

/* 🔥 hover effect */
.footer-menu li:hover i{
    color:#f7931e;   /* yellow */
}

/* optional: text bhi yellow ho */
.footer-menu li:hover a{
    color:#f7931e;
}


/* list layout */
.footer-menu li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    font-size:15px;
    color:#fff;
    cursor:pointer;
}

/* default icon */
.footer-menu i{
    color:#ffffff;
    font-size:14px;
    transition:color 0.3s ease;
}

/* hover → yellow */
.footer-menu li:hover i{
    color:#f7931e;
}
.footer-menu li:hover{
    color:#f7931e;
}

/* ADDRESS */
.footer-address{
    display:flex;
    gap:12px;
    color:#fff;
    font-size:15px;
    line-height:1.6;
}

.footer-address i{
    color:#ffffff;
    font-size:18px;
    margin-top:4px;
    transition:color 0.3s ease;
}

.footer-address:hover i{
    color:#f7931e;
}


.track-box{
    text-align:center;
    margin-top:40px;
}

.contact-form{
    display:inline-block;
    background:#ffffff;
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    border-top:6px solid #2f9e5f;
}

.track-inner{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
}

.track-input{
    width:260px;
    padding:12px 15px;
    border-radius:10px;
    border:2px solid #2f9e5f;
    font-size:15px;
    outline:none;
}

.track-input:focus{
    border-color:#f7941d;
}

.track-btn{
    background:#f7941d;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:10px;
    font-size:15px;
    cursor:pointer;
    transition:0.3s ease;
    display:flex;
    align-items:center;
    gap:6px;
}

.track-btn:hover{
    background:#2f9e5f;
    transform:translateY(-1px);
}
/* FOOTER TOP YELLOW STRIP */
/* .footer-top-cta{
    background:#f7941d; 
    padding:55px 20px;
    justify-content: flex-end;
}

.footer-top-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}

.footer-top-text h2{
    color:#ffffff;
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.footer-top-text p{
    color:#ffffff;
    font-size:16px;
    opacity:0.95;
} */

/* BUTTON MATCHING FOOTER GREEN */
/* .footer-contact-btn{
    background:#2f9e5f;
    color:#ffffff;
    padding:14px 30px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    border:2px solid #ffffff;
    transition:0.3s ease;
}

.footer-contact-btn:hover{
    background:#ffffff;
    color:#2f9e5f;
}
@media(max-width:768px){
    .footer-top-inner{
        text-align:center;
        justify-content:center;
        gap:20px;
    }

    .footer-top-text h2{
        font-size:22px;
    }
} */
