:root {
  --sans: 'Plus Jakarta Sans', sans-serif;
  --serif: 'Playfair Display', serif;
  --script: 'Great Vibes', cursive;
  --navy: #0e1f3c;
  --navy-dark: #091428;
  --gold: #c1902f;
  --gold-light: #d1a94a;
  --cream: #f7f4ec;
  --ink: #1d222b;
  --muted: #5f6873;
  --line: #e7e2d7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Main Wrapper / Container */
.wrap,  
.container,  
header .nav-container,  
.hero__inner,  
.footer__inner {
  width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Full Width Sections */
header,  
section,  
footer {
  width: 100%;
  position: relative;
}

/* Navigation */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0; 
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 200px;
}

.logo__mark {
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 800;
  font-size: 24px;
}

.logo__text {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.15;
}

.logo__text small {
  font-weight: 600;
  font-size: 11px;
  color: var(--muted);
}

.nav__links {
  display: flex;
  gap: 15px;
  align-items: center;
  list-style: none;
}

.nav__links li {
  position: relative;
  padding: 0 12px 0 0;
}

.nav__links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding-bottom: 5px;
  display: inline-block;
  transition: color 0.3s ease;
  font-family: var(--sans);
  font-size: 15px;
}

.nav__links li a:hover {
  color: var(--gold);
}

.nav__links li.current-menu-item a,
.nav__links li.current_page_item a,
.nav__links li a.active {
  color: #bf8c3d;
}

.nav__links li.current-menu-item a::after,
.nav__links li.current_page_item a::after,
.nav__links li a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #bf8c3d;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
  padding: 5px;
  outline: none;
}

.mobile-cta {
  display: none;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Buttons Styling */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .3px;
  padding: 10px 14px;
  border-radius: 4px;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
}

.btn--navy:hover {
  background: var(--navy-dark);
}

.btn--outline {
  background: #fff;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--cream);
}

.hero__btns {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  margin-bottom: 15px !important;
}

/* Hero / Banner Section */
.hero {
  background: url(https://jatindersharda.com/wp-content/uploads/2026/07/img.png) !important;
  background-size: cover !important;
  padding: 96px 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  margin-top: 4px;
}

.eyebrow {
  font-family: var(--sans);
  color: var(--gold) !important;
  font-weight: 800 !important;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-top: 3px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 33px;
  line-height: 1.46;
  color: var(--navy);
  margin-bottom: 14px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero p.lead {
  font-family: var(--sans);
  color: #4b535d;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 18px;
}

/* Center Column */
.hero__center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 63%;
  z-index: 3;
}

.signature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: rotate(-4deg);
  margin-bottom: 14px;
}

.sig-line-1 {
  font-family: var(--script);
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 400;
}

.sig-line-2 {
  font-family: var(--script);
  color: var(--gold);
  font-size: 42px;
  line-height: 0.6;
  margin-left: 20px;
  font-weight: 400;
}

.signature img {
  width: 200px;
}

.creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: flex-start;
}

.cred {
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  color: #2f3742;
  font-weight: 600;
  white-space: nowrap;
}

.cred .icon {
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.credentials-container span {
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  color: #2f3742;
  font-weight: 600;
  white-space: nowrap;
}

.credential-item span.icon i {
  color: #c1902f;
}

/* Right Column */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}

.hero__photo {
  max-height: 580px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  margin-left: auto;
}

/* Stats Bar */
.stats {
  background: var(--navy);
  color: #fff;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  padding: 20px 0;
  gap: 15px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  height: 32px;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.stat img {
  width: 70px;
  height: 120px;
  object-fit: contain;
}

.stat b {
  font-family: var(--sans);
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.stat span {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

/* Cards Grid */
.section {
  padding: 60px 0;
}

section.section {
  background: #fff;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(20,30,50,.05);
}

.card__img {
  border-radius: 4px;
  margin-bottom: 18px;
  object-fit: cover;
  width: 100%;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  /*margin-left: 12px;*/
}

.card p {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 14px;
      height: 98px;
}

.link {
  font-family: var(--sans);
  color: var(--gold);
  font-weight: 600;
  font-size: 19px;
}

/* About & Biopolis Divisions Section */
.about {
  background: var(--cream);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 40px;
  align-items: center;
}

.about h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  /*margin-left: 9px;*/
}

.about p {
  font-family: var(--sans);
  color: #4b535d;
  font-size: 13.5px;
  font-weight: 400;
  margin-bottom: 20px;
}

.about__photo {
  width: 264px;
  border-radius: 6px;
  float: right;
  margin: -28px 51px 10px 8px;
  object-fit: cover;
}

/* Divisions Box Design (Image Match) */
.divisions-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.divisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.division {
  text-align: center;
  padding: 25px 15px;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: background-color 0.3s ease;
}

.division:hover {
  background-color: #fcfcfc;
}

.division:nth-child(3n) {
  border-right: none;
}

.division:nth-last-child(-n+3) {
  border-bottom: none;
}

.division img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  /*margin-bottom: 10px;*/
}

.division b {
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: .5px;
}

.division span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: #556070;
  display: block;
}

/* Color accents matching reference image */
.division:nth-child(1) span { color: #2e4374; }
.division:nth-child(2) span { color: #d63384; }
.division:nth-child(3) span { color: #2563eb; }
.division:nth-child(4) span { color: #cb3f70; }
.division:nth-child(5) span { color: #2e7d32; }
.division:nth-child(6) span { color: #1d4ed8; }

.explore {
  font-family: var(--sans);
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}

.feature-item span {
  margin-top: 20px;
}

/* Testimonials */
.testi {
  text-align: center;
}

.testi__head {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 15px;
  color: var(--navy);
  text-transform: uppercase;
}

.testi__rule {
  width: 46px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 35px;
  border-radius: 2px;
}

.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}

.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(20,30,50,.05);
}

.quote__mark {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--gold);
  line-height: .6;
  height: 22px;
  font-weight: 400;
}

.quote p {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 400;
  color: #39414c;
  margin: 14px 0 16px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 14px;
}

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

.person img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.person b {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.person span {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}

.dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 25px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4cebf;
  display: inline-block;
}

.dots i.on {
  background: var(--gold);
}

/* Newsletter Section */
section.news,
.news {
  background: var(--navy) !important;
  border-radius: 12px;
  margin: 20px auto;
  position: relative;
  overflow: visible !important;
}

.news__inner {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
}

.news__inner::before {
  content: '';
  position: absolute;
  left: 56%;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.news__badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: #0e1f3c;
}

.news h3 {
  font-family: var(--serif);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.news p {
  font-family: var(--sans);
  color: #c4cddd;
  font-size: 13px;
  font-weight: 400;
  max-width: 340px;
  line-height: 2.4;
}

.news__content {
  display: flex;
}

.news_content h3, 
.news_content p {
  padding-left: 12px;
  line-height: 32.1px;
}

.news__form-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.news__form-wrapper::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.news__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 340px;
}

.news__form input {
  font-family: var(--sans);
  padding: 12px 14px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  background: #fff;
}

.news__form button {
  width: 100%;
  padding: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.news__perks {
  font-family: var(--sans);
  display: flex;
  gap: 12px;
  margin-top: 6px;
  color: #c4cddd;
  font-size: 11.5px;
  font-weight: 400;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news__perks i {
  color: var(--gold);
  margin-right: 3px;
}

.news__perks span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.news__mockups {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  transform: translateY(-83px);
}

.mockup-tablet {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  max-height: 200px;
}

.mockup-phone {
  width: 95px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  max-height: 145px;
}

/* Featured / Trusted By */
.featured {
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}

.featured__label {
  font-family: var(--sans);
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured__logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.flogo {
  font-family: var(--serif);
  font-weight: 700;
  color: #2b3340;
  font-size: 18px;
}

.flogo small {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}

span.flogo img {
  width: 213px;
}

/* Footer Section */
.footer {
  background: var(--navy-dark);
  color: #c3ccda;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.2fr;
  gap: 30px;
  padding: 45px 0 25px;
}

.footer .logo__text {
  color: #fff;
}

.footer p {
  font-size: 14px;
  color: #fff;
  margin: 14px 0;
  max-width: 250px;
}

p.footer_auth {
  margin: 0;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 17px;
}

.socials a {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: #1b3358;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
}

.socials a:hover {
  background: var(--gold);
  color: #fff;
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul a {
  font-size: 14px;
  color: #fff;
}

.footer ul a:hover {
  color: var(--gold);
}

.contact-line {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
  display: flex;
}

.contact-line i {
  color: #c1902f;
  margin: 6px 9px 5px 4px;
  display: flex;
}

a.email_fooetr {
  display: contents;
}

.copyright {
  border-top: 1px solid #1c3357;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #fff;
}

/* ==========================================================================
   RESPONSIVE STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TABLETS & SMALL LAPTOPS (Screen width <= 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  a.btn.btn--navy {
    margin: 0;
  }

  .wrap.stats__inner {
    grid-template-columns: auto;
    gap: 0;
  }

  .about__grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .about__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about__photo {
    float: none !important;
    margin: 15px auto 20px !important;
    width: 220px !important;
    display: block;
  }

  .about h2 {
    margin-left: 0 !important;
    font-size: 24px !important;
  }

  .about__right {
    text-align: center;
  }

  .divisions-box {
    padding: 0 !important;
  }

  p.eyebrow {
    text-align: center;
  }

  img.about__photo {
    float: none;
  }

  .about__left h2 {
    text-align: center;
  }

  .about p {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    /*margin-bottom: 43px !important;*/
  }

  .news__badge {
    width: 91px;
    margin-top: 38px;
  }

  .news_content h3 {
    margin-top: 37px;
  }

  .news_content p {
    font-size: 16px;
  }

  .news__mockups {
    margin-top: 90px;
  }

  .signature {
    margin-left: 39px;
  }

  .btn--navy {
    margin-left: 40px;
    margin-bottom: 15px;
  }

  /* Divisions layout on tablet */
  .divisions {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .hero__btns a {
    margin: 21px 0 0px 2px;
    width: 100%;
  }

  .signature-box {
    width: 167px;
    margin-bottom: 0;
  }

  .nav__inner {
    height: 80px !important;
    position: relative;
    justify-content: space-between;
    padding: 10px 0;
  }

  .logo {
    width: 180px !important;
  }

  .desktop-cta {
    display: none !important;
  }

  .nav__toggle {
    display: block !important;
  }

  .nav__menu-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--line);
    padding: 20px 0;
    display: none;
    z-index: 999;
  }

  .nav__menu-wrapper.menu-open {
    display: block !important;
  }

  .nav__links {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    align-items: center;
    width: 100%;
  }

  .nav__links li {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #f4f4f4;
  }

  .nav__links li a {
    display: block;
    font-size: 16px;
  }

  .mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 0 20px;
  }

  .mobile-cta .btn {
    width: 80%;
    text-align: center;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 22px 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    display: unset;
  }

  .hero p.lead {
    margin: 0 auto 22px;
  }

  .hero__btns {
    display: block !important;
    justify-content: center;
  }

  .hero__center {
    order: 2;
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .creds {
    align-items: center;
  }

  .hero__visual {
    justify-content: center;
    order: 3;
  }

  /* Stats Section */
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    margin-left: 38px;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  /* Grid Layout Adjustments */
  .cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .news__form-wrapper::before {
    display: none;
  }

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

/* --------------------------------------------------------------------------
   2. MOBILE DEVICES (Screen width <= 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .divisions {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .division {
    border-right: 1px solid #e2e8f0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }

  .division:nth-child(2n) {
    border-right: none !important;
  }

  /*.division:nth-last-child(-n+2) {
    border-bottom: none !important;
  }*/
}

/* --------------------------------------------------------------------------
   3. SMALL MOBILE DEVICES (Screen width <= 576px)
   -------------------------------------------------------------------------- */
@media (max-width: 576px) {
  .hero__inner {
    display: unset;
    padding: 22px 0;
  }

  a.btn.btn--navy {
    margin: 0;
  }

  .about {
    padding: 40px 0 !important;
  }

  .wrap.stats__inner {
    grid-template-columns: auto;
    gap: 0;
  }

  .about__photo {
    width: 180px !important;
  }

  .about h2 {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

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

  .signature img {
    width: 160px !important;
    margin-bottom: 15px;
  }

  /* Divisions Box Layout Adjustment for Mobile */
  .divisions-box {
    padding: 0 !important;
  }

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

  .division {
    padding: 20px 10px !important;
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
    width: 100%;
  }

  .division:last-child {
    border-bottom: none !important;
  }

  .division img {
    height: 45px !important;
    max-width: 180px !important;
    object-fit: contain;
    margin-bottom: 8px !important;
  }

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

  .explore {
    margin-top: 15px;
    font-size: 14px;
  }

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

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

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

  .featured {
    padding: 25px 0;
  }

  .featured__label {
    font-size: 14px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
  }

  .featured__logos {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 15px !important;
    align-items: center !important;
    justify-items: center !important;
  }

  .flogo {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    font-size: 16px;
  }

  .flogo img,
  span.flogo img {
    max-width: 130px !important;
    height: auto !important;
    max-height: 45px !important;
    object-fit: contain;
  }
}

/* ==========================================================================
   CUSTOM SINGLE PRODUCT PAGE STYLES
   ========================================================================== */

/* Outer Layout Container */
.product-page-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  align-items: start;
}

@media (min-width: 768px) {
  .product-page-container {
    grid-template-columns: 45% 1fr; /* Image takes 45%, Details take rest */
    gap: 60px;
  }
}

/* --------------------------------------------------------------------------
   Left Side: Book Cover / Image Section
   -------------------------------------------------------------------------- */
.product-image-section {
  display: flex;
  justify-content: center;
}

.product-image-section .book-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-section .book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.product-image-section .book-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Right Side: Product Details Section
   -------------------------------------------------------------------------- */
.product-details-section {
  display: flex;
  flex-direction: column;
}

/* Tagline */
.product-details-section .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0073aa; /* Accent Color */
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Headings */
.product-details-section .product-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1d2327;
  margin: 0 0 10px 0;
}

.product-details-section .product-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #50575e;
  margin: 0 0 16px 0;
}

/* Author Badge */
.author-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background-color: #f0f6fc;
  color: #1d2327;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #c5d9ed;
  margin-bottom: 24px;
}

/* Price */
.product-details-section .product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.product-details-section .product-price del {
  color: #9ca3af;
  font-size: 1.3rem;
  margin-right: 8px;
}

.product-details-section .product-price ins {
  text-decoration: none;
  color: #22c55e;
}

/* Short Description */
.book-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 28px;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #374151;
}

.highlight-item .icon {
  font-size: 1.2rem;
}

/* WooCommerce Add to Cart & Quantity Integration */
.purchase-action-wrapper {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

/* Style default WooCommerce form layout */
.purchase-action-wrapper form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.purchase-action-wrapper .quantity input.qty {
  width: 65px;
  height: 48px;
  text-align: center;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
}

.purchase-action-wrapper button.single_add_to_cart_button {
  height: 48px;
  padding: 0 28px;
  background-color: #0073aa;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.purchase-action-wrapper button.single_add_to_cart_button:hover {
  background-color: #005177;
}

/* Meta Details (ISBN & Category) */
.meta-info {
  font-size: 0.95rem;
  color: #6b7280;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-info p {
  margin: 0;
}

.meta-info a {
  color: #0073aa;
  text-decoration: none;
}

.meta-info a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Author Section
   -------------------------------------------------------------------------- */
.author-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.author-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #111827;
  text-align: center;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.author-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.author-info p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 20px 0;
}

.author-quote {
  margin: 0;
  padding: 16px 20px;
  background-color: #ffffff;
  border-left: 4px solid #0073aa;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: #0f172a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}