/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #0B1220, #0B2B38); /* Gradient background */
}

/* Hero Section Layout */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
  min-height: 100vh;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left Content */
.hero-content {
  flex: 1 1 55%;
}

.tagline {
  display: inline-block;
  background-color: #0F2635;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  color:#0D8E84;
  margin-bottom: 10px;
  line-height: 1.4;
  width: fit-content;

 
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Georgia", serif;
  line-height: 1.2em;
}

.subheading {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #0d8e84;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0d8e84;
}

/* Custom Bubble Hover Button */
.btn-secondary {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.6); /* Light white border */
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-width: 1px;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1); /* subtle hover effect */
  border-color: #ffffff;
}


.pretest-link {
  margin-top: 10px;
  display: inline-block;
  color: #90e0ef;
  text-decoration: underline;
  font-size: 0.95rem;
}

/* Right Image */
.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.hero-image figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content, .hero-image {
    flex: 1 1 100%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .subheading {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-width: 100%;
  }
}
