:root{

--primary-color:#4A8F3E;
--dark-green:#2F6F2A;
--light-green:#EAF5E7;
--accent-color:#6FBF5F;
--text-dark:#333333;
--background-light:#F7F7F7;

}

body{
font-family: Arial, sans-serif;
}



/* Navbar */
.navbar{
/* background: linear-gradient(90deg,#ffffff,#6FBF5F); */
background-color: #EAF5E7 !important;
padding:10px 20px;
border-bottom: 1px solid #333 !important;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);

}

/* Logo */
.navbar-brand img{
height:100px;
}

/* Menu links */
.nav-link{
color: #333333 !important;
font-weight:600 !important;
margin-left:15px;
transition:0.3s;
font-size: clamp(17px, 5vw, 25px) !important;

}

.nav-link:hover{
color:#4A8F3E !important;
}

/* Button */
.nav-btn{
background:white;
color:#4A8F3E !important;
border: 2px solid #2F6F2A !important;
padding:6px 18px;
font-weight:600;
margin-left:15px;
font-size: clamp(17px, 5vw, 25px) !important;

}

.nav-btn:hover{
    border-radius: 25px !important;

}




/* Mobile view */
@media (max-width:991px){

.navbar-nav{
text-align:center;
margin-top:15px;
}

.nav-link{
margin:10px 0;
}

.nav-btn{
margin-top:10px;
}

}


@media (max-width:991px){

.navbar-toggler{
padding:12px 16px !important;
}

.navbar-toggler-icon{
width:2.5rem !important;
height:2.5rem !important;
}

}



/*================================Footer=============================*/
/* Footer Section */

.footer-section{
background:#EAF5E7;
color:#333333;
padding:60px 0 20px;
font-family:Arial, sans-serif;
}

/* Footer Logo */

.footer-logo{
width:160px;
margin-bottom:15px;
}

/* Footer Titles */

.footer-title{
font-size:18px;
font-weight:600;
margin-bottom:15px;
color:#333333;
}

/* Footer Text */

.footer-text{
font-size:15px;
line-height:1.7;
opacity:0.9;
margin-bottom:0;
}

/* Footer Links */

.footer-links{
list-style:none;
padding:0;
margin:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
color:#333333;
text-decoration:none;
font-size:15px;
transition:all 0.3s ease;
}

.footer-links a:hover{
color:#7AAACE;
padding-left:5px;
}

/* Footer Divider Line */

.footer-line{
border:0;
height:1px;
background:rgba(255,255,255,0.2);
margin-top:30px;
}

/* Bottom Copyright */

.footer-bottom{
font-size:14px;
opacity:0.8;
margin-top:10px;
}

/* Mobile Responsive */

@media (max-width:768px){

.footer-section{
text-align:center;
}

.footer-logo{
display:block;
margin-left:auto;
margin-right:auto;
}

.footer-links{
text-align:center;
}

.footer-links a:hover{
padding-left:0;
}

}