
/* General Styles */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f8eb; /* light cream */
  color: #05004e; /* dark navy */
  line-height: 1.6;
  transition: background-color 0.3s ease-in-out;
}

/* Header */
header {
  background: linear-gradient(135deg, #76b39d 0%, #fd5f00 100%);
  color: #f9f8eb;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 1s ease-out;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  color:#f9f8eb;
}

/* Section Styles */
section {
  padding: 30px;
  margin: 20px;
  background-color: #ffffff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  animation: slideInUp 1s ease-out;
}

section:hover {
  transform: translateY(-10px);
}

/* Titles and Subtitles */
h2 {
  font-size: 2rem;
  margin-top: 40px;
  color: #76b39d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.8rem;
  color: #76b39d;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Lists and Items */
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  font-size: 1rem;
  margin: 15px 0;
  transition: color 0.3s ease;
}
ul li:hover {
  color: #fd5f00;
  font-weight: bold;
}

/* Link Styling */
a {
  color: #76b39d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
a:hover {
  color: #fd5f00;
  text-decoration: underline;
}

/* Intro Section */
.intro p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out;
}

/* Special Offers */
.special-offers h2 {
  font-size: 2rem;
  color: #76b39d;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.special-offers p {
  font-size: 1.1rem;
  color: #333;
}

/* Service Section */
.services ul {
  padding-left: 20px;
}
.services li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  animation: fadeInUp 1s ease-out;
}
.contact p {
  font-size: 1.1rem;
  margin: 10px 0;
}
.contact a {
  font-weight: bold;
  transition: color 0.3s ease;
}
.contact a:hover {
  color: #fd5f00;
}

/* Why Choose Us Section */
.why-choose-us ul {
  padding-left: 20px;
}
.why-choose-us li {
  font-size: 1.1rem;
  margin: 10px 0;
}

/* Button-like Elements */
button,
.cta {
  background-color: #76b39d;
  color: #f9f8eb;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1rem;
}
button:hover,
.cta:hover {
  background-color: #fd5f00;
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #76b39d 0%, #fd5f00 100%);
  color: #f9f8eb;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 1rem;
  border-top: 3px solid #f9f8eb;
}
footer a {
  color: #f9f8eb;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #05004e;
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  section { margin: 10px; padding: 15px; }
  ul li { font-size: 0.9rem; }
  .cta { font-size: 1rem; padding: 8px 16px; }
  footer { font-size: 0.9rem; padding: 15px; }
}

