 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Bebas+Neue&display=swap');

body {
    background-color: #0d0d0d;
    font-family: 'Montserrat', 'Arial', sans-serif;
}


h1, h2, h3, .heading {
    font-family: 'Bebas Neue', sans-serif;
}
    body::before {
  content: "";
  position: fixed;       
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  z-index: -1;            
}

    /* 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: 70px;
  width: auto;
}


.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  */
 @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;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}


.hero-heading {
  position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
       text-shadow: 2px 2px 6px rgba(0,0,0,0.7);

      font-size: 70px;
      font-weight: bold;
      color: rgb(191, 0, 0);
      z-index: 2;
      text-align: center;
}

/* Responsive heading font */
@media (max-width: 992px) {
  .hero-heading {
    font-size: 48px;
    top: 60px;
  }
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 36px;
    top: 40px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 28px;
    top: 30px;
  }
}

.hero-button {
  position: absolute;
  bottom: 80px;
  right: 80px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(to right, black, red);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

/* Responsive button size and position */
@media (max-width: 768px) {
  .hero-button {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-button {
    bottom: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 13px;
  }
}

.hero-button:hover {
  transform: scale(1.05);
}



/*discover section*/
    .discover-section {
      position: relative;
      width: 100%;
      min-height: 60vh;
      padding: 100px 20px;
      text-align: center;
    }

    .discover-section img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
    }

    .discover-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      z-index: -1;
    }

    .discover-section h1 {
      font-size: 2.5rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: #fff; 
    }

    .discover-section h1 span {
      color: rgb(191, 0, 0);
    }

    .discover-section p {
      max-width: 800px;
      margin: 10px auto;
      line-height: 1.6;
      color: #fff;
    }

    .highlight {
     color:rgb(191, 0, 0);
    }
  
    /*responsive*/
@media (max-width: 992px) {
  .discover-section {
    padding: 80px 20px;
  }

  .discover-section h1 {
    font-size: 2rem;
  }

  .discover-section p {
    font-size: 1rem;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .discover-section {
    padding: 60px 15px;
  }

  .discover-section h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .discover-section p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .discover-section {
    padding: 50px 10px;
  }

  .discover-section h1 {
    font-size: 1.5rem;
  }

  .discover-section p {
    font-size: 0.9rem;
  }
}





/*stats section*/
    .stats-section {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 0;
      gap: 20px;
      margin-top: 800px; 
    }

    .stat-box {
      border: 1px solid white;
      padding: 40px 30px;
      text-align: center;
      color: white;
      width: 150px;
    }

    .stat-box h1 {
      font-size: 40px;
      margin: 0;
      color: white;
    }

    .stat-box p {
      margin-top: 10px;
      color: rgb(191, 0, 0);
      font-size: 14px;
      font-weight: bold;
    }
        .counter-section {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      padding: 50px 20px;
      flex-wrap: wrap;
    }

    .counter-box {
      border: 1px solid white;
      padding: 30px 40px;
      text-align: center;
      min-width: 150px;
    }

    .counter-number {
      font-size: 40px;
      color: white;
      font-weight: bold;
    }

    .counter-label {
      font-size: 14px;
     color: rgb(191, 0, 0);
      margin-top: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }


    /*counter*/
    

.counters {
   background: rgba(30, 30, 30, 0.6); 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  gap: 30px; 
}

.counter-box {
  background-color: #111;
  padding: 60px 40px; 
  border: 1px solid white;
  text-align: center;
  min-width: 250px; 
  
}

.counter-box .number {
  display: block;
  font-size: 56px;
  color: white;
  font-weight: bold;
}


.counter-box p {
  margin-top: 10px;
 color: rgb(191, 0, 0);
  font-size: 16px;
}

/*responsive*/
@media (max-width: 992px) {
  .stats-section,
  .counter-section,
  .counters {
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    margin-top: 100px; 
  }

  .stat-box,
  .counter-box {
    width: 180px;
    padding: 30px 25px;
  }

  .counter-box .number,
  .counter-number {
    font-size: 42px;
  }

  .counter-box p,
  .counter-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .stats-section,
  .counter-section,
  .counters {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 80px;
    padding: 30px 10px;
  }

  .stat-box,
  .counter-box {
    width: 100%;
    max-width: 300px;
  }

  .stat-box h1,
  .counter-box .number {
    font-size: 36px;
  }

  .counter-box p,
  .stat-box p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .stat-box,
  .counter-box {
    padding: 25px 20px;
  }

  .stat-box h1,
  .counter-box .number {
    font-size: 30px;
  }

  .counter-box p,
  .stat-box p {
    font-size: 12px;
  }
}

/*services*/
    .services-wrapper {
      background: rgba(30, 30, 30, 0.6); 
      max-width: 1300px;
      margin: 0 auto;
      padding: 40px 20px;
      box-sizing: border-box;
      text-align: center;
    }

    .services-wrapper h1 {
      color: white;
      font-size: 42px;
      margin-bottom: 40px;
    }

    .services-wrapper h1 span {
      color: rgb(191, 0, 0);
    }

    .services-section {
      display: flex;
      flex-wrap: wrap;
    }

    .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: 25px; 
      cursor: pointer;
      font-size: 16px; 
      line-height: 1.6; 
      transition: color 0.3s;
    }

    .services-list li:hover {
      color: rgb(191, 0, 0);
    }

    .services-list li.active {
      color: rgb(191, 0, 0);
    }

    .services-content {
      color: white;
      width: 75%;
      display: flex;
      flex-wrap: wrap;
    }

    .service-box {
      position: relative;
      width: 50%;
      min-height: 600px;
      padding: 60px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-size: cover;
      background-position: center;
      overflow: hidden;
    }

    .service-box .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .service-box .text-content {
      position: relative;
      z-index: 2;
    }

    .service-box h2 {
      font-size: 28px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .service-box p {
      font-size: 16px;
      line-height: 1.5;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      background: none;
      border: none;
      font-size: 30px;
      color: #fff;
      cursor: pointer;
      z-index: 2;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .services-section {
        flex-direction: column;
      }

      .services-list, .services-content {
        width: 100%;
      }

      .services-content {
        flex-direction: column;
      }

      .service-box {
        width: 100%;
        min-height: 400px;
        padding: 40px;
      }

      .slider-btn {
        top: auto;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
      }
    }

    @media (max-width: 768px) {
      .services-wrapper {
        padding: 30px 15px;
      }

      .services-list li {
        font-size: 15px;
        margin-bottom: 20px;
      }

      .service-box h2 {
        font-size: 22px;
      }

      .service-box p {
        font-size: 15px;
      }

      .slider-btn {
        font-size: 24px;
      }
    }

    @media (max-width: 480px) {
      .services-wrapper h1 {
        font-size: 28px;
      }

      .service-box {
        padding: 20px;
      }

      .service-box h2 {
        font-size: 18px;
      }

      .service-box p {
        font-size: 13px;
      }

      .slider-btn {
        font-size: 20px;
        bottom: 15px;
        right: 15px;
      }
    }


/*our vision*/
            .vision-section {
              max-width: 1200px;
               margin: 0 auto;
      padding: 40px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px;
      background-color: #0a0a0a;
    }

    .vision-text {
      flex: 1;
      padding-right: 40px;
    }

    .vision-text h2 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    
    .vision-text h2 .white-text {
      color: white;
    }

    .vision-text h2 .red-text {
   color: rgb(191, 0, 0);
    }

    .vision-text p {
      font-size: 16px;
      color: #ccc;
      line-height: 1.6;
      max-width: 500px;
    }

    .vision-text a {
      display: inline-block;
      margin-top: 20px;
      color: rgb(191, 0, 0);
      text-decoration: none;
      font-weight: bold;
    }

    .vision-image {
      flex: 1;
      text-align: right;
    }

    .vision-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 8px;
      filter: grayscale(100%);
    }

  /*responsive*/
  @media (max-width: 992px) {
  .vision-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .vision-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .vision-text h2 {
    font-size: 36px;
  }

  .vision-text p {
    font-size: 15px;
    max-width: 100%;
    padding: 0 15px;
  }

  .vision-image {
    text-align: center;
  }

  .vision-image img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .vision-section {
    padding: 30px 15px;
  }

  .vision-text h2 {
    font-size: 30px;
  }

  .vision-text p {
    font-size: 14px;
  }

  .vision-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .vision-text h2 {
    font-size: 26px;
  }

  .vision-text p {
    font-size: 13px;
  }

  .vision-text a {
    font-size: 14px;
  }

  .vision-image img {
    max-width: 100%;
  }
}



 
    /*banner*/
    
   section.promo-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:500px;
  min-height: 200px;
}


    section.promo-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.7); 
      z-index: 1;
    }

    .promo-content {
      position: relative;
      z-index: 2;
    }

    .promo-text {
      font-size: 20px;
      font-weight: bold;
      line-height: 1.4;
      margin-bottom: 10px;
    }

   .promo-button {
  margin-top: 0;
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, black, red);
  color: white;
  font-weight: bold;
  padding: 16px 24px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-size: 16px;
  display: inline-block;
}

.promo-button:hover {
  transform: scale(1.05); 
}
@media (max-width: 768px) {
  .promo-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .promo-button {
    padding: 8px 16px;
    font-size: 13px;
  }
}

    /*responsive*/
    @media (max-width: 992px) {
  section.promo-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 20px;
  }

  .promo-text {
    font-size: 18px;
  }

 
}

@media (max-width: 768px) {
  section.promo-banner {
    padding: 30px 20px;
  }

  .promo-text {
    font-size: 16px;
    line-height: 1.3;
  }

 
}

@media (max-width: 480px) {
  .promo-text {
    font-size: 15px;
  }

  .promo-button {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px 15px;
  }

  section.promo-banner {
    padding: 25px 15px;
  }
}


 /*footer*/
   footer {
      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: 80px;
    }
    .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;
  }
}


