/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #87CEEB; /* Sky blue background */
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  img {
    max-width: 100%;
    display: block;
  }
  
  /* Header */
  .header {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .logo {
    display: flex;
    align-items: center;
  }
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  .nav-links {
    display: flex;
    list-style: none;
  }
  .nav-links li {
    margin: 0 10px;
  }
  .menu-toggle {
    display: none;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    text-align: center;
    color: #fff;
  }
  .hero-video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
  .hero-content {
    position: relative;
    z-index: 1;
    padding: 50px 20px;
  }
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f2e7b1;
    color: #000;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
  }
  
  /* About Section */
  .about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 50px 20px;
    background: #f9f9f9;
  }
  .about-content {
    flex: 1;
    margin-right: 20px;
  }
  .about-image {
    flex: 1;
    max-width: 400px;
    border-radius: 10px;
  }
  
  /* Services Section */
  .services {
    text-align: center;
    padding: 50px 20px;
    background: #f0f8ff;
  }
  .service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  .service-item {
    text-align: left;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
  }
  .service-item img {
    border-radius: 10px;
  }
  
  /* Footer */
  .footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
  }
  .footer-content {
    margin-bottom: 20px;
  }
  .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .social-links li {
    margin: 0;
  }
  .social-links a {
    color: #fff;
    font-size: 20px;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .about {
      flex-direction: column;
    }
    .about-content {
      margin-right: 0;
      margin-bottom: 20px;
    }
    .nav-links {
      display: none; /* Hide nav links for smaller screens */
    }
    .menu-toggle {
      display: block; /* Show menu toggle button */
    }
  }
  