html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .navbar-custom {
      background-color: white;
      border: none;
      box-shadow: none;
      font-weight: bold;
    }
    .navbar-brand {
      /* background-color: #d00000; */
      color: rgb(0, 0, 0) !important;
      padding: 0.5rem -1rem;
      font-weight: bold;
    }
    .navbar-brand:hover {
      color: white;
    }
    .nav-link {
        color: #333 !important;
    }
   .hero {
  position: relative;
  /* height: 100vh; */
  background: url('../bg2.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5% 5%;
  flex-wrap: nowrap;
  gap: 2rem;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
  z-index: -1; /* Places it behind the content */
}

    .hero-text {
      max-width: 50%;
      animation: fadeIn 2s ease-in;
    }
    .slider-container {
      position: relative;
      max-width: 50%;
      overflow: hidden;
    }
    .card-slider {
      display: flex;
      gap: 1rem;
      transition: transform 0.3s ease;
    }
    .card-slider .card {
      min-width: 200px;
      background-color: rgba(255, 255, 255, 0.8);
      color: black;
    }
    .card-body {
        height: 50px;
    }
    .slider-controls {
      display: flex;
      justify-content: space-between;
      margin-top: 0.5rem;
    }
    @media (max-width: 992px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .hero-text, .slider-container {
        max-width: 100%;
      }
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      height: 100%;
      width: 100%;
      background: white;
      z-index: 1050;
      transition: left 0.3s ease-in-out;
      padding: 1rem;
      font-weight: bold;
    }
    .mobile-menu.active {
      left: 0;
    }
    .menu-toggle {
      cursor: pointer;
    }
    .close-menu {
      font-size: 2.5rem;
      cursor: pointer;
    }


    .service-card {
      position: relative;
      color: white;
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
    }

    .overlay {
      position: absolute;
      inset: 0;
      background-color: rgba(255, 0, 0, 0.65); /* Red transparent overlay */
    }

    .card-content {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.5rem;
    }

    .card-footer {
      border-top: 1px solid rgba(255,255,255,0.5);
      font-size: 0.9rem;
      display: flex;
      justify-content: space-between;
      padding-top: 0.75rem;
    }


      .testimonial-section {
      text-align: center;
      padding: 60px 20px 30px;
      position: relative;
    }

    .testimonial-section::before {
      content: '"';
      font-size: 160px;
      color: #f8f8f8;
      position: absolute;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 0;
    }

    .testimonial-content {
      position: relative;
      z-index: 1;
    }

    .testimonial-content p {
      font-size: 1.2rem;
      font-weight: 500;
    }

    .author {
      color: #d33;
      font-weight: bold;
    }
.red {
    color:#e53935 ;
}
.bold {
    font-weight: 800;
}
    .red-footer {
      background-color: #e53935;
      color: white;
      padding: 30px;
      position: relative;
      clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    }

    .footer-section {
      background-color: #f8f9fa;
      padding: 40px 20px;
    }

    .footer-links h6 {
      font-weight: bold;
    }

    .footer-links ul {
      list-style: none;
      padding-left: 0;
    }

    .footer-links li {
      margin-bottom: 8px;
    }

    .footer-links a {
      text-decoration: none;
      color: #333;
    }

    .social-icons a {
      margin-right: 15px;
      font-size: 1.2rem;
      color: #333;
    }
    
  body {
  font-family: 'Segoe UI', sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
}

.top-destinations {
  padding: 40px 20px;
  text-align: center;
}

.top-destinations h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.top-destinations p {
  color: #666;
  margin-bottom: 40px;
}

.destination-slider {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  padding: 0 20px;
}

.slider-track {
  display: flex;
  gap: 20px;
}

.swiper-slide {
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
}

.swiper-slide img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
  border-radius: 10px;
}

.swiper-slide h3 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
  font-weight: 700;
}

.swiper-slide p {
  font-size: 1rem;
  color: #333;
}

.swiper-slide p span {
  color: #777;
  font-size: 0.9rem;
}

.swiper-slide button {
  margin-top: 10px;
  padding: 10px 20px;
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.swiper-slide button:hover {
  background: #333;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
}

.custom-prev {
  left: -0px;
}
.custom-next {
  right: -0px;
}




.report-section {
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-background {
  background-image: url('../img/safe.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.report-overlay {
  background-color: rgba(200, 0, 0, 0.9);
  color: white;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  margin: 20px;
}

.report-overlay h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.report-overlay p {
  font-size: 16px;
  margin-bottom: 20px;
}

.report-overlay a {
  display: block;
  color: white;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.report-overlay a span {
  margin-left: 5px;
}

.report-overlay a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .report-background {
    justify-content: center;
  }

  .report-overlay {
    max-width: 90%;
    padding: 30px 20px;
  }

  .report-overlay h2 {
    font-size: 24px;
  }

  .report-overlay p {
    font-size: 14px;
  }
}



.safety-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
  justify-content: center;
}

.safety-info {
  background-color: #d80000;
  color: white;
  padding: 30px 25px;
  max-width: 300px;
  flex: 1 1 280px;
}

.safety-info h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.safety-info p {
  font-size: 15px;
  margin-bottom: 20px;
}

.safety-info a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.safety-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  flex: 3 1 600px;
}

.app-card {
  flex: 1 1 250px;
  background-color: #f9f9f9;
  padding: 20px;
  text-align: left;
}

.app-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.app-card h3 span {
  color: #d80000;
  font-weight: bold;
  margin-right: 6px;
}

.app-card .subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.app-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.app-card p {
  font-size: 14px;
  margin-bottom: 10px;
}

.app-card a {
  color: #d80000;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .safety-section {
    flex-direction: column;
    align-items: center;
  }

  .safety-applications {
    flex-direction: column;
    align-items: center;
  }

  .app-card {
    width: 100%;
  }

  .safety-info {
    width: 100%;
  }
}
