/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5e3ce8;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #5e3ce8;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  gap: 3rem;
  justify-content: center;
  background-color: #fff;
}

.contact-left {
  max-width: 500px;
}

.contact-left h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-left h1 span {
  color: #5e3ce8;
}

.contact-left p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.info-block p {
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: #f0f0ff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

input, select, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
}

button {
  padding: 0.9rem;
  background-color: #5e3ce8;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #4a2bc4;
}

.locations h3{
  font-size: 20px;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footerlogo{
    width: 50%;
    height: 100%;
}
a {
  color: #aab6fe;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer {
  background-color: #2e3a59;
  color: #ffffff;
  padding: 60px 0;
}

.footer-list{
  list-style: none;
}
.footer .grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand img {
  width: 80px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d3d6db;
  margin-bottom: 15px;
  
}

.footer-list-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
  text-decoration: none;
}

.footer-link {
  display: block;
  color: #cfd8dc;
  font-size: 0.95rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.social-list {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin-top: 15px;
}

.social-link {
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-link:hover {
  color: #aab6fe;
}

.input-wrapper {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.input-field {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
}

.submit-btn {
  padding: 10px 20px;
  background-color: #787cfd;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background-color: #5f63e6;
}

@media (max-width: 768px) {
  .input-wrapper {
    flex-direction: column;
  }

  .submit-btn {
    width: 100%;
  }
}

/* Additional optional footer top message styling */
.footer-top-message {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #ffffff;
}

.footer .span {
  display: block;
  margin-top: 4px;
}



@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-left h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}