
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}
header {
    background-color: #0d1c2b;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}
header img.logo {
    height: 60px;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    text-decoration: underline;
}
.hero {
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}
.hero h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 700px;
}
.hero .cta-buttons a {
    margin: 0 10px;
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.hero .cta-buttons a:hover {
    background-color: #0056b3;
}
.content {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
}
.content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0d1c2b;
}

    /* Style unordered lists within the content section */
    .content ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }
    .content ul li {
        margin-bottom: 8px;
        line-height: 1.5;
    }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.service-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card h3 {
    margin-top: 0;
    color: #007bff;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
form {
    max-width: 600px;
    margin: auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
form .form-group {
    margin-bottom: 15px;
}
form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
form button:hover {
    background-color: #0056b3;
}
footer {
    background-color: #0d1c2b;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}
footer p {
    margin: 5px 0;
}
@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
}
/* ========= Mobile & small screens ========= */
@media (max-width: 768px) {
  header nav a {
    display: inline-block;
    margin: 6px 8px;
    padding: 6px 8px;
    font-size: 0.95rem;
  }

  .hero {
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }
  .hero h1 { font-size: 1.9rem; line-height: 1.2; }
  .hero p  { font-size: 1rem;   margin-top: 8px; }

  .content {
    padding: 24px 16px;
  }

  /* Service lists / grids collapse cleanly */
  .services-list,
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Make images responsive */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Cards & sections spacing */
  .testimonial {
    padding: 16px;
  }

  footer {
    padding: 16px;
    text-align: center;
  }
  .social-icons a {
    margin: 0 8px;
  }
}

/* Slightly wider phones / small tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-list,
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
