.navbar {
  background-color: #344175;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu li a:hover {
  color: #f9c74f;
}

/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

a {
  color: #007BFF;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  max-height: 60px;
  width: auto;
  z-index: 10;
}

.hero-logo-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.8); /* semi-transparent white */
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.hero-logo-overlay img {
  max-height: 50px;
  width: auto;
  display: block;
}


/* HERO SECTIONS */
.hero, .hero-associate, .hero-signature, .hero-principal {
  background: #344175 center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero {
  background-image: url('../images/main.jpg');
}

.hero-associate {
  background-image: url('../images/ahero.jpg');
}

.hero-signature {
  background-image: url('../images/shero.jpg');
}

.hero-principal {
  background-image: url('../images/phero.jpg');
}

.overlay {
  background-color: rgba(0,0,0,0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 20px; /* adds space between elements */
}

.overlay h1 {
  font-size: 2.5rem;
  color: #fff;
}

.overlay p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
}

.overlay .btn {
  margin-top: 10px;
}


.overlay .pay-img {
  margin-top: 20px;
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* BUTTONS */
.btn {
  background: #007BFF;
  color: #fff;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  transition: background 0.3s ease;
  margin: 10px 0;
}

.btn:hover {
  background: #0056b3;
}

.btn.whatsapp {
  background: #2D8452;
}

.btn.email {
  background: #344175;
}

/* TEXT SECTIONS */
section {
  padding: 30px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  color: #344175;
  margin-bottom: 20px;
  text-align: center;
}

section p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  text-align: center;
}

.benefits ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.benefits ul li {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* CARD LAYOUT */
.model-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.card {
  background: #f1f1f1;
  padding: 30px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.card-icon {
  width: 150px;
  margin: 0 auto 15px;
}

.btn.whatsapp {
  background: #2D8452;
  color: #fff;
}

.btn.whatsapp:hover {
  background: #1ebc5c;
}

/* CTA SECTION */
.cta {
  background: #344175;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
  border-radius: 10px;
}

.cta .btn {
  background: #2D8452;
  margin-top: 20px;
}

.cta h2 {
  color: #fff;;
}

a {
  color: #344175;
  text-decoration: none;
}

a:hover {
  color: #222a5e; /* optional darker shade */
  text-decoration: none; /* removes underline */
}

/* FOOTER */
footer {
  background: #222;
  color: #aaa;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .card {
    width: 100%;
  }

  .overlay {
    padding: 20px;
  }

  .overlay h1 {
    font-size: 2rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  section h2 {
    font-size: 1.4rem;
  }

  section p, .benefits ul li {
    font-size: 0.95rem;
  }

.who-can-join {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}

.who-can-join p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left !important; /* ✅ Force override if inherited from global styles */
}

.who-item {
  background: #344175;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.4;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  text-align: left !important; /* ✅ Also force it at the item level */
}


.who-item:hover {
  transform: translateY(-4px);
}


  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .benefits ul, .who-can-join ul {
    padding-left: 10px;
  }

  .hero-associate {
    height: auto;
    padding: 80px 20px;
  }

  .cta {
    padding: 40px 20px;
    color: white;
    max-width: 90%;
  }
}


@media (max-width: 480px) {
  .overlay h1 {
    font-size: 1.7rem;
  }

  .overlay p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  section {
    padding: 40px 15px;
  }
}
.back-link {
  padding: 20px;
  text-align: center;
  background: #f5f5f5;
}

.back-link a {
  color: #344175;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

.back-link a:hover {
  color: #222a5e;
}
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f8f9fc;
}

.benefit-block {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  max-width: 100%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.benefit-block:hover {
  transform: translateY(-5px);
}

.benefit-block .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #344175;
}
.day-life-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  background-color: #f8f9fc;
}

.day-text {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: center; /* Center all text and buttons */

}

.day-text h2 {
  color: #344175;
  margin-bottom: 20px;
}

.day-text blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-text {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;

}

.call-btn {
  background-color: #2D8452;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.day-image {
  flex: 1 1 300px;
  max-width: 400px;
}

.day-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.benefits {
  background-color: #f8f9fc;
  padding: 20px 20px;
}

.benefits h2 {
  text-align: center;
  font-size: 2rem;
  color: #344175;
  margin-bottom: 40px;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-item {
  background: #344175;
  border: none;
  border-radius: 10px;
  padding: 25px;
  width: 260px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: #fff;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.benefit-item h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}
