body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: white;
}
.menu {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.find-location-btn {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.why-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

.why-text h2 span {
  font-weight: 700;
}

.why-text p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: white;
  position: relative;
  z-index: 1;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.menu {
  display: flex;
  gap: 30px;
  font-weight: bold;
  color: #607d99;
}

.menu a {
  text-decoration: none;
  color: #607d99;
  font-size: 16px;
}

.find-location-btn {
  background-color: #00b59c;
  color: white;
  padding: 14px 24px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.blue-wave {
  background: linear-gradient(to right, #063a75, #0a67c7);
  height: 60px;
  border-top: 4px solid #33c4f3;
}
.why-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}

.why-section img.left-ninja {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 200px;
  height: auto;
}

.why-section img.right-ninja {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 200px;
  height: auto;
}

.why-text {
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}

.why-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 900;
}

.why-text h2 span {
  color: #0071ce;
}

.why-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #2d3e50;
}

@media (max-width: 768px) {
  .why-section img.left-ninja,
  .why-section img.right-ninja {
    display: none;
  }

  .why-text h2 {
    font-size: 28px;
  }

  .why-text p {
    font-size: 16px;
  }
}

.video-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f7f6 0%, #eae3fc 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}

.video-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #2d3e50;
  margin-bottom: 40px;
  line-height: 1.4;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-image {
  width: 100%;
  display: block;
  border-radius: 20px;
}
.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 60px 20px;
  background: linear-gradient(90deg, #effcf9 0%, #edf4fe 100%);
  flex-wrap: wrap;
}

.featured-logos img {
  height: 40px;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.featured-logos img:hover {
  opacity: 1;
}





















* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  height: 100%;
  width: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Background Layer - full screen */
.background-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('background.jpg') no-repeat center center/cover;
  filter: blur(6px) brightness(0.6);
  z-index: 1;
}

/* Blue Blob - absolutely positioned, centered on left */
.blob {
  position: absolute;
  top: 25%;
  left: 8%;
  width: 520px;
  max-width: 90vw;
  z-index: 2;
  opacity: 0.9;
}

/* Content Wrapper - above blob and background */
.content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
}

/* Foreground image */
.foreground-image {
  flex: 1 1 420px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background: white;
}

.foreground-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Text content */
.text-content {
  flex: 1 1 480px;
  color: white;
}

.age {
  text-transform: uppercase;
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.highlight {
  color: #7ed6df;
}

.desc {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.cta-button {
  background-color: #00d084;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
  }
  .foreground-image, .text-content {
    flex: 1 1 100%;
  }
  .blob {
    width: 300px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
  }
  h1 {
    font-size: 2rem;
  }
}
.purple {
  color: #83059f;
}

.blue {
  color: #1aa8cc;
}