* {
  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 {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  position: relative;
  color: white;
}

.logo img {
  height: 80px;
  width: auto;
  margin-left: 20px;
}

.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 */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

#menu-toggle {
  display: none;
}

/*  Responsive  */
@media (max-width: 992px) {
  header {
    padding: 20px;
  }

  .navbar ul {
    gap: 20px;
  }
}

@media (max-width: 768px) {

  .hamburger {
    display: block;
  }
  .navbar {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    text-align: center;
  }
  .navbar ul {
    flex-direction: column;
    gap: 15px;
  }

 
  #menu-toggle:checked + .navbar {
    display: block;
  }
}

@media (max-width: 480px) {
  .navbar a {
    font-size: 14px;
  }
}

/*hero section*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
}

.hero-content {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
   font-size: 100px;
  letter-spacing: 2px;
  color: #e50914; 
  margin-bottom: 20px;
}

.btn {
 position: absolute;
bottom: 40px;
right: 40px;
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: 600;
text-transform: uppercase;
text-decoration: none;
transition: 0.3s;
font-family: 'Poppins', sans-serif;

}

.btn:hover {
  opacity: 0.9;
}

/*  Responsive */

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    bottom: 30px;
    right: 30px;
  }
}
@media (max-width: 768px) {
  .hero-content {
    top: 20%;
    padding: 0 15px;
  }
  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 1px;
  }
  .btn {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    bottom: auto;
    right: auto;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 20px;
  }
}
/* Discover Section */
.discover-section {
  background: transparent;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px;
}

.discover-section h2 {
  font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.discover-section h2 span {
  color: #e50914; /
}

.discover-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #ddd;
}

.discover-section p.highlight {
  color: #e50914;
  font-weight: 500;
}

/* Responsive */


@media (max-width: 992px) {
  .discover-section {
    padding: 60px 15px;
  }
  .discover-section h2 {
    font-size: 2.5rem;
  }
  .discover-section p {
    font-size: 0.9rem;
  }
}


@media (max-width: 768px) {
  .discover-section {
    padding: 50px 15px;
  }
  .discover-section h2 {
    font-size: 2rem;
    letter-spacing: 1px;
  }
  .discover-section p {
    font-size: 0.85rem;
  }
}


@media (max-width: 480px) {
  .discover-section {
    padding: 40px 12px;
  }
  .discover-section h2 {
    font-size: 1.6rem;
  }
  .discover-section p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

/* Stat Section */
.stats-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  padding: 80px 20px;
}

.stat-box {
  flex: 1;
  border: 1px solid #fff;
  padding: 50px 20px;
}

.stat-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #fff;
}

.stat-box p {
  font-size: 16px;
  color: #e63946;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .stats-section {
    padding: 60px 15px;
  }
  .stat-box h2 {
    font-size: 48px;
  }
  .stat-box p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    padding: 50px 20px;
  }
  .stat-box {
    padding: 40px 15px;
    border-left: none;
    border-right: none;
  }
  .stat-box h2 {
    font-size: 40px;
  }
  .stat-box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 40px 12px;
  }
  .stat-box {
    padding: 30px 10px;
  }
  .stat-box h2 {
    font-size: 32px;
  }
  .stat-box p {
    font-size: 13px;
  }
}


/* Services Wrapper */
 .services-wrapper {
     max-width: 1300px;
     margin: 0 auto;
      padding: 40px 20px; 
      box-sizing: border-box;
       text-align: center; } 
.services-wrapper h1
 { color: white; 
     font-size: 80px;
     margin-bottom: 40px;
      font-family: 'Bebas Neue', sans-serif; 
      text-align: center;
     }
 .services-wrapper h1 span
  { color: rgb(191, 0, 0);
 } 
 /* Layout */
  .services-section
   { display: flex;
     align-items: flex-start; 
    } 
 .services-list
  { width: 25%; 
    text-align: left; }
   .services-list ul 
   { list-style: none; 
    padding: 0; 
    margin: 0; } 
    .services-list li
     { color: white; 
        font-weight: bold;
         text-transform: uppercase;
          margin-bottom: 30px;
           cursor: pointer;
            font-size: 18px;
             line-height: 1.8; 
             transition: color 0.3s;
              display: flex; 
              align-items: center;
               gap: 10px; 
            } 
            .services-list li:hover,
             .services-list li.active 
             { 
                color: rgb(191, 0, 0); 
            }
           
            .services-content 
            { width: 75%; 
                display: flex;
                 color: white;
                 } /* Service Box */
                  .service-box { position: relative;
                     width: 50%;
                      min-height: 600px; 
                      padding: 60px; 
                      box-sizing: border-box; 
                      display: flex;
                       flex-direction: column;
                        justify-content: flex-start; 
                        align-items: flex-start; 
                        background-size: cover;
                         background-position: center; 
                         background-repeat: no-repeat;
                          overflow: hidden; }
                           /* Overlays */ 
                          .service-box .overlay { 
                            position: absolute;
                             top: 0; 
                             left: 0;
                              width: 100%;
                               height: 100%;
                                z-index: 1;
                               } 
                               .overlay-white { 
                                background: rgba(255, 255, 255, 0.5); /* Transparent White */
                               } 
                               .overlay-red { 
                                background: rgba(191, 0, 0, 0.4); /* Transparent Red */ 
                              
                            } /* Text inside */
                            .service-box.left .text-content h2,
.service-box.left .text-content p {
  color: #000; 
}
 .service-box.right .text-content h2,
.service-box.right .text-content p {
  color: #ffffff; 
}


                             .service-box .text-content { 
                              position: relative;
                               z-index: 2;
                                text-align: left; 
                              
                               } .service-box h2 {
                                 font-size: 62px; 
                                 margin-bottom: 15px;
                                  text-transform: uppercase;
                                   font-family: 'Bebas Neue', sans-serif;
                                   } 
                                   .service-box p { 
                                    font-size: 18px;
                                     line-height: 1.5; 
                                     max-width: 90%; }
                                      /* Slider Buttons */
                                       .slider-btn { position: absolute;
                                         top: 50%;
                                          transform: translateY(-50%);
                                           background: rgba(0,0,0,0.5);
                                            border: none; 
                                            font-size: 30px;
                                             color: #fff; 
                                             cursor: pointer;
                                              z-index: 2;
                                               padding: 10px 15px;
                                                border-radius: 50%;
                                               } 
                                               .slider-btn.left { left: 20px; }
  .slider-btn.right { right: 20px; }

 @media (max-width: 992px) {
  .services-section {
    flex-direction: column; 
    align-items: center;
  }
  .services-list {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .services-content {
    width: 100%;
  }
  .service-box {
    width: 100%;
    min-height: 400px;
    padding: 40px 20px;
  }
  .service-box h2 {
    font-size: 28px;
  }
  .service-box p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-wrapper h1 {
    font-size: 32px;
  }
  .services-list li {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .service-box {
    min-height: 350px;
    padding: 30px 15px;
  }
  .service-box h2 {
    font-size: 24px;
  }
  .service-box p {
    font-size: 14px;
  }
  .slider-btn {
    font-size: 24px;
    padding: 8px 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .services-wrapper h1 {
    font-size: 26px;
  }
  .services-list li {
    font-size: 14px;
  }
  .service-box {
    min-height: 280px;
    padding: 20px 12px;
  }
  .service-box h2 {
    font-size: 20px;
  }
  .service-box p {
    font-size: 13px;
  }
  .slider-btn {
    font-size: 20px;
    padding: 6px 10px;
  }
}

/*  Vision Section  */
.vision-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
  gap: 40px;
}


.vision-content {
  width: 50%;
  padding-right: 30px;
}

.vision-content h1 {
  font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: white;
}

.vision-content h1 span {
  color: #bf0000;
}

.vision-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ccc;
}

.vision-content a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.vision-content a span {
  color: #bf0000;
  font-size: 18px;
  margin-left: 5px;
}

.vision-content a:hover {
  color: #bf0000;
}


.vision-image {
  position: relative;
  width: 50%;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/*  Responsive  */
@media (max-width: 1024px) {
  .vision-content h1 {
    font-size: 45px;
  }

  .vision-content p {
    font-size: 14px;
  }

  .vision-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .vision-section {
    flex-direction: column;
    padding: 50px 20px;
    text-align: center;
  }

  .vision-content {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .vision-content h1 {
    font-size: 40px;
  }

  .vision-image {
    width: 100%;
    height: 280px;
  }
}

@media (max-width: 480px) {
  .vision-content h1 {
    font-size: 32px;
  }

  .vision-content p {
    font-size: 13px;
  }

  .vision-image {
    height: 220px;
  }
}


/*  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;
}

/* Dark Overlay */
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;
  flex-wrap: wrap; 
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 90px;
}

.footer-column {
  max-width: 300px;
  margin: 10px 20px;
}

.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;
}

.footer-column a:hover {
  color: #e74c3c;
}

.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: 1024px) {
  footer {
    padding: 30px 40px;
  }
  .footer-logo img {
    height: 70px;
  }
}

@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;
  }
}

@media (max-width: 480px) {
  .footer-column h3 {
    font-size: 14px;
  }
  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }
  .footer-logo img {
    height: 60px;
  }
  .social-icons a {
    font-size: 18px;
  }
}





