/* Reset default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f2f2f2;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Make sure the body takes up at least the full viewport height */
}

main {
  flex: 1; /* Allow main content to grow and fill available space */
}

header {
  background-color: #2c3e50; /* Dark shade of blue (same as footer) */
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
}

header h1 a {
  text-decoration: none; /* Remove the underline for the h1 link */
  color: #fff; /* Set the color for the h1 link (optional, in case you want to customize the color) */
}

/* About Section Styling */
.about-us {
  max-width: 1100px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.about-us h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.about-us p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  font-weight: 300;
}

.about-us ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.about-us ul li {
  background-color: #f9f9f9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-us ul li strong {
  font-weight: bold;
  color: #4d88d0;
}

/* Contact Us Section Styling */
.contact-us {
  max-width: 1100px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.contact-us h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.contact-us p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  font-weight: 300;
}

.contact-us form {
  display: flex;
  flex-direction: column;
}

.contact-us label {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;
}

.contact-us input, 
.contact-us textarea {
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
}

.contact-us textarea {
  resize: vertical;
}

.contact-us button {
  padding: 12px 24px;
  background-color: #4d88d0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-us button:hover {
  background-color: #355e8b;
}

.contact-us .contact-info {
  margin-top: 30px;
  text-align: center;
}

.contact-us .contact-info p {
  font-size: 1.1rem;
  color: #555;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li:last-child {
  margin-right: 0;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 100;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #f2f2f2;
}

#hero {
  text-align: center;
  padding: 150px 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #404040;
  border-radius: 0; /* Remove border-radius from hero image */
  font-family: 'Montserrat', sans-serif;
}

#hero h2 {
  margin: 0;
  font-size: 30px; /* Adjust the font size to make it bigger */
  font-family: 'Montserrat', sans-serif; /* Use the Roboto font */
  font-weight: 700; /* Use bold (700) font weight for emphasis */
  color: #404040; /* Update the font color to complement the background */
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  color: #404040;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: background-color 0.3s ease, opacity 0.3s ease; /* Add opacity transition */
}

.cta-button:hover {
  background-color: rgba(120, 141, 196, 0.7); /* Adjust the alpha value (0.8) to control the opacity */
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 24px;
}

section p {
  font-size: 16px;
  line-height: 1.8;
}

/* Modern Footer Styling */
footer {
  background-color: #2c3e50; /* Dark shade of blue */
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1rem;
  border-radius: 20px 20px 0 0; /* Rounded corners at the top */
  margin-top: 50px;
  width: 100%;
}

footer a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-decoration: underline;
  transform: translateY(-3px);
}

footer p {
  margin-top: 10px;
  font-size: 1rem;
}

/* Responsive media query for smaller screens */
@media (max-width: 768px) {
  header {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    margin-top: 10px;
  }

  #hero h2 {
    font-size: 28px;
  }

  .cta-button {
    padding: 10px 20px;
  }

  section h2 {
    font-size: 20px;
  }

  section p {
    font-size: 14px;
  }

  .contact-us {
    padding: 20px;
  }

  .contact-us input, 
  .contact-us textarea {
    font-size: 1rem;
  }

  .contact-us button {
    padding: 10px 20px;
  }
}


/* Services Section Styling */
.services {
  max-width: 1100px;
  margin: 40px auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
}

.services h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}

.services p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
  font-weight: 300;
}

.services ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
}

.services ul li {
  background-color: #f9f9f9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services ul li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.services ul li strong {
  font-weight: bold;
  color: #4d88d0;
}



