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

/* Global font for whole website */
body, 
p, 
a, 
li, 
span, 
button, 
input, 
textarea {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 400;
    /* color: #fff; */
}

/* Headings — matching screenshot */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800;       /* Extra Bold for strong headings */
    color: #fff;
    line-height: 1.2;
}

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    
      color: var(--white);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ---------- HEADER ---------- */

    .site-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 20;
      background: rgba(0, 0, 0, 0.65);
      backdrop-filter: blur(6px);
    }

    .navbar-brand img {
      /* width: 40px; */
      height: 60px;
      object-fit: cover;
    }

    .logo-text {
      line-height: 1.1;
      margin-left: 10px;
    }

    .logo-name {
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .logo-name span:first-child {
      color: var(--orange);
      text-decoration: underline;
    }

    .logo-name span:last-child {
      color: #fdfdfd;
      text-decoration: underline;
    }

    .nav-link {
      color: var(--white) !important;
      font-size: 14px;
      position: relative;
      padding-bottom: 4px;
      margin: 0 10px;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--orange);
      transition: width 0.2s ease;
    }

    .nav-link:hover::after,
    .nav-link:focus-visible::after {
      width: 100%;
    }

    .phone-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid var(--orange);
      background: rgba(0, 0, 0, 0.75);
      margin-right: 8px;
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .phone-btn svg {
      width: 18px;
      height: 18px;
      fill: var(--orange);
    }

    .phone-btn:hover {
      background: var(--orange);
      transform: translateY(-1px);
    }

    .phone-btn:hover svg {
      fill: #000;
    }

    .phone-number {
      font-weight: 700;
      white-space: nowrap;
      font-size: 14px;
    }

    /* ---------- HERO ---------- */

    .hero-section {
      position: relative;
      min-height: 100vh;
      padding-top: 80px; /* space for header */
      color: var(--white);
      display: flex;
      align-items: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("/images/back.png");
      background-size: cover;
      background-position: center;
      z-index: -2;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.75) 100%);
      z-index: -1;
    }

    .hero-title {
      font-size: 36px;
      font-weight: 900;
      line-height: 1.2;
    }

    .hero-title .orange {
      color: var(--orange);
    }

    .hero-subtitle {
      font-size: 18px;
      margin-top: 12px;
      margin-bottom: 20px;
      max-width: 520px;
    }

    .btn-primary-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 999px;
      background: var(--orange);
      color: #000;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      border: 2px solid var(--orange);
      transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    }

    .btn-primary-cta:hover {
      background: transparent;
      color: var(--white);
      transform: translateY(-1px);
    }

    .hero-phone-wrap {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-aff-title {
      font-size: 22px;
      font-style: italic;
      font-weight: 700;
      margin-top: 26px;
      margin-bottom: 12px;
    }

    .hero-video-wrapper {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(0, 0, 0, 0.6);
    }

    .hero-right-text {
      font-size: 13px;
      text-align: center;
      margin-bottom: 10px;
    }

    @media (max-width: 992px) {
      .hero-title {
        font-size: 30px;
      }

      .hero-subtitle {
        font-size: 16px;
      }
    }

    @media (max-width: 768px) {
      .hero-section {
        padding-top: 70px;
      }

      .hero-title {
        font-size: 26px;
      }

      .hero-right-text {
        text-align: left;
      }

      .navbar-brand .logo-text {
        display: none; /* simplify on small screens */
      }
    }

    @media (max-width: 576px) {
      .hero-title {
        font-size: 22px;
      }

      .hero-aff-title {
        font-size: 18px;
      }
    }
   /* TRUSTED BY SECTION */
.trusted-section {
    background-color: #ffffff;
    padding: 24px 0 30px;
    border-top: 1px solid #f0f0f0;
}

.trusted-heading {
    font-weight: 700;
    font-size: 23px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1f3e5c;
    margin-bottom: 4px;
}

.trusted-rating {
    font-weight: 500;
    font-size: 14px;
    color: #374957;
    margin-bottom: 0;
}

.rating-stars {
    color: #f6b400;
    margin-right: 6px;
    font-size: 17px;
}

/* Auto slider */
.trusted-logos-wrapper {
    margin-top: 20px;
    overflow: hidden;              /* hide outside area */
}

.trusted-logos-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

.trusted-logos-group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.trusted-logo {
    height: 100px;                  /* bigger logos */
    width: auto;
    flex-shrink: 0;
}

/* Animation: move left continuously */
@keyframes scroll-logos {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .trusted-logos-group {
        gap: 40px;
        padding-right: 40px;
    }
    .trusted-logo {
        height: 52px;
    }
}

@media (max-width: 576px) {
    .trusted-heading {
        font-size: 13px;
    }
    .trusted-rating {
        font-size: 13px;
    }
    .trusted-logos-group {
        gap: 32px;
        padding-right: 32px;
    }
    .trusted-logo {
        height: 44px;
    }
}
.books-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-top: 1px solid #f3f3f3;
}

.books-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f3e5c;
  text-align: center;
  margin-bottom: 24px;
}

/* TABS WRAPPER */
.book-tabs {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hide radios */
.book-tabs input[type="radio"] {
  display: none;
}

/* TAB HEADERS */
.book-tabs-header {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.book-tabs-header .tab-label {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid #d7e2ee;
  color: #375273;
  background-color: #f7f9fc;
  transition: all 0.2s ease;
}

/* ACTIVE TAB LABELS */
#tab-hot:checked ~ .book-tabs-header label[for="tab-hot"],
#tab-best:checked ~ .book-tabs-header label[for="tab-best"],
#tab-editors:checked ~ .book-tabs-header label[for="tab-editors"] {
 background-color: #fd5d2a;
    color: #ffffff;
    border-color: #fd5d2a;
}

/* PANELS */
.book-tabs-panels .tab-panel {
  display: none;
}

#tab-hot:checked ~ .book-tabs-panels .panel-hot,
#tab-best:checked ~ .book-tabs-panels .panel-best,
#tab-editors:checked ~ .book-tabs-panels .panel-editors {
  display: block;
}

/* BOOK GRID */
.book-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.book-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background-color: #f9fbff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(9, 30, 66, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  height: 100%;
}

.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(9, 30, 66, 0.12);
}

.book-cover {
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.book-cover img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.book-info {
  flex: 1;
}

.book-title {
  font-size: 14px;
  font-weight: 700;
  color: #1f3e5c;
  margin-bottom: 6px;
}

.book-meta {
  font-size: 12px;
  color: #607089;
  line-height: 1.4;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .books-section {
    padding: 40px 0;
  }

  .books-section-title {
    font-size: 20px;
  }

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

  .book-tabs-header .tab-label {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* === SERVICES SECTION === */
.services-section {
  padding: 80px 0;
  background: #f7f9fc; /* light background */
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Eyebrow, title, subtitle */
.section-eyebrow {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e6822b;
  margin-bottom: 10px;
  font-family: "Questrial", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  line-height: 1.2;
  color: #324355;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Poppins", "Montserrat", system-ui, sans-serif;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 40px;
  color: #556273;
  font-family: "Questrial", sans-serif;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 18px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #e6822b, #ffb35a);
}

/* Tag pill */
.service-tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e6822b;
  background: rgba(230, 130, 43, 0.1);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-family: "Questrial", sans-serif;
  font-weight: 600;
}

/* Heading & text */
.service-heading {
  font-size: 18px;
  color: #324355;
  margin-bottom: 6px;
  font-weight: 600;
  font-family: "Poppins", "Montserrat", system-ui, sans-serif;
}

.service-text {
  font-size: 14px;
  color: #6d7787;
  margin-bottom: 12px;
  line-height: 1.6;
  font-family: "Montserrat", sans-serif;
}

/* Bullet list with checkmarks */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 14px;
  color: #324355;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-family: "Montserrat", sans-serif;
}

.service-list li::before {
  content: "✔";
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #e6822b;
  color: #e6822b;
}

/* CTA row */
.services-cta {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Primary button (you can reuse your existing .btn style if you have one) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: #324355;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease;
  font-family: "Poppins", "Montserrat", system-ui, sans-serif;
}

.btn-primary:hover {
  background: #1f2a38;
  transform: translateY(-1px);
}

/* Phone link */
.services-phone {
  font-size: 16px;
  color: #324355;
  text-decoration: underline;
  font-weight: 600;
  font-family: "Poppins", "Montserrat", system-ui, sans-serif;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .services-phone {
    width: 100%;
    text-align: center;
  }
}
.about-section {
  background-color: #000; /* keep white background like your screenshot */
  color: #333;
}

.about-title {
  font-family: 'Questrial', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 25px;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
  margin-top: 15px;
}

.about-text {
  font-size: 19px;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 18px;
}

.orange-text {
  color: #FD5D2A;
  font-weight: 700;
}

.white-text {
  color: #000; /* If your background is black, change to white */
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 42px;
  }

  .about-subtitle {
    font-size: 22px;
  }

  .about-text {
    font-size: 17px;
  }
}
/* === ABOUT HERO SECTION === */

.about-hero {
  position: relative;
  min-height: 80vh;
  width: 100%;
  background-image: url("images/about-bg.jpg"); /* 👉 replace with your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;  /* sticky / parallax-style background */
  color: #fff;
}

.about-hero-overlay {
    /* background-color: rgba(0, 0, 0, 0.72); */
    width: 100%;
    height: 100%;
    padding: 80px 0;
    background-image: url(https://static.wixstatic.com/media/a9822a_76229b94a7ca4bee8dab307f66a1a69a~mv2.jpg/v1/fill/w_1901,h_613,al_b,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/a9822a_76229b94a7ca4bee8dab307f66a1a69a~mv2.jpg);
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
}
.about-hero-overlay:before {
    background: rgb(0 0 0 / 83%);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    content: "";
    top: 0;
}

.col-lg-5.mb-4.mb-lg-0 {
    z-index: 11;
}

.col-lg-7 {
    z-index: 1;
}
.about-title {
  font-family: "Questrial", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

.about-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
}

.about-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #f5f5f5;
}

.accent {
  color: #fd5d2a;
}

.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 60px;
  border: 2px solid #fd5d2a;
  color: #ffffff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-align: center;
  background: transparent;
  transition: all 0.25s ease;
}

.about-btn:hover {
  background: #fd5d2a;
  color: #000;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .about-hero {
    background-attachment: scroll; /* safer on mobile */
  }

  .about-title {
    font-size: 40px;
  }

  .about-subtitle {
    font-size: 20px;
  }

  .about-text {
    font-size: 16px;
  }
}
/* Section background */
.bestsellers {
  padding: 60px 0 70px;
  background: #ffffff;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* Heading — FULL BOLD NOW */
.bestsellers-title {
  font-size: 32px;
  text-align: center;
  margin: 0 0 12px;
  font-weight: 900 !important; /* FULL BOLD */
}

.bestsellers-title .navy {
  color: #1a3154;
  font-weight: 900 !important;
}

.bestsellers-title .orange {
  color: #fd5d2a;
  font-weight: 900 !important;
}

/* Subheading */
.bestsellers-subtitle {
  max-width: 750px;
  margin: 0 auto 35px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Grid */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  justify-items: center; /* centers cards */
}

/* Book card container */
.book-card {
  width: 100%;
  display: flex;
  justify-content: center; /* centers book inside card */
}

/* Card styling */
.book-inner {
  background: #fbf2e7;
  padding: 18px 12px 20px;
  text-align: center;
  border-radius: 3px;
  width: 180px; /* keeps uniform sizing */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers image */
  margin: 0 auto;
}

/* Book covers — CENTERED PERFECTLY */
.book-inner img {
  display: block;
  margin: 0 auto 12px; /* centers horizontally */
  width: 130px;
  height: auto;
  object-fit: cover;
}

/* Book titles */
.book-title {
  font-size: 14px;
  color: #fd5d2a;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* Hover */
.book-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* CTA button */
.bestsellers-cta {
  margin-top: 40px;
  text-align: center;
}

.bestsellers-button {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  background: #fd5d2a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.bestsellers-button:hover {
  opacity: 0.9;
}

/* Responsive layout */
@media (max-width: 1200px) {
  .bestsellers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .bestsellers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bestsellers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bestsellers-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .bestsellers-grid {
    grid-template-columns: 1fr;
  }
}
/* Testimonials / Stories section */
.stories {
  padding: 60px 0 70px;
  background: #ffffff;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.stories-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.stories-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 30px;
}

.stories-title .navy {
  color: #1a3154;
}

.stories-title .orange {
  color: #fd5d2a;
}

/* Slider – two testimonial images side by side */
.stories-slider {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.stories-slide {
  flex: 0 1 48%;
  max-width: 520px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stories-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* "See our reviews" text */
.stories-subheading {
  text-align: center;
  font-size: 18px;
  margin: 10px 0 18px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Review badges row */
.review-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.review-badges img {
  display: block;
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.review-badges a:hover img {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 900px) {
  .stories-title {
    font-size: 26px;
  }

  .stories-slide {
    flex: 0 1 100%;
  }
}

@media (max-width: 600px) {
  .stories-title {
    font-size: 22px;
  }
}
/* Section wrapper */
.stories {
  padding: 60px 0 0px;
  background: #ffffff;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.stories-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading – BOLD */
.stories-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900; /* bold */
  line-height: 1.3;
  margin: 0 0 30px;
}

.stories-title .navy {
  color: #1a3154;
}

.stories-title .orange {
  color: #fd5d2a;
}

/* Slider */
.stories-slider {
  position: relative;
  max-width: 520px;
  margin: 0 auto 30px;
}

.stories-track {
  position: relative;
  overflow: hidden;
}

.stories-slide {
  display: none;
}

.stories-slide.active {
  display: block;
}

.stories-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Arrows */
.stories-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-arrow.prev {
  left: -50px;
}

.stories-arrow.next {
  right: -50px;
}

.stories-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* "See our reviews" text */
.stories-subheading {
  text-align: center;
  font-size: 18px;
  margin: 10px 0 18px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Badges row */
.review-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.review-badges img {
  display: block;
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.review-badges a:hover img {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .stories-title {
    font-size: 26px;
  }

  .stories-arrow.prev {
    left: -30px;
  }

  .stories-arrow.next {
    right: -30px;
  }
}

@media (max-width: 600px) {
  .stories-title {
    font-size: 22px;
  }

  .stories-arrow.prev {
    left: -20px;
  }

  .stories-arrow.next {
    right: -20px;
  }
}
.stories-title {
  text-align: center;
  font-size: 38px;
  font-weight: 900; /* FULL BOLD */
  line-height: 1.3;
  margin-bottom: 40px;
}

.stories-title span {
  font-weight: 900 !important; /* FORCE BOLD ON ALL WORDS */
}

.stories-title .navy {
  color: #1b3257;
}

.stories-title .orange {
  color: #fd5d2a;
}

/* Section */
.results-section {
  padding: 60px 0;
  text-align: center;
}

/* Heading */
.results-heading {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
  color: #213246;
  margin-bottom: 50px;
}

.results-highlight {
  color: #f57c00;
  font-weight: 700;
}

/* Video Grid - 3 in a row */
.results-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  justify-items: center;
  margin-bottom: 40px;
}

/* Video Card */
.results-video-card {
  border: 4px solid #ff7a1a;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
  max-width: 420px;
}

.results-video-card video {
  width: 100%;
  border-radius: 6px;
}

/* CTA BAR */
.results-cta-bar {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

/* Download Guide Button */
.results-download-link {
  background: #f57c00;
  color: #fff;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid #cc6100;
  transition: 0.3s;
}

.results-download-link:hover {
  background: #cc6100;
}

/* Call Button */
.results-call-btn {
  background: #fff;
  color: #f57c00;
  font-size: 22px;
  font-weight: 700;
  padding: 15px 30px;
  border: 2px solid #f57c00;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .results-videos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .results-heading {
    font-size: 32px;
  }

  .results-videos-grid {
    grid-template-columns: 1fr;
  }

  .results-download-link {
    font-size: 18px;
    padding: 16px 25px;
  }

  .results-call-btn {
    font-size: 20px;
  }
}
/* SECTION BACKGROUND */
.eval-section {
  padding: 60px 20px 80px;
  background: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
}

/* CENTERED CONTAINER */
.eval-container {
  max-width: 900px;
  margin: 0 auto;
  background: #f4f6f9;
  border-radius: 14px;
  padding: 28px 26px 30px;
  border: 3px solid #ff7f20; /* orange border like screenshot */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* MAIN HEADING */
.eval-heading {
  font-size: 38px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 10px;
  color: #ff7f20;             /* strong orange */
  font-weight: 800;
}

/* SUBTITLE */
.eval-subtitle {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #333c4d;
  max-width: 720px;
  margin: 0 auto 28px;
}

/* FORM LAYOUT */
.eval-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* TWO-COLUMN ROWS (desktop) */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* FIELD WRAPPER */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* LABELS */
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #555f6f;
}

.form-field label span {
  color: #ff5a1f;
      font-weight: 600;
}

/* INPUTS / SELECT / TEXTAREA */
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="file"],
.form-field select,
.form-field textarea {
  border: 1px solid #d4d9e2;
  border-radius: 4px;
  padding: 9px 11px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #a0a7b4;
  font-size: 12px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #ff7f20;
  box-shadow: 0 0 0 2px rgba(255, 127, 32, 0.2);
  background: #fffdf9;
}

/* TEXTAREA */
.form-field textarea {
  resize: vertical;
  min-height: 90px;
}

/* SMALL NOTE UNDER FIELD */
.field-note {
  font-size: 11px;
  color: #8a92a3;
}

/* RADIO GROUP */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 4px;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #4e5665;
}

.radio-group input[type="radio"] {
  accent-color: #ff7f20;
}

/* CHECKBOX */
.form-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #555f6f;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #ff7f20;
}

/* OPTIONAL TEXT */
.optional {
  font-weight: 400;
  color: #8a92a3;
}

/* SUBMIT BUTTON AREA */
.form-actions {
  margin-top: 8px;
  text-align: center;
}

/* BIG ORANGE BUTTON */
.eval-submit-btn {
  width: 100%;
  max-width: 100%;
  background: #ff7f20;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 24px rgba(255, 127, 32, 0.4);
  transition: background 0.2s ease, transform 0.08s ease, box-shadow 0.2s ease;
}

.eval-submit-btn:hover {
  background: #e56710;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 127, 32, 0.45);
}

.eval-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(255, 127, 32, 0.35);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .eval-container {
    padding: 22px 16px 24px;
    border-width: 2px;
  }

  .eval-heading {
    font-size: 26px;
  }

  .eval-subtitle {
    font-size: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* BG SECTION */
.op-footer-hero {
  position: relative;
  background: url('https://static.wixstatic.com/media/a9822a_895f803568b0449dbe968ad91b206fde~mv2.jpg') center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
  padding-bottom: 30px;
}

.op-footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.op-footer-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/******** TEXT ********/
.op-footer-heading {
  color: #fd5d2a;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.op-footer-sub {
  font-size: 18px;
  line-height: 1.5;
  margin: 8px auto;
  max-width: 650px;
}

/******** LOGOS ********/
.op-footer-logos {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.op-footer-logos img {
  height: 70px;
  object-fit: contain;
}

/******** FULFILLMENT BUTTON ********/
.op-footer-btn {
  display: inline-block;
  background: #fff;
  padding: 12px 40px;
  margin-top: 25px;
  border-radius: 6px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/******** SOCIAL ********/
.op-follow-label {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 700;
  color: #fd5d2a;
}

.op-social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 12px;
}

.op-social-links img {
  width: 40px;
  height: 40px;
}

/******** TAGLINE ********/
.op-footer-tagline {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
}

.op-footer-tagline .orange { color: #fd5d2a; }
.op-footer-tagline .white { color: #fff; }

/******** MOBILE ********/
@media(max-width: 768px) {
  .op-footer-heading { font-size: 30px; }
  .op-footer-sub { font-size: 15px; }
  .op-footer-tagline { font-size: 18px; }
}
img.ty {
    position: relative;
    top: -30px;
}

   /* The main modal backdrop and container */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7); /* Dark semi-transparent overlay */
            display: none; /* Hidden by default */
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        /* The modal panel itself */
        .modal-panel {
            background: var(--bg-white);
            border-radius: 1rem; /* rounded-xl */
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
            max-width: 90%;
            max-height: 90vh; /* Viewport height limit */
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* Modal Content Layout (Two Columns) */
        .modal-content-grid {
            display: flex;
            flex-direction: column; /* Stacked on mobile */
            height: 100%;
        }

        @media (min-width: 768px) {
            .modal-panel {
                max-width: 900px; 
                flex-direction: row;
            }
            .modal-content-grid {
                flex-direction: row;
            }
        }

        /* Left Column: Image/Upload Area */
        .modal-image-col {
            background-color: #2c2c2c; /* Dark background */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            flex: 1;
            min-height: 200px;
        }
        
        @media (min-width: 768px) {
            .modal-image-col {
                min-height: 550px; /* Fixed height on desktop */
            }
        }
        
        /* Right Column: Form */
        .modal-form-col {
            background-color: #3f3f3f; /* Slightly lighter dark background for form */
            flex: 1;
            padding: 2rem;
            color: var(--text-light);
            overflow-y: auto; /* Scrollable if content is too long */
        }

        /* Form Styling Overrides */
        .modal-form-col label {
            font-size: 0.875rem; /* text-sm */
            margin-bottom: 0.25rem;
            display: block;
            color: #d1d5db; /* text-gray-300 */
        }
        
        .modal-form-col input,
        .modal-form-col textarea {
            width: 100%;
            padding: 0.75rem;
            margin-bottom: 1.25rem;
            border-radius: 0.5rem;
            border: 1px solid #4b5563; /* border-gray-600 */
            background-color: #2c2c2c; /* input dark background */
            color: var(--text-light);
            outline: none;
            transition: border-color 0.2s;
        }

        .modal-form-col input:focus,
        .modal-form-col textarea:focus {
            border-color: var(--atticus-orange);
        }
        
        .modal-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.875rem; /* text-3xl */
            color: var(--text-light);
            margin-bottom: 1rem;
            text-align: left;
        }

        /* Close Button */
        .modal-close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            line-height: 1;
            color: var(--text-light);
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 10;
            padding: 0.5rem;
            border-radius: 50%;
            transition: background-color 0.2s;
        }

        .modal-close-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* Custom Orange Button */
        .btn-orange {
            background-color: var(--atticus-orange);
            color: var(--text-light);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s, transform 0.1s;
            cursor: pointer;
            border: none;
            width: 100%;
            margin-top: 1.5rem;
            box-shadow: var(--shadow);
        }

        .btn-orange:hover {
            background-color: #e54c1f;
            transform: translateY(-1px);
        }

        /* Custom File Upload Styling */
        .file-upload-container {
            border: 2px dashed #4b5563;
            border-radius: 0.5rem;
            padding: 1.5rem 1rem;
            text-align: center;
            cursor: pointer;
            transition: border-color 0.2s;
        }
        
        .file-upload-container:hover {
            border-color: var(--atticus-orange);
        }

        .file-upload-container input[type="file"] {
            display: none;
        }

        .file-upload-label {
            display: block;
            color: var(--atticus-orange);
            font-weight: 700;
        }
        
        .file-upload-text {
            color: #9ca3af; /* text-gray-400 */
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }

        .preview-image {
            max-width: 100%;
            max-height: 300px;
            object-fit: contain;
            border-radius: 0.5rem;
        }


h2.text-5xl.font-extrabold.mb-6.leading-tight {
    font-size: 22px;
}

p.text-lg.mb-8.opacity-90 {
    font-size: 16px;
}

.left-panel.flex-shrink-0.md\:w-1\/2.p-8.md\:p-12.bg-orange-600.text-white.rounded-t-xl.md\:rounded-l-xl.md\:rounded-tr-none {
    height: 100%;
    background-size: 100%;
    position: relative;
    max-height: 100%;
}

.feature-list li::before {
    color: #fff !important;
}

input{
    color: #000;
}

ul.feature-list.text-lg.space-y-3.mb-10 li {
    font-size: 15px;
}

.right-panel.flex-shrink-0.md\:w-1\/2.p-8.md\:p-12 {
    padding-top: 0px;
}

textarea#description {
    height: 90px;
}

textarea#description {
    color: #000;
}
button .openModalBtn {
    text-align: center;
    margin: 0 auto;
    display: block;
    margin-top: 50px;
}
a.nav-link {

    VISIBILITY: VISIBLE;
}

.d-flex.align-items-center.mb-2.mb-lg-0 {
    VISIBILITY: VISIBLE;
}