@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&display=swap');
@import url('https://unpkg.com/aos@next/dist/aos.css');

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

body {
  font-family: 'Raleway', sans-serif;
  background-color: #fff;
  color: #0d2d44;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid #d9d9d9;
  background-color: #fff;
}

.navbar .logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 20px; /* space between image and text */
}

.logo-text {
  font-size: 2rem; /* adjust as desired */
  font-weight: 800;
  color: #0d2d44;
  white-space: nowrap;
}

.about-hero-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 i {
  color: #1e4e79;
  margin-right: 10px;
}

.about-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}


.service-card {
  background: #fefefe;
  border: 1px solid #d9d9d9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-card h3 {
  color: #0d2d44;
  margin-bottom: 10px;
}



.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar a {
  font-weight: 500;
  color: #0d2d44;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a[aria-current='page'] {
  color: #1e4e79;
}

.hero {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #e8eff5 0%, #fefefe 100%);
  padding: 0 20px;
  box-shadow: inset 0 0 150px #d2dde9;
}

.hero h1 {
  font-size: 2.7rem;
  max-width: 800px;
  margin-bottom: 30px;
  font-weight: 600;
}

.hero-subtext {
  font-size: 1.2rem;
  color: #4a6d8c;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.waitlist-form input {
  padding: 12px 16px;
  border: 1.5px solid #0d2d44;
  border-radius: 4px;
  font-size: 1rem;
  width: 250px;
  max-width: 100%;
}

.waitlist-form input:focus {
  outline: 2px solid #1e4e79;
  outline-offset: 2px;
  border-color: #1e4e79;
}

.waitlist-form button {
  background-color: #0d2d44;
  color: #fff;
  padding: 12px 20px;
  border:#4a6d8c;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.waitlist-form button:hover,
.waitlist-form button:focus {
  background-color: #1e4e79;
  transform: scale(1.1);
  outline: none;
  color:#1e4e79;
}

.scroll-down {
  margin-top: 40px;
  font-size: 2rem;
  color: #0d2d44;
  cursor: pointer;
  animation: bounce 2.5s infinite;
  display: inline-block;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.page-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-section[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.page-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0d2d44;
  text-align: center;
  font-weight: 600;
}

.page-section p {
  font-size: 1.15rem;
  color: #4a6d8c;
  text-align: center;
  margin-bottom: 15px;
}

footer {
  text-align: center;
  padding: 30px;
  background: #f9f9f9;
  color: #999;
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
}
