/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F8F9FA; /* Light Gray Background */
  color: #333333; /* Dark Gray Text */
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background: white; /* White Background */
  color: #333333; /* Dark Gray Text */
  padding: 20px 0;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.logo {
  max-width: 150px; /* Adjust the size as needed */
  height: auto;
  margin-bottom: 10px;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #4A90E2; /* Soft Blue for the company name */
}

header p {
  margin: 10px 0 0;
  font-size: 1.2em;
  color: #666666; /* Gray Text for the tagline */
}

/* Navigation */
nav {
  background: #4A90E2; /* Soft Blue */
  padding: 10px;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.1em;
}

nav a:hover {
  color: #FF6F61; /* Coral */
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(74, 144, 226, 0.8), rgba(74, 144, 226, 0.8)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5em;
  margin: 0;
}

.hero p {
  font-size: 1.2em;
  margin: 20px 0;
}

.hero .cta-button {
  background: #FF6F61; /* Coral */
  color: white;
  padding: 10px 20px;
  font-size: 1.1em;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero .cta-button:hover {
  background: #E65A50; /* Darker Coral */
}

/* Services Section */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  flex: 1 1 calc(33.333% - 40px);
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service h3 {
  color: #4A90E2; /* Soft Blue */
  font-size: 1.5em;
  margin: 10px 0;
}

.service p {
  font-size: 1em;
  color: #666666; /* Gray Text */
}

/* Carousel Container */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  cursor: pointer; /* Add pointer cursor to indicate clickable images */
}

/* Popup Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.modal.active {
  display: flex;
}

/* Footer */
footer {
  background: #333333; /* Dark Gray */
  color: white;
  padding: 40px 20px;
  text-align: center;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer h2 {
  color: #4A90E2;
  font-size: 2em;
  margin-bottom: 20px;
}

footer p {
  margin: 10px 0;
}

footer a {
  color: #FF6F61; /* Coral */
}

footer a:hover {
  color: #E65A50; /* Darker Coral */
}

/* Google Map */
.map {
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* About Us Section */
.about {
  background: white;
  padding: 40px 20px;
  text-align: center;
}

.about h2 {
  color: #4A90E2;
  font-size: 2em;
  margin-bottom: 20px;
}

.about h3 {
  color: #4A90E2;
  font-size: 1.5em;
  margin-top: 20px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #666666;
}

.about ul {
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  padding-left: 20px;
}

.about ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #666666;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1em;
  color: #666666;
}

/* Why Choose Us Section */
.why-choose-us {
  background: #F8F9FA;
  padding: 40px 20px;
  text-align: center;
}

.why-choose-us h2 {
  color: #4A90E2;
  font-size: 2em;
  margin-bottom: 20px;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.reason {
  flex: 1 1 calc(33.333% - 40px);
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.reason h3 {
  color: #4A90E2;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.reason p {
  font-size: 1em;
  color: #666666;
}

/* Testimonials Section */
.testimonials {
  background: white;
  padding: 40px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #4A90E2;
  font-size: 2em;
  margin-bottom: 20px;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.testimonial {
  flex: 1 1 calc(33.333% - 40px);
  background: #F8F9FA;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1em;
  color: #666666;
}

.testimonial .client-name {
  font-weight: bold;
  margin-top: 10px;
  color: #4A90E2;
}

/* Call to Action Section */
.cta {
  background: #4A90E2;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta .cta-button {
  background: #FF6F61;
  color: white;
  padding: 10px 20px;
  font-size: 1.1em;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta .cta-button:hover {
  background: #E65A50;
}