/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f9fc;
  color: #133c55;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Header and Logo */
header {
  background-color: #133c55;
  color: white;
  padding: 15px 10px;
  text-align: center;
}

.logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-title img {
  height: 60px;
  max-width: 100%;
}

.logo-title h1 {
  font-size: 1.6rem;
  margin-top: 10px;
}

/* Nav Menu (no hamburger, always visible) */
nav {
  background-color: #386fa4;
  padding: 10px 0;
}

#nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

#nav-links li {
  margin: 5px 10px;
}

#nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 4px;
}

#nav-links a:hover {
  background-color: #2d5e90;
}

/* Slider */
.slider-container {
  margin: 0.5cm auto;
  height: 70vh;
  overflow: hidden;
  border-radius: 10px;
}

.slider {
  display: none;
  width: 100%;
  height: 100%;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Ensures the image fills the container without being distorted */
  border-radius: 10px;
}

/* Steps Section */
.steps-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.steps-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.highlight {
  color: #e2b007;
  font-weight: bold;
}

.subtitle {
  margin-bottom: 30px;
  color: #555;
  font-size: 1.1rem;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.step h3 {
  margin-bottom: 10px;
  color: #133c55;
}

.step p {
  font-size: 1rem;
  color: #333;
}

.step a {
  color: #59a5d8;
  text-decoration: underline;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  background-color: #133c55;
  color: white;
  padding: 20px 0px;
  text-align: center;
}

footer i {
    font-size: 1.5rem
  margin: 0 15px;
  font-size: 1.4rem;
}

footer a {
  color: white;
  
  margin: 0 10px;
  font-size: 20px;
  text-decoration: none;
}

footer i:hover {
  color: #91e5f6;
  font-size: 1.5rem;
   margin: 0 15px;
}

/* Responsive Fixes */
@media screen and (max-width: 768px) {
  .logo-title h1 {
    font-size: 1.3rem;
  }

  .slider-container {
    width: 100%;
    height: 40vh; /* Adjust height on mobile for better presentation */
  }

  #nav-links a {
    font-size: 0.9rem;
    padding: 4px 6px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
    bottom: 15px;
    right: 15px;
  }

  footer {
    padding: 15px 10px;
  }
}









/* Life Coaching Page */








.life-coaching {
  padding: 40px 20px;
  background-color: #f4f9fc;
  display: flex;
  justify-content: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; /* Optional: helps stack vertically */
  text-align: center;
  
}

.coaching-container {
  max-width: 900px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
  margin: 0 auto;
}

.coaching-container h2 {
  color: #133c55;
  font-size: 2rem;
  margin-bottom: 20px;
}

.coaching-container p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

.coaching-container ul {
  text-align: left;
  margin: 15px 0;
  padding-left: 20px;
  color: #333;
}

.coaching-container ul li {
  margin-bottom: 10px;
  list-style: disc;
}

.coaching-img {
  max-width: 250px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0 auto 25px auto;
  display: block;
}

.btn-link {
  display: inline-block;
  background-color: #386fa4;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: bold;
}

.btn-link:hover {
  background-color: #2d5e90;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .coaching-container {
    padding: 20px;
  }

  .coaching-container h2 {
    font-size: 1.6rem;
  }

  .coaching-container p, .coaching-container ul {
    font-size: 1rem;
  }
}
