:root{
  --primary-color: #1d5f4d;
  --secondary-color: #8ab546;
}

/* Global Styling */
body{
font-family:'Manrope', sans-serif;
}


/* Header */

/* Logo */
.navbar-brand img {
    height: 85px;   /* Adjust logo height */
    transition: 0.3s;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    margin-left: 11px;
    position: relative;
    transition: 0.3s ease;
}

/* Animated Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 3px;
    background: #8ab546;
    transition: 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover {
    color: #8ab546;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* On Scroll Effect */
.main-header.scrolled {
    padding: 10px 0;
    background: #1d5f4d;
}

.main-header.scrolled .navbar-brand img {
    height: 50px;
}

/* Mobile Fix */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}



.btn-primary-custom{
  background-color: var(--primary-color);
  color:#fff;
  border:none;
}
.btn-primary-custom:hover{
  background-color:#174c3d;
}

.btn-secondary-custom{
  background-color: var(--secondary-color);
  color:#fff;
  border:none;
}
.btn-secondary-custom:hover{
  background-color:#739b39;
}

.section-title{
  color: var(--primary-color);
  font-weight: 700;
  
}

/* Navbar */
.navbar{
  background-color: #fff;
}
.navbar-brand{
  color: var(--primary-color) !important;
  font-weight: bold; padding: 0px;
}
.nav-link{
  color: #333 !important;
}
.nav-link:hover{
  color: var(--secondary-color) !important;
}

.navbar a.active {
  color: var(--secondary-color) !important;
  font-weight: 600;
  border-bottom: 3px solid  var(--secondary-color) !important;;
}

/* Cards */
.service-card{
  border:none;
  transition:0.3s;
}
.service-card:hover{
  transform: translateY(-8px);
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* Stats */
.stats{
  background-color: var(--primary-color);
  color:#fff;
}

/* Footer */
footer{
  background-color:#111;
  color:#bbb;
}
footer a{
  color: var(--secondary-color);
  text-decoration:none;
}



/* Buttons */
.btn-theme-primary {
  background-color: #1d5f4d;
  color: #fff;
  border: none;
}
.btn-theme-primary:hover {
  background-color: #174c3d;
}

.btn-theme-secondary {
  background-color: #8ab546;
  color: #fff;
  border: none;
}
.btn-theme-secondary:hover {
  background-color: #739b39;
}

.section-title{
  color:#1d5f4d;font-size: 50px;font-weight: 900;
}

/* Card Styling */
.service-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  transition:0.4s ease;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  height:100%;
}

.service-img{
  overflow:hidden;
}

.service-img img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:0.5s;
}

/* Hover Effect */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.service-card:hover img{
  transform:scale(1.1);
}

/* Button */
.btn-service{
  background:#8ab546;
  color:#fff;
  border:none;
  transition:0.3s;
}

.btn-service:hover{
  background:#1d5f4d;
  color:#fff;
}

/* Section Background */
.why-section{
  background: linear-gradient(to right, #f8f9fa, #eef3f1);
  position: relative;
}

/* Title */
.why-title{
  color:#1d5f4d;
  font-weight:700;
  font-size:32px;
}

/* Card */
.why-card{
  background:#fff;
  border-radius:15px;
  transition:0.4s ease;
  height:100%;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  position:relative;
  overflow:hidden;
}

/* Hover Effect */
.why-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* Icon Circle */
.why-icon{
  font-size:40px;
  color:#8ab546;
  transition:0.4s;
}

.why-card:hover .why-icon{
  color:#1d5f4d;
  transform:scale(1.2);
}

/* Text */
.why-card h4{
  color:#1d5f4d;
  font-weight:600;
}

.why-card p{
  color:#555;
  font-size:14px;
  line-height:1.6;
}

/* Section Background */
.stats-section{
  background: linear-gradient(135deg, #1d5f4d, #8ab546);
  color:#fff;
}

/* Card Design */
.stats-card{
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  transition: 0.4s ease;
}

.stats-card:hover{
  transform: translateY(-10px);
  background: rgba(255,255,255,0.15);
}

/* Numbers */
.stats-card h2{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.stats-card p{
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0;
}

.footer-section{
  background: linear-gradient(135deg, #0f1f1a, #1d5f4d);
  color:#ddd;
  position: relative;
}

.footer-title{
  color:#8ab546;
  font-weight:600;
  margin-bottom:20px;
  text-shadow: 1px 1px 1px #000;
}

.footer-title2{
  text-decoration:underline;text-transform: uppercase; font-weight: 700;
}
.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#ccc;
  text-decoration:none;
  transition:0.3s;
}

.footer-links a:hover{
  color:#8ab546;
  padding-left:5px;
}

/* Social Icons */
.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:35px;
  height:35px;
  border:1px solid rgba(255,255,255,0.2);
  border-radius:50%;
  margin-right:8px;
  color:#fff;
  transition:0.3s;
}

.social-icons a:hover{
  background:#8ab546;
  border-color:#8ab546;
  transform:translateY(-3px);
}

/* Divider */
.footer-divider{
  border-color:rgba(255,255,255,0.1);
  margin:30px 0;
}

/* Scroll Button */
.scroll-top{
  position:absolute;
  right:20px;
  bottom:20px;
  width:45px;
  height:45px;
  border:none;
  border-radius:50%;
  background:#8ab546;
  color:#fff;
  font-size:18px;
  cursor:pointer;
  transition:0.3s;
}

.scroll-top:hover{
  background:#fff;
  color:#1d5f4d;
}

.why-choose{
  background: linear-gradient(135deg, #f8f9fa, #eef5f2);
  position: relative;
}

.wow-title{
  font-size: 41px;
  font-weight: 700;
  color: #1d5f4d;
}

.wow-subtitle{
  color: #666;
}

/* Card */
.wow-card{
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Animated border glow */
.wow-card::before{
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #1d5f4d, #8ab546);
  z-index: -1;
  filter: blur(15px);
  opacity: 0;
  transition: 0.4s;
}

.wow-card:hover::before{
  opacity: 0.4;
}

/* Hover lift */
.wow-card:hover{
  transform: translateY(-12px);
}

/* Icon */
.wow-icon{
  width: 70px;
  height: 70px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d5f4d, #8ab546);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.wow-icon i{
  color: #fff;
  font-size: 26px;
}

/* Floating animation */
@keyframes float{
  0%{ transform: translateY(0px); }
  50%{ transform: translateY(-8px); }
  100%{ transform: translateY(0px); }
}

.wow-card h5{
  font-weight: 600;
  color: #1d5f4d;
}

.wow-card p{
  font-size: 14px;
  color: #555;
}


/* --------------------  */

/* Section Background */
.financial-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1d5f4d, #143d33);
    position: relative;
    overflow: hidden;
}

/* Section Title */
.financial-section h2 {
    text-align: center;
    font-weight: 800;
    color: #ffffff;
    font-size: 45px;
    margin-bottom: 46px;
    position: relative;
}

.financial-section h2::after {
    content: "";
    width: 100px;
    height: 4px;
    background: #8ab546;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Card */
.fin-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Top Animated Border */
.fin-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: #8ab546;
    transition: 0.4s ease;
}

.fin-card:hover::before {
    width: 100%;
}

/* Hover Effect */
.fin-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Icon Circle */
.fin-icon {
    width: 75px;
    height: 75px;
    background: #1d5f4d;
    color: #ffffff;
    font-size: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.4s ease;
}

/* Hero */
.hero{
  background: linear-gradient(rgba(29,95,77,0.85), rgba(29,95,77,0.85)), url('../img/header.jpg') center/cover;
  color:#fff;
  padding:100px 0;
}

/* Icon Hover */
.fin-card:hover .fin-icon {
    background: #8ab546;
    transform: rotateY(360deg) scale(1.1);
}

/* Text */
.fin-card h5 {
    font-weight: 600;
    color: #1d5f4d;
    margin-top: 15px;
}

/* Responsive */
@media(max-width:768px){
    .financial-section h2{
        font-size: 28px;
    }
}

.partner-section{
padding:80px 0;
background:#f5f7f6;
}

.form-card{
background:#fff;
border-radius:15px;
padding:25px;
border-top:5px solid #8ab546;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
height:100%;
}

.form-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.15);
}

.card-title{
font-size:35px;
font-weight:800;
margin-bottom:20px;
color:#000;
}

.card-title span{
color:#8ab546;
}

.form-frame{
border:2px solid #1d5f4d;
border-radius:10px; padding: 14px;
overflow:hidden;
}

.form-frame iframe{
width:100%;
height:500px;
border:0;
}

.hero-banner{
position:relative;
}

.banner-img{
height:540px;
object-fit:cover;
}

/* Overlay */
.slider-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
90deg,
rgba(0,0,0,0.6) 0%,
rgba(0,0,0,0.3) 40%,
rgba(0,0,0,0) 100%
);
z-index:1;
}

/* Content */
.hero-content{
z-index:2;
bottom:25%;
max-width:600px;
}

.hero-content h1{
font-size:60px;
font-weight:800;
line-height:1.2;
}

.hero-content span{
color:#8ab546;
}

.hero-content p{
font-size:18px;
margin:15px 0;
}

.hero-btn{
background:#1d5f4d;
color:#fff;
padding:12px 30px;
font-weight:600;
border-radius:6px;
}

.hero-btn:hover{
background:#8ab546;
color:#fff;
}

/* Responsive */
@media(max-width:768px){

.banner-img{
height:500px;
}

.hero-content h1{
font-size:32px;
}

.hero-content{
bottom:20%;
}

}

.ev-finance-section{
background:#f7f9f8;
}

.ev-title{
font-size:58px;
font-weight:800;
margin-bottom:20px;
}

.ev-title span{
color:#8ab546;
}

.ev-text{
font-size:17px;
color:#555;
margin-bottom:20px;
text-align: justify;
}

.ev-list{
list-style:none;
padding:0;
margin-bottom:25px;
}

.ev-list li{
margin-bottom:10px;
font-weight:500;
color:#333;
}

.ev-btn{
background:#1d5f4d;
color:white;
padding:12px 28px;
border-radius:6px;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.ev-btn:hover{
background:#8ab546;
color:white;
}

/* Image Box */
.ev-image-box{
position:relative;
padding:20px;
}

.ev-image-box img{
border-radius:10px;
transition:0.4s;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.ev-image-box img:hover{
transform:scale(1.05);
}


.page-banner{
position:relative;
background:url("../img/header.jpg") center/cover no-repeat;
height:300px;
display:flex;
align-items:center;
justify-content:center;
color:white;
}

.banner-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(90deg,rgba(0,0,0,0.7),rgba(29,95,77,0.7));
}

.banner-content{
position:relative;
z-index:2;
}

.banner-content h1{
font-size:40px;
font-weight:800;
margin-bottom:10px;
}

.breadcrumb{
background:none;
margin:0;
}

.breadcrumb-item a{
color:#8ab546;
text-decoration:none;
font-weight:500;
}

.breadcrumb-item.active{
color:#fff;
}


.contact-section{
background:#f7f9f8;
}

.contact-title{
font-size:40px;
font-weight:800;
margin-bottom:15px;
}

.contact-text{
color:#555;
margin-bottom:25px;
}

.info-box{
display:flex;
align-items:center;
margin-bottom:20px;
}

.info-box i{
font-size:22px;
color:white;
background:#1d5f4d;
padding:12px;
border-radius:6px;
margin-right:15px;
}

.info-box h6{
margin:0;
font-weight:600;
}

.info-box p{
margin:0;
color:#555;
}

.contact-form{
background:white;
padding:35px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.contact-btn{
background:#1d5f4d;
color:white;
border:none;
padding:12px 30px;
border-radius:6px;
font-weight:600;
transition:0.3s;
}

.contact-btn:hover{
background:#8ab546;
}


.info-box{
display:flex;
align-items:center;
margin-bottom:20px;
}

.info-box i{
font-size:20px;
background:#1d5f4d;
color:#fff;
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:6px;
margin-right:15px;
}

.info-box h6{
margin:0;
font-weight:600;
}

.info-box p{
margin:0;
color:#555;
}

.whatsapp-float{
position:fixed;
bottom:80px;
right:20px;
background:#25D366;
color:white;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:999;
transition:0.3s;
text-decoration: none;
}

.whatsapp-float:hover{
transform:scale(1.1);
background:#1ebe5d;
color:#fff;
}
.card-body img{width:100%; border-radius: 10px;}
.mks a{text-shadow: 1px 1px 1px #000;font-weight: bold;}





















.hero-section{
    background:#1d5f4d;
    min-height:450px;
}

.hero-text{
    padding:60px;color: #fff;
}

.hero-text h1{
  font-size: 60px;
    font-weight:800;
    color:#fff;
}

.hero-text h1 span {
    color: #8ab546;
}

.hero-btn{
    background:#8ab546;
    border:none;
    padding:12px 25px;
    border-radius:30px;
    font-weight:600;
}

.hero-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}


@media (max-width:768px){

.hero-text {
    padding: 50px;
    color: #fff;
}
.hero-text h1{font-size: 48px;}
.ev-title {font-size: 48px;}

.ev-image-box{padding: 0px;margin-top: 40px;}
.section-title{font-size: 48px; font-weight: 700;}
}
















