*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}
body {
  background-color: #f5f5f5;
}

.navbar{
  background:#000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 8%;
  position: relative;
  z-index: 9999;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 55px;   
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links{
  display:flex;
  list-style:none;
  gap:35px;
}

.nav-links li{
  color:#fff;
  font-size:14px;
  cursor:pointer;
}

.nav-links li:hover,
.nav-links .active{
  color:#64d20f;
}

.nav-links li a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

.nav-bottom-line{
  height:4px;
  width:100%;
  background:linear-gradient(
    90deg,
    #64d20f 0%,
    #64d20f 25%,
    #00bcd4 25%,
    #00bcd4 50%,
    #f4a623 50%,
    #f4a623 75%,
    #ff3ca0 75%,
    #ff3ca0 100%
  );
}

.dropdown{
  position: relative;
  cursor: pointer;
}

.arrow{
  font-size:10px;
  margin-left:4px;
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#000;
  padding:10px 0;
  list-style:none;
  display:none;
  min-width:220px;
  border-radius:6px;
  z-index:99999;
}

.show-dropdown{
  display:block;
}

.dropdown-menu li{
  padding:8px 15px;
}

.dropdown-menu li a{
  color:#fff;
  text-decoration:none;
  font-size:13px;
}

.dropdown-menu li:hover{
  background:#64d20f;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.leaders-active:hover{
    color: #fff;
}

.btn-primary {
  background-color: #00b894;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #019874;
}
.leadership-about {
  padding: 80px 20px;
  background: #f9f9f9;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.leadership-features {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
}
.leadership-about h2{
  font-size: 42px;
  font-weight: 600;
  color: #2e314d;
  margin-bottom: 20px;
}

.leadership-about p{
  max-width: 700px;
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  text-align: left;
  color: #555;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}



.page-banner{
  position:relative;
  padding:110px 8% 70px;
  background:linear-gradient(135deg,#eef4ea,#e6edf2,#f3ecec);
  overflow:hidden;
}

.banner-content{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
}

.page-title{
  font-size:60px;
  font-weight:700;
  color:#2e314d;
}


.bg-shape{
  position:absolute;
  border-radius:50%;
  opacity:0.25;
  pointer-events:none;
  z-index:1;
}

.shape1{
  width:180px;
  height:180px;
  background:#b5d89c;
  left:-60px;
  top:80px;
}

.shape2{
  width:220px;
  height:220px;
  background:#c7d7e4;
  left:120px;
  top:-50px;
}

.shape3{
  width:200px;
  height:200px;
  background:#e7c6c6;
  left:50px;
  bottom:-60px;
}
.breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
}

.breadcrumb a {
  color: #69c10f;
  text-decoration: underline;
}

.breadcrumb span {
  color: #69c10f;
}

.breadcrumb .active {
  text-transform: uppercase;
}
.leadership-features{
  padding: 90px 8%;
  background: #f7f7f7;
}

.container{
  max-width: 1200px;
  margin: auto;
}

.section-title{
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  color: #2e314d;
  margin-bottom: 60px;
}
.features-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card{
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.feature-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-card h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
  position: relative;
}

.feature-card h3::after{
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #69c10f;
  margin-top: 10px;
  border-radius: 4px;
}

.feature-card p{
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
@media (max-width: 992px){
  .features-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .section-title{
    font-size: 30px;
  }

  .feature-card{
    padding: 25px;
  }
}
.footer-section{
  padding:80px 8%;
  background: linear-gradient(
    90deg,
    #2c1a2e,
    #4a1e2f,
    #5c4a00,
    #003c3c
  );
  color:#fff;
  position:relative;
  overflow:hidden;
}

.footer-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:60px;
  align-items:flex-start;
}
.footer-col h3{
  position:relative;
  display:inline-block;
  margin-bottom:30px;
  font-size:22px;
  font-weight:600;
}

.footer-col h3::before{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:120px;
  height:2px;
  background:#a5d86e;
}

.footer-col h3::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:70px;
  height:6px;
  background:#8cc63f;
  border-radius:6px;
}

.footer-col p{
  font-size:14px;
  line-height:1.7;
  margin-bottom:25px;
  opacity:0.85;
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:14px;
  font-size:14px;
  opacity:0.85;
  transition:0.3s;
  display:flex;
  align-items:flex-start;
}

.footer-col ul li:hover{
  color:#64d20f;
  transform:translateX(5px);
}

.footer-col ul li::before{
  content:"➜";
  margin-right:10px;
  font-size:13px;
}
.company-col ul li::before{
  color:#ff9f1c;
}

.services-col:not(.right-services) ul li::before{
  color:#29b6f6;
}

.right-services ul li::before{
  color:#ff3ca0;
}

.footer-col ul.no-arrow li::before{
  content:none;
}
.contact-list li{
  display:flex;
  align-items:center;
  gap:12px;
}

.social-icons{
  display:flex;
  gap:18px;
  margin-top:0;
}

.social-icons i{
  font-size:18px;
  transition:0.3s;
}

.social-icons i:hover{
  color:#64d20f;
  transform:translateY(-4px);
}

.footer-col a{
  color:#fff;
  text-decoration:none;
}

.footer-col a:hover{
  color:#8ee000;
}
.footer-col ul li{
  white-space: nowrap;
}

.empty-heading{
  visibility:hidden;
  margin-bottom:52px;
}

@media(max-width:1200px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:50px;
  }
}

@media(max-width:768px){
  .footer-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .footer-section{
    padding:60px 6%;
  }

  .empty-heading{
    display:none;
  }
}

/* #loader{
  position:fixed;
  width:100%;
  height:100vh;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999999;
  transition:opacity 0.6s ease, visibility 0.6s ease;
}

.loader-content{
  text-align:center;
}

.loader-content h2{
  color:#fff;
  margin-top:25px;
  font-size:22px;
  letter-spacing:3px;
}

.spinner{
  width:70px;
  height:70px;
  border:6px solid rgba(255,255,255,0.2);
  border-top:6px solid #69c10f;
  border-radius:50%;
  animation:spin 1s linear infinite;
}

@keyframes spin{
  0%{ transform:rotate(0deg); }
  100%{ transform:rotate(360deg); }
} */