/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navigation */
.navbar {
  background-color: #2a4379; /* Richer blue */
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f97316; /* Orange accent */
}

/* Logo Styles */
.logo-img {
  height: 40px; /* Adjust based on your logo size */
  vertical-align: middle;
  margin-right: 10px;
}

.logo-img-contact {
  height: 80px; /* Larger logo for contact section */
  margin-top: 1rem;
  display: block;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2a4379, #4a6ea9); /* Gradient blue */
  text-align: center;
  padding: 4rem 1rem;
  color: white;
  box-shadow: inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #f97316; /* Orange */
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #ea580c; /* Darker orange */
  transform: scale(1.05);
}

/* About Section */
.about {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #f9fafb;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2a4379;
}

.about p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonials */
.testimonials {
  background-color: #e5e7eb;
  padding: 2rem 1rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2a4379;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  color: #64748b;
  font-style: italic;
}

.author {
  font-weight: bold;
  margin-top: 0.5rem;
}

/* Services */
.services {
  padding: 2rem 1rem;
  text-align: center;
}

.services h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2a4379;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2a4379;
}

.service-item p {
  color: #64748b;
}

/* Contact */
.contact {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #f9fafb;
}

.contact h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2a4379;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form {
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f97316;
  outline: none;
}

.contact-info {
  padding: 1rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2a4379;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #f97316; /* Orange accent on hover */
}

/* WhatsApp Logo Styles */
.whatsapp-logo {
  height: 20px; /* Adjust based on your WhatsApp icon size */
  vertical-align: middle;
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.whatsapp-logo:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

.map-placeholder {
  height: 200px;
  background-color: #e5e7eb;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #2a4379;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cta-button {
    display: block;
    margin: 0 auto;
  }

  .testimonial-grid,
  .service-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}