@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


* {
  box-sizing: border-box;
}



body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  -webkit-font-smoothing: antialiased;
}


/* NAVBAR BASE */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  padding: 15px 0;
  transition: all 0.4s ease;
}

/* CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  height: 40px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}


.nav-links a:hover {
  color: #5eead4; /* ✅ soft modern blue */
}



/* CTA BUTTON */
.btn-nav {
  padding: 10px 20px;
  background: #0d9488;
  transition: all 0.3s ease;
  color: white;
  border-radius: 20px;
  text-decoration: none;
}


.btn-nav:hover {
  transform: translateY(-2px) scale(1.03);

  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.5);

  background: linear-gradient(135deg, #0d9488, #5eead4);
}



/* Hide hamburger by default (desktop) */
.hamburger {
  display: none;
}




/* ===== TOP STYLE (GLASS) ===== */


.navbar {
  background: rgba(10, 35, 45, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar.scrolled {
  background: rgba(10, 35, 45, 0.96);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* TEXT stays white always */
.navbar .nav-links a {
  color: rgba(255,255,255,0.88);
}

.navbar .nav-links a:hover {
  color: #5eead4;
}

.navbar.scrolled .nav-links a {
  color: rgba(255,255,255,0.88);
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* Background Image */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLUE OVERLAY */

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 40, 50, 0.95) 0%,
    rgba(10, 40, 50, 0.85) 40%,
    rgba(10, 40, 50, 0.3) 100%
  );
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 650px;
}

/* BADGE */
.badge {
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 10px;
}

/* HEADING */
.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 15px;
}

/* TEXT */
.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.85);
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 20px;
}

/* PRIMARY BUTTON */
.btn-primary {
  padding: 14px 24px;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}


.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);

  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.5);

  background: linear-gradient(135deg, #0d9488, #14b8a6);
}


/* SECONDARY BUTTON */
.btn-secondary {
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.6);
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}


.btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);

  background: rgba(255, 255, 255, 0.1); /* glass fill */

  border: 1px solid rgba(255,255,255,0.8);

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


/* ABOUT */
.about {
  background: #ffffff;
  padding: 70px 40px;
}

/* LAYOUT */
.about-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
  align-items: center;
  min-height: 400px
}

/* IMAGE */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
}

/* FLOATING BADGE */
.badge-box {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-box h3 {
  font-size: 28px;
  margin: 0;
}

.badge-box p {
  font-size: 12px;
  color: #64748b;
}

/* CONTENT */
.about-content h2 {
  font-size: 34px;
  margin: 10px 0 20px;
  max-width: 480px;

}

.about-content p {
  color: #64748b;
  margin-bottom: 18px;
}

/* FEATURES */
.features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ICON */

.feature .icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f0fdfa;
  border-radius: 12px;

  flex-shrink: 0;
}

/* SVG ICON STYLE */
.feature .icon svg {
  width: 22px;
  height: 22px;

  stroke: #0d9488; /* blue stroke */
  stroke-width: 2;
}


.feature span {
  font-size: 15px;  
  line-height: 1;
  display: flex;
  align-items: center;
}



/* REALITY */


.reality {
  background: #f5f7fb;
  padding: 70px 40px;
}


.reality .title {
  max-width: 750px;
  margin: auto;
  margin-bottom: 30px; /* ✅ tighter spacing */
}


/* GRID */
.reality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: auto;
  margin-top: 25px;
}

/* CARD */
.reality-card {
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

/* ICON */
.reality-card .icon {
  width: 40px;
  height: 40px;
  background: #0f766e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  margin-bottom: 20px;
}

/* TEXT */
.reality-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.reality-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.4;
}

/* HOVER */
.reality-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ✅ CENTER LAST ROW (IMPORTANT) */
.reality-grid .reality-card:nth-child(4) {
  grid-column: 1 / 2;
}

.reality-grid .reality-card:nth-child(5) {
  grid-column: 2 / 3;
}


/* CHALLENGES */


.challenges {
  padding: 50px 20px; /* reduced section height */
}

/* BOX */
.challenges-box {
  max-width: 1050px;
  margin: auto;
  background: #ffffff;
  padding: 30px 25px;  /* reduced inner spacing */
  border-radius: 24px;
}

/* TITLE */
.challenges-box .title {
  text-align: center;
  margin-bottom: 20px; /* tighter spacing */
}

.challenges-box .title h2 {
  margin: 8px 0;
}

/* GRID */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px; /* reduced gap */
}

/* CARD */
.challenge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 12px 16px; /* smaller card height */
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

/* ICON */
.challenge .icon {
  width: 38px;
  height: 38px;
  background: #ccfbf1;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 16px;
}

/* TEXT */
.challenge span {
  font-size: 15px;
  font-weight: 500;
}

/* HOVER */
.challenge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}




/* HOW WE HELP */

.journey {
  background: linear-gradient(135deg, #0f4c5c, #0f766e);
  padding: 70px 20px; /* ✅ reduced height */
}

/* CONTAINER */
.journey-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* LIGHT TEXT */
.title.light h2,
.title.light p {
  color: white;
}

/* SUBTEXT */
.title.light p {
  color: rgba(255,255,255,0.8);
}

/* FLOW */
.journey-flow {
  margin-top: 30px; /* reduced spacing */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* PILLS */
.pill {
  padding: 10px 18px;
  border-radius: 25px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  transition: 0.3s;
}

/* ARROW */
.arrow {
  color: rgba(255,255,255,0.6);
}

/* HOVER EFFECT */
.pill:hover {
  background: rgba(255,255,255,0.2);
}





/* SERVICES */
.services {
  background: #f5f7fb;
  padding: 100px 40px;
}

.title {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.title p {
  color: #64748b;
}

/* BADGE */



.badge-hero {
  display: inline-block;
  padding: 8px 18px;

  font-size: 12px;
  font-weight: 500;

  color: white !important;  /* ✅ force override */

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.25);

  border-radius: 25px;

  backdrop-filter: blur(8px);

  margin-bottom: 6px;
}

.badge {
  display: inline-block;
  background: rgba(13,148,136,0.1);
  color: #0f766e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}


/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.service-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.35s ease;
  border: 1px solid #e5e7eb;
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  background: #ccfbf1;
  color: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

/* TEXT */
.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #64748b;
}



/* 🔥 HOVER (THIS MATCHES LOVABLE) */
.service-card:hover {
  transform: translateY(-8px);
  border-color: #99f6e4;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ICON HOVER EFFECT */
.service-card:hover .icon {
  background: #0f766e;
  color: white;
}


/* PERSONAL BRANDING */

.branding {
  padding: 70px 20px; /* ✅ reduced section height */
  background: #ffffff;
}

/* CONTAINER */
.branding-container {
  max-width: 1050px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px; /* tighter */
  align-items: center;
}

/* IMAGE */
.branding-image img {
  width: 100%;
  border-radius: 25px;
}

/* CONTENT */
.branding-content h2 {
  margin: 10px 0 20px;
}

/* CHECKLIST */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-bottom: 20px;
}

.check-item {
  font-size: 15px;
}

/* MINI GRID */
.branding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* MINI BOX */
.mini-box {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 12px;
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  transition: 0.25s;
}

.mini-box span {
  display: block;
  margin-top: 6px;
}

/* HOVER */
.mini-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}


/* WHY CHOOSE US */

.why {
  background: #f5f7fb;
  padding: 60px 20px; /* ✅ controlled height */
}

/* CONTAINER */
.why-container {
  max-width: 1050px;
  margin: auto;
}

/* TITLE */
.why-container .title {
  text-align: center;
  margin-bottom: 25px;
}

.why-container .title h2 {
  margin: 8px 0;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD */
.why-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: 0.25s;
}

/* ICON */
.why-card .icon {
  width: 42px;
  height: 42px;
  background: #0f766e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
}

/* TEXT */
.why-card span {
  font-size: 15px;
  font-weight: 500;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}




/* PROCESS */

.process {
  background: #ffffff;
  padding: 100px 40px;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.process-card {
  position: relative;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: 0.3s;
}

/* NUMBER (this is the main visual difference) */
.number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(13,148,136,0.15);  /* soft blue fade */
}

/* TEXT */
.process-card h3 {
  margin-bottom: 10px;
}

.process-card p {
  color: #64748b;
}

/* HOVER */
.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* CONTACT */

.contact {
  background: #f5f7fb;
  padding: 100px 40px;
}

/* WRAPPER */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  margin-top: 60px;
}

/* LEFT PANEL */
.contact-left {
  background: linear-gradient(135deg, #0f4c5c, #0d9488);
  color: white;
  padding: 40px;
  border-radius: 25px;
}

.contact-left h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-left p {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

/* WHATSAPP BUTTON */

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: white;
  color: #0f4c5c;

  padding: 12px 22px;
  border-radius: 25px;

  font-size: 15px;
  text-decoration: none;

  transition: all 0.3s ease;
}

/* ICON SIZE */
.whatsapp-btn i {
  font-size: 18px;
  color: #25D366; /* WhatsApp green */
}

/* 🔥 HOVER EFFECT */
.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);

  background: linear-gradient(135deg, #25D366, #1ebe5d);

  color: white;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* ICON ON HOVER */
.whatsapp-btn:hover i {
  color: white;
}



/* RIGHT PANEL */
.contact-form-box {
  background: white;
  padding: 30px;
  border-radius: 25px;
  border: 1px solid #e5e7eb;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUT ROW */
.row {
  display: flex;
  gap: 15px;
}

/* INPUTS */
input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
}

/* TEXTAREA */
textarea {
  height: 120px;
}

/* BUTTON */
button {
  padding: 14px;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: white;
  border-radius: 10px;
  border: none;
}


/* FORM BUTTON */
.form-btn {
  padding: 14px;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: white;
  border-radius: 10px;
  border: none;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ✅ Hover effect (only for this button) */
.form-btn:hover {
  transform: translateY(-3px);  /* smooth upward movement */

  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.35); /* soft glow */
}



/* FOOTER */

.footer {
  background: linear-gradient(135deg, #0f4c5c, #0f766e);
  color: white;
  padding-top: 60px;
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
}

/* COLUMN */
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
}

/* LIST */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}

/* SOCIAL ICONS */
.socials {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.socials span {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

/* BUTTON */
.footer-btn {
  display: inline-block;
  padding: 12px 18px;
  background: white;
  color: #0f4c5c;
  border-radius: 25px;
  margin-top: 15px;
  font-size: 14px;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  max-width: 1100px;
  margin: auto;
}


/* SOCIAL MEDIA ICONS */
.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

/* EACH ICON (circle) */
.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.12); /* soft blue tint */

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 16px;
  text-decoration: none;

  transition: all 0.25s ease;
}

/* ICON INSIDE */
.social-icon i {
  line-height: 1;
}

/* HOVER EFFECT (Lovable feel) */
.social-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}




/* ✅ MOBILE FRIENDLY */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  /* ✅ NAVBAR */
  .btn-nav {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: white;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #062935;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0 20px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 13px 28px;
    font-size: 16px;
    color: white !important;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* ✅ HERO */
  .hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  /* ✅ BUTTONS */
  .buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  /* ✅ ABOUT */
  .about-container {
    grid-template-columns: 1fr;
  }

  .badge-box {
    position: static;
    margin-top: 15px;
  }

  .about-image img {
    max-width: 100%;
  }

  /* ✅ REALITY */
  .reality-grid {
    grid-template-columns: 1fr;
  }

  .reality-card {
    width: 100%;
  }

  /* ✅ CHALLENGES */
  .challenges-grid {
    grid-template-columns: 1fr;
  }

  /* ✅ SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* ✅ PROCESS */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* ✅ WHY */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* ✅ BRANDING */
  .branding-container {
    grid-template-columns: 1fr;
  }

  .branding-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ✅ CONTACT */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  /* ✅ FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .footer-services {
    display: none;
  }

  .footer-get-started {
  display: none;
  }



  /* ✅ Improve text readability */
  .footer-col p {
   font-size: 14px;
   line-height: 1.5;
   }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }


/* ✅ Fix bottom section */
.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}



}



``


/* ===== NAVAJEEVANA HOSPITAL — COLOR OVERRIDES ===== */

/* Accent teal for badge background */
.badge {
  background: rgba(13, 148, 136, 0.1);
  color: #0f766e;
}

/* Primary button */
.btn-nav {
  background: #0d9488;
}

.btn-nav:hover {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.45);
}

/* Process number soft teal */
.number {
  color: rgba(13, 148, 136, 0.15);
}

/* Service card hover icon */
.service-card:hover .icon {
  background: #0d9488;
  color: white;
}

/* Service card hover border */
.service-card:hover {
  border-color: #99f6e4;
}

/* Journey section gradient */
.journey {
  background: linear-gradient(135deg, #0f4c5c, #0f766e);
}

/* Contact left panel */
.contact-left {
  background: linear-gradient(135deg, #0f4c5c, #0d9488);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #0f4c5c, #0f766e);
}

/* Footer button */
.footer-btn {
  color: #0f4c5c;
}

/* WhatsApp button text */
.whatsapp-btn {
  color: #0f4c5c;
}

/* Reality card icon background */
.reality-card .icon {
  background: #0f766e;
}

/* Why card icon background */
.why-card .icon {
  background: #0f766e;
}


/* ===== SERVICES DROPDOWN NAV ===== */

.nav-links li.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 11px;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* The dropdown panel */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border: 1px solid #e5e7eb;
  min-width: 260px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transform: translateX(-50%) translateY(8px);
  z-index: 1000;
}

/* Arrow pointer on top of dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: white;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  rotate: 45deg;
}

/* Show on hover */
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 14.5px;
  color: #1a3a4a !important;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #f0fdfa;
  color: #0f766e !important;
}

/* Active page highlight */
.dropdown-menu li a.active {
  background: #f0fdfa;
  color: #0f766e !important;
  font-weight: 600;
}

.drop-icon {
  font-size: 16px;
  width: 28px;
  height: 28px;
  background: #f0fdfa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Divider between items */
.dropdown-menu li:not(:last-child) a {
  border-bottom: 1px solid #f1f5f9;
}

/* ---- MOBILE dropdown (accordion style) ---- */

/* ============================================================
   MOBILE STYLES — Everything below is for screens ≤ 768px
   Edit this section to change how the site looks on phones
   ============================================================ */

@media (max-width: 768px) {

  /* ---- GENERAL ---- */
  html, body {
    overflow-x: hidden;
  }

  /* ---- NAVBAR ---- */
  .nav-container {
    padding: 0 20px;
  }

  /* Hide desktop "Book Appointment" button */
  .btn-nav {
    display: none !important;
  }

  /* ---- HAMBURGER BUTTON ---- */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
    padding: 6px;
  }

  .hamburger span {
    display: block !important;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Hamburger turns into X when menu is open */
  .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* ---- MOBILE NAV MENU ---- */
  /* Hidden by default */
  .nav-links {
    display: none !important;
    position: fixed !important;
    top: 68px;
    left: 0;
    right: 0;
    width: 100%;
    background: #0a2832;
    flex-direction: column !important;
    align-items: flex-start;
    padding: 8px 0 24px;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    margin: 0;
    list-style: none;
  }

  /* Shown when hamburger is clicked (JS adds .active class) */
  .nav-links.active {
    display: flex !important;
  }

  /* Each nav item full width */
  .nav-links > li {
    width: 100%;
    padding: 0;
  }

  /* Each nav link text */
  .nav-links > li > a {
    display: block !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
    color: white !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    box-sizing: border-box;
  }

  /* ---- SERVICES DROPDOWN ON MOBILE ---- */

  /* Reset all desktop dropdown positioning */
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    background: rgba(255,255,255,0.08) !important;
    min-width: unset !important;
    padding: 0 !important;
    /* Hidden using max-height so JS toggle works reliably */
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    display: block !important;
  }

  .dropdown-menu::before {
    display: none !important;
  }

  /* Show when JS adds mobile-open to parent li */
  .has-dropdown.mobile-open > .dropdown-menu {
    max-height: 300px !important;
  }

  /* Arrow rotates when open */
  .has-dropdown.mobile-open .dropdown-arrow {
    transform: rotate(180deg);
    display: inline-block;
  }

  /* Dropdown sub-links styling */
  .dropdown-menu li a {
    display: block !important;
    padding: 13px 24px 13px 44px !important;
    font-size: 15px !important;
    color: rgba(255,255,255,0.80) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    background: transparent !important;
  }

  .dropdown-menu li a:hover,
  .dropdown-menu li a:active {
    color: #5eead4 !important;
    background: rgba(255,255,255,0.05) !important;
  }

  .drop-icon {
    display: none !important;
  }

  /* ---- HERO ---- */
  .hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }

  /* ---- ABOUT ---- */
  .about-container {
    grid-template-columns: 1fr;
  }

  .badge-box {
    position: static;
    margin-top: 15px;
  }

  /* ---- REALITY ---- */
  .reality-grid {
    grid-template-columns: 1fr;
  }

  /* ---- CHALLENGES ---- */
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---- SERVICES ---- */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* ---- BRANDING ---- */
  .branding-container {
    grid-template-columns: 1fr;
  }

  .branding-image {
    display: none;
  }

  /* ---- WHY ---- */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---- PROCESS ---- */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* ---- CONTACT ---- */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-left {
    border-radius: 16px;
  }

  .row {
    grid-template-columns: 1fr;
  }

  /* ---- FOOTER ---- */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ---- JOURNEY FLOW ---- */
  .journey-flow {
    flex-direction: column;
    align-items: center;
  }

  .arrow {
    transform: rotate(90deg);
  }

}

/* ============================================================
   END OF MOBILE STYLES
   ============================================================ */


/* ============================================================
   COMPREHENSIVE MOBILE FIXES
   ============================================================ */
@media (max-width: 768px) {

  /* ---- PREVENT HORIZONTAL SCROLL & GAPS ---- */
  html {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
  }

  /* Every section full width, no side gaps */
  section,
  .hero,
  .about,
  .reality,
  .challenges,
  .services,
  .branding,
  .why,
  .process,
  .contact,
  footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ---- HERO: remove left offset causing side gap ---- */
  .hero {
    padding: 0 !important;
  }

  .hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .hero-content {
    left: 0 !important;
    right: 0 !important;
    padding: 0 20px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ---- HEADLINES ---- */
  h1 { font-size: 26px !important; line-height: 1.3 !important; }
  h2 { font-size: 22px !important; line-height: 1.35 !important; }
  h3 { font-size: 16px !important; line-height: 1.4 !important; }
  p  { font-size: 14px !important; line-height: 1.6 !important; }

  .hero-content h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
  }

  .title h2 {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }

  .title p {
    font-size: 14px !important;
  }

  /* ---- BADGE HERO ---- */
  .badge-hero {
    font-size: 9px !important;
    letter-spacing: 0.8px !important;
    white-space: normal !important;
    max-width: 80% !important;
    line-height: 1.5 !important;
    padding: 6px 12px !important;
  }

  /* ---- WHY GRID — fix card cutoff ---- */
  .why-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .why-card {
    min-width: 0 !important;
    word-break: break-word !important;
    padding: 14px 10px !important;
    font-size: 13px !important;
  }

  .why-card span {
    font-size: 13px !important;
  }

  /* ---- CHALLENGES GRID — fix card cutoff ---- */
  .challenges-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .challenge {
    min-width: 0 !important;
    word-break: break-word !important;
    padding: 14px 10px !important;
  }

  .challenge span {
    font-size: 13px !important;
  }

  /* ---- REALITY GRID ---- */
  .reality-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ---- NAV CONTAINER ---- */
  .nav-container {
    padding: 0 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ---- CONTACT FORM ---- */
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .row {
    grid-template-columns: 1fr !important;
  }

  /* ---- FOOTER ---- */
  .footer-container {
    padding: 0 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 6px !important;
    text-align: center !important;
    font-size: 12px !important;
  }

}
