* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: url("img/bodybackground.jpg") no-repeat center center fixed;
  background-size: cover; 
  min-height: 100vh; 
  position: relative;
}

/* Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}

/* Responsive  */
@media (max-width: 1024px) {
  body {
    background-attachment: scroll; 
    background-position: center;
  }
}

@media (max-width: 768px) {
  body {
    background-size: cover;
    background-position: center top; 
  }
}

@media (max-width: 480px) {
  body {
    background-size: cover;
    background-position: top; 
  }
}
   
     /* Header Styling */
header {
  background-color: #000;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 50px;
  position: relative;
  color: white;
}


.logo img {
  height: 80px;
  width: auto;
   margin-left: 20px;
}

/* Navbar Styling */
.navbar ul {
   
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding: 5px 0;
  position: relative;
}


.navbar a:hover {
  color: rgb(191, 0, 0);
}

.navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  background: rgb(191, 0, 0);
  transition: width 0.3s;
  bottom: 0;
  left: 0;
}

.navbar a:hover::after {
  width: 100%;
}


.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}


#menu-toggle {
  display: none;
}

/* Responsive Styles */
 @media (max-width: 480px) {
  body {
    font-size: 15px;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .navbar {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #000;
    display: none;
    z-index: 999;
  }

  .navbar ul {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
  }

  #menu-toggle:checked + .hamburger + .navbar {
    display: block;
  }

  .hamburger {
    display: block;
  }
}
/*abouthero*/

.about-hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .about-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

 

    .about-heading {
      font-family: 'Bebas Neue', sans-serif;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
       
      
font-size: 10rem;
      font-weight: bold;
      color: rgb(191, 0, 0);
      z-index: 2;
      text-align: center;
    }

    @media (max-width: 768px) {
      .about-heading {
        font-size: 48px;
      }
    }

    @media (max-width: 480px) {
      .about-heading {
        font-size: 32px;
      }
    }
 
 

/*about-information*/

    .about-info-section {
      display: flex;
      flex-wrap: wrap;
      padding: 80px 60px;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
    }

    .about-left {
      flex: 1;
      min-width: 300px;
    }

    .about-left h4 {
     
      color: rgb(191, 0, 0);
      font-size: 19px;
      margin-bottom: 10px;
    }

    .about-left h1 {
        font-family: 'Bebas Neue', sans-serif;
     
      font-size: 90px;
      line-height: 1;
      margin: 0;
      color: white;
    }

    .about-left h1 span {
      color: rgb(191, 0, 0);
    }

    .about-left p {
      margin-top: 20px;
      font-size: 16px;
      line-height: 1.6;
      color: #ccc;
      max-width: 400px;
    }

    .about-right {
        background-color: #000;
      flex: 1;
      min-width: 300px;
      border: 1px solid rgb(191, 0, 0);
      padding: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .perk-box h3 {
        color:white;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .perk-box p {
      font-size: 13px;
      color: #ccc;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      .about-info-section {
        padding: 40px 20px;
        flex-direction: column;
      }

      .about-left h1 {
        font-size: 48px;
      }

      .about-right {
        grid-template-columns: 1fr;
      }
    }


    /*our story section*/
 

.our-story {
     background-color: rgba(0, 0, 0, 0.6); 
  text-align: center;
  padding: 60px 20px;
}

.our-story h1 {
   font-family: 'Bebas Neue', sans-serif;
    color: white;
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.our-story h1 span {
  color: rgb(191, 0, 0);
}

.story-text p {
    color: white;
  font-size: 20px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Responsive  */
@media (max-width: 768px) {
  .our-story h1 {
    font-size: 48px;
  }

  .story-text p {
    font-size: 18px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .our-story h1 {
    font-size: 36px;
  }

  .story-text p {
    font-size: 16px;
    line-height: 1.6;
  }
}

/*leadership*/
    .leadership-section {
      text-align: center;
      padding: 60px 20px;
      background-color: rgba(0, 0, 0, 0.3); 
    }

    .leadership-section h1 {
       font-family: 'Bebas Neue', sans-serif;
        color: white;
      font-size: 80px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .leadership-section h1 span {
      color: rgb(191, 0, 0);
    }

    .leadership-section p {
        color: white;
      font-size: 20px;
      max-width: 800px;
      margin: 0 auto 50px;
      line-height: 1.6;
    }

    .slider-container {
      position: relative;
      max-width: 1200px;
      margin: auto;
      overflow: hidden;
    }

    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .slide {
      min-width: 100%;
      display: flex;
      justify-content: center;
      gap: 40px;
    }

    .box {
      width: 300px;
    
      text-align: center;
    }

    .box img {
      width: 100%;
      height: auto;
      display: block;
    }

    .box h3 {
        color: white;
      margin: 20px 0 10px;
      font-size: 26px;
      font-weight: bold;
    }

    .box p {
      margin: 0 0 20px;
      color: rgb(191, 0, 0);
      font-size: 20px;
    }

    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 30px;
      color: white;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 100;
    }

    .prev {
      left: 10px;
    }

    .next {
      right: 10px;
    }

    .indicators {
      margin-top: 30px;
    }

    .dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: white;
      margin: 0 5px;
      cursor: pointer;
    }

    .dot.active {
      background: rgb(191, 0, 0);
    }
    /*responsivee*/

   @media (max-width: 992px) {
  .leadership-section h1 {
    font-size: 60px;
  }

  .leadership-section p {
    font-size: 18px;
    padding: 0 10px;
  }

  .box {
    width: 250px;
  }

  .box h3 {
    font-size: 22px;
  }

  .box p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .box {
    width: 80%;
    max-width: 350px;
  }

  .leadership-section h1 {
    font-size: 48px;
  }

  .leadership-section p {
    font-size: 16px;
  }

  .nav-btn {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .leadership-section {
    padding: 40px 15px;
  }

  .leadership-section h1 {
    font-size: 36px;
    letter-spacing: 1px;
  }

  .leadership-section p {
    font-size: 14px;
  }

  .box {
    width: 100%;
  }

  .nav-btn {
    display: none; 
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}


/*  Promo Banner  */
section.promo-banner {
  position: relative;
  color: white;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  min-height: 220px;
  overflow: hidden;
}

section.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('img/Map%20KPLeads.png'); 
  background-size: cover;
  background-position: center;
  filter: grayscale(100%); 
  z-index: 0;
}


section.promo-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.65); 
  z-index: 1;
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
}

.promo-text {
   font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

.promo-button {
  position: relative;
  z-index: 2;
  padding: 16px 35px;
  background: linear-gradient(to right, rgb(201, 35, 35),  rgb(191, 0, 0));
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.promo-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/*  Responsive  */
@media (max-width: 1024px) {
  .promo-text {
    font-size: 24px;
  }
  .promo-button {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  section.promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
    gap: 20px; 
  }
  .promo-content {
    max-width: 100%;
  }
  .promo-text {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .promo-text {
    font-size: 18px;
    line-height: 1.4;
  }
  .promo-button {
    width: 100%; 
    padding: 14px;
    font-size: 0.9rem;
  }
}


  /*footer*/
   footer {
    font-family: 'Poppins', sans-serif;
      background: #333;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 40px 60px;
    }
    .footer-logo {
      display: flex;
      align-items: center;
    }
    .footer-logo img {
      height: 90px;
    }
    .footer-column {
      max-width: 300px;
    }
    .footer-column h3 {
      margin: 0 0 10px;
      font-size: 16px;
      text-transform: uppercase;
    }
    .footer-column p,
    .footer-column a {
      margin: 5px 0;
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
    }
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 10px;
    }
    .social-icons a {
      color: #fff;
      font-size: 20px;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #e74c3c;
    }
    /*responsive**/
    @media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-column {
    max-width: none;
    margin-top: 20px;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}


