* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #1d1d1d;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.navbar__container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #009c9c;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.25s ease;
}


.navbar__links::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #05bdb7;
  transition: width 0.25s ease;
}

.navbar__links:hover {
  color: #00c5db;
}

.navbar__links:hover::after {
  width: 100%;
}


.navbar__links.button {
  background: #009c9c;
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
}

/* HERO */
.hero {
  position: relative;        
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  animation: fadeIn 1.2s ease-in;
}

/* HERO IMAGE */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;               
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(87, 87, 87, 0.55);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  color: #fff;
}


.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 2rem;
}

.hero-question {
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #0d6efd;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
}


/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #009c9c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
    transition: 
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}


.button:hover,
.cta-btn:hover {
  background: #006a6a; /* darker blue */
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* SECTIONS */
.section {
  padding: 90px 5%;
}

.section.alt {
  background: #f7fafa;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #009c9c;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.section-img {
  width: 100%;
  max-width: 520px;        /* LIMIT visual dominance */
  height: auto;
  max-height: 360px;       /* KEY: controls size */
  object-fit: cover;
  border-radius: 12px;
  justify-self: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.highlight {
  margin-top: 20px;
  font-weight: 600;
  color: #007777;
}

/* GRIDS */
.mv-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.mv-card,
.feature-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-card i {
  font-size: 2rem;
  color: #009c9c;
  margin-bottom: 12px;
}

.partner-form {
  max-width: 700px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.partner-form .form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.partner-form input,
.partner-form textarea {
  flex: 1;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.partner-form input:focus,
.partner-form textarea:focus {
  border-color: #009c9c;
}

.partner-form button.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #009c9c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  outline: none;       /* removes the default black outline */
  border: none; 
  font-weight: 600;
    transition: 
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.form-message {
  margin-top: 10px;
  font-weight: 500;
  color: #009c9c;
}


.footer {
  background: #009c9c;
  color: #fff;
  padding: 50px 5%;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.footer-logo p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-contact p {
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.footer-contact a:hover {
  opacity: 0.9;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.25s ease;
}

.social-icons a:hover {
  color: #f0f0f0;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* RESPONSIVE */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 1024px) {
  .section-img {
    max-width: 480px;
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .section-img {
    max-width: 100%;
    max-height: 260px;
  }
}

@media (max-width: 900px) {
  .navbar__menu {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    display: none;
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}