html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #2a2a2a;
}
.location-section {
  /* padding: 4.5rem 2rem; */
  background: #f9f9f9;
  text-align: center;
  min-height: 100vh;
}

.location-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #2c3e50;
}

.location-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1200px;
  margin: auto;
}


.location-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.location-card h3 {
  margin-bottom: 12px;
  color: #2980b9;
  font-size: 22px;
}

.location-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.contact-section {
  background: #f1f5f9;
  padding: 60px 20px;
  max-width: 600px;
  margin: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 32px;
}

form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

input, textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #0077cc;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  background: #0077cc;
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

button:hover {
  background: #005fa3;
}

.captcha-group {
  display: flex;
  flex-direction: column;
}

.error-message {
  color: red;
  font-size: 14px;
  margin-top: -10px;
  margin-bottom: 10px;
}

#location{
    padding: 1rem 2rem ;
}
#toTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  font-size: 22px;
  color: white;
  background-color: #1b4332;
  border: none;
  border-radius: 50%;
  padding:0.75rem 1.05rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.2s;
}

#toTopBtn:hover {
  background-color: #285f44;
  transform: scale(1.1);
}

#toTopBtn i {
  font-weight: bold;
}
.copyright {
  background-color: #1b4332;
  color: #f9f9f9;
  padding: 1rem;
  text-align: center;
}
