/* =======================================================
   BASE / GLOBAL
======================================================= */
:root {
  --grb-green: #018c5f;
  --grb-yellow: #f8e1a0;
  --grb-pink: #f7c2c3;
  --grb-cream: #fff9f0;
  --grb-red: #c4302b;
  --body-text: #555555;
  --heading-text: #222222;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--body-text);
  background-color: #fbf8f0;
}

/* fixed-width layout for pixel-perfect Figma */
.container {
  max-width: 1320px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--heading-text);
  margin: 0 0 10px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
  color: #2c3c85;
  font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.body-text {
  font-size: 20px;
  line-height: 1.7;
  font-family: Hanken Grotesk, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* =======================================================
   HEADER / NAVBAR
======================================================= */
.grb-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 50;
}

.grb-navbar {
  background: transparent !important;
  padding: 22px 0;
}

.navbar>.container {
  align-items: flex-start;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-left: 58px;
  font-family: Hanken Grotesk, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffffff !important;
}

/* =======================================================
   HERO SECTION
======================================================= */
.hero-section {
  position: relative;
  height: 720px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-content-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: #ffffff;
}

.hero-label {
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  font-family: "Hanken Grotesk", sans-serif;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 30px;
  max-width: 40%;
}

/* green CTA button (reused) */
.green-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #5a9a51;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  text-decoration: none;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.green-btn .arrow {
  font-size: 18px;
  line-height: 1;
  margin-top: -2px;
}

.green-btn:hover {
  background-color: #3e742d;
  color: #ffffff;
}

/* slider dots */
.hero-dots {
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 8px;
}

.dot.active {
  background-color: #C6D279;
}

/* tilted pattern */
.pattern-tilted {
  position: absolute;
  bottom: -2px !important;
  transform: rotate(0deg) !important;
  left: -1%;
  width: 102%;
  /* transform: rotate(4deg); */
  z-index: 9;
  /* background-color: #ffffff; */
}

/* =======================================================
   LEGACY SECTION
======================================================= */
.legacy-section {
  background-color: #fbf8f0;
  margin-top: 40px;
}

.legacy-section .section-title {
  max-width: 50%;
}

.legacy-section .body-text {
  max-width: 93%;
}

.legacy-illustration {
  max-width: 420px;
}

/* =======================================================
   BRAND CARDS
======================================================= */
.brands-section {
  background-color: #fbf8f0;
  padding-top: 40px !important;
  padding-bottom: 0 !important;
}

.brands-section .section-title {
  margin-bottom: 50px;
}

/* CSS grid: 3 cards */
.brand-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 36px;
}

.brand-card {
  /* border-radius: 18px; */
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 32px;
}

/* background images per card */
.grb-card {
  background-image: url("../assets/images/grb-brand-card.svg");
}

.townbus-card {
  background-image: url("../assets/images/townbus-brand-card.svg");
}

.rakal-card {
  background-image: url("../assets/images/rakal-brand-card.svg");
}

/* inner layout */
.brand-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.brand-block {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-block {
  height: 160px;
}

.brand-text-block {
  height: 160px;
  padding: 0 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-btn-block {
  height: 90px;
}

.brand-logo-img {
  max-width: 180px;
  height: auto;
}

.brand-desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: #333;
  margin: 0;
  max-width: 1200px;
  text-align: center;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
}

.grb-brand-desc {
  max-width: 159px;
}

/* =======================================================
   FOUNDER SECTION
======================================================= */
.founder-section {
  background: #fbf8f0;
  padding-bottom: 50px;
}

.founder-card {
  position: relative;
  background-color: #ffffff;
  background-image: url("../assets/images/founder-border.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 13px 96px 0 98px;
  overflow: hidden;
}

.founder-text {
  position: relative;
  z-index: 1;
}

.founder-quote {
  font-size: 154px;
  color: #5a9a51;
  line-height: 0.9;
  font-family: "Abhaya Libre", serif;
  position: relative;
  top: 50px;
}

.founder-title {
  font-size: 38px;
  font-weight: 700;
  color: #254695;
  margin-bottom: 22px;
}

.founder-body {
  font-size: 20px;
  line-height: 1.7;
  color: #444444;
  max-width: 474px;
  margin-bottom: 24px;
  font-family: Hanken Grotesk, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.founder-name {
  font-size: 20px;
  font-weight: 700;
  color: #5a9a51;
  font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  margin-bottom: 50px;
}

.founder-image {
  position: relative;
  z-index: 1;
  max-width: 340px;
}

/* =======================================================
   PRODUCTS HERO
======================================================= */
.products-hero-section {
  background-color: #fbf8f0;
  padding: 60px 0;
}

.products-hero-image {
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

/* =======================================================
   GRB AT A GLANCE
======================================================= */
.glance-section {
  background-color: #fbf8f0;
  padding: 0;
}

.glance-title {
  color: #254695;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

.glance-text {
  font-size: 20px;
  line-height: 1.7;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  max-width: 65%;
  margin: 24px auto 56px;
}

.glance-card {
  background-color: #f5eee5;
  border-radius: 0;
  padding: 34px 32px;
  height: 100%;
}

.glance-number {
  font-size: 38px;
  font-weight: 700;
  color: #cf2a34;
  margin: 0;
  line-height: 22px;
}

.glance-label {
  font-size: 35px;
  font-weight: 700;
  color: #5a9a51;
  margin: 0 0 18px 0;
}

.glance-desc {
  font-size: 20px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
  width: 53%;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* =======================================================
   INDIA SECTION
======================================================= */
.india-section {
  background-color: #fbf8f0;
}

.india-section .body-text {
  max-width: 92%;
}

.india-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ad1e3e;
  padding: 12px 46px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  text-decoration: none;
}

/* =======================================================
   PROMISE SECTION
======================================================= */
.promise-section {
  background: #ffffff;
}

.promise-intro {
  max-width: 71%;
  margin: 20px auto 50px;
}

/* flex grid for icons */
.promise-row {
  margin: 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.promise-inner {
  flex: 0 0 16.66%;
  max-width: 13%;
}

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

.promise-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.promise-icon img {
  max-height: 100%;
  width: auto;
}

.promise-label {
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 500;
}

/* =======================================================
   FOOTER
======================================================= */
.grb-footer {
  background-color: #233f8f;
  color: #ffffff;
  font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-main {
  padding: 72px 0 12px;
}

/* .footer-main>.container>.row:first-child {
  margin-bottom: 52px;
} */

.footer-logo {
  max-width: 290px;
}

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c6d279;
  margin-bottom: 18px;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li+li {
  margin-top: 6px;
}

.footer-links a {
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 100;
  text-transform: uppercase;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* follow + enquiries block */
.footer-follow-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-social a {
  margin-right: 12px;
}

.footer-social img {
  height: 30px;
  width: auto;
}

.footer-enquiry {
  min-width: 190px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-phone-icon {
  height: 22px;
  width: auto;
}

.footer-phone-number {
  font-size: 20px;
  font-weight: 700;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  max-width: 91%;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 100;
}

.footer-desc strong {
  font-weight: 700;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
  margin: 14px 0 14px;
}

.footer-bottom-row {
  font-size: 14px;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 100;
}

.footer-bottom-link {
  font-size: 14px;
  color: #f4f7ff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 100;
}

.footer-bottom-link:hover {
  text-decoration: underline;
}

.footer-bottom-sep {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-pattern img {
  width: 100%;
  display: block;
}



/* =======================================================
   BREAKPOINTS
   2560 / 1920 / 1440 / 1024 / 768
======================================================= */

/* ---------- ≤2560px (big iMac etc.) ---------- */
@media (max-width: 2560px) {
  .pattern-tilted {
    bottom: -230px !important;
    transform: rotate(3deg);
  }
}

/* ---------- ≤1920px (large laptop) ---------- */
@media (max-width: 1920px) {
  .hero-section {
    height: 680px;
  }

  .pattern-tilted {
    bottom: -2px !important;
  }
}

/* ---------- ≤1440px (standard desktop) ---------- */
@media (max-width: 1440px) {
  .hero-section {
    height: 620px;
  }

  .hero-title {
    font-size: 48px;
    max-width: 425px;
  }

  .section-padding {
    padding: 70px 0;
  }

  .legacy-section .body-text {
    max-width: 91%;
  }

  .legacy-illustration {
    max-width: 380px;
  }

  .glance-section {
    padding: 0;
  }

  .pattern-tilted {
    bottom: 0px !important;
  }
}

/* ---------- ≤1024px (tablet landscape / small laptop) ---------- */
/* ---------- ≤1024px (Laptop / iPad Landscape FIX) ---------- */
@media (max-width: 1024px) {

  /* .pattern-tilted {
    bottom: 0px !important;
  } */

  /* Keep container readable (don’t go edge-to-edge) */
  .container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ================= NAVBAR ================= */
  .navbar>.container {
    align-items: center;
  }

  .navbar-nav {
    gap: 32px;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .grb-navbar {
    padding: 10px !important;
  }

  /* ================= HERO ================= */
  .hero-section {
    height: 600px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.1;
    max-width: 520px;
    /* KEY FIX */
    margin-top: 40px;
  }

  .pattern-tilted {
    bottom: 0px !important;
  }

  /* ================= LEGACY ================= */
  .legacy-section .section-title {
    max-width: 100%;
  }

  .legacy-section .body-text {
    max-width: 100%;
    font-size: 18px;
  }

  .legacy-illustration {
    max-width: 300px;
  }

  /* ================= BRANDS ================= */
  .brand-row {
    column-gap: 20px;
  }

  .brand-card {
    padding: 24px;
  }

  .brand-logo-img {
    max-width: 150px;
  }

  .brand-text-block {
    padding: 0 16px;
    height: auto;
  }

  .brand-desc {
    font-size: 16px;
    line-height: 1.4;
    max-width: 100%;
  }

  /* ================= FOUNDER ================= */
  .founder-card {
    padding: 36px 40px;
  }

  .founder-quote {
    font-size: 90px;
    top: 24px;
  }

  .founder-title {
    font-size: 30px;
  }

  .founder-body {
    font-size: 16px;
    max-width: 100%;
  }

  .founder-image {
    max-width: 260px;
  }

  /* ================= GLANCE ================= */
  .glance-text {
    font-size: 18px;
    max-width: 90%;
  }

  .glance-desc {
    width: 100% !important;
    font-size: 16px;
  }

  /* ================= INDIA ================= */
  .india-map {
    max-width: 65%;
  }

  /* ================= PROMISE ================= */
  .promise-inner {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .promise-label {
    font-size: 14px;
  }

  /* ================= FOOTER ================= */
  .footer-logo {
    max-width: 240px;
  }

  .footer-follow-wrap {
    flex-direction: column;
    gap: 20px;
  }

  .footer-desc {
    max-width: 100%;
  }
}


/* ---------- ≤768px (mobile & small tablets)))))---------- */
@media (max-width: 768px) {

  /* fixed nav */
  .grb-header {
    position: fixed;
    top: 0;
    left: 0;
  }

  .grb-navbar {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.45) !important;
    backdrop-filter: blur(8px);
  }

  .navbar>.container {
    align-items: center;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 8px 0;
  }

  .hero-section {
    height: 600px;
    padding-top: 88px;
  }

  .hero-content-container {
    align-items: flex-start;
    padding-top: 150px;
  }

  .hero-content {
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .green-btn {
    padding: 10px 22px;
    font-size: 12px;
    text-align: center;
  }

  .pattern-tilted {
    bottom: -40px;
    transform: rotate(2deg);
  }

  .section-padding {
    padding: 50px 0;
  }

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

  .legacy-section .col-md-7 {
    text-align: center;
  }

  .legacy-section .section-title {
    text-align: center;
    font-size: 28px;
    /* padding: 0 20px 15px; */
    width: 78%;
    margin: 0 auto 20px;
  }

  .legacy-section .body-text {
    text-align: center;
    font-size: 16px !important;
    padding: 0 24px;
  }

  .legacy-illustration {
    max-width: 100%;
    margin: 24px auto 0;
  }

  .brand-card {
    padding: 24px !important;
    background-position: bottom;
  }

  .brand-desc {
    padding: 0 32px;
  }

  .brand-desc br {
    display: none;
  }

  .brand-row {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  /* Mobile Brand Cards */
  .grb-card {
    background-image: url("../assets/images/grb-brand-card-mobile.svg");
    /* background-size: contain;
    padding: 26px !important; */
    padding: 40px 74px 60px !important;
  }

  .townbus-card {
    background-image: url("../assets/images/townbus-brand-card-mobile.svg");
    /* padding: 24px !important;
    background-size: contain; */
    padding: 40px 10px 60px !important;

  }

  .rakal-card {
    background-image: url("../assets/images/rakal-brand-card-mobile.svg");
    /* padding: 20px !important;
    background-size: contain; */
    padding: 40px 10px 60px !important;
  }

  .brand-text-block {
    padding: 0 18px;
  }

  .founder-section .container {
    padding: 0 20px !important;
  }

  .founder-section {
    padding: 70px 0px 70px !important;
  }

  .founder-text {
    padding: 0 20px !important;
  }

  .founder-card {
    padding: 0 0 42px !important;
    background-image: url("../assets/images/founder-mobile-border.svg");
    background-color: transparent !important;
  }

  .founder-card .col-lg-6 {
    text-align: center;
  }

  .founder-quote {
    font-size: 124px;
    top: 50px;
  }

  .founder-title {
    font-size: 28px;
    /* margin-top: 60px; */
    font-weight: 600;
    margin-bottom: 0px;
    margin: 0 auto 20px;
    width: 50%;

  }

  .founder-body {
    font-size: 18px;
    padding: 0px 45px;
  }

  .founder-name {
    font-size: 16px;
  }

  .founder-image {
    max-width: 77%;
    margin: 0 auto;
  }

  .products-hero-section {
    padding: 0px 0 40px;
  }

  .products-hero-image {
    box-shadow: none;
  }

  .glance-section {
    padding: 50px 0;
  }

  .glance-title {
    font-size: 28px;
  }

  .glance-text {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 32px;
    width: 75%;
  }

  .glance-desc-first-card {
    width: 70% !important;
  }

  .glance-card {
    padding: 22px 21px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .glance-number {
    font-size: 28px;
  }

  .glance-label {
    font-size: 28px;
  }

  .glance-desc {
    font-size: 14px;
    /* width: 100% !important; */
    color: #000;
  }

  .india-section {
    text-align: center;
  }

  .india-section .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .india-section .body-text {
    font-size: 16px;
    max-width: 100%;
    padding: 0 24px;
  }

  .india-map {
    max-width: 100%;
    margin: 0 0 40px 0;
  }

  .india-map-btn {
    padding: 10px 26px;
    font-size: 12px;
  }

  .promise-row {
    gap: 71px 0;
    margin: 0;
    align-items: center;
  }

  .promise-intro {
    max-width: 100%;
    font-size: 16px;
  }

  /* stack icons 1 per row on mobile */
  .promise-inner {
    padding: 0 5px;
  }

  .promise-icon {
    height: 100%;
    margin-bottom: 10px;
  }

  .promise-label {
    font-size: 12px;
    line-height: 1.2;
  }

  .footer-main {
    text-align: center;
    padding: 40px 0 30px;
  }

  .footer-logo {
    margin: 0 auto 24px;
    max-width: 220px;
  }

  .footer-social img {
    height: 40px !important;
  }

  .footer-phone-number {
    font-size: 32px;
  }

  .footer-links li+li {
    margin-top: 12px;
  }

  .footer-follow-wrap {
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 20px 0;
  }

  .footer-phone {
    justify-content: center;
  }

  .footer-desc {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 300 !important;
    line-height: 142%;
  }

  .footer-divider {
    margin-top: 26px;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom-row .text-md-end,
  .footer-bottom-row .text-md-start {
    text-align: center !important;
  }
}

/* -----------------------------------About Page---------------------------------------------------------- */

/* =======================================================
   ABOUT PAGE – CONTENT RAIL (FIGMA GRID)
======================================================= */

.about-page .container {
  max-width: 1320px;
}

.video-section {
  background-color: #FF9C65 !important;
}

/* Mac / iMac 2560 */
@media (min-width: 1600px) {
  .about-page .container {
    max-width: 1320px;
  }
}

/* Laptop 1024 */
@media (max-width: 1024px) {
  .about-page .container {
    max-width: 960px;
  }
}

/* Mobile 768 mobilee*/
/* @media (max-width: 768px) {
  .about-page .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
} */




/* =======================================================
   ABOUT PAGE
======================================================= */
/* Scoped to .about-page class on body if needed, or unique classes */

/* --- Hero Section --- */



.about-hero-section {
  position: relative;
  background-color: var(--grb-yellow);
  /* Yellow background based on likely design */
  /* Increased padding to account for header and bottom strip space */
  padding: 180px 0 160px;
  /* Must hide overflow for tilted pattern to look right */
  overflow: hidden;
}

.about-subtitle {
  font-family: "Hanken Grotesk", sans-serif;
  color: #AD1E3E;
  /* Reddish accent */
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  display: block;
  margin-bottom: 24px;
  font-family: "Fira Sans", sans-serif;
  /* Matching likely font */
}

.about-hero-title {
  font-size: 52px;
  font-weight: 600;
  color: #2C3C85;
  /* Blue */
  line-height: 1.1;
  max-width: 65%;
}

.about-hero-text {
  font-size: 20px;
  color: #333;
  font-weight: 300;
  line-height: 1.6;
  max-width: 97%;
  font-family: "Hanken Grotesk", sans-serif;
}



/* =============================
   Vision & Mission Section
============================= */

.vision-mission-wrap {
  background: #faf7f0;
  padding: 80px 0;
}

/* Card */
.vm-card {
  position: relative;
  height: 100%;
  padding: 55px 89px;
  /* border-radius: 28px; */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* 🔑 FINAL FIX */
}

/* Vision */
.vision-card {
  background-image: url("../assets/images/vision-border.svg");
}

/* Mission */
.mission-card {
  background-image: url("../assets/images/mission-border.svg");
}

/* Header */
.vm-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 24px;
}

.vm-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.vision-title {
  color: #5A9A51;
}

.mission-title {
  color: #e04848;
}

/* Icon */
.vm-icon {
  width: 17%;
  height: auto;
  /* margin-top: 4px; */
}

/* Text */
.vm-card p {
  font-size: 19px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 18px;
  /* max-width: 86%; */
}

.vm-card p:last-child {
  margin-bottom: 0;
}

/* Laptop */
@media (max-width: 1200px) {
  .vm-card {
    padding: 48px 56px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .vm-card {
    padding: 42px 48px;
  }

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

/* Mobile mobilee*/
/* @media (max-width: 575px) {

  .about-hero-section {
    padding: 180px 0 100px;
  }

  .about-hero-title {
    font-size: 28px !important;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .about-hero-text {
    font-size: 16px !important;
    font-weight: 300 !important;
    line-height: 1.6 !important;
  }

  .vision-mission-wrap {
    padding: 58px 0;
  }

  .vm-card {
    padding: 28px 30px;
  }

  .vm-title {
    font-size: 28px;
    font-weight: 600;
  }

  .vm-card p {
    font-size: 16px;
  }

  .vm-icon {
    width: 12%;
  }
} */




/* --- Leadership Section --- */
.leadership-section {
  background-color: #fbf8f0;
}

.leadership-section .text-center .body-text {
  max-width: 76%;
  margin: 0 auto;
  padding: 20px 0;
}

.leader-card {
  background: #fff;
  margin-bottom: 90px;
  /* Could be transparent or white card */
  /* If design has no card background, remove this. Assuming clean layout */
  background: transparent;
}

.leader-img-wrapper {
  position: relative;
  overflow: hidden;
  /* border-radius: 12px; */
  /* Add branded shape or border if needed */
}

.leader-img {
  width: 96%;
  height: auto;
  display: block;
  /* border-radius: 12px; */
}

.leader-name {
  font-size: 38px;
  font-weight: 600;
  color: #2C3C85;
  margin-bottom: 6px;
}

.leader-role {
  font-size: 20px;
  font-weight: 700;
  color: #5A9A51;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.leader-desc {
  font-size: 20px;
  color: #000000;
  font-weight: 300;
  margin-top: 16px;
}

/* ================= INFRASTRUCTURE ================= */

.infra-section {
  background: #F3EAE2;
  padding: 100px 0 80px;
}

/* Left content width control */
.infra-content {
  max-width: 460px;
}

/* Title */
.infra-title {
  font-size: 38px;
  font-weight: 600;
  color: #243A8F;
  margin-bottom: 20px;
}

/* Description */
.infra-desc {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.75;
  color: #333;
}

/* Image */
.infra-img img {
  width: 100%;
  height: auto;
  /* border-radius: 6px; */
}

/* Stats row */
.infra-stats {
  margin-top: 60px;
}

.infra-stats span {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #277A1C;
  line-height: 1.4;
}

/* Icons */
.infra-icon {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}

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

/* Laptop */
@media (max-width: 1200px) {
  .infra-title {
    font-size: 36px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .infra-section {
    padding: 80px 0 70px;
  }

  .infra-title {
    font-size: 32px;
  }

  .infra-desc {
    font-size: 16.5px;
  }

  .infra-stats {
    margin-top: 48px;
  }
}

/* Mobile -----------mobilee*/
/* @media (max-width: 575px) {

  .infra-section {
    padding: 60px 0;
  }

  .infra-title {
    font-size: 28px;
    text-align: center;
  }

  .infra-content {
    max-width: 100%;
    text-align: center;
  }

  .infra-desc {
    font-size: 16px;
  }

  .infra-stats {
    margin-top: 40px;
  }

  .infra-stats span {
    font-size: 15.5px;
    text-align: left;
  }

  .infra-icon {
    height: 32px;
  }
} */


/* =======================================================
   PROUDLY PURE SECTION (About Page)
======================================================= */
.proudly-pure-section {
  background-color: #FDFAF3;
  padding: 80px 0;
}

/* Use the same container structure as the header section */
.proudly-pure-section .container {
  max-width: 1320px;
}

/* Remove custom container, use Bootstrap's container instead */
.proudly-pure-content {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 40px;
}

/* Left Column: Text Content - matches col-lg-5 from header */
.proudly-pure-text {
  flex: 0 0 48%;
  /* max-width: calc(41.66667% - 30px); */
}

.proudly-pure-heading-1 {
  font-family: "Fira Sans", sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #2C3C85;
  line-height: 1.1;
  margin: 0 0 8px 0;
}

.proudly-pure-heading-2 {
  font-family: "Fira Sans", sans-serif;
  font-size: 52px;
  font-weight: 600;
  color: #5A9A51;
  line-height: 1.1;
  margin: 0 0 32px 0;
}

.proudly-pure-body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #000000;
  max-width: 100%;
  margin: 0 0 20px 0;
  font-weight: 300;
}

.proudly-pure-body:last-of-type {
  margin-bottom: 0;
}

/* Right Column: Visual - matches col-lg-7 from header */
.proudly-pure-visual {
  flex: 0 0 calc(58.33333% - 30px);
  max-width: calc(58.33333% - 30px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Responsive: Tablet and below (< 768px) */
@media (max-width: 767px) {
  .proudly-pure-section {
    padding: 60px 0;
  }

  .proudly-pure-content {
    flex-direction: column;
    gap: 40px;
  }

  .proudly-pure-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }

  .proudly-pure-heading-1 {
    font-size: 36px;
  }

  .proudly-pure-heading-2 {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .proudly-pure-body {
    font-size: 16px !important;
    max-width: 100%;
    margin: 0 auto 16px auto;
  }

  .proudly-pure-body br {
    display: none;
  }

  .proudly-pure-visual {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
  }

  .proudly-pure-image {
    max-width: 90%;
  }
}

/* Responsive: Mobile (< 480px) mobilee*/
/* @media (max-width: 480px) {
  .proudly-pure-section {
    padding: 50px 0 37px;
  }

  .proudly-pure-heading-1,
  .proudly-pure-heading-2 {
    font-size: 28px;
  }

  .proudly-pure-body {
    font-size: 15px;
  }

  section.section-padding.leadership-section {
    padding: 50px 0 37px;
  }
} */


/* =======================================================
   GRB HERITAGE SECTION (GRB Brand Page)
======================================================= */
.grb-heritage-section {
  background-color: #FDFAF3;
  padding: 80px 0;
}

.grb-heritage-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* Left Column: Ghee Pot Image */
.grb-heritage-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grb-ghee-pot-image {
  width: 100%;
  height: auto;
  max-width: 450px;
  object-fit: contain;
}

/* Right Column: Text Content */
.grb-heritage-text {
  flex: 0 0 50%;
  /* max-width: 55%; */
}

.grb-heritage-heading {
  font-family: "Fira Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #C4302B;
  line-height: 1.3;
  margin: 0 0 32px 0;
}

.grb-heritage-body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 20px 0;
  font-weight: 300;
}

.grb-heritage-body:last-of-type {
  margin-bottom: 0;
}


/* =======================================================
   GRB INFRASTRUCTURE SECTION (GRB Brand Page)
======================================================= */
.grb-infrastructure-section {
  position: relative;
  background-image: url('../assets/images/grb-factory-bg..svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 500px;
  overflow: hidden;
}

.grb-infra-container {
  position: relative;
  z-index: 2;
}

.grb-infra-content {
  display: flex;
  align-items: center;
  gap: 70px;
  max-width: 600px;
}

/* Decorative Diamond Pattern */
.grb-infra-pattern {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

/* Text Content */
.grb-infra-text {
  color: white;
}

.grb-infra-heading {
  font-family: "Fira Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.grb-infra-body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: white;
  margin: 0 0 32px 0;
  font-weight: 300;
}

/* Factory Walkthrough Button */
.grb-infra-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.grb-infra-btn .play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.grb-infra-btn .btn-text {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* =======================================================
   SIGN OF PURITY SECTION (GRB Brand Page)
======================================================= */
.grb-sign-purity-section {
  position: relative;
  background-image: url(/assets/images/sign-of-purity-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 50px;
}

.grb-purity-content {
  display: flex;
  align-items: center;
  justify-content: end;
  /* gap: 60px; */
}

/* Left Column: Text Content */
.grb-purity-text {
  flex: 0 0 40%;
  max-width: 45%;
}

.purity-text-svg {
  width: 100%;
  max-width: 400px;
  margin-bottom: 24px;
  display: block;
}

.purity-body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #333333;
  margin: 0;
  font-weight: 300;
}

.purity-body strong {
  font-weight: 600;
  color: #000000;
}

/* Right Column: Ghee Bottles Image */
.grb-purity-visual {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.grb-ghee-bottles-image {
  /* width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain; */
}


/* =======================================================
   WHERE GHEE MEETS GOODNESS SECTION (GRB Brand Page)
======================================================= */
.grb-goodness-section {
  background-color: #FBF8F0;
  padding: 80px 0;
}

.grb-goodness-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 60px; */
}

/* Left Column: Text Content */
.grb-goodness-text {
  flex: 0 0 45%;
  max-width: 45%;
}

.grb-goodness-heading {
  font-family: "Fira Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #2C3C85;
  line-height: 1.2;
  margin: 0 0 32px 0;
}

.grb-goodness-body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 24px 0;
  font-weight: 300;
}

.grb-goodness-body:last-of-type {
  margin-bottom: 0;
}

.grb-goodness-body strong {
  font-weight: 700;
  color: #000000;
}

.grb-kitchen-image {
  width: 100%;
  height: auto;
  display: block;
  border-left: 8px solid #2C3C85;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* =======================================================
   GRB PRODUCTS SECTION (GRB Brand Page)
======================================================= */
.grb-products-section {
  background-color: #F5F0E8;
  padding: 80px 0 0 0;
  position: relative;
}

/* Section Header */
.grb-products-header {
  text-align: center;
  margin-bottom: 60px;
}

.grb-products-title {
  font-family: "Fira Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #2C3C85;
  margin: 0 0 16px 0;
}

.grb-products-subtitle {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #152725;
  margin: 0;
  font-weight: 300;
}

.grb-products-subtitle strong {
  font-weight: 700;
  color: #000000;
}

/* Product Rows */
.grb-product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

/* Product Visual (Image with gradient background) */
.grb-product-visual {
  flex: 0 0 48%;
  max-width: 48%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grb-product-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Product Text Content */
.grb-product-text {
  flex: 0 0 48%;
  max-width: 48%;
}

.grb-product-heading {
  font-family: "Fira Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #BE3532;
  margin: 0 0 8px 0;
}

.grb-masalas-heading {
  color: #BE3532;
}

.grb-product-subheading {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 24px 0;
}

.grb-product-body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #152725;
  margin: 0 0 20px 0;
  font-weight: 300;
}

.grb-product-body:last-of-type {
  margin-bottom: 0;
}

/* Decorative Bottom Border */
.grb-products-border {
  width: 100%;
  height: 40px;
  background-image: url('../assets/images/grb-products-border.svg');
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  margin-top: 40px;
}



/* ------------------------------------------------------------------------------------------ */
/* --- Responsive Queries for About Page --- */
@media (max-width: 991px) {
  .about-hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .about-hero-text {
    max-width: 100%;
  }

  .vm-card {
    padding: 30px;
  }

  .leader-card.flex-md-row-reverse {
    flex-direction: row;
    /* Let natural wrapping handle it */
  }

  .leader-card {
    margin-bottom: 60px !important;
  }

  .leader-img-wrapper {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {

  /* Stack columns on mobile */
  .leader-card>div {
    width: 100%;
  }

  .vm-title {
    font-size: 28px;
    font-weight: 600;
  }

  .vm-card {
    padding: 30px 64px;
  }

  /* .vm-card.mission-card {
    padding: 30px 41px;
  } */

}

@media (max-width:768px) {

  .about-hero-title {
    max-width: 68% !important;
  }

  .leadership-section .text-center .body-text {
    font-size: 16px;
    max-width: 73%;
  }

  .leadership-section h2.section-title {
    font-size: 28px;
    padding: 0 72px !important;
    line-height: 130% !important;
  }

  .leader-name {
    font-size: 20px !important;
    font-weight: 600;
    color: #2C3C85;
    margin-top: 13px;
  }

  .leader-role {
    font-size: 14px !important;
    margin-bottom: 15px;
  }

  .leader-desc {
    font-size: 16px !important;
    max-width: 94% !important;
  }

  .leader-desc br {
    display: none;
  }
}

/* -----------------------------GRB-GLOBAL-PAGE------------------------------------------------- */

/* =======================================================
   GLOBAL JOURNEY SECTION
======================================================= */
.global-journey-section {
  background-color: #fbf8f0;
  padding-top: 0 !important;
}

.global-journey-text {
  /* max-width: 90%; */
  margin: 90px 0 60px;
  text-align: center;
}

.global-journey-text .body-text {
  font-size: 20px;
  line-height: 1.75;
  color: #333;
}

.global-map-wrapper {
  text-align: center;
  margin-top: 50px;
}

.world-map-img {
  width: 100%;
  height: auto;
}

/* =======================================================
   REGIONAL PRESENCE SECTION
======================================================= */
.regional-presence-section {
  /* background-color: #f5eee5; */
  padding: 80px 0;
}

.regional-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background-color: #F3EAE2;
  padding: 30px;
}

.regional-column {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid #cf2a34;
}

.regional-column:last-child {
  border-right: none;
}

.regional-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 20px;
}

.regional-icon img {
  height: 50px;
  width: auto;
}

.regional-title {
  font-size: 16px;
  font-weight: 700;
  color: #cf2a34;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Hanken Grotesk", sans-serif;
  text-align: start;
}

.country-list-container {
  display: flex;
  justify-content: center;
  gap: 0;
}

.country-list-container.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  max-width: 100%;
}

.regional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.regional-list li {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
  position: relative;
  padding-left: 12px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.regional-list li:last-child {
  margin-bottom: 0;
}

.regional-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333;
}

/* =======================================================
   DISTRIBUTION NETWORK SECTION
======================================================= */
.distribution-section {
  background-color: #fbf8f0;
}

.distribution-section .section-title {
  margin-bottom: 0;
}

.distribution-section .row.g-4 {
  --bs-gutter-x: 50px;
}

.distribution-card {
  overflow: hidden;
  height: 100%;
}

.distribution-img-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
}

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

.distribution-caption {
  padding: 0;
}

.distribution-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2C3C85;
  margin-bottom: 15px;
  line-height: 1.3;
  text-align: left;
  font-family: "Hanken Grotesk", sans-serif;
}

.distribution-card-text {
  font-size: 20px;
  line-height: 1.6;
  color: #555555;
  margin: 0;
  text-align: left;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 400;
}

/* =======================================================
   RETAIL PARTNERS SECTION
======================================================= */
.retail-partners-section {
  background-color: #F3EAE2;
  margin: 50px 0 0;
}

.retail-partners-intro {
  max-width: 70%;
  margin: 16px auto 0;
}

.retail-logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px 40px;
  margin-top: 50px;
}

.retail-logo-item {
  flex: 0 0 auto;
}

.retail-logo-item img {
  height: 50px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.retail-logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Pagination Dots */
.pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}

.pagination-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.pagination-dots .dot.active {
  background-color: #cf2a34;
}

/* =======================================================
   RESPONSIVE BREAKPOINTS - GRB GLOBAL PAGE
======================================================= */

/* ---------- ≤1024px (Tablet Landscape) ---------- */
@media (max-width: 1024px) {
  .global-journey-text {
    max-width: 95%;
  }

  .global-journey-text .body-text {
    font-size: 18px;
  }

  .regional-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
    padding: 25px;
  }

  .regional-column {
    padding: 0 30px;
  }

  .regional-column:nth-child(3) {
    border-right: none;
  }

  .regional-column:nth-child(4),
  .regional-column:nth-child(5) {
    border-right: 1px solid #cf2a34;
  }

  .regional-column:last-child {
    border-right: none;
  }

  .country-list-container.two-column {
    gap: 0 20px;
  }

  .regional-list li {
    margin-bottom: 10px;
  }

  .distribution-section .row.g-4 {
    --bs-gutter-x: 30px;
  }

  .distribution-img-wrapper {
    margin-bottom: 16px;
  }

  .distribution-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .distribution-card-text {
    font-size: 16px;
  }

  .retail-logos-wrapper {
    gap: 40px 60px;
  }

  .retail-logo-item img {
    height: 45px;
  }
}

/* ---------- ≤768px (Mobile & Small Tablets) ---------- */
@media (max-width: 768px) {
  .global-journey-section {
    padding-top: 50px !important;
  }

  .global-journey-text {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .global-journey-text .body-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .world-map-img {
    max-width: 100%;
  }

  /* Regional Grid - Stack to 2 columns */
  .regional-presence-section {
    padding: 60px 0;
  }

  .regional-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
    padding: 20px;
  }

  .regional-column {
    padding: 0 25px;
    border-right: 1px solid #cf2a34;
  }

  .regional-column:nth-child(2n) {
    border-right: none;
  }

  .regional-icon {
    height: 50px;
  }

  .regional-icon img {
    height: 40px;
  }

  .regional-title {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .regional-list li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .country-list-container.two-column {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Distribution Section */
  .distribution-section .row.align-items-center {
    margin-bottom: 30px !important;
  }

  .distribution-section .row.g-4 {
    --bs-gutter-x: 20px;
  }

  .distribution-section .section-title {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .distribution-img-wrapper {
    margin-bottom: 14px;
  }

  .distribution-card-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .distribution-card-text {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Retail Partners */
  .retail-partners-intro {
    max-width: 100%;
    font-size: 16px;
  }

  .retail-logos-wrapper {
    gap: 30px 40px;
    margin-top: 40px;
  }

  .retail-logo-item img {
    height: 35px;
    max-width: 120px;
  }

  .pagination-dots {
    margin-top: 30px;
  }

  .pagination-dots .dot {
    width: 8px;
    height: 8px;
  }
}

/* ---------- ≤480px (Small Mobile) ---------- */
@media (max-width: 480px) {
  .regional-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 15px;
  }

  .regional-column {
    max-width: 280px;
    margin: 0 auto;
    border-right: none !important;
    padding: 0 20px;
  }

  .country-list-container.two-column {
    grid-template-columns: 1fr;
  }

  .regional-list li {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .distribution-img-wrapper {
    margin-bottom: 12px;
  }

  .distribution-card-title {
    font-size: 16px;
  }

  .distribution-card-text {
    font-size: 14px;
  }

  .retail-logos-wrapper {
    gap: 25px 30px;
  }

  .retail-logo-item img {
    height: 30px;
    max-width: 100px;
  }
}


/* -----------------------------CONTACT PAGE--------------------------------------------- */

.contact-hero-section {
  position: relative;
  background-color: #E5EF9F;
  padding: 180px 0 160px;
  overflow: hidden;
}

.contact-subtitle {
  font-family: "Hanken Grotesk", sans-serif;
  color: #AD1E3E;
  /* Reddish accent */
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 16px;
  display: block;
  margin-bottom: 24px;
  font-family: "Fira Sans", sans-serif;
  /* Matching likely font */
}

.contact-hero-title {
  font-size: 52px;
  font-weight: 600;
  color: #AD1E3E;
  /* Blue */
  line-height: 1.1;
  max-width: 65%;
  font-family: "Fira Sans", sans-serif;
}

.contact-hero-text {
  font-size: 20px;
  color: #333;
  font-weight: 300;
  line-height: 1.6;
  max-width: 97%;
  font-family: "Hanken Grotesk", sans-serif;
  margin-top: 45px;
  /* Alignment with Get in touch */
}

.contact-hero-text br {
  display: none !important;
}

/* --- Responsive Queries for Contact Page --- */
@media (max-width: 991px) {
  .contact-hero-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .contact-hero-text {
    max-width: 100%;
    margin-top: 0;
  }
}

/* ================= CONTACT LOCATION SECTION ================= */
.contact-location-section {
  background-color: #FBF8F0;
  /* or transparent */
  padding-top: 140px;
}

.contact-loc-card {
  margin-bottom: 20px;
}

.loc-icon-wrap {
  flex-shrink: 0;
}

.loc-icon {
  /* height: 70px; */
  margin-top: 14px !important;
}

.loc-content {
  margin-top: 5px;
}

.loc-title {
  font-size: 37.50px !important;
  font-weight: 600;
  color: #2C3C85;
  margin-bottom: 8px;
  font-family: "Fira Sans", sans-serif;
}

.loc-city {
  font-size: 20px;
  font-weight: 700;
  color: #eb742d;
  /* Orange color from image */
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Hanken Grotesk", sans-serif;
}

.loc-address {
  font-size: 20px;
  color: #152725;
  line-height: 1.7;
  font-weight: 100 !important;
  font-family: "Hanken Grotesk", sans-serif;
}

/* ================= ENQUIRY FORM SECTION ================= */
.contact-form-section {
  background-color: #FBF8F0;
  /* Cream background */
  padding: 40px 0 100px;
}

.form-section-title {
  font-size: 38px;
  font-weight: 600;
  color: #2C3C85;
  margin-bottom: 20px;
  font-family: "Fira Sans", sans-serif;
}

.form-section-desc {
  font-size: 20px;
  color: #152725;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300 !important;
  font-family: "Hanken Grotesk", sans-serif;
}

.form-section-note {
  font-size: 20px;
  color: #152725;
  line-height: 1.6;
  font-weight: 300 !important;
  font-family: "Hanken Grotesk", sans-serif;
}

.contact-form .form-label {
  font-size: 20px;
  font-weight: 600;
  color: #152725;
  margin-bottom: 10px;
  font-family: "Hanken Grotesk", sans-serif !important;
}

.contact-form .form-control {
  border: 1px solid #000000;
  /* darker border */
  border-radius: 0;
  /* boxy inputs */
  padding: 14px 20px;
  font-size: 20px !important;
  background-color: #fff;
  color: #848484 !important;
  font-family: "Hanken Grotesk", sans-serif !important;
  margin-bottom: 60px !important;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: #000;
}

.contact-form textarea.form-control {
  min-height: 50px;
  resize: vertical;
}

.submit-btn {
  background-color: #5A9A51;
  /* Green */
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  /* boxy button */
  border: none;
  transition: all 0.3s ease;
  font-family: "Hanken Grotesk", sans-serif !important;
}

.submit-btn:hover {
  background-color: #47803e;
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .loc-title {
    font-size: 26px;
  }

  .loc-icon {
    height: 50px;
  }

  .form-section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .contact-loc-card {
    align-items: center !important;
    /* Center items horizontally */
    flex-direction: column;
    /* Stack vertically */
    text-align: center;
    /* Center text */
    margin-bottom: 40px;
  }

  .loc-icon-wrap {
    margin-right: 0 !important;
    margin-bottom: 20px;
  }

  .loc-content {
    margin-top: 0;
  }

  .contact-form-section {
    padding: 0px 0 60px;
  }

  .form-section-title {
    font-size: 28px;
  }

  .form-section-desc,
  .form-section-note {
    font-size: 20px !important;
  }

  .contact-form .form-label {
    font-size: 20px !important;
  }

  .contact-hero-text br {
    display: block !important;
  }

  .loc-icon {
    height: 100%;
  }

  .loc-address br {
    display: none !important;
  }

  .row.gy-5.justify-content-between {
    --bs-gutter-x: 1.5rem;
  }

  .contact-location-section {
    margin-top: -40px;
  }

  .grb-navbar {
    background-color: #ffffff !important;
  }

  .navbar-nav .nav-link {
    color: #000 !important;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #000 !important;
  }

  .navbar-nav {
    padding: 40px 0 !important;
  }

  .navbar-toggler {
    border: none !important;
  }

  .navbar-toggler-icon {
    height: 40px;
    width: 50px;
  }
}

/* Mobile Menu Icon */
.mobile-nav-icon {
  width: 100%;
  height: auto;
  display: block;
}

.navbar-toggler {
  border: none !important;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* =======================================================
     ULTRA WIDE DISPLAY (2560px)
  ======================================================= */
@media (min-width: 2560px) {

  /* 1. Hero Section Height */
  .hero-section {
    height: 950px !important;
    max-height: 78vh;
  }

  /* 2. Image Scaling */
  .hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* 3. Content Vertical Alignment */
  .hero-content-container {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
  }

  .grb-global-hero .hero-content {
    transform: translateY(-40px);
  }

  /* 4. Logo & Navigation */
  .grb-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
  }

  /* 5. Pattern Footer Sync */
  .pattern-tilted {
    width: 100% !important;
    left: 0 !important;
    bottom: 0px !important;
  }

  .about-hero-section,
  .contact-hero-section {
    padding: 206px 0 252px;
  }
}

@media (min-width: 2048px) and (max-width: 2559px) {
  .pattern-tilted {
    bottom: 0px !important;
  }
}

/* =======================================================
   DROPDOWN CUSTOMIZATION
======================================================= */

/* Only center and style as "floating card" on Desktop */
@media (min-width: 992px) {
  .grb-navbar .nav-item.dropdown {
    position: relative;
  }

  /* The Container (White Box) */
  .grb-navbar .dropdown-menu {
    border: none;
    border-radius: 8px;
    /* Rounded corners */
    background-color: #ffffff;
    /* White box */
    padding: 10px 0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    /* Centering logic */
    display: block;
    /* Override default to manage visibility via opacity */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    left: 66% !important;
    top: 100%;
    margin-top: 15px;
    /* Spacing from the text */
    min-width: 180px;
  }

  /* Show state */
  .grb-navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* Dropdown Toggle Icon - Arrow Logic */
.grb-navbar .dropdown-toggle::after {
  display: inline-block;
  /* margin-left: 0.4em;
  vertical-align: 0em; */
  /* Aligns better with text caps */
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.grb-navbar .nav-link.show::after {
  transform: rotate(180deg);
}

/* Toggle link active state - NO BACKGROUND */
.grb-navbar .nav-link.show {
  background-color: transparent !important;
  color: #ffffff !important;
  /* Keep text white */
}

/* Dropdown Items */
.grb-navbar .dropdown-item {
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: #333333 !important;
  /* Specific color for items */
  padding: 10px 24px;
  font-weight: 500;
  text-transform: none;
  /* Items not uppercase */
}

.grb-navbar .dropdown-item:hover {
  background-color: #f7f9fc;
  color: #000000 !important;
  /* Highlight color */
}

/* Mobile Dropdown Styling (Simplified) */
@media (max-width: 991px) {
  .grb-navbar .dropdown-menu {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    /* Slight translucent for mobile */
    margin-left: 20px;
  }

  .grb-navbar .dropdown-item {
    color: #ffffff !important;
  }

  /* Override for non-Townbus pages: Black text on mobile */
  body:not(.townbus-page) .grb-navbar .nav-link,
  body:not(.townbus-page) .grb-navbar .dropdown-item,
  body:not(.townbus-page) .grb-navbar .dropdown-toggle {
    color: #000000 !important;
  }
}


/* ----------------------------townbus-page css----------------------- */


.townbus-page {
  background-color: #FBF8F0 !important;
}


.townbus-page .hero-title {
  max-width: 54%;
  font-family: 'Black Han Sans', sans-serif;
  font-weight: 800;
  font-size: 75px !important;
  text-transform: uppercase;
  letter-spacing: -1.8px;
}

.townbus-page .hero-dots {
  margin-top: 20px !important;
  margin-bottom: 120px !important;
}

.townbus-page .dot {
  background: #eed6bb !important;
}

.townbus-page .dot.active {
  background-color: #CF2A34 !important;
}

.townbus-page .hero-section {
  height: 705px;
}

.townbus-logo {
  width: 25%;
  margin-bottom: 40px;
}


@media (min-width : 1920px) and (max-width : 2560px) {
  .townbus-page .hero-section {
    max-height: 1180px !important;
    height: 1180px !important;
  }
}

.townbus-container {
  position: relative;
  width: 100vw;
  min-height: 2974px;
  background-color: #FFF9F3;
}

/* 2. Optimized Image Layer */
.townbus-full-img {
  width: 100%;
  height: auto;
  display: block;
  /* Critical for <0.5s loading */

}

/* 3. Content Overlay - Positioned exactly as Figma */
.townbus-content {
  position: absolute;
  top: 1.4%;
  right: 10%;
  max-width: 39%;
  padding: 38px 0;
  z-index: 10;
}

.townbus-content h2 {
  font-family: sans-serif;
  font-size: 38px;
  font-weight: 600;
  margin: 0 0 15px;
  color: #F36C21;
}

.townbus-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #A73913;
  margin-bottom: 20px;
  font-family: 'Hanken Grotesk', sans-serif;
}

.map-text h2 {
  position: absolute;
  left: 5%;
  font-size: 65px !important;
  bottom: -180%;
  font-family: 'Black Han Sans', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #FF5B00;
  line-height: 91%;
  letter-spacing: -1px;
}

.snacks-text h2 {
  position: absolute;
  /* top: 0; */
  bottom: -322%;
  right: 1%;
  /* text-align: revert; */
  left: 1%;
  text-align: center;
  font-size: 72.42px !important;
  font-family: 'Black Han Sans', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 91%;
  letter-spacing: -1px;
}

.cta-heading {
  font-family: 'Black Han Sans', sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 95%;
  letter-spacing: -5%;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.cta-text {
  color: #7F0000;
  margin-bottom: 20px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 144%;
  letter-spacing: 0%;
  margin-top: 50px;
}

.townbus-page .cta-content {
  position: absolute;
  text-align: center;
  top: 622%;
  right: 0;
  left: 0;
  margin: 0 auto;
}

/* 4. Responsive: Stacks content on mobile */
@media (max-width: 768px) {
  .townbus-content {
    position: relative;
    top: 0;
    right: 0;
    margin: 20px;
    max-width: calc(100% - 40px);
    text-align: center;
  }
}

/* ----------------------------why-townbus-section----------------------- */
#why-town-bus {
  background-color: #F9F7F2;
  padding: 80px 6%;
  overflow: hidden;
}

.townbus-page .why-container {
  display: flex;
  justify-content: space-evenly;
  max-width: 1440px;
  margin: 0 auto;
  align-items: center;
}

/* Left Column: Text (40%) */
.townbus-page .why-text-col {
  flex: 0 0 34%;
  /* padding-right: 40px; */
  box-sizing: border-box;
}

.townbus-page .why-heading {
  font-family: 'Black Han Sans', sans-serif;
  /* Fallback to sans-serif if Fira is not loaded */
  font-size: 75px;
  /* Scaled for impact */
  font-weight: 800;
  line-height: 1;
  color: #FF5B00;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.townbus-page .why-subheading {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #A73913;
  margin-bottom: 24px;
  display: block;
}

.townbus-page .why-body {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #A73913;
  max-width: 340px;
}

/* Right Column: Badges (60%) */
.townbus-page .why-badges-col {
  /* flex: 0 0 60%; */
  display: flex;
  justify-content: end;
  align-items: center;
  /* Allow wrapping on smaller desktop if needed, but intended for row */
  flex-wrap: nowrap;
  /* gap: 20px; */
}

.townbus-page .badge-item {
  /* Slight rotation for playful feel */
  transition: transform 0.3s ease-out;
  cursor: pointer;
  width: 40%;
  /* Approx 1/3 each */
  /* max-width: 220px; */
  height: auto;
}

/* Individual Rotations */
.townbus-page .badge-item:nth-child(1) {
  transform: rotate(-5deg);
}

.townbus-page .badge-item:nth-child(2) {
  transform: rotate(3deg);
}

.townbus-page .badge-item:nth-child(3) {
  transform: rotate(-3deg);
}

/* Hover Effect: Scale & Reset Rotation Slightly or Enhance it */
.townbus-page .badge-item:hover {
  transform: scale(1.05) rotate(0deg);
  /* Popping straight */
  z-index: 5;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .townbus-page .why-container {
    flex-direction: column;
    text-align: center;
  }

  .townbus-page .why-text-col {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 0;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .townbus-page .why-body {
    max-width: 600px;
  }

  .townbus-page .why-badges-col {
    flex: 0 0 100%;
    width: 100%;
    justify-content: center;
    gap: 30px;
  }

  .townbus-page .badge-item {
    width: 180px;
    /* Fixed size good for tablet */
  }
}

@media (max-width: 768px) {
  .townbus-page #why-town-bus {
    padding: 60px 20px;
  }

  .townbus-page .why-heading {
    font-size: 42px;
  }

  .townbus-page .why-badges-col {
    flex-wrap: wrap;
  }

  .townbus-page .badge-item {
    width: 140px;
  }
}

@media (min-width: 414px) and (max-width: 479px) {
  .brand-desc {
    padding: 0px !important;
  }

  .founder-title {
    width: 66%;
  }

  .founder-body {
    padding: 0px 18px;
  }

  .glance-text {
    width: 88%;
  }

  .glance-desc-first-card {
    width: 80% !important;
  }

  .glance-card {
    padding: 22px 9px;
  }
}


/* -----------------------------------HOME PAGE--SMALL DEVICES---------------------------------------------------------------------- */
@media (min-width: 360px) and (max-width: 413px) {
  .legacy-section .body-text {
    padding: 0;
  }

  .grb-card {
    padding: 24px !important;
  }

  .townbus-card {
    padding: 13px !important;
  }

  .rakal-card {
    padding: 13px !important;
  }

  .brand-desc {
    padding: 0px !important;
  }

  .founder-title {
    width: 80%;
    margin: 0px auto 10px;
  }

  .founder-body {
    padding: 0px;
  }

  .founder-image {
    max-width: 60%;
  }

  .glance-text {
    width: 100%;
  }

  .glance-card {
    padding: 22px 8px;
  }

  .india-section .body-text {
    padding: 0px;
  }
}


/* ABOUT PAGE------------------------------- */

@media (min-width: 360px) and (max-width: 413px) {
  .leadership-section .text-center .body-text {
    font-size: 16px;
    max-width: 73%;
  }

  .leadership-section h2.section-title {
    font-size: 28px;
    padding: 0 72px !important;
    line-height: 130% !important;
  }

  .leader-name {
    font-size: 20px !important;
    font-weight: 600;
    color: #2C3C85;
    margin-top: 13px;
  }

  .leader-role {
    font-size: 14px !important;
    margin-bottom: 15px;
  }

  .leader-desc {
    font-size: 16px !important;
  }

  .leader-desc br {
    display: none;
  }
}

/* =======================================================
   MOBILE VISION & MISSION CARDS
======================================================= */
@media (max-width: 768px) {
  .proudly-pure-section {
    display: none;
  }

  .global-map-wrapper {
    display: none;
  }

  .distribution-img {
    display: none;
  }

  .vision-card {
    background-image: url('../assets/images/vision-border-mobile.svg') !important;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* maintain padding if needed, or adjust */
  }

  .mission-card {
    background-image: url('../assets/images/mission-border-mobile.svg') !important;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}