/* =======================================================
   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 {
  /* Retaining this class if needed for backup, but .hero-slide takes over */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Default off-screen for fallback, but JS handles precise positioning */
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out;
}

.hero-slide.active {
  /* JS sets transform: translateX(0), but this class keeps z-index high */
  z-index: 2;
  transform: translateX(0);
}

.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: 100%;
}

/* green CTA button (reused) */
.green-btn {
display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: #fa1d3c;
    padding: 10px 10px;
    font-size: 12px;
    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;
  cursor: pointer !important;
}

.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: 75%;
}

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

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

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

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

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

.brand-card {
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 28px;
  margin-bottom: 20px;
}

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

.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: auto;
}

.brand-text-block {
  height: auto;
  margin-top: 50px;
  padding: 0 25px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.brand-logo-img {
  max-width: 230px;
  height: auto;
  margin-top: 50px;
}

.brand-desc {
  font-size: 15px;
  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: 0px 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: 90%;
  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: 15px;
  text-transform: uppercase;
  margin: 0;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 500;
}
 
.grb-footer {
  background-color: #000000;
  color: #ffffff;
  font-family: "Fira Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-main {

  padding: 0px;
}

 

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

.footer-heading {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  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;
      color: white !important;
}

.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;
  color: #ffffff !important;
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-phone-link {
  text-decoration: none !important;
  color: #ffffff !important;
}

.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 0px;
}

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

.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
======================================================= */

/* Tablet */
@media (max-width: 992px) {
  .brand-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .brand-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- ≤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: 75%;
  }

  .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: 230px;
  }

  .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: 70%;
    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 {

    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;
  }

  .products-hero-image {
    box-shadow: none;
	display : 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;*/
	padding: 0px;
  }

  .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: 147%;
  max-width: 97%;
  font-family: "Hanken Grotesk", sans-serif;
}



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

.vision-mission-wrap {
  background: #FBF8F0;
  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: contain;
  /* 🔑 FINAL FIX */
}

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

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

/* 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%; */
  width: 464px;
}

.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: 61px 0;
  }

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

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

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

  .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-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  color: #000000;
  font-weight: 300;
  line-height: 147%;
  margin-top: 16px;
}

.light-body-text {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 147%;
  color: #000000;
  margin: 0 0 24px 0;
}

.light-body-text strong {
  font-weight: 800;
}

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

/* ================= MOBILE INFRASTRUCTURE HIGHLIGHTS (Mobile Only) ================= */
.mobile-infra-highlights {
  background-color: #F5EBE0;
  padding: 0px 0 50px;
}

.mobile-infra-highlights .row {
  display: flex;
  flex-wrap: nowrap;
  /* Prevent wrapping - keep 3 columns in one row */
}

.mobile-infra-item {
  text-align: center;
  padding: 0 10px;
}

.mobile-infra-icon {
  width: 60px !important;
  height: 60px !important;
  margin: 0 auto 20px;
  display: block;
  /* Icons are already orange (#EB742D) in the SVG */
}

.mobile-infra-text {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px !important;
  line-height: 1.5;
  color: #277A1C;
  /* Light green for regular text */
  font-weight: 500;
  margin: 0;
}

.mobile-infra-text strong.highlight-stat {
  color: #2C5F2D;
  /* Dark green for highlighted stats */
  font-weight: 700;
  display: inline;
}

/* Responsive adjustments for smaller mobile devices */
@media (max-width: 480px) {
  .mobile-infra-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .mobile-infra-text {
    font-size: 12px;
  }

  .mobile-infra-item {
    padding: 0 5px;
  }
}

/* ================= 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 51px;
    background-color: #F5EBE0 !important;
  }

  .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: 0px;
    padding-top: 50px;
  }

  /* Mobile: Stack icon on top, text below */
  .infra-stats .col-4 {
    flex-direction: column !important;
    text-align: start !important;
    align-items: flex-start !important;
  }

  .infra-stats .infra-stat-text {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px !important;
    line-height: 1.5;
    color: #277A1C;
    /* Light green for regular text */
    font-weight: 500;
    text-align: start !important;
    margin-top: 15px;
  }

  .infra-stats .infra-stat-text strong {
    color: #2C5F2D;
    /* Dark green for highlighted stats */
    font-weight: 700;
  }

  .infra-icon {
    height: 60px !important;
    width: 60px !important;
  }
}


/* =======================================================
   PROUDLY PURE SECTION (About Page)
======================================================= */
.proudly-pure-section {
  background-color: #FBF8F0;
  /* 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 {
  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 {
  position: relative;
  background-image: url('../assets/images/grb-factory-bg.webp');
  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;
}

 
.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-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-goodness-visual {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 21.6px;
}

.grb-kitchen-border {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 65px;
  display: flex;
  flex-direction: column;
  z-index: 5;
}

.grb-kitchen-border .blue-bar {
  flex: 1;
  background-color: #4558AC;
  width: 21.6px;
}

.grb-kitchen-border .pixel-pattern {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.grb-kitchen-image {
  width: 100%;
  height: auto;
  display: block;
}
 
.grb-products-section {
  background-color: #F5F0E8;
  padding: 80px 0 0 0;
  position: relative;
}

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

.grb-products-title {
  font-family: "Fira Sans", sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #2C3C85;
  margin: 0 0 24px 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: 140px;
}

/* 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 40px 0;
}

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

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




/* ------------------------------------------------------------------------------------------ */
/* --- 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: 47px 67px;
  }

  /* .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;
  }
}
 
.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: #AD1E3E;
  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-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 50px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

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

/* .retail-logos-track:hover {
  animation-play-state: paused;
} */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.retail-logo-item {
  flex: 0 0 250px;
  /* Fixed width for continuous scroll */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

.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;
  cursor: pointer !important;
}

.pagination-dots .dot.active {
  background-color: #cf2a34;
}
 
@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;
  }

  /* Retail Slider Tablet */
  .retail-logo-item {
    flex: 0 0 180px;
    padding: 8px;
  }

  .retail-logo-item img {
    max-width: 140px;
  }

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

  .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;
    padding: 0 15px;
  }

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

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

/* ---------- ≤768px (Mobile & Small Tablets) ---------- */
@media (max-width: 768px) {

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

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

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

  .global-journey-section .body-text br {
    display: none;
  }

  /* 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;
  }

  /* Retail Slider Mobile */
  .retail-logo-item {
    flex: 0 0 140px;
    padding: 5px;
  }

  /* Remove old wrapper styles override if any */
  .retail-logos-container {
    margin-top: 30px;
  }

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

  .distribution-section .section-title {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
  }

  .distribution-section .body-text {
    text-align: center;
    font-size: 16px !important;
  }

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

  .distribution-card-title {
    font-size: 20px !important;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
  }

  .distribution-card-title br {
    display: none;
  }

  .distribution-card-text {
    font-size: 16px !important;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 30px;
    /* width: 70%; */
    margin: 30px auto;
  }

  /* Retail Partners */

  .retail-partners-section {
    margin: 0;
  }

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

  .retail-logos-wrapper {
    gap: 30px 40px;
    margin-top: 40px;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
  }

  .retail-logos-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
  }

  .retail-logo-item {
    flex-shrink: 0;
    width: 120px;
  }

  .retail-logo-item img {
    height: auto !important;
    width: auto !important;
    max-width: 100px !important;
    max-height: 50px !important;
    object-fit: contain;
  }

  .pagination-dots {
    display: none !important;
  }
}

/* ---------- ≤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-container {
    margin-top: 20px;
  }

  .retail-logo-item {
    flex: 0 0 120px;
    /* Smaller width for small mobile */
    padding: 4px;
  }

  .retail-logo-item img {
    max-width: 80px !important;
    max-height: 40px !important;
  }
}


/* -----------------------------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;
  }
}
 
@media (min-width: 992px) {
  .grb-navbar .nav-item.dropdown {
    position: relative;
  }

  /* The Container (Cream Box) */
  .grb-navbar .dropdown-menu {
    border: none;
    border-radius: 0;
    /* No rounded corners for exact design match */
    background-color: #f5172c;
    /* Cream/beige background */
    padding: 0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    /* 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: 63% !important;
    top: 100%;
    margin-top: 0;
    min-width: 220px;
    /* No spacing - flush with button */
    /* min-width: 200px; */
  }

  /* 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);
}

/* "Our Brands" button styling */
.grb-navbar .dropdown-toggle {
  /* background-color: #2C3C85 !important; */
  /* Dark blue background */
  color: #ffffff !important;
  /* padding: 8px 24px !important; */
  border-radius: 0 !important;
}

/* Toggle link active state */
.grb-navbar .nav-link.show {
  color: #ffffff !important;
}

/* Dropdown Items */
.grb-navbar .dropdown-item {
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  color: #ffffff !important;
  padding: 10px 30px;
  font-weight: 500;
  text-transform: none;
  background-color: transparent !important;
  border-bottom: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Add border below GRB and Townbus items */
.grb-navbar .dropdown-item:nth-child(1),
.grb-navbar .dropdown-item:nth-child(2) {
  border-bottom: 1px solid #C5B37A !important;
  width: 130px;
  margin: 0 auto;
}

.grb-navbar .dropdown-item:hover {
  background-color: transparent !important;
  color: #000000 !important;
}

/* Mobile Dropdown Styling */
@media (max-width: 991px) {
  .grb-navbar .dropdown-menu {
    border: none;
    background-color: #fb132d !important;
    /* Same cream background as desktop */
    margin-left: 0px;
    border-radius: 0;
    padding: 0;
    width: 100%;
  }
  
  .grb-navbar .nav-link.show
  {
	    color: #000000 !important;
  }

  .grb-navbar .dropdown-item {
    color: #FFFFFF !important;
    padding: 10px 0px;
    background-color: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Add border below GRB and Townbus items on mobile */
  .grb-navbar .dropdown-item:nth-child(1),
  .grb-navbar .dropdown-item:nth-child(2) {
    border-bottom: 1px solid #C5B37A !important;
  }

  .grb-navbar .dropdown-item:hover {
    background-color: transparent !important;
  }

  /* "Our Brands" button on mobile */
  /* body:not(.townbus-page) .grb-navbar .dropdown-toggle {
    background-color: #2C3C85 !important;
    color: #ffffff !important;
  } */
}

/* ======================================================= 
   DROPDOWN ICON STYLES
======================================================= */

/* Desktop Dropdown Icon Styles */
@media (min-width: 992px) {
  .grb-navbar .dropdown-icon {
    width: 120px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
  }

  .grb-navbar .dropdown-item:hover .dropdown-icon {
    transform: scale(1.05);
  }

  .rakal-dropdown-logo {
    width: 85px !important;
  }
}

/* Mobile Dropdown Icon Styles */
@media (max-width: 991px) {
  .grb-navbar .dropdown-icon {
    width: 100px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .rakal-dropdown-logo {
    width: 70px !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 (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) {

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

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

  .vm-card br {
    display: none;
  }
}

/* =======================================================
   REGIONAL PRESENCE MOBILE REFACTOR
   (Max-width: 767px)
======================================================= */
@media (max-width: 767px) {

  .regional-presence-section {
    background-color: #FBF8F0;
    /* Off-white / Beige match */
    padding: 40px 0;
  }

  /* Stack regions vertically */
  .regional-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* Consistent spacing between blocks */
  }

  .regional-column {
    width: 100%;
    margin-bottom: 10px;
  }

  /* Header Container (Icon + Title) */
  .regional-header {
    display: flex;
    align-items: center;
    /* Horizontally align icon and text */
    gap: 12px;
    /* Tightly coupled */
    margin-bottom: 16px;
  }

  /* Icon Styling */
  .regional-icon {
    width: 32px;
    /* Slightly smaller for tighter look */
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevent squishing */
  }

  .regional-icon img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    /* Remove any default margins */
  }

  /* Title Styling */
  .regional-title {
    color: #AD1E3E !important;
    /* Brand Red */
    font-family: "Fira Sans", sans-serif;
    font-weight: 800;
    /* Bolder */
    font-size: 20px;
    /* Condensed look usually implies slightly smaller but punchy */
    text-transform: uppercase;
    margin: 0 !important;
    /* Remove default headers margin */
    line-height: 1;
    letter-spacing: -0.5px;
    /* Simulating condensed font */
    padding-top: 4px;
    /* Optical alignment with icon */
  }

  /* Country List GRID Layout */
  .regional-list-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2 columns */
    column-gap: 10px;
    row-gap: 8px;
    /* Tighter vertical spacing */
    padding-left: 44px;
    /* Indent: 32px icon + 12px gap */
    width: 100%;
  }

  /* Handling potential interference */
  .country-list-container {
    display: block;
    /* Reset if it was flex row on desktop */
  }

  /* Flatten ULs so LIs become grid items */
  ul.regional-list {
    display: contents !important;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  /* List Item Styling */
  .regional-list li {
    position: relative;
    padding-left: 16px;
    /* Space for bullet */
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    /* "Smaller" */
    font-weight: 500;
    color: #4A5568;
    /* Dark Slate/Grey */
    line-height: 1.3;
    list-style: none;
    /* Remove default bullet */
    margin: 0;
  }

  /* Custom Bullet (Small Square) */
  .regional-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #C4302B;
    /* Mockup usually has red or dark bullets. User said 'custom square markers'. Using Brand Red for pop or dark grey? User said 'vertically highlighted'. Let's use Dark Grey to match text or Red? First request said 'small squares aligned'. I'll stick to text color or Red. Let's go RED to match branding or GREY? User said "custom square markers". I'll use text color #4A5568 for subtle look, or red if user insists. Let's use #4A5568 to be safe/classy */
    background-color: #4A5568;
    border-radius: 0px;
    /* Square */
  }
}

/* ================= MISSION & VISION REWORK ================= */
.mission-vision-section {
  padding: 80px 0;
  background-color: #FBF8F0;
}

.mv-card {
  position: relative;
  padding: 55px 80px;
  height: 100%;
  /* width: 83% !important;  */
}

.vision-card-new {
  background-color: #E5EFA0;
  /* Light Green Tint */
}

.mission-card-new {
  background-color: #FFD6C5;
  /* Light Red Tint */
}

.mv-corner {
  position: absolute;
  /* width: 60px;  */
  height: auto;
  z-index: 1;
}

.mv-top-left {
  top: 0;
  left: 0;
}

.mv-bottom-right {
  bottom: 0;
  right: 0;
}

.mv-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mv-header {
  /* display: flex; justify-content: space-between is in HTML classes */
  margin-bottom: 24px;
}

.mv-title {
  font-family: "Fira Sans", sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

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

.mission-title {
  color: #e04848;
}

.mv-icon {
  width: 60px;
  height: auto;
}

.mv-body p {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 19px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
  /* padding: 0 10px; */
}

.mv-body p:last-child {
  margin-bottom: 0;
}

.mv-body p br {
  display: none;
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .mv-card {
    padding: 40px 30px;
  }

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

  .mv-body p {
    font-size: 16px;
  }

  .mv-corner {
    width: 50px;
  }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .mission-vision-section {
    padding: 50px 0;
  }

  .mv-card {
    padding: 30px 24px;
  }

  .mv-title {
    font-size: 24px;
  }

  .mv-icon {
    width: 45px;
  }

  .mv-corner {
    width: 50px;
  }

  /* Ensure no horizontal overflow if SVGs stick out (they shouldn't as mapped 0,0) */
}

/* =======================================================
   CAREER PAGE STYLES (Mapped from Home)
======================================================= */

/* --- CAREER BANNER (Hero) --- */
.career-banner-section {
  position: relative;
  height: 720px;
  overflow: hidden;
}

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

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

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

.career-banner-content {
  color: #ffffff;
}

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

.career-pattern-tilted {
  position: absolute;
  bottom: -2px !important;
  transform: rotate(0deg) !important;
  left: -1%;
  width: 102%;
  z-index: 9;
}

/* --- CAREER LEGACY --- */
.career-legacy-section {
  background-color: #fbf8f0;
  /* margin-top: 40px; */
  padding: 80px 0 0;
}

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

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

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

/* --- CAREER GLANCE --- */
.career-glance-section {
  background-color: #fbf8f0;
  padding: 80px 0;
}

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

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

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

.career-glance-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #254695;
  margin-bottom: 12px;
  text-align: center;
}


/* ================= MEDIA QUERIES ================= */

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

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

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

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

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

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

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

  .career-glance-section {
    padding: 0;
  }

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

/* ---------- ≤1024px (tablet landscape / small laptop) ---------- */
@media (max-width: 1024px) {
  .career-banner-section {
    height: 600px;
  }

  .career-banner-title {
    font-size: 40px;
    line-height: 1.1;
    max-width: 520px;
    margin-top: 40px;
  }

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

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

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

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

  .career-glance-text {
    font-size: 18px;
    max-width: 90%;
  }

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

/* ---------- ≤768px (mobile & small tablets) ---------- */
@media (max-width: 768px) {
  .career-banner-section {
    height: 600px;
    padding-top: 88px;
  }

  .career-banner-content-container {
    align-items: flex-start;
    padding-top: 180px;
  }

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

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

  .career-pattern-tilted {
    bottom: 22px !important;
    transform: rotate(2deg);
  }

  .career-legacy-section {
    padding-top: 40px;
  }

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

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

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

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

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

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

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

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

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

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

  .career-glance-desc {
    font-size: 14px;
    color: #000;
  }
}

/* --- CAREER BANNER IMAGE FIX --- */
.career-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* --- WHY JOIN GRB SECTION (New) --- */
.why-join-grb-section {
  background-color: #fbf8f0;
  /* Default bg */
  padding: 80px 0;
}

.why-join-title {
  color: #2C3C85;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Grid for the 5 cards */
.why-join-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.why-card {
  padding: 50px 18px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 360px;
  min-height: 280px;
}

/* Specific Card Backgrounds */
.why-card-green {
  background-color: #E6EFAB;
  /* Light greenish */
}

.why-card-orange {
  background-color: #FFD7C7;
  /* Light orangeish */
}

.why-card-yellow {
  background-color: #FFEEC5;
  /* Light yellowish */
}

.why-card-purple {
  background-color: #E8E7FF;
  /* Light purplish */
}

.why-card-brown {
  background-color: #F3EAE2;
  /* Light brownish */
}


.why-icon {
  height: 60px;
  margin-bottom: 20px;
  width: auto;
}

.why-card-title {
  color: #c4302b;
  /* Or variants */
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Fira Sans", sans-serif;
}

/* Varied title colors based on image if needed, or stick to brand red/green */
.title-green {
  color: #5A9A51;
}

.title-red {
  color: #BE3532;
}

.title-yellow {
  color: #F2AF13;
}

.title-blue {
  color: #2C3C85;
}

.title-brown {
  color: #CB986B;
}

.why-card-desc {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  font-family: "Hanken Grotesk", sans-serif;
  max-width: 90%;
}

.why-card-yellow .why-card-desc {
  max-width: 100%;
}

/* Responsive Why Join */
@media (max-width: 768px) {
  .why-join-grb-section {
    padding: 40px 0;
  }

  .why-join-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .why-join-grid {
    flex-direction: column;
    align-items: center;
  }

  .why-card {
    width: 100%;
    max-width: 350px;
  }
}


/* --- OUR PEOPLE SECTION --- */
.our-people-section {
  background-color: #F3EAE2;
  padding: 80px 0;
}

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

.our-people-visual {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-people-image {
  width: 100%;
  height: auto;
  /* border-radius: 12px; */
}

.our-people-text {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
}

.our-people-heading {
  font-family: "Fira Sans", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #2C3C85;
  line-height: 1.2;
  margin-bottom: 24px;
}

.our-people-body {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
  width: 77%;
}

.our-people-body strong {
  font-weight: 700;
  color: #000;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .our-people-section {
    padding: 50px 0;
  }

  .our-people-content {
    flex-direction: column;
    gap: 30px;
  }

  .our-people-visual {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .our-people-text {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: left;
  }

  .our-people-heading {
    font-size: 28px;
  }

  .our-people-heading br {
    display: none;
  }

  .our-people-body {
    width: 100%;
    font-size: 16px;
  }
}

/* --- CAREER CTA SECTION (Next Step) --- */
.career-cta-section {
  padding: 40px 0 80px;
}

.career-cta-box {
  position: relative;
  background-color: #FFEEC5;
  padding: 80px 40px;
  /* Internal padding */
  overflow: hidden;
}

.cta-corner {
  position: absolute;
  width: 113px;
  height: auto;
  z-index: 1;
}

.cta-corner-tl {
  top: 0;
  left: 0;
}

.cta-corner-br {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

.career-cta-inner {
  position: relative;
  z-index: 2;
  /* padding: 0 40px; */
  /* max-width: 1100px; margin: 0 auto; if needed */
}

.career-cta-img-wrap {
  display: flex;
  justify-content: center;
  /* Center image within col if smaller */
}

.career-cta-img {
  max-width: 100%;
  height: auto;
  /* width: 400px; example max width from image */
}

.career-cta-content {
  padding-left: 40px;
}

.career-cta-title {
  font-size: 38px;
  font-weight: 700;
  color: #2C3C85;
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: "Fira Sans", sans-serif;
}

.career-cta-body {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 40px;
  font-family: "Hanken Grotesk", sans-serif;
  max-width: 56%;
}

.career-cta-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-family: "Fira Sans", sans-serif;
  background-color: #CF2A34;
  /* width: auto; */
  padding: 20px;
  display: inline-block;
}

.career-cta-note {
  font-size: 14px;
  color: #000;
  font-style: italic;
  font-family: "Hanken Grotesk", sans-serif;
  width: 45%;
}

/* Responsive CTA */
@media (max-width: 991px) {
  .career-cta-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }

  .career-cta-body {
    margin: 0 auto 30px;
  }

  .career-cta-img-wrap {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .career-cta-section {
    padding: 60px 0;
  }

  .career-cta-title {
    font-size: 28px;
  }

  .cta-corner {
    width: 60px;
  }

  .career-cta-box {
    padding: 60px 24px;
  }

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

  .career-cta-note {
    width: 100%;
  }

  .career-glance-card-title {
    font-size: 18px;
  }

  .our-people-body {
    width: 100%;
  }

  .why-card {
    width: 100%;
    max-width: 100%;
    /* Ensure it fills container if needed */
  }
}



    .slider-container {
      position: relative;
      width: 90%;
      margin: 50px auto;
    }

    .brand-row {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 20px;
      padding: 20px;
    }

    .brand-row::-webkit-scrollbar {
      display: none;
    }

    .brand-card {
      min-width: 250px;
      background: #f5f5f5;
      padding: 20px;
      border-radius: 10px;
      text-align: center;
      flex: 0 0 auto;
    }

    .brand-card img {
      width: 100%;
      height: 270px;
      object-fit: contain;
    }

    .slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #c9c8c8;
      color: #fff;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 10;
    }

    .slide-btn.left {
      left: -10px;
    }

    .slide-btn.right {
      right: -10px;
    }
	
	.brand-row {
  display: flex;
  overflow: hidden; /* hide scroll bar */
  white-space: nowrap;
}

.brand-card {
  flex: 0 0 auto;
  min-width: 320px;
}

/* Hide break on desktop */
.mobile-break {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }

  .footer-copy {
    text-align: center;   
  }
}

 body {
        background-color: #000000 !important;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    /* .hero-section {
        height: 760px !important;
    } */

    .hero-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
        z-index: 1;
        transform: translateX(100%);
        transition: transform 0.8s ease-in-out;
    }

    .hero-slide.active {
        z-index: 2;
        transform: translateX(0);
    }

    .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-dots {
        margin-top: 10px;
        padding-bottom: 80px;
    }

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

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

    .rakal-logo {
        max-width: 280px;
        width: 100%;
        margin-bottom: 15px;
    }

    .rakal-tagline {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: 400;
        display: block;
        letter-spacing: 0.02em;
        text-transform: none;
        margin-top: 20px;
    }

    .hero-title {
        max-width: 100% !important;
        font-family: 'Baloo Bhai 2', sans-serif;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-dots .dot.active {
        background-color: #8CC63F !important;
    }

    /* RAKAL SPECIFIC FOOTER STYLES */
    .rakal-footer {
        background-color: #F9DDB0;
        position: relative;
        color: #233F8F;
        font-family: 'Baloo Bhai 2', sans-serif;
        padding-top: 60px;
    }

    .rakal-footer-content {
        display: flex;
        justify-content: start;
        align-items: center;
        padding-bottom: 50px;
        gap: 50px;
    }

    .rk-footer-logo {
        flex: 0 0 auto;
    }

    .rk-footer-logo img {
        max-width: 280px;
        width: 500px;
    }

    .rk-footer-center {
        text-align: left;
        flex: 1;
    }

    .rk-tagline-main {
        font-size: 32px;
        font-weight: 500;
        color: #2D2929;
        line-height: 1.1;
        margin: 0;
        font-family: 'Baloo Bhai 2', sans-serif;
    }

    .rk-tagline-main strong {
        font-weight: 800;
    }

    .rk-tagline-sub {
        display: none;
    }

    .rk-footer-cta {
        flex: 0 0 auto;
        text-align: right;
    }

    .rk-home-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #FF5B00;
        color: #ffffff;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 700;
        font-size: 26px;
        padding: 12px 27px;
        text-decoration: none;
        transition: all 0.3s ease;
        gap: 15px;
        margin-left: 10px;
        margin-bottom: 10px;
    }



    .arrow-icon {
        font-size: 32px;
        line-height: 1;
        font-weight: 300;
    }

    .rk-footer-bottom {
        /* border-top: 0.1px solid #000; */
        padding: 20px 0 120px;
        display: flex;
        justify-content: flex-end;
        font-size: 14px;
        font-weight: 400;
        color: #5E3A24;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        font-family: 'Hanken Grotesk', sans-serif;
    }

    .rk-footer-links a {
        text-decoration: none;
        color: inherit;
        margin-left: 30px;
        display: none;
    }

    .rk-pattern-strip {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
        display: flex;
    }

    .rk-pattern-strip img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* RAKAL INTRO SECTION */
    .rakal-intro-section {
        background-color: #FBF8F1;
        padding: 130px 0 90px;
    }

    .rakal-intro-text {
        max-width: 980px;
        margin: 0 auto;
        font-size: 20px;
        line-height: 1.5;
        color: #555555;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 500;
        text-align: center;
    }

    /* RAKAL METHOD SECTION */
    .rakal-method-section {
        background-color: #FBF8F1;
        padding: 50px 0;
    }

    .method-container {
        background-image: url('assets/images/rakal-method-bg.svg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 70px 60px;
        color: #ffffff;
        position: relative;
        /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    }

    .method-title-wrap {
        display: flex;
        /* align-items: center; */
        gap: 25px;
        margin-top: -45px;
    }

    .method-pattern {
        max-width: 20px;
        width: 100%;
        height: auto;
        opacity: 0.8;
    }

    .method-heading {
        font-family: 'Baloo Bhai 2', sans-serif;
        font-size: 52px;
        line-height: 1.0;
        color: #FFC20E;
        text-transform: none;
        margin: 0;
        letter-spacing: 0;
        font-weight: 700;
    }

    .method-content {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 20px;
        line-height: 1.47;
        /* padding-left: 20px; */
        font-weight: 300;
        /* width: 80%; */
        letter-spacing: 0;
        padding-top: 75px;
    }

    .method-content p {
        margin-bottom: 35px;
        opacity: 0.95;
    }

    .method-content strong {
        font-weight: 700;
        color: #ffffff;
        font-family: 'Hanken Grotesk', sans-serif;
    }

    /* RAKAL REGIONAL SECTION */
    .rakal-regional-section {
        background-color: #FBF8F1;
        padding: 60px 0 20px;
    }

    .regional-title {
        font-family: 'Baloo Bhai 2', sans-serif;
        font-size: 43px;
        line-height: 1;
        color: #AD1E3E;
        margin-bottom: 50px;
        font-weight: 700;
        /* margin-left: 80px; */
        text-transform: none;
        letter-spacing: -0.01em;
    }

    .regional-img-wrap img {
        width: 100%;
        height: auto;
    }

    .regional-intro {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 18px;
        line-height: 1.5;
        color: #555;
        margin-bottom: 35px;
        font-weight: 300;
    }

    .regional-content-col {
        padding-top: 170px;
    }

    .regional-intro strong {
        font-weight: 800;
    }

    .regional-item h3 {
        font-family: 'Baloo Bhai 2', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #AD1E3E;
        margin-bottom: 10px;
        text-transform: none;
    }

    .regional-item p {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 18px;
        line-height: 1.5;
        color: #555;
        margin: 0;
    }

    .rakal-ground-section {
        background-color: #e1e1e1;
		padding: 20px;
        /* Very light pink */
    }

    .ground-img-col {
        padding: 0;
		margin-top: 25px;
		margin-bottom: 25px;
    }

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

    .ground-content-col {
        padding-left: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .ground-heading {
        font-family: 'Baloo Bhai 2', sans-serif;
        font-size: 50px;
        line-height: 1.1;
        color: #AD1E3E;
        margin-bottom: 40px;
        font-weight: 700;
    }

    .ground-text {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 20px;
        line-height: 1.47;
        color: #555;
        font-weight: 300;
		padding: 20px;
    }

    .ground-text p {
        margin-bottom: 25px;
    }

    .ground-text strong {
        font-weight: 700;
        font-family: 'Hanken Grotesk', sans-serif;
        color: rgba(174, 31, 63, 1);
    }

    .rakal-highlight {
        color: #AD1E3E;
        font-weight: 800;
    }
 
    .rakal-cta-section {
        background-color: #FBF8F1;
        padding: 0px;
    }

    .rakal-cta-banner {
        background-color: #2e1a1a;
        background-image: url('../assets/images/broucher-bg.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* border-radius: 12px; 
        min-height: 500px;*/
        position: relative;
        display: flex;
        align-items: center;
        padding: 20px 20px;
        overflow: hidden;
    }

    .rakal-cta-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 70%);
        z-index: 1;
    }

    .cta-content {
        max-width: 600px;
        position: relative;
        z-index: 2;
    }

    .cta-title { 
        font-size: 40px;
        font-weight: 800;
        line-height: 1.05;
        color: #f1fcf8;
        /* Yellow */
        margin-bottom: 45px;
        text-transform: none;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .download-btn {
        display: inline-flex;
        align-items: center;
        background-color: #ffffff;
        color: #AD1E3E;
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 14px 30px;
        text-decoration: none;
        border-radius: 2px;
        transition: 0.3s;
        letter-spacing: 0.5px;
    }

    .download-btn:hover {
        background-color: #f8f8f8;
        color: #AD1E3E;
    }

    .download-btn span {
        margin-left: 10px;
        font-size: 18px;
        line-height: 1;
    }


    /* RESPONSIVE */
    @media (max-width: 1440px) {
        .rakal-intro-text {
            font-size: 20px;
            max-width: 800px;
        }

        .method-heading {
            font-size: 58px;
        }

        .method-content {
            font-size: 20px;
        }
    }

    @media (max-width: 1024px) {
        .rakal-page .hero-title {
            font-size: 72px !important;
        }

        .rakal-intro-section {
            padding: 100px 20px;
        }

        .method-heading {
            font-size: 48px;
        }

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

        .rakal-footer-content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: nowrap;
            gap: 40px;
            padding-bottom: 40px;
        }

        .rk-footer-logo img {
            max-width: 200px !important;
            width: 200px;
        }

        .rk-footer-center {
            flex: 1;
            text-align: left;
            padding: 33px 20px 0;
            margin-top: 0 !important;
        }

        .rk-tagline-main {
            font-size: 20px !important;
            margin-bottom: 15px;
            margin-top: 0;
        }

        .rk-tagline-sub {
            font-size: 16px !important;
            margin-top: 8px;
        }

        .rk-footer-cta {
            flex: 0 0 auto;
            text-align: right;
            margin-top: 30px !important;
        }

        .rk-home-btn {
            font-size: 24px;
            padding: 15px 40px;
        }

        .rk-footer-bottom {
            padding: 20px 0 100px;
            display: flex;
            justify-content: space-between;
            flex-direction: row;
            align-items: center;
            gap: 0;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            min-height: 500px !important;
            height: auto !important;
            padding: 80px 0;
            display: flex;
            align-items: center;
        }

        .hero-slides-container {
            position: absolute;
            inset: 0;
        }

        .rakal-page .hero-title {
            font-size: 28px !important;
            max-width: 100% !important;
            text-align: center;
            line-height: 1.3 !important;
            margin-top: 5px !important;
        }

        .rakal-page .hero-title br {
            display: none;
        }

        .rakal-logo {
            max-width: 130px;
            margin: 0 auto 5px;
            display: block;
        }

        .rakal-tagline {
            display: none;
        }

        .pattern-tilted {
            display: none;
        }

        .hero-dots {
            text-align: center;
        }

        .rakal-intro-text {
            font-size: 16px;
            line-height: 1.6;
        }

        .rakal-intro-section {
            padding: 60px 15px;
        }

        .method-container {
            padding: 60px 25px;
        }

        .method-title-wrap {
            flex-direction: column;
            text-align: center;
            gap: 20px;
            margin-top: 0;
        }

        .method-pattern {
            display: none;
        }

        .method-heading {
            font-size: 34px;
            text-align: center;
        }

        .method-content {
            padding-left: 0;
            text-align: center;
            margin-top: 30px;
            font-size: 16px;
            padding-top: 0 !important;
        }

        .rakal-method-section {
            padding: 40px 15px;
        }

        .rakal-footer {
            padding-top: 40px;
        }

        .rk-tagline-main {
            font-size: 18px;
        }

        .rk-footer-bottom {
            flex-direction: column;
            padding: 20px 0 40px;
        }

        .rakal-footer-content {
            flex-direction: column !important;
            align-items: center !important;
            text-align: center !important;
            gap: 30px;
        }

        .rk-footer-center {
            text-align: center !important;
            padding: 0 !important;
        }

        .rk-footer-cta {
            text-align: center !important;
            width: 100% !important;
            margin-top: 0px !important;
            display: flex !important;
            justify-content: center !important;
        }

        .rk-home-btn {
            font-size: 18px !important;
            padding: 10px 20px !important;
        }

        .rakal-regional-section {
            padding: 40px 15px;
        }

        .regional-title {
            font-size: 28px;
            text-align: center;
            margin-bottom: 30px;
        }

        .regional-img-wrap {
            text-align: center;
            margin-bottom: 30px;
        }

        .regional-content-col {
            padding-top: 30px !important;
            text-align: center;
        }

        .regional-intro {
            text-align: center;
            font-size: 16px;
        }

        .ground-content-col {
            padding: 30px 15px;
            text-align: center;
        }

        .ground-heading {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .ground-text {
            font-size: 16px;
        }

        .rakal-ground-section {
            padding: 40px 0;
        }

        .rakal-cta-banner {
            min-height: 300px;
            padding: 30px 20px;
            text-align: center;
            justify-content: center;
        }

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

        .rakal-cta-section {
            padding: 40px 15px;
        }
    }

    @media (max-width: 480px) {
        .rakal-page .hero-title {
            font-size: 28px !important;
        }

        .method-heading {
            font-size: 28px;
        }

        .cta-title {
            font-size: 24px;
        }

        .download-btn {
            width: 100%;
            justify-content: center;
        }
    }