*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
padding: 0;
}
body, html {
  font-family: 'Segoe UI', sans-serif;
  color: white;
}
html, body {
  margin: 0;
  padding: 0;
}
html, body {
    overflow: auto;
    min-height: 100vh;
}
 header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
}

/* Navbar Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: sticky;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}




/* Logo */
.logo-img {
  height: 120px;
  width: auto;
}

/* Nav Links - Desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

/* Hamburger Icon - hidden on desktop */
.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #1f2937;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
.nav-links {
  right: 0;
  width: 100%;
  max-width: 250px;
}

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    max-width: 250px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .logo-img {
    height:80px;
}
}
.hero, .hero-video, .overlay {
  max-width: 100vw;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for contrast */
  z-index: -1;
}

.hero-content {
  z-index: 1;
  padding: 20px;
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-buttons .btn {
  padding: 12px 24px;
  margin: 0 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-outline {
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: #000;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e5e7eb;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #25ebdb;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-outline {
  border: 2px solid #d1d5db;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background-color: #374151;
  border-color: #9ca3af;
}
.about-section {
  padding: 100px 60px 60px;
  background-color: #f3eee7;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
  color: #000; /* Set heading color to black */
}

.about-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000; /* Set subheading color to black */
}
.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2563eb;
  display: block;
  margin: 12px auto 0;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
}

.about-image img {
  max-width: 350px;
  width: 100%;
}

.about-content {
  flex: 1;
  max-width: 600px;
}

.about-content p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 20px;
  line-height: 1.6;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 260px;
}

.feature img {
  width: 32px;
  height: 32px;
}

.feature div {
  font-size: 14px;
  color: #374151;
}

.divider {
  width: 1px;
  height: 50px;
  background-color: #3b82f6;
}
.services-section {
  padding: 40px 60px;
  background-color: #f3eee7;
  text-align: center;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 30px;
  max-width: 330px;
  text-align: left;
}

.services-heading-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;  /* Makes sure the video stays behind the heading */
}

.services-heading-video video {
  object-fit: cover; /* Makes sure the video covers the entire section */
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.service-card .service-video {
  width: 100%;
  height: 150px; /* Set height for the video */
  margin-bottom: 20px;
}

.service-card .service-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}
.products {
  padding: 10px 20px;
  text-align: center;
  background-color: #f3eee7;
}

.products h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #1d1c1c;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.product-item {
  width: 120px;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.product-item p {
  margin: 0;
  font-size: 1em;
  color: #333;
}

/* Center the 9th product in 3rd row */
.product-list .product-item:nth-child(9) {
  grid-column: 2 / 3;
}

.view-all-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.view-all-button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-list .product-item:nth-child(9) {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .product-list {
    grid-template-columns: 1fr;
  }
}


.learn-more {
  color: #2563eb;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}
.global-reach-section {
  padding: 100px 60px;
  background-color: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 40px;
}

.map-container {
  margin-bottom: 40px;
}

.map-image {
  max-width: 450px;
  height: auto;
}

.regions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.region-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 24px;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.region-card h3 {
  color: #1e3a8a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.region-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}
.testimonials-section {
  text-align: center;
  padding: 50px 20px;
}

.testimonials-section h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.testimonials-section p {
  color: #6c757d;
  margin-bottom: 30px;
}

.testimonials-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  padding: 20px;
  text-align: left;
}

.testimonial-card .avatar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d9e8ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #007bff;
}

.testimonial-card h3 {
  margin: 0;
  font-size: 1rem;
  color: #000;
}

.testimonial-card h4 {
  margin: 5px 0 10px;
  font-size: 0.9rem;
  color: #6c757d;
}

.stars {
  color: #fbc02d;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.5;
}
.cta-section {
  background-color: #0ff0e4;
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.cta-section p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #d1e4ff;
}

.cta-button {
  background-color: white;
  color: #003d8f;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
  background-color: #002b6d;
 color:white;
}
.contact-us-section {
  padding: 50px 20px;
  background-color: #f8fcff;
  color: #1d1c1c; /* Black content color */
}

.contact-us-section h2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.contact-us-section .subheading {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-form, .contact-details {
  flex: 1 1 45%;
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin: 10px 0 5px;
}

.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1e4ff;
  border-radius: 5px;
  margin-bottom: 20px;
}

.contact-form button {
  background-color: #11f0f0;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #002b6d;
}

.contact-details h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: left; /* Align heading to the left */
}

.contact-details p {
  font-size: 0.95rem;
  margin: 5px 0;
  text-align: left; /* Align content to the left */
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  text-decoration: none;
  color: #003d8f;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #002b6d;
}
.footer {
      background-color: #333;
      color: white;
      padding: 40px 20px;
      margin-top: 40px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .footer-column {
      width: 30%;
      min-width: 250px;
      margin-bottom: 20px;
    }

    .footer-column h3 {
      font-size: 1.5rem;
    }
 .footer-column p {
      color: white;
    }
    .footer-column ul {
      list-style-type: none;
      padding: 0;
      color: white;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: white;
      text-decoration: none;
    }

    .footer-column ul li a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 20px;
    }
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #0e0000;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1e90ff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  border-top: 1px solid #0ee7e7;
  padding-top: 10px;
}