/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: 'Open Sans', sans-serif;
  color: #2c3e50;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: none; /* Removed underline on hover */
}

/* Header */
header {
  background: #2c3e50;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* Hero Section */
.hero {
  background: url('assets/hero-image.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 200px 0;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: slideIn 1.5s ease-in-out;
}

.hero p {
  font-size: 1.5rem;
  animation: slideIn 1.5s ease-in-out;
}

.hero .cta-button {
  background: #3498db;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero .cta-button:hover {
  background: #2980b9;
}

/* About Preview Section */
.about-preview {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.about-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-preview p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #555;
}

.about-preview .cta-button {
  background: #3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.about-preview .cta-button:hover {
  background: #2980b9;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 100px 0;
}

.about-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Services Preview Section */
.services-preview {
  padding: 100px 0;
  background: #f4f4f4;
  text-align: center;
}

.services-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-link p {
  font-size: 1rem;
  color: #555;
  transition: color 0.3s ease;
}

.service-item:hover .service-link h3 {
  color: #3498db;
}

.service-item:hover .service-link p {
  color: #777;
}

.service-item .service-button {
  background: #3498db;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.service-item .service-button:hover {
  background: #2980b9;
}

.service-item .contact-info {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item .contact-info p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #555;
}

.service-item .contact-info a {
  color: #3498db;
  text-decoration: none;
}

.service-item .contact-info a:hover {
  text-decoration: none;
}

/* Service Detail Section */
.service-detail {
  padding: 100px 0;
}

.service-detail h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.service-detail p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.service-detail ul {
  list-style-type: disc;
  margin-left: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.service-detail ul li {
  margin-bottom: 10px;
}

.service-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
}

.contact ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.contact li {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #333;
}

.contact a {
  color: #3498db;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: none;
}

/* Map Container */
.map-container {
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-image {
  width: 400px;
  height: auto;
  border-radius: 5px;
}

/* Footer */
footer {
  background: #2c3e50;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

footer a {
  color: #3498db;
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Fade-in animation for sections */
section {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.fade-in {
  opacity: 1;
}