/* General tyles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #e6f7ff; /* Light blue background */
  color: #333; /* Dark grey text color for better readability */
}

/* Header */
.header {
  background: url('header-image.jpg') no-repeat center center/cover;
  color: white;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header h1 {
  font-size: 3rem;
  color: #fff; /* White font to contrast with header background */
  animation: slideDown 2s ease-in-out;
}

.header p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #fff; /* White font for the header paragraph */
  animation: fadeIn 2s ease-in-out;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #ff5733;
  color: white;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #c7441e;
}

.header-container {
  position: relative;
  z-index: 2;
}

/* About Section */
.about-section {
  padding: 60px;
  background-color: #f5f5f5; /* Light grey background for about section */
  text-align: center;
  color: #333; /* Dark grey text for better contrast */
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-container img {
  max-width: 100%;
  margin-top: 20px;
}

/* Services Section */
.services-section {
  background-color: #ffcccb; /* Soft coral background for services section */
  padding: 60px;
  text-align: center;
  color: #222; /* Darker font color for better readability */
}

.services-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background: white;
  padding: 20px;
  flex: 1 1 30%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  max-width: 100%;
}

.service-card h3 {
  margin: 15px 0;
  color: #111; /* Dark text color for service headings */
}

/* Contact Section */
.contact-section {
  padding: 60px;
  text-align: center;
  background-color: #f0f8ff; /* Light blue background for contact section */
  color: #333; /* Dark grey text */
}

.contact-section form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  max-width: 600px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-section button {
  padding: 10px 30px;
  background-color: #ff5733;
  color: white;
  border: none;
  cursor: pointer;
}

.footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer p {
  margin: 0;
}
/* Loading Screen Styles */
/* Loading Screen Styles */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  color: white;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease; /* Reduced duration for smoother fade */
  opacity: 1;
  visibility: visible;
}

.loading-content {
  text-align: center;
}

.loading-text {
  font-size: 2rem;
  margin-bottom: 20px;
}

.spinner {
  border: 6px solid #f3f3f3; /* Light grey */
  border-top: 6px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1.5s linear infinite; /* Faster spin */
}

/* Spinner Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Fade-out animation for the loading screen */
.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}
