/* ================= ROOT COLORS ================= */
:root {
  --gradient-main: linear-gradient(90deg, #f6d365 0%, #fda085 50%, #f7797d 100%);
  --primary: #f7797d;
  --secondary: #fda085;
  --accent: #f6d365;
  --black-soft: #0a0a0a;
  --input-bg: #111;
  --text-light: #aaa;
  --text-muted: #888;
  --white: #fff;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
}

/* body — merged (was split in 2 places) */
body {
  background: #f5f5f5;
  color: #111;
  padding-top: 80px;
}

/* ================= LAYOUT ================= */
.layout-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

/* ================= HEADER ================= */
.header {
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 600;
}

/* NAV */
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

/* LINKS */
.nav a {
  text-decoration: none;
  color: rgb(15, 15, 15);
  font-size: 14px;
  transition: 0.3s;
}

.nav a:hover {
  color: #E67872;
}

/* ACTIVE */
.nav .active {
  padding: 7px 16px;
  border-radius: 20px;
}

/* CONTACT BUTTON */
.contact-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: #E67872;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.contact-btn:hover {
  opacity: 0.9;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  background: none;
  border: none;
  color: #111;
  line-height: 1;
  padding: 4px 8px;
  z-index: 1001;
}

/* ================= HEADER TABLET ================= */
@media (max-width: 992px) {

  body {
    padding-top: 70px;
  }

  .header {
    padding: 12px 5%;
    flex-wrap: nowrap;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px;
    gap: 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.08);
    z-index: 998;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }

  .contact-btn {
    display: none;
  }
}

/* ================= HEADER MOBILE ================= */
@media (max-width: 576px) {

  body {
    padding-top: 65px;
  }

  .logo {
    font-size: 18px;
  }

  .header {
    padding: 10px 4%;
  }

  .nav {
    top: 65px;
    width: 100%;
    right: -100%;
    padding: 20px 16px;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 15px;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav .active {
    padding: 8px 16px;
    border-bottom: none;
  }
}

/* ================= HERO TITLE ================= */
.hero-title {
  text-align: center;
  padding: 100px 20px;
}

.hero-title h1 {
  font-size: 42px;
  letter-spacing: 8px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-title p {
  margin-top: 20px;
  letter-spacing: 4px;
  color: #bbb;
}

@media (max-width: 768px) {
  .hero-title h1 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  .hero-title p {
    font-size: 12px;
  }
}

/* ================= FOOTER ================= */
.footer {
  width: 100%;
  padding: 0;
  margin-top: auto;
}

.footer-container {
  width: 100%;
  background: #FEFDF8;
  border-radius: 40px;
  padding: 60px 5% 30px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  box-shadow: 0 10px 40px rgba(247, 121, 125, 0.15);
}

.footer-col h3 {
  color: #111;
  margin-bottom: 15px;
}

.footer-col p {
  color: #666;
  font-size: 14px;
}

/* INPUT */
.newsletter input {
  width: 100%;
  padding: 16px 20px;
  border-radius: 30px;
  border: none;
  background: #fff;
  color: #333;
  margin-top: 15px;
  outline: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* BUTTON (same logo gradient) */
/*.subscribe-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  border-radius: 30px;
  background: linear-gradient(90deg, #f6d365, #fda085, #f7797d);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(247,121,125,0.4);
}

.checkbox {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}*/

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li:hover {
  color: #f7797d;
  cursor: pointer;
}

.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 30px;
  color: #888;
  font-size: 13px;
}

/* FOOTER RESPONSIVE */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    border-radius: 20px;
  }
}

/* ================= CONTACT PAGE ================= */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-banner {
  background: #E67872;
  padding: 70px 0;
  text-align: center;
}

.contact-banner h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
}

.contact-section {
  padding: 60px 0;
}

.contact-flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

.contact-form-box {
  width: 48%;
}

.contact-form-box h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-form-box p {
  margin-bottom: 20px;
  color: #666;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 13px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.contact-form-box textarea {
  height: 110px;
}

.submit-btn {
  background: #E67872;
  color: #000;
  padding: 14px;
  border: none;
  width: 100%;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

/*.submit-btn:hover {
    background: #e0a800;
}*/

.contact-info {
  width: 48%;
}

.location-box {
  margin-bottom: 35px;
}

.location-box h4 {
  margin-bottom: 5px;
}

.location-box iframe {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  margin-top: 10px;
  border: none;
}

.success-msg {
  background: #d4edda;
  padding: 12px;
  margin-bottom: 15px;
  color: #155724;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }

  .contact-form-box,
  .contact-info {
    width: 100%;
  }

  .contact-banner h1 {
    font-size: 30px;
  }

  .contact-section {
    padding: 40px 0;
  }
}

/* ================= SOCIAL ICONS ================= */
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  padding: 6px 0;
}

.social-icons::-webkit-scrollbar {
  display: none;
}

.social-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666;
  font-size: 20px;
  border: 1px solid #ddd;
  background: transparent;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #E67872;
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 18px rgba(230, 120, 114, 0.4);
}

.social-icon i {
  transition: 0.3s;
}

.social-icon:hover i {
  transform: scale(1.2);
}

/* ================= PACKAGES ================= */
.packages-section {
  padding: 60px 0;
}

.packages-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 15px;
}

.package-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;              /* 🔥 FIX */
  flex-direction: column;     /* 🔥 FIX */
  height: 100%;               /* 🔥 FIX */
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-img {
  position: relative;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.package-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f6d365, #fda085, #f7797d);
  opacity: 0.9;
}

.package-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.package-body {
  padding: 20px;
  display: flex;              /* 🔥 FIX */
  flex-direction: column;     /* 🔥 FIX */
  flex: 1;                    /* 🔥 FIX */
}

.package-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.package-top h3 {
  font-size: 22px;
  font-weight: 600;
}

.package-top span {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.package-top span i {
  color: #E67872;
}

.package-desc {
  flex: 1;
}

.package-desc h4 {
  font-size: 16px;
  margin-top: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.package-desc p {
  font-size: 14px;
  margin-top: 8px;
  color: #666;
  line-height: 1.5;
}

.package-list {
  margin-top: 10px;
  padding-left: 18px;
}

.package-list li {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  line-height: 1.5;
}

.package-list li::marker {
  color: #E67872; /* 🔥 nice touch */
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px; /* 🔥 FIX */
}

.price {
  font-size: 16px;
  font-weight: 600;
}

.btns {
  display: flex;
  gap: 10px;
}

.learn-btn {
  background: transparent;
  color: #E67872;
  border: 1px solid #E67872;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
}

.learn-btn:hover {
  background: #E67872;
  color: #fff;
}

.book-btn {
  background: #E67872;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
}

.book-btn:hover {
  background: #d45a55;
}

.no-data {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  font-size: 18px;
  color: #888;
}

@media (max-width: 992px) {
  .packages-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .package-img {
    height: 150px;
  }

  .package-top h3 {
    font-size: 14px;
  }

  .price {
    font-size: 14px;
  }

  .learn-btn,
  .book-btn {
    padding: 5px 10px;
    font-size: 11px;
  }
}

/* ================= FAQ SECTION ================= */
.faq-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.faq-container-box {
  max-width: 1100px;
  margin: auto;
  padding: 25px;
  background: transparent;
  border-radius: 16px;
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.faq-container {
  width: 100%;
}

.faq-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #222;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 20px;
  font-weight: 600;
  color: #E67872;
  transition: 0.3s;
  width: 20px;
  text-align: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 10px 20px 20px;
}

/* + → × ROTATE */
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
  .faq-container-box {
    padding: 15px;
    border-radius: 12px;
  }

  .faq-title {
    font-size: 18px;
  }

  .faq-question {
    font-size: 14px;
    padding: 15px;
  }

  .faq-answer {
    font-size: 13px;
  }
}

/* ================= HERO BANNER ================= */
.hero-banner {
  display: flex;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.hero-left {
  width: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MAGIC — image ke upar right side gradient fade */
.hero-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 15%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #f6d365 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-right {
  width: 50%;
  flex-shrink: 0;
  background: linear-gradient(90deg, #f6d365 0%, #fda085 50%, #f7797d 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 5%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.brand-logo {
  height: 28px;
  object-fit: contain;
}

.brand-alliance {
  font-size: 13px;
  color: #2a2a2a;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 15px;
  color: #2a2a2a;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-callback {
  padding: 13px 26px;
  border-radius: 30px;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: 0.3s;
  border: 2px solid #1a1a1a;
  white-space: nowrap;
}

.btn-callback:hover {
  background: transparent;
  color: #1a1a1a;
}

.btn-book {
  padding: 13px 26px;
  border-radius: 30px;
  background: #E67872;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: 0.3s;
  border: 2px solid #E67872;
  white-space: nowrap;
}

.btn-book:hover {
  background: transparent;
  color: #E67872;
}

@media (max-width: 992px) {
  .hero-banner {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    width: 100%;
    height: 260px;
  }

  .hero-left::after {
    display: none;
  }

  .hero-right {
    width: 100%;
    padding: 40px 6%;
  }

  .hero-heading {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-left {
    height: 200px;
  }

  .hero-heading {
    font-size: 22px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .btn-callback,
  .btn-book {
    padding: 11px 18px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .hero-btns {
    gap: 10px;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-choose-section {
  padding: 80px 20px;
  background: #fff;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-heading {
  margin-bottom: 50px;
}

.why-heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: #E67872;
  margin-bottom: 12px;
}

.why-heading p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-card h4 {
  font-size: 13px;
  letter-spacing: 2px;
  color: #E67872;
  font-weight: 700;
  margin-bottom: -2px;
  line-height: 1.2;
}

.why-icon {
  width: 220px;
  height: 220px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  height: 100%;
  object-fit: contain;
  margin-left: 0;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin-top: -60px;
  max-width: 200px;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .why-icon {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-heading h2 {
    font-size: 26px;
  }

  .why-heading p {
    font-size: 14px;
  }

  .why-icon {
    width: 140px;
    height: 140px;
  }
}

/* ================= YOUTUBE SECTION ================= */
.youtube-section {
  padding: 60px 0;
  background: #fff; /* ✅ grey removed */
}

.youtube-container {
  max-width: 1300px; /* ✅ wider */
  margin: auto;
  padding: 0 20px;
}

.youtube-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.youtube-card {
  position: relative;
  border-radius: 0; /* ✅ curve removed */
  overflow: hidden;
  background: #000;
}

/* ❌ OLD THUMB REMOVE EFFECT */
.youtube-thumb {
  display: none;
}

.youtube-thumb img {
  display: none;
}

/* ❌ PLAY BUTTON REMOVE */
.play-btn {
  display: none;
}

.youtube-iframe,
.youtube-card iframe {
  width: 100%;
  height: 300px;
  display: block;
  border: none;
}

.youtube-card.active .youtube-thumb {
  display: none;
}

.youtube-card.active .youtube-iframe {
  display: block;
}

@media (max-width: 992px) {
  .youtube-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .youtube-iframe,
  .youtube-card iframe {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .youtube-grid {
    grid-template-columns: 1fr;
  }

  .youtube-iframe,
  .youtube-card iframe {
    height: 200px;
  }

  .youtube-title {
    font-size: 18px;
  }
}

/* ================= TESTIMONIAL ================= */
.testimonial-section {
  padding: 60px 0;
  background: linear-gradient(90deg, #f6d365, #fda085, #f7797d);
}

.testimonial-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.testimonial-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #eee;
  transition: 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.testimonial-content {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-user h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
}

.testimonial-user p {
  font-size: 13px;
  color: #777;
}

@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-content {
    font-size: 14px;
  }
}

/* ================= SCHEDULING FORM ================= */
.schedule-section {
  padding: 60px 0;
  background: #e9edf5;
}

.schedule-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 0 20px;
}

.schedule-left {
  width: 50%;
}

.schedule-left img {
  width: 100%;
  height: auto;
}

.schedule-right {
  width: 50%;
}

.schedule-right h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.schedule-right form label {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  margin-top: 12px;
  font-weight: 600;
}

.schedule-right input,
.schedule-right select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}

.schedule-btn {
  margin-top: 15px;
  width: 220px;
  padding: 14px;
  border-radius: 30px;
  background: #E67872;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.schedule-btn:hover {
  opacity: 0.9;
}

.success-text {
  color: green;
  margin-bottom: 10px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .schedule-container {
    flex-direction: column;
  }

  .schedule-left,
  .schedule-right {
    width: 100%;
  }

  .schedule-btn {
    width: 100%;
  }
}

/* ================= How AURA WORKS ================= */

.aura-works-section {
  padding: 60px 20px;
  background: #fff;
}

/* MAIN BOX (MATCH IMAGE STYLE) */
.aura-works-box {
  max-width: 1200px;
  margin: auto;
  background: #e9edf5;
  padding: 50px 60px;
  border-radius: 25px;
}

/* HEADING */
.aura-works-heading {
  text-align: center;
  margin-bottom: 40px;
}

.aura-works-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #E67872;
}

/* GRID */
.aura-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 60px;
}

/* ITEM */
.aura-works-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* ICON */
.aura-works-item img {
  width: 85px;
  min-width: 85px;
  height: auto;
}

/* TEXT */
.aura-works-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #E67872;
  margin-bottom: 5px;
}

.aura-works-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

  .aura-works-box {
    padding: 40px 30px;
  }

  .aura-works-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 576px) {

  .aura-works-box {
    padding: 25px 18px;
    border-radius: 18px;
  }

  .aura-works-heading h2 {
    font-size: 24px;
  }

  .aura-works-item {
    gap: 12px;
  }

  .aura-works-item img {
    width: 50px;
  }

  .aura-works-item h4 {
    font-size: 14px;
  }

  .aura-works-item p {
    font-size: 13px;
  }

}

.nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Dropdown */
.dropdown {
    position: relative;
}

/* Menu hidden by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 160px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

.dropdown-menu a {
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* Desktop hover */
@media (min-width: 768px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile layout */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    /* Active class for mobile */
    .dropdown.active .dropdown-menu {
        display: block;
    }
}


/* Ensure dropdown parent behaves correctly */
.dropdown {
    position: relative;
}

/* Smooth open effect (optional but better UX) */
.dropdown-menu {
    transition: all 0.3s ease;
}

/* Mobile tap feel improvement */
@media (max-width: 768px) {
    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Optional arrow indicator */
    .dropdown-toggle::after {
        content: "▼";
        font-size: 10px;
        margin-left: 8px;
    }

    .dropdown.active .dropdown-toggle::after {
        content: "▲";
    }
}

/* ===============================================
   DISEASE PAGE CSS — lung-health.css
   =============================================== */

/* ========== DISEASE HERO BANNER ========== */
.disease-hero-banner {
    display: flex;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
    position: relative;
}

.disease-hero-left {
    width: 55%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.disease-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.disease-hero-right {
    width: 45%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #fff 0%, #fce8e0 30%, #E67872 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 50px 6% 50px 4%;
    text-align: right;
    position: relative;
    z-index: 1;
}

.disease-hero-heading {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 16px;
}

.disease-hero-sub {
    font-size: 18px;
    color: #444;
    line-height: 1.65;
}

/* ========== HEALTH CATEGORY TAB BAR ========== */
.health-tab-bar {
    background: #4a6b7c;
    display: flex;
    align-items: center;
    padding: 0 10px;
    position: relative;
    text-transform: uppercase;
}

/* Scroll container */
.health-tab-scroll {
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* ⭐ important */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
    padding: 0 20px;  /* ⭐ space left-right */
}

.health-tab-scroll::-webkit-scrollbar {
    display: none;
}

/* Tabs */
.health-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
    color: #cde;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.5px;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
}

/* Hover + Active */
.health-tab:hover {
    color: #fff;
}

.health-tab.active {
    color: #E67872;
    border-bottom: 3px solid #E67872;
    font-weight: 600;
}

/* Arrows */
.health-tab-arrow {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 6px 10px;
    flex-shrink: 0;
    opacity: 0.8;
}

.health-tab-arrow:hover {
    opacity: 1;
}

/* ========== MAIN CONTENT LAYOUT ========== */
.disease-content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    gap: 40px;
    align-items: flex-start;
}

/* ========== LEFT SIDEBAR ========== */
.disease-sidebar {
    width: 180px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 100px;
}

.sidebar-icon-wrap {
    margin-bottom: 18px;
}

.sidebar-organ-icon {
    width: 250px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.sidebar-link {
    display: block;
    text-decoration: none;
    color: #555;
    font-size: 16px;
    padding: 8px 0 8px 12px;
    text-align: center;
    transition: 0.3s;
    width: 100%;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    color: #E67872;
}

.sidebar-link.active {
    color: #E67872;
    font-weight: 600;
}

/* ========== RIGHT MAIN CONTENT ========== */
.disease-main {
    flex: 1;
    min-width: 0;
}

.disease-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 36px 0 14px;
}

.disease-section-title:first-child {
    margin-top: 0;
}

.disease-para {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ========== LUNG TABS (Exterior / Interior) ========== */
.lung-tab-container {
    background: #eaf6f6;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0 28px;
    border: 1px solid #d4ecec;
}

.lung-tabs {
    display: flex;
    border-bottom: 1px solid #c8e5e5;
    background: #eaf6f6;
}

.lung-tab-btn {
    flex: 1;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.3px;
    position: relative;
}

.lung-tab-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: 0.3s;
}

.lung-tab-btn.active {
    color: #2a2a2a;
    font-weight: 700;
}

.lung-tab-btn.active::after {
    background: #E67872;
}

.lung-tab-content {
    display: none;
    padding: 26px;
}

.lung-tab-content.active {
    display: block;
}

.lung-tab-inner {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.lung-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.lung-bullet-list li {
    font-size: 16px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    padding-left: 22px;
    position: relative;
}

.lung-bullet-list li::before {
    content: "○";
    position: absolute;
    left: 0;
    color: #6abcbc;
    font-size: 13px;
    top: 2px;
}

.lung-video-wrap {
    width: 320px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.lung-video-wrap iframe {
    width: 100%;
    height: 200px;
    display: block;
    border: none;
}

/* ========== RISK FACTORS LIST ========== */
.disease-risk-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.disease-risk-list li {
    font-size: 16px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 20px;
    padding-left: 28px;
    position: relative;
}

.disease-risk-list li::before {
    content: "○";
    position: absolute;
    left: 6px;
    top: 2px;
    color: #888;
    font-size: 13px;
}

/* ========== MORE ABOUT OUR TECHNOLOGY BUTTON ========== */
.more-tech-wrap {
    margin-top: 36px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.more-tech-btn {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    border: 2px solid #E67872;
    color: #E67872;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
    text-transform: uppercase;
}

.more-tech-btn:hover {
    background: #E67872;
    color: #fff;
}

/* ========== RESPONSIVE — TABLET ========== */
@media (max-width: 992px) {
    .disease-hero-banner {
        flex-direction: column;
        min-height: auto;
    }

    .disease-hero-left {
        width: 100%;
        height: 280px;
    }

    .disease-hero-right {
        width: 100%;
        align-items: flex-end;
        text-align: right;
        padding: 36px 6%;
        background: linear-gradient(135deg, #fce8e0 0%, #E67872 100%);
    }

    .disease-content-wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px 40px;
    }

    .disease-sidebar {
        width: 100%;
        flex-direction: row;
        align-items: center;
        position: static;
        gap: 20px;
        background: #f9f9f9;
        padding: 14px 16px;
        border-radius: 10px;
        border: 1px solid #eee;
    }

    .sidebar-icon-wrap {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .sidebar-organ-icon {
        width: 64px;
    }

    .sidebar-link {
        text-align: left;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding-left: 0;
        padding-bottom: 4px;
        font-size: 15px;
    }

    .sidebar-link.active {
        border-left: none;
        border-bottom-color: #E67872;
    }

    .lung-tab-inner {
        flex-direction: column;
        gap: 16px;
    }

    .lung-video-wrap {
        width: 100%;
    }

    .lung-video-wrap iframe {
        height: 230px;
    }

    .health-tab-scroll {
        justify-content: flex-start;
    }
}

/* ========== RESPONSIVE — MOBILE ========== */
@media (max-width: 576px) {
    .disease-hero-left {
        height: 210px;
    }

    .disease-hero-heading {
        font-size: 28px;
    }

    .disease-hero-sub {
        font-size: 15px;
    }

    .health-tab {
        padding: 14px 16px;
        font-size: 13px;
    }

    .disease-section-title {
        font-size: 21px;
    }

    .disease-para {
        font-size: 15px;
    }

    .lung-tab-btn {
        font-size: 14px;
        padding: 13px 14px;
    }

    .lung-bullet-list li {
        font-size: 15px;
    }

    .lung-video-wrap iframe {
        height: 200px;
    }

    .disease-risk-list li {
        font-size: 15px;
    }

    .disease-sidebar {
        flex-wrap: wrap;
    }

    .more-tech-btn {
        font-size: 13px;
        padding: 12px 24px;
    }
}


/* ================= WHAT WE SCREEN ================= */
.wws-section {
  padding: 70px 20px;
  background: #fff;
}
.wws-inner {
  max-width: 1100px;
  margin: auto;
}
.wws-top {
  text-align: center;
  margin-bottom: 50px;
}
.wws-top h2 {
  font-size: 36px;
  font-weight: 700;
  color: #E67872;
  margin-bottom: 12px;
}
.wws-top p {
  font-size: 15px;
  color: #666;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}
/* GRID */
.wws-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid #f2ccc9;
  border-radius: 20px;
  overflow: hidden;
}
/* CARD */
.wws-card {
  padding: 32px 20px 28px;
  text-align: center;
  border-right: 1.5px solid #f2ccc9;
  border-bottom: 1.5px solid #f2ccc9;
  background: #fff;
  transition: background 0.3s;
}
.wws-card:hover { background: #fff5f4; }
/* Last card in each row — no right border */
.wws-card:nth-child(4n) { border-right: none; }
/* Last row — no bottom border */
.wws-card:nth-child(5),
.wws-card:nth-child(6),
.wws-card:nth-child(7) { border-bottom: none; }
/* ICON CIRCLE */
.wws-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #fde8e7, #fad5d3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wws-icon-wrap img {
  width:  116px;
  height: 116px;
  object-fit: contain;
}
.wws-card h4 {
  font-size: 12px;
  font-weight: 700;
  color: #E67872;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wws-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin: 0;
}
/* BOTTOM GRADIENT STRIP */
.wws-bottom-strip {
  margin-top: 40px;
  background: linear-gradient(90deg, #f6d365, #fda085, #f7797d);
  border-radius: 16px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.wws-strip-text {
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 600;
}
.wws-strip-btn {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}
.wws-strip-btn:hover { background: #333; color: #fff; }
/* ===== TABLET (max 992px) ===== */
@media (max-width: 992px) {
  .wws-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Reset desktop nth rules */
  .wws-card { border-right: 1.5px solid #f2ccc9; border-bottom: 1.5px solid #f2ccc9; }
  /* 2-col: every 2nd card no right border */
  .wws-card:nth-child(2n) { border-right: none; }
  /* Last 2 cards no bottom border */
  .wws-card:nth-child(6),
  .wws-card:nth-child(7) { border-bottom: none; }
  .wws-top h2 { font-size: 28px; }
  .wws-bottom-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
}
/* ===== MOBILE (max 576px) ===== */
@media (max-width: 576px) {
  .wws-section { padding: 40px 14px; }
  .wws-top h2 { font-size: 22px; }
  .wws-top p { font-size: 13px; }
  .wws-grid { grid-template-columns: 1fr; }
  /* Mobile: horizontal card layout (icon left, text right) */
  .wws-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
    padding: 18px 16px;
    border-right: none !important;
    border-bottom: 1.5px solid #f2ccc9;
  }
  .wws-card:last-child { border-bottom: none; }
  .wws-icon-wrap {
    margin: 0;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
  }
  .wws-icon-wrap img { width: 40px; height: 40px; }
  .wws-card h4 { margin-bottom: 4px; }
  .wws-bottom-strip {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }
  .wws-strip-btn {
    width: 100%;
    text-align: center;
  }
}
