/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: "Poppins", sans-serif;
  color: #0b1b1b;
  background-color: #ffffff;
  line-height: 1.6;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #113838;
  font-size: 18px;
}

.nav-links a:hover {
  color: #006d5b;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  width: 28px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #113838;
  border-radius: 5px;
}

/* ---------------- HERO SECTION ---------------- */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  padding-left: 100px;
  overflow: hidden;
}

/* Video stays clickable */
.hero-video {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: auto;
}

/* Dark overlay — no click blocking */
.hero::after {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 0;
}

/* Background box behind text — no click blocking */
.pati {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  border-radius: 10px;
  pointer-events: none;
}

/* TEXT MUST BE CLICKABLE */
.hero-content {
  position: relative;
  max-width: 700px;
  color: white;
  pointer-events: auto;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.btn {
  background-color: #005c4b;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

/* ---------------- INTRO SECTION ---------------- */
.intro-section {
  padding: 70px 30px;
  display: flex;
  justify-content: center;
}

.container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
}

/* Left text */
.text-content {
  flex: 1.2;
  text-align: left;
}

.text-content h1 {
  font-size: 2.1rem;
  color: #004d4d;
}

.text-content span {
  font-weight: 700;
}

.divider {
  width: 60px;
  height: 3px;
  background-color: #004d4d;
  margin: 15px 0 25px 0;
  border: none;
}

/* Center button */
.btn-center {
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.connect-btn {
  background-color: #004d4d;
  color: white;
  padding: 14px 45px;
  border-radius: 6px;
  font-size: 17px;
  text-decoration: none;
  font-weight: 600;
}

/* Right image */
.image-content {
  display: flex;
  align-items: flex-start;
}

.image-content img {
  margin-top: -60px;
  max-width: 430px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    text-align: left;
  }

  .image-content img {
    margin-top: -20px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-center {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  .nav-links.active {
    max-height: 350px;
    padding: 20px 0;
  }

  .hero {
    padding: 40px 20px;
    text-align: center;
    height: auto;
    justify-content: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .image-content img {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .connect-btn {
    padding: 12px 34px;
  }
}
/* ===== Life Coaching Services Section Styling ===== */

.services-section {
    padding: 40px 20px;
    background: #f5f5f5;
}

.services-section h1 {
    text-align: center;
    font-size: 32px;
    color: #003B3A;
}

.underline {
    width: 60px;
    height: 3px;
    background: #003B3A;
    margin: 10px auto 30px;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.service-card {
    background: white;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.image-placeholder {
    width: 100%;
    height: 180px;
    background: #d9d9d9;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #555;
}

.service-card h2 {
    font-size: 20px;
    color: #003B3A;
}

.service-card p {
    font-size: 14px;
    color: #444;
    margin: 10px 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background: #003B3A;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.btn:hover {
    background: #025a57;
}

/* Responsive */
@media (max-width: 600px) {
    .service-card {
        width: 100%;
    }
}
/* ABOUT SECTION */
.about-section {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
    background: #f4fbfd;
    color: #163b3f;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.underline {
    width: 60px;
    height: 3px;
    background: #1f6164;
    margin: 10px auto 40px;
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Image box */
.image-wrapper {
    width: 330px;
    height: 420px;
    overflow: hidden;
    border-radius: 10px;
    background: #dfeeed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.about-content {
    max-width: 500px;
    text-align: left;
    line-height: 1.6;
    color: #123436;
}

.about-content ul {
    padding-left: 20px;
}

.about-content li {
    margin: 6px 0;
}

/* Button */
.cta-btn {
    display: inline-block;
    margin-top: 25px;
    background: #023c40;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #03575b;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-content ul {
        text-align: left;
        max-width: 300px;
        margin: auto;
    }
}

@media (max-width: 500px) {
    .image-wrapper {
        width: 90%;
        height: auto;
    }

    .image-wrapper img {
        height: aut
    }
/* ========== Reviews Section ========== */

.reviews-section {
    padding: 50px 20px;
    background: #fafafa;
    text-align: center;
}

.reviews-title {
    font-size: 32px;
    font-weight: 700;
    color: #083b49;
    margin-bottom: 10px;
}

.underline {
    width: 70px;
    height: 3px;
    background: #083b49;
    margin: 0 auto 40px;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: auto;
}

.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.stars {
    color: #f1b433;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.review-img {
    margin-top: 20px;
}

.review-img img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    margin: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }

    .reviews-title {
        font-size: 26px;
    }

    .review-card {
        padding: 20px;
    }

    .review-img img {
        width: 110px;
        height: 110px;
    }
}
 
 }
 /* Global */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root{
  --bg: #f6f3f3;
  --muted: #6b6b6b;
  --accent: #1b9aa2;
  --dark: #111;
  --max-width: 1200px;
  --pad-desktop: 64px;
}

/* Footer base */
.site-footer {
  background: var(--bg);
  color: var(--dark);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Main container layout */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 40px var(--pad-desktop);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Columns */
.footer-col { min-width: 0; }
.footer-col-left { display:flex; align-items:center; }
.footer-col-middle { display:flex; justify-content:center; }
.footer-col-midright { display:flex; flex-direction:column; align-items:center; gap:12px; }
.footer-col-right { display:flex; flex-direction:column; align-items:flex-end; gap:8px; }

/* Logo - responsive and keeps aspect ratio */
#logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.06));
  transition: transform 220ms ease, filter 220ms ease;
  cursor: default;
}
#logo:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.08));
}

/* Links & text */
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
}
.footer-link.small { font-size: 14px; color: var(--muted); }
.footer-link:hover { color: var(--accent); transform: translateX(4px); transition: .18s ease; }

/* Email */
.contact-email { font-weight:600; margin-bottom:6px; color:var(--dark); }

/* Social icons row */
.social-row { display:flex; gap:12px; align-items:center; }
.social-link {
  display:inline-grid;
  place-items:center;
  width:44px; height:44px;
  border-radius:50%;
  background:rgba(0,0,0,0.03);
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
  text-decoration:none;
  overflow:hidden;
}
.social-link:focus { outline: 3px solid rgba(27,154,162,0.15); outline-offset:3px; }
.social-link:hover { transform: translateY(-6px) scale(1.06); box-shadow: 0 8px 20px rgba(0,0,0,0.08); background: #fff; }

/* Social img inside circle */
.social-img{
  width:40px; height: 40px; object-fit:contain; display:block;
  opacity: .98;
  transition: transform .18s;
}

/* Bottom credit bar */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:12px var(--pad-desktop);
  font-size:14px;
  color:var(--muted);
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-bottom a{ color: var(--accent); text-decoration:none; font-weight:600 }

/* Responsive rules */
@media (max-width: 992px){
  .footer-inner { padding: 36px 32px; grid-template-columns: 1fr 1fr; }
  .footer-col-left { order:1; justify-content:flex-start; }
  .footer-col-middle { order:3; justify-content:flex-start; align-items:flex-start; }
  .footer-col-midright { order:2; align-items:flex-start; }
  .footer-col-right { order:4; align-items:flex-start; }
  .footer-bottom { padding:12px 32px; flex-direction:column; align-items:center; gap:8px; text-align:center; }
}

@media (max-width: 520px){
  .footer-inner { padding: 28px 20px; grid-template-columns: 1fr; gap:18px; }
  .footer-col-middle, .footer-col-right, .footer-col-midright { align-items:flex-start; }
  #logo { max-width: 180px; }
  .social-link { width:40px; height:40px; }
  .social-img{ width:20px; height:20px; }
  .footer-links { gap:8px; }
  .footer-bottom { padding:10px 20px; }
}

/* Accessibility small focus style */
a.footer-link:focus, .social-link:focus { box-shadow: 0 6px 18px rgba(27,154,162,0.08); transform: translateY(-4px); }







/* Video Container */
.video-container {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    padding: 15px;
    border-radius: 10px;
}

/* Responsive Video */
.video {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Button Styling */
.controls {
    margin-top: 10px;
    text-align: center;
}

.controls button {
    padding: 10px 25px;
    background: #008cff;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}

.controls button:hover {
    background: #0070d4;
}
.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}