* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  .hero-section {
    background-image: url('./images/herobackground.webp'); 
    height: 100vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .overlay {
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay for text contrast */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-content {
    max-width: 800px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    font-weight: bold;
    color: #ffffff;
  }
  
  .hero-content p {
    font-size: 1.25rem;
    margin-top: 1rem;
    color: #ddd;
  }
  
  
  header {
    background-color: #0f3d57;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #00bcd4;
  }
  
  .section {
    padding: 3rem 2rem;
    background-color: white;
    margin: 1rem;
    border-radius: 8px;
  }
  
  .card-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    justify-content: center;
  }
  
  .card {
    background-color: #e3f2fd;
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #0f3d57;
    color: white;
    margin-top: 2rem;
  }
  
  /* Medium Screens (Tablets and below) */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
      padding-top: 1rem;
      gap: 0.8rem;
    }
  
    .section {
      padding: 2rem 1.5rem;
    }
  
    .logo {
      font-size: 1.6rem;
    }
  }
  
  /* Small Screens (Phones) */
  @media (max-width: 480px) {
    .logo {
      font-size: 1.4rem;
    }
  
    .navbar {
      padding: 1rem;
    }
  
    .section {
      padding: 1.5rem 1rem;
    }
  
    .card {
      width: 100%;
    }
  
    .nav-links {
      font-size: 0.95rem;
      gap: 0.5rem;
    }
  }
  .responsive-image-section {
    padding: 2rem;
    text-align: center;
  }

  .responsive-image-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-width: 100%;
  }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background-color: #f4f4f4;
      color: #333;
      line-height: 1.6;
    }

    header {
        background: linear-gradient(90deg, #0f3d57, #00bcd4);
        color: #fff;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }
      

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: bold;
    }

    .nav-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: white;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: #00bcd4;
    }

    .section {
      padding: 3rem 2rem;
      background-color: white;
      margin: 1rem;
      border-radius: 8px;
    }

    .card-container {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1rem;
      justify-content: center;
    }

    .card {
      background-color: #e3f2fd;
      padding: 1rem;
      border-radius: 10px;
      width: 100%;
      max-width: 250px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      text-align: center;
    }

    .card h3 {
      margin-bottom: 1rem;
    }

    .card p {
      margin-bottom: 1rem;
    }

    .card .price {
      font-size: 1.5rem;
      color: #0f3d57;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .card button {
      background-color: #0f3d57;
      color: white;
      padding: 0.5rem 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .card button:hover {
      background-color: #00bcd4;
    }

    .responsive-image-section {
      padding: 2rem;
      text-align: center;
    }

    .responsive-image-section img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      max-width: 100%;
    }

    footer {
      text-align: center;
      padding: 1rem;
      background-color: #0f3d57;
      color: white;
      margin-top: 2rem;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0f3d57;
        padding-top: 1rem;
        gap: 0.8rem;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-toggle {
        display: block;
      }

      .section {
        padding: 2rem 1.5rem;
      }

      .logo {
        font-size: 1.6rem;
      }
    }

    @media (max-width: 480px) {
      .logo {
        font-size: 1.4rem;
      }

      .navbar {
        padding: 1rem;
      }

      .section {
        padding: 1.5rem 1rem;
      }

      .card {
        width: 100%;
      }

      .nav-links {
        font-size: 0.95rem;
        gap: 0.5rem;
      }
    }

  /* Carousel Section Styling */
#carousel-section {
  padding: 30px 0;
  background-color: #f9f9f9;
}

.carousel {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: auto;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-image {
  max-height: 250px;
  width: auto;
  flex-shrink: 0;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 188, 212, 0.7);
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1;
}

.carousel-btn:hover {
  background-color: rgba(0, 188, 212, 1);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Responsive */
@media (max-width: 600px) {
  .carousel-image {
    max-height: 150px;
  }

  .carousel-btn {
    padding: 8px 12px;
  }
}


  /* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body */
body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header {
  background: linear-gradient(90deg, #0f3d57, #00bcd4);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.auto-carousel-section {
  padding: 40px 0;
  background-color: #000;
  color: #fff;
  text-align: center;
}

.auto-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.auto-carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.auto-carousel-track img {
  height: 240px;           /* increased from 200px */
  max-height: 100%;        /* keep it responsive */
  width: auto;
  margin-right: 20px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.auto-carousel-track img:hover {
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .auto-carousel-track img {
    height: 120px;
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 60px 20px;
  background-color: #0c0c28; /* Deep background similar to image */
  color: #fff;
  text-align: center;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-box .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #00bfff; /* Light blue accent */
}

.feature-box h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-box p {
  font-size: 0.95rem;
  color: #ccc;
}

.site-footer {
  background-color: #004080; /* Blue background */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  height: 500px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3,
.footer-column h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.footer-column p,
.footer-column li {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
