/* ===========================
   Base & Overrides
   =========================== */
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  /* background: linear-gradient(135deg, #f0faf6 0%, #a0c1b48c 40%, #fdf8ee 100%); */
}

/* Fixed Background Ellipses */
.ellipse-bg {
  position: fixed;
  z-index: -1;
  pointer-events: none;
}

.ellipse-bg-1 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url('../images/Ellipse-1.png') no-repeat center;
  background-size: contain;
  width: 980px;
  height: 980px;
}

.ellipse-bg-2 {
  bottom: 0px;
  left: 0;
  transform: translateY(50%);
  background: url('../images/Ellipse-2.png') no-repeat center;
  background-size: contain;
  width: 882px;
  height: 1754px;
}

h1, h2, h3, h4, .section-heading {
  font-family: 'Merriweather', serif;
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
}

.text-accent {color: #0F857D !important;}

/* ===========================
   Header
   =========================== */
.header-main {
  padding: 17px 0;
  z-index: 1050;
  position: absolute;
  top: 0;
  width: 100%;
}

.nav-left { display: flex; align-items: center; }

.nav-link-custom {
  color: rgb(0 0 0 / 90%);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 3px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link-custom:hover {
  color: #0F857D;
  background: none;
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  color: #333;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: #e8f8f2;
  color: #005D56;
  padding-left: 25px;
}

/* Mega Menu */
.mega-dropdown {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(135deg, #f0faf6 0%, #e8f5f0 40%, #fdf8ee 100%);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  overflow: hidden;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-inner {
  display: flex;
}

.mega-col {
  flex: 1;
  min-width: 0;
  padding: 30px 20px;
  border-right: 1px solid #f0f0f0;
  position: relative;
  transition: background 0.3s ease;
}

.mega-col:last-child {
  border-right: none;
}

.mega-col:hover {
  background: #f8fdfb;
}

.mega-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #005D56;
  margin-bottom: 15px;
  padding-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: #FFB700;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.mega-col:hover .mega-heading::after {
  width: 50px;
}

.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-col ul li {
  margin-bottom: 4px;
}

.mega-col ul li a {
  color: #666;
  font-size: 0.78rem;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.mega-col ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.mega-col ul li a:hover {
  color: #005D56;
  background: #e8f8f2;
  padding-left: 14px;
}

.mega-col ul li a:hover::before {
  background: #FFB700;
  width: 7px;
  height: 7px;
}

/* Mega menu top accent bar */
.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #005D56, #FFB700, #005D56);
}

/* Logo */
.logo-link { text-decoration: none; }

.logo-icon {

  width: 100%;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 1px;
}

/* Header Phone */
.phone-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFB700;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
}

.phone-label {color: #0F857D;font-size: 0.8rem;font-weight: 600;}
.phone-number {color: #0F857D;font-weight: 600;font-size: 0.88rem;}

/* Quote Button */
.btn-quote {
  background-color: #FFB700;
  color: #000000;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 9px 18px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.lost-form .btn-quote {
    font-size: 0.9rem !important;
}
.lost-form .contact-cta-form .form-select {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-quote:hover {
  background-color: #b8953e;
  color: #1a1a1a;
  transform: translateY(-1px);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 130px !important;
  padding-bottom: 80px !important;
}
.hero-section::before {
    position: absolute;
    content: '';
    background: linear-gradient(135deg, #ffb7004f 0%, #a0c1b494 40%, #0f857d80 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    z-index: -1;
}
.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #292E0A;
  line-height: 1.2;
}

/* Continuous Book Slider (Slick) */
.book-slider-wrap {
  width: 100%;
  overflow: hidden;
  transform: rotate(-3deg);
  margin-bottom: -30px;
  padding: 20px 0 40px;
}

.hero-book-slider .slide-item {
  padding: 10px;
}

.book-slide-item {
  width: 100%;
  height: 370px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.book-slide-item:hover {
  transform: scale(1.05);
}

.hero-book-slider .slick-arrow {
  display: none !important;
}

.hero-sub {
  font-size: 1.05rem;
}

/* ===========================
   Buttons Custom
   =========================== */
.btn-accent {
  background-color: #1a8a6a;
  color: #fff;
  border: none;
}
.btn-accent:hover { background-color: #14664f; color: #fff; }

.btn-outline-accent {
  border: 2px solid #1a8a6a;
  color: #1a8a6a;
  background: transparent;
}
.btn-outline-accent:hover { background-color: #1a8a6a; color: #fff; }

.btn-gold { background: #c9a84c; color: #1a1a1a; font-weight: 600; }
.btn-gold:hover { background: #b8953e; color: #1a1a1a; }

/* ===========================
   Avatar overlap
   =========================== */
.avatar-overlap { margin-left: -12px; width: 50px; height: 50px; }
.avatar-overlap:first-child { margin-left: 0; }

/* ===========================
   Service Cards
   =========================== */
.service-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.service-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8a6a, #2db88a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

/* ===========================
   Process Steps
   =========================== */
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8a6a, #2db88a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===========================
   Why Cards
   =========================== */
.why-card {
  background: #f9fafb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-icon-wrap {
  width: 55px; height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8a6a, #2db88a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: linear-gradient(135deg, #1a8a6a 0%, #14664f 100%);
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
  background: linear-gradient(135deg, #1a8a6a 0%, #14664f 100%);
}

/* ===========================
   Contact
   =========================== */
.contact-icon-wrap {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8a6a, #2db88a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.social-icon-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #1a8a6a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon-link:hover {
  background: #14664f;
  color: #fff;
  transform: translateY(-3px);
}

/* ===========================
   Footer
   =========================== */
.footer-main {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,rgba(12, 10, 62, 1) 0%, rgba(0, 103, 79, 1) 100%);
}

.footer-top-line {
  height: 4px;
  background: linear-gradient(90deg, #1a8a6a, #2db88a, #1a8a6a);
}

.footer-tagline {
  font-size: 23px;
  font-weight: 200;
  font-family: 'Poppins';
  line-height: 39px;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 500;
}

.footer-social-pill i {
  color: #c9a84c;
  font-size: 0.5rem;
}

.footer-globe-decor {
  position: absolute;
  bottom: 40px;
  right: 40px;
  opacity: 0.3;
}

.footer-globe-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

.footer-main a:hover { color: #ffb700 !important; }

/* ===========================
   Scroll to Top
   =========================== */
/* .scroll-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 45px; height: 45px;
  background-color: #1a8a6a;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(26,138,106,0.3);
} */
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { transform: translateY(-3px); background-color: #14664f; }

/* ===========================
   Ghostwriter Section
   =========================== */
.ghostwriter-section {
  position: relative;
  overflow: hidden;
}

.ghostwriter-section::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: url('../images/logo-side.png') no-repeat center;
  background-size: contain;
}

.brand-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: #000000;
  font-weight: 500;
}

.label-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #000000;
}

.typewriter-img {
  margin-top: 10px;
}

.phone-cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFB700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
  background: linear-gradient(90deg,rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);
  position: relative;
  overflow: visible;
  margin-top: 60px;
  padding: 40px 0 100px;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(90deg,rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);
  transform: skewY(-3deg);
  z-index: -1;
}

.coffee-decor {
  position: relative;
  z-index: 2;
}

.coffee-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -120px;
  left: 0;
}

.service-box {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 65px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-icon-box {
  width: 120px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1a8a6a;
  position: relative;
}

.service-icon-box .icon-label {
  position: absolute;
  top: 0;
  left: 0;
  background: #1a8a6a;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.service-box h6 {
  color: #0f1010;
  margin-top: 35px;
}

/* ===========================
   Aims Section
   =========================== */
.aims-section {
  background: linear-gradient(90deg,rgba(12, 10, 62, 1) 0%, rgba(0, 103, 79, 1) 100%);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.aims-heading {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
}

.aims-book-img {
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}

.aims-book-img:hover {
  transform: rotate(2deg) scale(1.02);
}

/* ===========================
   Portfolio Section
   =========================== */
.portfolio-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.portfolio-globe-decor {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
}

.globe-img {
  width: 110px;
  height: 167px;
  opacity: 0.6;
}

.portfolio-book-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.portfolio-book-img:hover {
  transform: scale(1.03);
}

.portfolio-slider .slide-item {
  padding: 0 10px;
}

/* ===========================
   Process / 4 Steps Section
   =========================== */
.process-section {padding: 20px 0 110px;}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.process-item {
  display: flex;
  align-items: center;
}

/* Emoji circles */
.emoji-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ccc;
}

.emoji-face {
  font-size: 1.8rem;
  line-height: 1;
}

/* Arrows */
.process-arrow-item {
  display: flex;
  align-items: center;
  padding: 0 5px;
}

.arrow-line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #d4a843;
}

.arrow-head {
  color: #d4a843;
  font-size: 1rem;
  margin-left: -2px;
}

/* Step cards */
.process-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 20px 20px;
  text-align: center;
  position: relative;
  min-width: 150px;
  border: 2px solid #b4dedc;
}

.process-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  background: #000000;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 50px;
}

.process-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.process-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffb700;
  letter-spacing: 0.5px;
  margin-top: 10px;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .process-flow {
    flex-wrap: wrap;
    gap: 10px;
  }
  .process-card {
    min-width: 120px;
    padding: 30px 15px 15px;
  }
  .arrow-line { width: 20px; }
}

@media (max-width: 767.98px) {
  .process-flow {
    flex-direction: column;
    gap: 15px;
  }
  .process-arrow-item {
    transform: rotate(90deg);
  }
}

/* ===========================
   Why Choose Us Section
   =========================== */
.why-choose-section {
  background: linear-gradient(90deg,rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);
  position: relative;
  overflow: visible;
  padding: 80px 0 90px;
  margin-top: 60px;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  transform: skewY(3deg);
  background: linear-gradient(90deg,rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);
}

.why-coffee-decor {
  position: absolute;
  top: -45px;
  right: 30px;
  z-index: 2;
}

.why-coffee-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.why-green-box {
  background: #FF9500;
  border-radius: 12px;
  padding: 25px;
}

.why-feature {
  padding: 10px 0;
}

.why-feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #1a8a6a;
}

/* ===========================
   Philosophy / Trusted Section
   =========================== */
.philosophy-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,rgba(0, 52, 0, 1) 0%, rgba(60, 0, 140, 1) 100%);
}

.philosophy-label {
  color: rgb(255 255 255);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.label-line-light {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #ffffff;
}

.philosophy-heading {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
}

.philosophy-books {
  position: relative;
  display: inline-block;
}

.philosophy-book-front {
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.philosophy-book-back {
  width: 160px;
  height: 270px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 10px;
  left: -40px;
  z-index: 1;
  transform: rotate(-8deg);
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 0px;
  width: 119px;
  height: 193px;
  background: url('../images/logo-side.png') no-repeat center;
}

.testimonial-box {
  background: #D1F9E8;
  border-radius: 14px;
  padding: 25px;
  height: 100%;
  text-align: center;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-slider .slide-item {
  padding: 0 12px;
}

/* Testimonial slider custom arrows */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
  width: auto;
  height: auto;
  background: none;
  top: auto;
  bottom: -50px;
}

.testimonial-slider .slick-prev {
  left: 20px;
}

.testimonial-slider .slick-next {
  right: 20px;
}

.testimonial-slider .slick-prev:before {
  content: '';
  font-family: inherit;
  font-size: 1.5rem;
  color: #1a8a6a;
  opacity: 1;
}

.testimonial-slider .slick-next:before {
  content: '';
  font-family: inherit;
  font-size: 1.5rem;
  color: #1a8a6a;
  opacity: 1;
}

.testimonial-slider .slick-prev:after {
  content: 'PREV';
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a8a6a;
  letter-spacing: 1px;
  margin-top: 10px;
}

.testimonial-slider .slick-next:after {
  content: 'NEXT';
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a8a6a;
  letter-spacing: 1px;
  margin-top: 10px;
}

.testimonial-slider {
  padding-bottom: 40px;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.faq-globe-decor {
  position: absolute;
  bottom: 30px;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}

.faq-globe-img {width: 110px;height: 167px;}

/* FAQ Accordion */
.faq-item {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
}

.faq-btn {
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  padding: 18px 0;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: #1a8a6a;
  background: transparent;
}

.faq-btn::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #c9a84c;
  font-size: 1rem;
  background-image: none;
  transform: none;
}

.faq-btn:not(.collapsed)::after {
  content: '\f106';
  color: #1a8a6a;
}

.faq-body {
  padding: 0 0 18px 0;
  font-size: 0.85rem;
  color: #666;
}

/* FAQ Image */
.faq-image-wrap {
  position: relative;
  display: inline-block;
}

.faq-image-card {
  background: #115340;
  border-radius: 0px 80px 0px 0px;
  padding: 25px;
  text-align: left;
  position: absolute;
  top: -41px;
  right: 0;
  width: 355px;
  height: 460px;
}

.faq-person-circle {
  overflow: hidden;
  margin: 60px auto 0;
  position: relative;
}

.faq-person-img {
  width: 100%;
  height: 100%;
}

@media (max-width: 991.98px) {
  .faq-image-wrap {
    margin-top: 30px;
  }
  .faq-image-card {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
}

/* ===========================
   Contact / Step Into Greatness
   =========================== */
.contact-cta-section {
  background: linear-gradient(135deg, #e8f8f2 0%, #dff5ed 50%, #e5f0eb 100%);
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}

.contact-cta-heading {
  color: #ffb700;
}

.contact-cta-icon-wrap {
  width: 45px;
  height: 45px;
  border-radius: 38px;
  background: #ffb700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-input {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: #00000000;
  padding: 12px 0;
  font-size: 0.9rem;
}

.contact-input:focus {
  box-shadow: none;
  border-color: #1a8a6a;
  background: transparent;
}

.contact-cta-form .form-select {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background-color: transparent;
  padding: 12px 0;
  font-size: 0.9rem;
}
.contact-cta-form.lost-form .form-select {
  color: #ffffffab;
}
.contact-cta-form.lost-form .text-muted {
      color: #ffffffab !important;
          font-size: 11px;
}
.lost-form .iti--separate-dial-code .iti__selected-flag {
    color: #ffffffab;
}
.contact-cta-form .text-muted {
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color)!important;
    font-size: 9.5px;
}
.contact-cta-form .FieldButton button{
  font-size: 0.9rem;
}
.contact-cta-form .form-select:focus {
  box-shadow: none;
  border-color: #1a8a6a;
}

.contact-watermark {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Merriweather', serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(26, 138, 106, 0.05);
  letter-spacing: 10px;
  pointer-events: none;
  white-space: nowrap;
}
.aims-section p {
    color: #fff;
    font-size: 15px;
}
/* ===========================
   Slick Slider Overrides
   =========================== */
.portfolio-slider .slide-item,
.testimonial-slider .slide-item {
  padding: 0 12px;
}
section.ghostwriter-section.py-5 h2 {
    color: #000000;
}
section.portfolio-section h2 {
    color: #ffb700;
    margin-bottom: 16px;
}
section.portfolio-section p {
    color: #000;
}
section.process-section h2 {
    color: #ffb700;
}

section.process-section p {
    color: #000;
}
section.why-choose-section h2 {
    color: #ffffff;
}

section.why-choose-section p {
    color: #ffffff;
}
.g-l {
    padding-left: 60px;
}
section.testimonials-section h2 {
    color: #ffba09;
}
section.faq-section h2 {
    color: #000;
}

section.contact-cta-section p {
    color: #000;
}
.b-l {
    border-right: 1px solid #ffffff99;
}
.footer-left {
    padding: 50px 40px 40px 0px;
}

.footer-right {
    padding: 50px 40px 0px 40px;
}
.footer-left p a {
    color: #fff;
    text-decoration: none;
}
.footer-left p {
    padding-bottom: 11px;
}
.footer-right  a {
    color: #fff;
    text-decoration: none;
}
.footer-b-b {
    border-bottom: 1px solid #ffffff9c;
}
.footer-right p {
    color: #fff;
}
.portfolio-slider .slide-item img {
  width: 100%;
  max-width: 220px;
  height: 340px;
  border-radius: 8px;
  margin: 0 auto;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
}

.slick-dots li.slick-active button:before {
  color: #1a8a6a;
}

.slick-prev, .slick-next {
  width: 40px; height: 40px;
  background: #1a8a6a;
  border-radius: 50%;
  z-index: 10;
  transition: background 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
  background: #14664f;
}

.slick-prev:before, .slick-next:before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  opacity: 1;
}

.slick-prev:before { content: '\f053'; }
.slick-next:before { content: '\f054'; }

.slick-prev { left: -15px; }
.slick-next { right: -15px; }

.testimonial-slider .slick-slide > div {
  height: 100%;
}

/* ===========================
   Responsive - moved to responsive.css
   =========================== */

/* ===========================
   Services Page
   =========================== */
.page-banner {
  padding: 150px 0 60px;
  /* background: linear-gradient(90deg, rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%); */
  position: relative;
}

.page-banner .breadcrumb-item a {
  /* color: rgba(255,255,255,0.7); */
  text-decoration: none;
  font-size: 0.85rem;
}

.page-banner .breadcrumb-item.active {
    color: #00674f;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.5rem;
}

/* .page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5);
} */

.page-banner-title {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 700;
  /* color: #fff; */
}

.page-banner-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 600px;
}

.service-detail-section {
  position: relative;
}

.service-detail-alt {
  background: rgba(209, 249, 232, 0.3);
}

.service-tag {
  display: inline-block;
  background: #FFB700;
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.service-detail-heading {
  color: #005D56 !important;
  font-size: 1.8rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.service-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #333;
}

.service-features li i {
  color: #1a8a6a;
  margin-right: 10px;
}

.service-cta-section {
  background: linear-gradient(90deg, rgba(12, 10, 62, 1) 0%, rgba(0, 103, 79, 1) 100%);
}

/* Lost In Publishing Section */
.lost-publishing-section {
  background: url(../images/servcie-back.png);
  position: relative;
  z-index: 1;
  padding: 150px 0 100px;
  background-size: contain;
  background-repeat: no-repeat;
}

.lost-heading {
  font-family: 'Merriweather', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
}

.lost-heading span {
  color: #00674f;
}

.lost-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lost-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lost-features li .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #005D56;
  flex-shrink: 0;
}

/* Lost Form Card */
.lost-form-card {
  background: #00674f;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lost-form-header {
  padding: 25px 30px 5px;
}
.lost-form .lost-input option {
    color: #000;
}
.lost-form-header h4 {
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.lost-form {
  padding: 10px 30px 30px;
}

.lost-input {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 12px 0;
  font-size: 0.85rem;
}

.lost-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.lost-input:focus {
  box-shadow: none;
  border-color: #FFB700;
  background: transparent;
  color: #fff;
}

/* Partners / Logo Slider */
.partners-section {background: linear-gradient(
1deg, #e8f8f200 0%, #dff5ed00 50%, #daeae3 100%);}

.partners-slider .partner-item {
  padding: 0 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.partners-slider .partner-item img {
  max-height: 40px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partners-slider .partner-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partners-slider .slick-arrow {
  display: none !important;
}

/* ===========================
   Publishing Route Section
   =========================== */
.publishing-route-section {
  padding: 30px 0 120px;}

.route-main-heading {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFB700;
}

/* Tabs */
.route-tabs {
  gap: 30px;
  border: none;
}

.route-tab {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  cursor: pointer;
  max-width: 220px !important;
  transition: all 0.3s ease;
}

/* .route-tab-icon {
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background: #FFB700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transition: all 0.3s ease;
} */

.route-tab.active .route-tab-icon {
  background: #005D56;
  /* transform: scale(1.1); */
}

.route-tab-label {
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
}

.route-tab.active .route-tab-label {
  color: #005D56;
}

/* Tab Content */
.route-content-heading {
  font-family: 'Merriweather', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #070707;
  margin-bottom: 15px;
}

.route-image {
  width: 100%;
  max-width: 380px;
  border-radius: 40px;
}

/* @media (max-width: 767.98px) {
  .route-tabs {
    gap: 15px;
  }
  .route-tab-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .route-tab-label {
    font-size: 0.75rem;
  }
  .route-main-heading {
    font-size: 1.5rem;
  }
} */

/* ===========================
   Goals Into Reality Section
   =========================== */
.goals-reality-section {
  background: linear-gradient(90deg, rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);
  position: relative;
  overflow: visible;
  padding: 80px 0 110px;
  margin-top: 60px;
}

.goals-reality-section::before {
 content: '';
 position: absolute;
 top: -60px;
 left: 0;
 width: 100%;
 height: 120px;
 transform: skewY(3deg);
 background: linear-gradient(90deg, rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);
 z-index: -1;
}

.goals-cup-decor {
  position: absolute;
  top: -60px;
  right: 40px;
  z-index: 2;
}

.goals-cup-img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.goals-heading {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.goals-main-img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .goals-heading {
    font-size: 1.5rem;
  }
  .goals-main-img {
    max-width: 100%;
  }
}

/* ===========================
   Why Choose Us as Experts
   =========================== */
.why-experts-section {
  /* background: linear-gradient(135deg, #e8f8f2 0%, #dff5ed 50%, #e5f0eb 100%); */
  padding: 110px 0;
}

.why-experts-heading {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
}

.expert-card {
  padding: 10px 0;
}

.expert-icon {
  font-size: 2.9rem;
  color: #FFB700;
  margin-bottom: 12px;
}

.expert-title {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 8px;
}

.expert-text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

/* Side Card */
.expert-side-card {
  background: linear-gradient(90deg, rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.expert-side-img-wrap {
  padding: 25px 25px 0;
}

.expert-side-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.expert-side-text {
  padding: 20px 25px 25px;
  color: #fff;
  flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-side-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 10px;
}

.expert-side-text strong {
  font-size: 1.1rem;
  color: #fff;
}

@media (max-width: 991.98px) {
  .expert-side-card {
    margin-top: 30px;
  }
}

/* ===========================
   Get Ready CTA Banner
   =========================== */
.get-ready-banner {
  background: linear-gradient(90deg,rgba(0, 52, 0, 1) 0%, rgba(60, 0, 140, 1) 100%);
  position: relative;
  padding-top: 30px;
}

.get-ready-person-img {
  position: absolute;
  bottom: 0;
  left: 110px;
}

.get-ready-content {
  padding: 10px 0 20px;
  text-align: center;
}

.get-ready-heading {
  font-family: 'Merriweather', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.get-ready-content p {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.get-ready-books-img {
  max-height: 280px;
  width: auto;
}

@media (max-width: 991.98px) {
  .get-ready-person-img,
  .get-ready-books-img {
    max-height: 200px;
  }
  .get-ready-content {
    padding: 30px 20px;
  }
}

@media (max-width: 575.98px) {
  .get-ready-heading {
    font-size: 1.3rem;
  }
}

.white-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.white-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.process-box {
    height: 100%;
}
.process-box p{
     color: #ffffffbf !important;
}
/* ===========================
   Genres Section
   =========================== */
.genres-section {padding: 90px 0;}

.genres-heading {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffb700;
}

.genre-card {
  background: #E6F6DC;
  border-radius: 14px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.genre-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.genre-title {
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #005D56;
  margin-bottom: 12px;
}

.genre-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 10px;
  background: #FFB700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.genre-text {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .genres-heading {
    font-size: 1.5rem;
  }
}

/* ===========================
   Launch Your Legacy Section
   =========================== */
.launch-legacy-section {background: linear-gradient(90deg, rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);position: relative;overflow: visible;padding: 80px 0 110px;margin-top: 60px;}

.launch-legacy-cup {
  position: absolute;
  top: -50px;
  right: 30px;
  z-index: 2;
}

.launch-cup-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.launch-heading {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.launch-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.launch-img-top {
  width: 100%;
}

.launch-img-bottom {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767.98px) {
  .launch-heading {
    font-size: 1.5rem;
  }
  .launch-legacy-cup {
    display: none;
  }
}

/* ===========================
   Animations
   =========================== */

/* Fade In Up */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Fade In Left */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Fade In Right */
.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Scale In */
.animate-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Hover lift for cards */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Pulse effect for CTA buttons */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(255, 183, 0, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(255, 183, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 183, 0, 0); }
}

.btn-quote {
  animation: pulse-glow 2.5s infinite;
}

.btn-quote:hover {
  animation: none;
}

/* Float animation - removed */

/* Rotate subtle - removed */

/* Process step bounce on hover */
.process-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonial card hover */
.testimonial-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image zoom on hover */
.portfolio-book-img:hover,
.philosophy-book-front:hover {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* Underline animation for nav links */
.nav-link-custom::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #0F857D;
  transition: width 0.3s ease;
}

.nav-link-custom:hover::after {
  width: 100%;
}

.nav-link-custom:hover {
  color: #0F857D;
  background: none;
}

/* Footer social pill hover */
.footer-social-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Phone icon bounce */
@keyframes bounce-subtle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.phone-cta-icon:hover,
.phone-icon-wrap:hover {
  animation: bounce-subtle 0.5s ease;
}

/* ===========================
   Popup Modal
   =========================== */
.popup-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  padding: 0;
}

.popup-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: #FFB700;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.popup-close-btn:hover {
  background: #ff4444;
  color: #fff;
  transform: rotate(90deg);
}

/* Left Panel */
.popup-left {
  background: linear-gradient(160deg, #003d2e 0%, #005D56 50%, #003d2e 100%);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.popup-left-content {
  position: relative;
  z-index: 2;
}

.popup-left-decor {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 183, 0, 0.1);
}

.popup-logo {
  width: 170px;
}

.popup-stats {
  display: flex;
  gap: 25px;
}

.popup-stat {
  display: flex;
  flex-direction: column;
}

.popup-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFB700;
  font-family: 'Merriweather', serif;
}

.popup-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* Right Panel */
.popup-right {
  padding: 35px 35px;
  background: #fff;
}

.popup-badge {
  display: inline-block;
  background: #e8f8f2;
  color: #005D56;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.popup-header {
  margin-bottom: 5px;
}

.popup-title {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #005D56;
}

.popup-subtitle {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 0;
}

/* Input Groups */
.popup-input-group {
  position: relative;
  margin-bottom: 15px;
}

.popup-input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a8a6a;
  font-size: 0.85rem;
  z-index: 2;
}

.popup-input-group textarea ~ i {
  top: 18px;
  transform: none;
}

.popup-input-group .popup-input {
  padding: 13px 15px 13px 40px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.85rem;
  background: #fafafa;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.popup-input-group .popup-input:focus {
  border-color: #1a8a6a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 138, 106, 0.08);
}

.popup-form .form-select.popup-input {
  padding: 13px 15px 13px 40px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.85rem;
  background-color: #fafafa;
}

.popup-form .form-select.popup-input:focus {
  border-color: #1a8a6a;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(26, 138, 106, 0.08);
}

/* Submit Button */
.popup-submit-btn {
  background: linear-gradient(135deg, #FFB700 0%, #f5a200 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px;
  border-radius: 10px;
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 183, 0, 0.3);
}

.popup-submit-btn:hover {
  background: linear-gradient(135deg, #f5a200 0%, #e09500 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 183, 0, 0.4);
}

/* Modal animation */
.modal.fade .modal-dialog {
  transform: scale(0.8) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.2), opacity 0.3s ease;
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
}

/* Modal backdrop */
.modal-backdrop.show {
  backdrop-filter: blur(5px);
}

/* ===========================
   Mobile Header & Menu
   =========================== */
.mobile-header {
  padding: 5px 0;
}

.mobile-logo {
  width: 120px;
}

.mobile-hamburger {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #005D56;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-hamburger:hover span:nth-child(1) {
  transform: translateX(3px);
}

.mobile-hamburger:hover span:nth-child(3) {
  transform: translateX(-3px);
}

/* Mobile Offcanvas */
.mobile-menu-offcanvas {
  background: linear-gradient(180deg, #003d2e 0%, #00241a 100%);
  width: 300px;
  border-right: none;
}

.mobile-menu-header {
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-logo {
  width: 110px;
  filter: brightness(0) invert(1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255,255,255,0.1);
  transform: rotate(90deg);
}

.mobile-menu-body {
  padding: 8px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #FFB700;
  padding-left: 5px;
}

.mobile-nav-link i {
  font-size: 0.65rem;
}

.mobile-nav-sub {
  padding-left: 15px;
}
.mobile-nav-sub li {
  list-style: none;
}
.mobile-nav-sub a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.mobile-nav-sub a:hover {
  color: #FFB700;
  padding-left: 5px;
}

.mobile-menu-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.lost-publishing-section::before{position: absolute;content: '';background: linear-gradient(135deg, #c0dcd2 0%, #ffb70042 50%, #00674f3b 100%);width: 100%;height: 100%;top: 0;opacity: 0.9;z-index: -1;}

section.publishing-route-section p {
    color: #000;
}
section.goals-reality-section p {
    color: #fff;
    line-height: 25px;
    font-size: 15px;
}

section.launch-legacy-section:before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    transform: skewY(3deg);
    background: linear-gradient(90deg, rgba(0, 103, 79, 1) 0%, rgba(255, 149, 0, 1) 100%);
    z-index: -1;
}
.launch-legacy-section p {
    color: #fff;
    display: flex;
    align-items: baseline;
}
.testimonial-box p {
    height: 70px;
    overflow-y: AUTO;
    padding-right: 10px;
}
/* width */
.testimonial-box p::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.testimonial-box p::-webkit-scrollbar-thumb {
  background: #00674f; 
  border-radius: 10px;
}

/* Handle on hover */
.testimonial-box p::-webkit-scrollbar-thumb:hover {
  background: #00ad85; 
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.form-text a{
  color: #000;
}
.route-tab-icon:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 50px;
    width: 50px;
    z-index: -1;
    /* border-radius: 25px; */
    clip-path: circle(0 at 50% 50%);
    transition: 1.10s;
}

.route-tab.active .route-tab-icon {
  color: #fff;
}
.route-tab-icon {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    /* background: #FFB700; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
    transition: all 0.5s ease;
    /* filter: brightness(0); */
    position: relative;
    font-size: 40px;

}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background-color: #1a8a6a;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(26, 138, 106, 0.3);
}
.route-tab.active .route-tab-icon:before {
    /* background: #005D56; */
    clip-path: circle(50% at 50% 50%);
}
a {
  color:#212529;
}
.why-feature .why-feature-icon img{
filter:brightness(1.5);
}
.why-feature h5 {
    color: #fff;
}
.why-choose-section .label-line {
    background: #ffffff;
}
.terms-privacy-content{
  margin-top: 50px;
}
.bookConten{
  padding-top:50px;
}
.iti--separate-dial-code .iti__selected-flag {
    background: #ff000000 !important;
}
.offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
    z-index: 9999;
}
.mobile-nav-sub {
    height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
}
/* width */
.mobile-nav-sub::-webkit-scrollbar {
  width: 7px;
}

/* Track */
.mobile-nav-sub::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
.mobile-nav-sub::-webkit-scrollbar-thumb {
  background: #ffb700; 
  border-radius: 10px;
}

/* Handle on hover */
.mobile-nav-sub::-webkit-scrollbar-thumb:hover {
  background: #d19601; 
}
.btn-q{
    animation: pulse-glow 2.5s infinite;
    background-color: #FFB700;
    color: #000000;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 9px 18px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-q:hover{animation: none; background-color: #b8953e;
    color: #1a1a1a;
    transform: translateY(-1px);}
    
    
    
.slick-prev:hover, .slick-next:hover {
    background: #14664f00;
}

.proMobile {
  display: none !important;
  }
.proImag {
    display: table;
    margin: 10px auto 0;
}
.process-flow {
  display: none;
}
.service-box.bg-box .overlay {
    height: 100%;
    width: 100%;
    background: linear-gradient(rgb(210 248 232), rgb(255 183 0));
    padding: 20px;
    transform: translateY(100%);
    transition-duration: .8s;
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    border-radius: 12px;
    align-items: center;
    flex-direction: column;
}
.bg-box {
    height: 100%;
    min-height: 200px;
    max-height: 260px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bg-box:hover .overlay {
    transform: translateY(0);
    top: 0;
}
.bg-box .overlay p {
  margin-bottom: 0px
}
/* .accordion-item .faq-btn:not(.collapsed)::after {
    content: '\f106';
    color: #c9a84c00;
    font-size: 5px;
} */
 .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
    background-image: none;
}
.accordion-button::after {
     width: auto;
}
.bookContent {
    padding-bottom: 50px;
}