/* General Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #f4f4f4;
}

/* Header Section with background image and text animation */
.header2 {
  background-image: url('world.jpg'); /* Change this to any desired background image */
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header2 .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.header-content {
  z-index: 1;
  animation: slideInDown 2s ease-in-out;
}

.header2 h1 {
  font-size: 4rem;
  animation: fadeInText 1.5s ease-in-out forwards;
}

.header2 p {
  font-size: 1.8rem;
  margin-top: 20px;
  animation: fadeInText 1.5s ease-in-out forwards;
  animation-delay: 1s;
}

/* Animations */
@keyframes backgroundZoom {
  0% { background-size: 100%; }
  50% { background-size: 105%; }
  100% { background-size: 100%; }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Locations Section */
.locations {
  background-color: white;
  padding: 60px 0;
}

.locations h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.location-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 0 20px;
}

.card {
  background-color: #fff;
  padding: 30px;
  margin: 10px;
  width: 250px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Contact Form Section */
.contact-form {
  background-color: #e9ecef;
  padding: 60px 0;
}

.contact-form h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

#formResponse {
  margin-top: 20px;
  text-align: center;
  font-size: 1.2em;
  color: #333;
}

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