/* styles.css */
body {
  margin: 0;
  background-color: #fff8e9;
  /* Creamy warm background */
  font-family: "Georgia", serif;
  color: #3b302a;
  /* Dark muted text color */
}

/* ===============================
   HEADER BASE STYLES
=============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, transform 0.3s ease-in-out;
  /* Shadow overlay from top, covering the header section */
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.65) 40%,
      rgba(0, 0, 0, 0.35) 80%,
      rgba(0, 0, 0, 0.0) 100%);
  box-shadow: none;
  /* Remove bottom shadow, use only top overlay */
}

.header .container {
  display: flex;
  flex-direction: column;
  padding: 6px 24px 10px;
  row-gap: 12px;
  /* Add space between the two lines (location and navbar) */
}

/* Location strip */
.location-info {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 6px;
  opacity: 0.85;
  letter-spacing: 0.2px;
  text-align: center;
}

.location-info i {
  margin-right: 8px;
  /* color: #C08A00; */
}

/* ===============================
 NAVIGATION
=============================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Links (Desktop default) */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 auto;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.2s ease, font-weight 0.15s ease;
  padding: 14px 0;
  opacity: 0.95;
}

.nav-link:hover {
  /* color: #ffd700; */
  font-weight: 700;
}

.nav-link.active {
  font-weight: 700;
  /* color: #ffd700; */
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 6px 12px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    margin-right: auto;
    /* forces it to left */
  }

  .navbar {
    justify-content: flex-start;
    /* align items to left */
    width: 100%;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-align: center;
  }

  .nav-links.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 15px;
  }
}

/* Hero Banner Section */
.hero {
  position: relative;
  height: 70vh;
  background: url("../images/home/hero-banner.webp") top center/cover no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 120px 40px;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Breadcrumbs - Visible above hero, responsive */
.breadcrumbs {
  position: absolute;
  top: 400px;
  left: 110px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #FFF;
  padding: 7px 18px;
  border-radius: 8px;
  font-weight: 500;
  width: max-content;
  min-height: 36px;
  line-height: 1.2;
}

/* Breadcrumb links */
.breadcrumbs a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
  font-weight: 500;
}

.breadcrumbs a:hover {
  opacity: 1;
  color: #C08A00;
}

.breadcrumbs .separator {
  font-weight: 600;
  margin: 0 2px;
}

.breadcrumbs .current {
  font-weight: 700;
  opacity: 1;
}

/* Breadcrumbs tablet adjustment */
@media (max-width: 1024px) {
  .breadcrumbs {
    top: 280px;
    left: 36px;
    font-size: 0.95rem;
    padding: 6px 16px;
    border-radius: 7px;
  }
}

/* Breadcrumbs mobile adjustment */
@media (max-width: 768px) {
  .breadcrumbs {
    top: 300px;
    left: 16px;
    font-size: 0.86rem;
    padding: 4px 10px;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .breadcrumbs {
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 3px 16px;
    font-size: 12px;
    border-radius: 6px;
    min-height: 30px;
  }
}

/* ===============================
   Hero Section
=============================== */
.contact-hero {
  position: relative;
  height: 60vh;
  background: url("../images/home/hero-banner.webp") top center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 120px;
  opacity: 0;
  transition: opacity 1s ease-in;
}

.contact-hero.loaded {
  opacity: 1;
}

.contact-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* ===============================
   Breadcrumbs
=============================== */
.contact-breadcrumbs {
  position: absolute;
  left: 10%;
  top: 80%;
  transform: translateX(0);
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  z-index: 20;
}

.contact-breadcrumbs a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.contact-breadcrumbs a:hover {
  opacity: 1;
  color: #c08a00;
}

.contact-breadcrumbs .current {
  font-weight: 700;
}

/* ===============================
   Hero Form Section
=============================== */
.contact-form-section {
  position: absolute;
  bottom: -70px;
  left: 10%;
  transform: translateX(-50%);
  background: #fff;
  max-width: 1200px;
  width: 100%;
  padding: 30px 0;
  border-radius: 10px;
  border: 2px solid #C08A00;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 10;
}

.contact-form {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
}

.contact-form-group {
  flex: 1;
  min-width: 230px;
  max-width: 200px;
  border: 1.5px solid #780000;
  border-radius: 7px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
}

.contact-form-group label {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 4px;
  margin-left: 35px;
  color: #515151;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-form-group input,
.contact-form-group select {
  border: none;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 5px;
  width: 100%;
  color: #939393;
  text-transform: uppercase;
  font-weight: 300;
  background-color: rgba(120, 0, 0, 0.11);
  outline: none;
  text-align: left;
}

.contact-form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 6px 46px 6px 16px;
  background-image: url("../Contact Us/assets/dropdonw.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) 50%;
  background-size: 20px;
  cursor: pointer;
  transition: background-image 0.25s, filter 0.25s;
}

.contact-form-group select:focus,
.contact-form-group select:active {
  background-image: url("../Contact Us/assets/updown.png");
  animation: dropdownArrowAnim 0.25s linear;
}

@keyframes dropdownArrowAnim {
  0% {
    filter: opacity(0.6) blur(1px);
  }

  100% {
    filter: opacity(1) blur(0);
  }
}

.contact-form-group select:focus {
  background-image: url("../Contact Us/assets/dropdonw.png");
}

.contact-form-group select::-ms-expand {
  display: none;
}

.contact-submit button {
  background: linear-gradient(135deg, #8b0000, #780000);
  border: none;
  color: #fff;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  border-radius: 7px;
  font-weight: 300;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.contact-submit {
  display: flex;
  align-items: center;
}

.contact-submit button:hover {
  background: linear-gradient(135deg, #a52a2a, #8b0000);
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE FIXES — Mobile & Tablet
   Preserve desktop layout exactly as-is
===================================================== */

/* ===== Tablet View (max-width: 1024px) ===== */
/* @media (max-width: 1424px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  } */

/* Breadcrumbs above the form */
/* .contact-breadcrumbs {
    position: relative;
    bottom: -190px;
    left: -345px;
    margin-top: 250px;
    margin-bottom: 30px;
    text-align: center;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form-section {
    position: absolute;
    bottom: -70px;
    transform: translateX(-50%);
    background: #fff;
    max-width: 980px;
    width: 90%;
    padding: 22px 0;
    border-radius: 10px;
    border: 2px solid #c08a00;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 10px;
    margin: 0 auto;
    overflow: hidden;
  }

  .contact-form {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .contact-form-group {
    flex: 1;
    min-width: 160px;
    max-width: 180px;
    border: 1.5px solid #780000;
    border-radius: 7px;
    padding: 6px 7px;
    background: transparent;
    display: flex;
    flex-direction: column;
    margin: 0 2px;
  }

  .contact-form-group label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
    margin-left: 35px;
    color: #515151;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .contact-form-group input,
  .contact-form-group select {
    border: none;
    font-size: 12px;
    padding: 0px 12px;
    border-radius: 5px;
    width: 100%;
    color: #939393;
    text-transform: uppercase;
    font-weight: 600;
    background-color: rgba(120,0,0,0.11);
    outline: none;
    text-align: left;
    margin-bottom: 0;
    height: 30px;
  }

  .contact-form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 5px 34px 5px 12px;
    background-image: url("../Contact Us/assets/dropdonw.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    background-size: 16px;
    cursor: pointer;
    transition: background-image 0.25s, filter 0.25s;
  }

  .contact-form-group select:focus,
  .contact-form-group select:active {
    background-image: url("../Contact Us/assets/updown.png");
    animation: dropdownArrowAnim 0.25s linear;
  }

  .contact-form-group select::-ms-expand {
    display: none;
  }

  .contact-submit {
    display: flex;
    align-items: center;
    margin-left: 4px;
    margin-top: 0;
    grid-column: unset;
    text-align: unset;
  }
  .contact-submit button {
    width: 74px;
    min-width: 64px;
    font-size: 13px;
    padding: 8px 0;
    background: linear-gradient(135deg, #8b0000, #780000);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(200,120,0,0.08);
    transition: background 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .contact-submit button:hover {
    background: linear-gradient(135deg, #a52a2a, #8b0000);
    box-shadow: 0 4px 16px rgba(200,120,0,0.12);
    transform: translateY(-1px);
  }
} */

@media (max-width: 1024px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Breadcrumbs above the form - aligned to left of form */
  .contact-breadcrumbs {
    position: relative;
    bottom: -160px;
    left: 0;
    margin-top: 250px;
    margin-bottom: 30px;
    margin-left: 9%;
    margin-right: auto;
    text-align: left;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    max-width: calc(90% - 20px);
  }

  /* Form container centered below banner */
  .contact-form-section {
    position: relative;
    bottom: -140px;
    left: unset;
    transform: none;
    margin: 0 auto 60px;
    width: 90%;
    max-width: 800px;
    padding: 24px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    width: 100%;
  }

  .contact-form-group {
    min-width: auto;
    max-width: 100%;
  }

  .contact-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 12px;
  }

  .contact-submit button {
    width: 60%;
    min-width: 180px;
    max-width: 320px;
    padding: 14px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

/* ===== Mobile View (max-width: 768px) ===== */
@media (max-width: 768px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Breadcrumbs above the form - aligned to left of form */
  .contact-breadcrumbs {
    position: relative;
    bottom: -190px;
    left: 0;
    margin-top: 250px;
    margin-bottom: 30px;
    margin-left: 5%;
    margin-right: auto;
    text-align: left;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    max-width: calc(90% - 20px);
  }

  /* Form container centered below banner */
  .contact-form-section {
    position: relative;
    bottom: -170px;
    left: unset;
    transform: none;
    margin: 0 auto 150px;
    width: 90%;
    max-width: 600px;
    padding: 24px 28px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
    width: 100%;
  }

  .contact-form-group {
    min-width: auto;
    max-width: 100%;
  }

  .contact-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 12px;
  }

  .contact-submit button {
    width: 60%;
    min-width: 180px;
    max-width: 320px;
    padding: 14px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

@media (max-width: 650px) and (min-width: 481px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  /* Breadcrumbs above the form - aligned to left of form */
  .contact-breadcrumbs {
    position: relative;
    bottom: -190px;
    left: 0;
    margin-top: 250px;
    margin-bottom: 30px;
    margin-left: 5%;
    margin-right: auto;
    text-align: left;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    max-width: calc(90% - 20px);
  }

  /* Form container centered below banner */
  .contact-form-section {
    position: relative;
    bottom: -170px;
    left: unset;
    transform: none;
    margin: 0 auto 150px;
    width: 90%;
    max-width: 500px;
    padding: 28px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
    width: 100%;
  }

  .contact-form-group {
    min-width: auto;
    max-width: 100%;
  }

  .contact-submit {
    grid-column: 1 / -1;
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contact-submit button {
    width: 60%;
    min-width: 180px;
    max-width: 320px;
    padding: 14px 0;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

/* ===== Small Mobile View (max-width: 480px) ===== */
@media (max-width: 480px) {
  .contact-hero {
    height: auto;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .contact-breadcrumbs {
    position: relative;
    bottom: -140px;
    left: 0;
    margin-top: 150px;
    margin-bottom: 20px;
    margin-left: 4vw;
    margin-right: auto;
    text-align: left;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 13px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
    width: fit-content;
    max-width: 94vw;
    /* background: rgba(255,255,255,0.86); */
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.04);
  }

  .contact-form-section {
    position: relative;
    top: 10;
    bottom: 0;
    left: unset;
    transform: none;
    margin: 50px auto 34px auto;
    width: 98vw;
    max-width: 90vw;
    min-width: 0;
    padding: 12px 3vw 22px 3vw;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    z-index: 20;
  }

  .contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px 0;
    width: 100%;
    max-width: 440px;
  }

  .contact-form-group {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 6px 2px;
    border-radius: 7px;
    border: 1px solid #bcbbbb82;
    background: #fcfcfc;
    display: flex;
    flex-direction: column;
  }

  .contact-form-group label {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 3px;
    margin-left: 14px;
    color: #5c5c5c;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .contact-form-group input,
  .contact-form-group select {
    font-size: 13px !important;
    padding: 7px 6vw 7px 12px !important;
    width: 100% !important;
    min-width: 0;
    background: #f5ecec;
    border-radius: 5px;
    border: none;
    outline: none;
    margin: 0;
  }

  .contact-form-group select {
    background-image: url("../Contact Us/assets/dropdonw.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) 50%;
    background-size: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
  }

  .contact-form-group select:focus {
    background-image: url("../Contact Us/assets/updown.png");
  }

  .contact-form-group input[type="date"]::-webkit-input-placeholder,
  .contact-form-group input[type="text"]::-webkit-input-placeholder {
    color: #9a9a9a;
    font-weight: 500;
    font-size: 13px;
  }

  .contact-form-group input[type="date"]::placeholder,
  .contact-form-group input[type="text"]::placeholder {
    color: #9a9a9a;
    font-weight: 500;
    font-size: 13px;
  }

  .contact-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .contact-submit button {
    width: 90%;
    min-width: 120px;
    max-width: 320px;
    padding: 13px 0;
    font-size: 15px;
    margin: 0 auto;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    background: linear-gradient(135deg, #8b0000, #780000);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(120, 0, 0, 0.14);
    transition: background 0.2s, box-shadow 0.2s;
  }

  .contact-submit button:hover,
  .contact-submit button:focus {
    background: linear-gradient(135deg, #a52a2a, #8b0000);
    box-shadow: 0 4px 16px rgba(160, 80, 0, 0.15);
  }
}

/* Even smaller devices: stack more compactly */
@media (max-width: 365px) {
  .contact-hero {
    padding-bottom: 0;
    min-height: 160px;
  }

  .contact-breadcrumbs {
    margin-top: 90px;
    padding: 3px 5px;
    font-size: 10.5px;
    max-width: 98vw;
  }

  .contact-form-section {
    margin: 0 auto 22px auto;
    width: 99vw;
    max-width: 99vw;
    padding: 4px 1.5vw 12px 1.5vw;
    border-radius: 9px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 8px 0;
    max-width: 99vw;
  }

  .contact-form-group label {
    font-size: 10px;
    margin-left: 7px;
  }

  .contact-form-group input,
  .contact-form-group select {
    font-size: 12px !important;
    padding: 6px 2vw 6px 7px !important;
  }

  .contact-submit button {
    width: 96%;
    min-width: 74px;
    padding: 10px 0;
    font-size: 13px;
    border-radius: 7px;
  }
}

.about-section {
  max-width: 2000px;
  margin: 120px auto 4rem;
  /* Increased top margin to account for hero section */
  padding: 50px 1rem;
  /* Increased padding for more space inside the section */
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #FFF8E4;
  /* Added background color for the section */
  border-radius: 1.5rem;
}

.images-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.6fr 1fr;
  gap: 1.5rem;
  flex-shrink: 0;
  border-radius: 1.5rem;
}

/* Fix: Ensure images are always visible and can load properly */
.images-wrapper img {
  display: block !important;
  min-height: 1px;
  /* Force layout calculation */
  /* Images must be visible to load - AOS will animate containers, not images */
  opacity: 1 !important;
  visibility: visible !important;
}

/* Large top-left image with reduced rounded top-left corners */
.img-large-top-left img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
  border-top-Right-radius: 4rem;
  border-bottom-Right-radius: 0rem;
}

/* Large top-right image with reduced circular shape */
.img-large-top-right img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 80%;
  align-self: center;
  justify-self: center;
  margin: auto;
}

/* Small bottom-left image with reduced rounded corners */
.img-small-bottom-left img {
  width: 240px;
  height: 160px;
  object-fit: cover;
  border-radius: 1rem;
}

/* Small bottom-right image with quarter (top-right) rounded – matches image reference */
.img-small-bottom-right img {
  width: 240px;
  height: 160px;
  object-fit: cover;
  /* Only top-right corner rounded for L-shaped/"quarter" corner effect */
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 3rem;
  /* Remove extra space, align as in grid */
  margin: 0;
  justify-self: end;
  align-self: end;
  padding: 0;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(80, 42, 0, 0.05);
}

/* Text content next to images */
.text-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 2rem;
  position: relative;
}

/* Decorative Circle - Left Corner */
.decorative-circle {
  position: absolute;
  top: -80px;
  left: -1200px;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #e4c6b6, #d4b6a6);
  border-radius: 50%;
  z-index: 1;
}

/* Subheading with Mea Culpa font */
.subheading {
  font-family: "Mea Culpa", cursive;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #4A4A4A;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-style: italic;
  margin: 0 0 0.45rem 0;
}

/* Red dot next to "About us" */
.red-dot {
  display: inline-block;
  background-color: #8b1c1c;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  position: relative;
  top: -2px;
}

/* Title with League Spartan font */
.title {
  font-family: "League Spartan", sans-serif;
  font-size: 2rem;
  font-weight: 550;
  color: #622222;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #C08A00 100%, #9F7200 100%);
  border-image-slice: 1;
  padding-bottom: 0.3rem;
  max-width: fit-content;
  margin-top: 0;
}

/* Description paragraph with League Spartan font */
.description {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
  color: #3b302a;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: -1rem;
  font-family: "League Spartan", sans-serif;
}

/* ================================================
   RESPONSIVE BREAKPOINTS FOR ABOUT SECTION
   ================================================ */

/* Mobile: 300px to 550px - 2x2 grid, small images, justify text */
@media (min-width: 300px) and (max-width: 550px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 20px 8px 1.5rem 8px;
    padding: 24px 12px;
  }

  .images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
  }

  /* Ensure containers are properly sized */
  .img-large-top-left,
  .img-large-top-right,
  .img-small-bottom-left,
  .img-small-bottom-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Small images for mobile */
  .img-large-top-left img,
  .img-large-top-right img {
    width: 100%;
    max-width: 120px;
    height: 150px;
    margin: 0;
    object-fit: cover;
  }

  .img-small-bottom-left img,
  .img-small-bottom-right img {
    width: 100%;
    max-width: 120px;
    height: 100px;
    margin: 0;
    object-fit: cover;
  }

  /* Reset specific styles for mobile */
  .img-large-top-left img {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 0;
  }

  .img-large-top-right img {
    border-radius: 50%;
  }

  .img-small-bottom-left img {
    border-radius: 0.75rem;
  }

  .img-small-bottom-right img {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 2rem;
  }

  .text-content {
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

  .description {
    text-align: justify !important;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .subheading {
    font-size: 1.5rem;
    text-align: left;
  }

  .title {
    font-size: 1.5rem;
    text-align: left;
  }

  .decorative-circle {
    display: none;
  }
}

/* Tablet: 550px to 991px - 2x2 grid, slightly bigger images, justify text */
@media (min-width: 551px) and (max-width: 991px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 80px 16px 2rem 16px;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
  }

  /* Ensure containers are properly sized */
  .img-large-top-left,
  .img-large-top-right,
  .img-small-bottom-left,
  .img-small-bottom-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Slightly bigger images for tablet */
  .img-large-top-left img,
  .img-large-top-right img {
    width: 100%;
    max-width: 180px;
    height: 220px;
    margin: 0;
    object-fit: cover;
  }

  .img-small-bottom-left img,
  .img-small-bottom-right img {
    width: 100%;
    max-width: 180px;
    height: 140px;
    margin: 0;
    object-fit: cover;
  }

  /* Maintain original border styles */
  .img-large-top-left img {
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 0;
  }

  .img-large-top-right img {
    border-radius: 50%;
  }

  .img-small-bottom-left img {
    border-radius: 1rem;
  }

  .img-small-bottom-right img {
    border-top-right-radius: 2.5rem;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 2.5rem;
  }

  .text-content {
    max-width: 100%;
    padding: 0 16px;
    text-align: left;
  }

  .description {
    text-align: justify !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }

  .subheading {
    font-size: 1.75rem;
    text-align: left;
  }

  .title {
    font-size: 1.75rem;
    text-align: left;
  }

  .decorative-circle {
    display: none;
  }
}

/* Desktop: 991px and above - Use default existing design */
@media (min-width: 992px) {
  /* Default styles are already defined above, no changes needed */
  /* This ensures the existing desktop design is preserved */
}


/* Statistics Section - Updated v2.0 */
.statistics-section {
  padding: 150px 20px;
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  pointer-events: none;
}

.statistics-container {
  max-width: 1800px;
  /* Increased from 1200px */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.statistics-content {
  text-align: center;
}

.statistics-text {
  margin-bottom: 60px;
}

.statistics-title {
  font-family: 'Mea Culpa', cursive;
  font-size: 30px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.426);
  /* Reduced opacity from 1 to 0.7 */
  margin-top: -75px;
  margin-bottom: 200px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.20em;
  line-height: 1.2;
  display: block;
  width: fit-content;
}

/* Add extra gap between statistics title/text and statistics grid for airy look */
.statistics-text {
  margin-bottom: 90px;
  /* Increased from 60px for more space as in screenshot */
}

/* Single Horizontal Statistics Box */
.statistics-grid {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(1px) !important;
  border-radius: 20px !important;
  padding: 40px 60px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.055) !important;
  max-width: 1600px !important;
  /* Increased for wider display */
  width: 90% !important;
  margin: 0 auto -100px auto !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
}

.statistics-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%,
      rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
}

.stat-item {
  text-align: left;
  /* Changed from center to left */
  flex: 1;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-size: 56px;
  /* Increased from 48px */
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'League Spartan', sans-serif;
  letter-spacing: -1px;
  display: block;
}

.stat-label {
  font-family: 'Reem Kufi', sans-serif;
  font-size: 20px;
  font-weight: 500;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  line-height: 1.4;
  padding-top: 8px;
  color: white;
  display: block;
}

/* Responsive Design for Statistics */
@media (max-width: 768px) {
  .statistics-section {
    padding: 60px 15px 85px 15px;
    /* Increased bottom padding */
    margin-bottom: 56px;
    /* Extra bottom margin */
  }

  .statistics-title {
    font-size: 36px;
    margin-bottom: 40px;
    margin-top: 32px;
    /* Added top margin */
  }

  .statistics-grid {
    padding: 30px 40px 50px 40px;
    /* Added extra inside bottom padding */
    border-radius: 15px;
    max-width: 100% !important;
    margin-bottom: 12px;
    /* Adds more space below the grid */
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .statistics-section {
    padding: 40px 10px;
  }

  .statistics-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .statistics-grid {
    padding: 25px 20px;
    border-radius: 12px;
    flex-direction: column;
    gap: 20px;
    max-width: 100% !important;
  }

  .stat-item {
    flex: none;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 13px;
  }
}

/* Separator line below the statistics grid */
.statistics-separator {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  margin: 130px auto -100px auto;
  /* space above and center alignment */
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

/* Adjust spacing for smaller screens and add margin-bottom to statistics-separator */
@media (max-width: 768px) {
  .statistics-separator {
    width: 100px;
    margin-top: 150px;
    margin-bottom: -120px;
  }
}

@media (max-width: 480px) {
  .statistics-separator {
    width: 80px;
    margin-top: 150px;
    margin-bottom: -0px;
  }
}


/* Founder Section */
.founder-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  position: relative;
  background: #fff;
}

.founder-container {
  display: flex;
  max-width: 1500px;
  align-items: center;
  gap: 40px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.founder-img img {
  width: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
}

.founder-content {
  flex: 1;
  text-align: left;
}

.founder-title {
  font-family: "Mea Culpa", cursive;
  font-size: 42px;
  margin-bottom: 10px;
  color: #333;
}

.dot {
  width: 8px;
  height: 8px;
  background: #a00;
  border-radius: 50%;
  display: inline-block;
  margin-left: 6px;
}

.founder-content h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #a00;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.divider {
  border: none;
  border-bottom: 2px solid #b3810d;
  margin-bottom: 20px;
  width: 700px;
}

.founder-section .description {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  text-align: justify;
  max-width: 700px;
  margin-top: 20px;
}

/* Founder arrows - exact design match per sample image */
.arrow {
  background: #ffe7a8;
  /* pale golden/yellow */
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07), 0 4px 18px rgba(0, 0, 0, 0.06);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  z-index: 10;
  transition: box-shadow 0.2s, transform 0.17s;
}

/* Arrow Button Placement */
.arrow.left {
  left: 40px;
}

.arrow.right {
  right: 40px;
}

.arrow:active,
.arrow:focus {
  outline: none;
  box-shadow: 0 6px 18px rgba(178, 129, 13, 0.11), 0 5px 26px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(0.97);
}

.arrow:hover {
  box-shadow: 0 8px 24px rgba(178, 129, 13, 0.14), 0 7px 34px rgba(0, 0, 0, 0.13);
  /* mild bounce on hover */
  transform: translateY(-53%) scale(1.07);
  filter: brightness(1.05);
}

/* Inner chevron icon - expects font awesome or svg, but override color/appearance */
.arrow i,
.arrow svg {
  color: #6b0100;
  /* deep red/maroon */
  font-size: 25px !important;
  width: 26px;
  height: 26px;
  display: block;
  z-index: 2;
}

/* If you use ::before or embed a polygon SVG, shape to chevron left/right */
.arrow.left i,
.arrow.left svg {
  transform: none;
}

.arrow.right i,
.arrow.right svg {
  transform: rotate(360deg);
}

/* =============================================
   FOUNDER SECTION RESPONSIVE BREAKPOINTS
   ============================================= */

/* Mobile: 300px to 550px - 1 image, 1 row, 1 column, small size, justify text */
@media (min-width: 300px) and (max-width: 550px) {
  .founder-section {
    padding: 30px 12px;
    overflow-x: hidden;
  }

  .founder-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
  }

  /* Small image for mobile - 1 row, 1 column */
  .founder-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .founder-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
  }

  .founder-content {
    width: 100%;
    padding: 0;
    text-align: left;
  }

  .founder-title {
    font-size: 28px;
    text-align: left;
    margin: 0 0 8px 0;
  }

  .founder-content h2 {
    font-size: 20px;
    text-align: left;
    margin: 0 0 10px 0;
  }

  .founder-section .description {
    text-align: justify !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0 0 0;
    padding: 0;
    max-width: 100%;
  }

  .divider {
    width: 100%;
    margin: 12px 0;
    margin-left: 0;
  }

  /* Arrow buttons responsive styling */
  .arrow {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .arrow.left {
    left: 8px;
  }

  .arrow.right {
    right: 8px;
  }
}

/* Tablet: 550px to 991px - 1 image, 1 row, 1 column, slightly bigger, justify text */
@media (min-width: 551px) and (max-width: 991px) {
  .founder-section {
    padding: 40px 16px;
    overflow-x: hidden;
  }

  .founder-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 28px;
  }

  /* Slightly bigger image for tablet - 1 row, 1 column */
  .founder-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .founder-img img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
  }

  .founder-content {
    width: 100%;
    padding: 0 12px;
    text-align: left;
  }

  .founder-title {
    font-size: 36px;
    text-align: left;
    margin: 0 0 10px 0;
  }

  .founder-content h2 {
    font-size: 26px;
    text-align: left;
    margin: 0 0 12px 0;
  }

  .founder-section .description {
    text-align: justify !important;
    font-size: 15px;
    line-height: 1.6;
    margin: 10px 0 0 0;
    padding: 0;
    max-width: 100%;
  }

  .divider {
    width: 100%;
    margin: 15px 0;
    margin-left: 0;
  }

  /* Arrow buttons responsive styling */
  .arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
}

/* Desktop: 991px and above - Default design with justified content */
@media (min-width: 992px) {

  /* Default desktop styles with justified text */
  .founder-section .description {
    text-align: justify !important;
  }

  .founder-content {
    text-align: left;
  }
}

/* Fix for 1200px arrow alignment issues (desktop only) */
@media (min-width: 992px) and (max-width: 1200px) {
  .founder-section {
    padding-left: 32px;
    padding-right: 32px;
  }

  .founder-container {
    gap: 30px;
    max-width: 1000px;
  }

  .founder-img img {
    width: 340px;
    min-width: 240px;
    max-width: 340px;
  }

  .arrow.left {
    left: 8px;
  }

  .arrow.right {
    right: 8px;
  }
}


/* === GLOBAL / BASE STYLES === */
.testimonial-section {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #fff8f0;
  /* Default background */
  padding: 60px 40px;
  /* Default desktop padding */
  max-width: 1800px;
  margin: 0 auto;
  display: block;
  /* Ensure it's always block */
  opacity: 1;
  /* Ensure it's always visible */
}

/* Base Header Styles */
.testimonial-section .heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  padding: 0 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-section .header-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  position: relative;
}

.testimonial-section .decorative-branch {
  position: relative;
  width: 40px;
  /* Base size */
  height: 120px;
  /* Base size */
  flex-shrink: 0;
  display: block;
  /* Default to showing for desktop */
}

.testimonial-section .decorative-branch img {
  width: 100px;
  height: 100px;
  position: relative;
  left: -25px;
  top: -08px;
}

.testimonial-section .title-content {
  flex: 1;
}

.testimonial-section .heading h2 {
  font-family: 'Mea Culpa', cursive;
  font-size: 42px;
  font-style: italic;
  color: #000000;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
  line-height: 0.5;
  white-space: nowrap;
  /* Prevents wrapping on desktop by default */
}

.testimonial-section .decorative-dot {
  color: #8b0000;
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}

.testimonial-section .heading h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 30px;
  color: #8b0000;
  font-weight: 550;
  margin: 0 0 5px 0;
  letter-spacing: 0.5px;
}

.testimonial-section .golden-underline {
  width: 400px;
  height: 2px;
  background: #b3810d;
  border-radius: 1px;
}

.testimonial-section .header-right {
  flex: 1;
  max-width: 500px;
  margin-left: 60px;
}

.testimonial-section .header-right p {
  font-family: 'League Spartan', sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  font-weight: 200;
  margin: 0;
  text-align: left;
}

/* Base Carousel Slider Styles */
.testimonial-section .carousel-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section .carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-section .carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-section .carousel-slide {
  position: absolute;
  /* Default to absolute for 3-card desktop view */
  width: 900px;
  height: 380px;
  left: 50%;
  top: 50%;
  margin-left: -450px;
  margin-top: -190px;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  display: block;
  /* Ensure visibility for active/prev/next */
}

/* Testimonial Card */
.testimonial-section .testimonial-card {
  display: flex;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card States for 3-Card Structure (Desktop) */
.testimonial-section .carousel-slide.prev {
  transform: scale(0.75) translateX(-300px);
  opacity: 0.3;
  filter: blur(3px);
  z-index: 1;
}

.testimonial-section .carousel-slide.active {
  transform: scale(1) translateX(0);
  opacity: 1;
  filter: blur(0);
  z-index: 3;
}

.testimonial-section .carousel-slide.next {
  transform: scale(0.75) translateX(300px);
  opacity: 0.3;
  filter: blur(3px);
  z-index: 1;
}

.testimonial-section .carousel-slide:not(.prev):not(.active):not(.next) {
  opacity: 0;
  visibility: hidden;
  display: none;
  /* Hide non-visible slides */
}

/* Panels */
.testimonial-section .testimonial-left {
  background: linear-gradient(135deg, #780000, #780000);
  color: #fff;
  padding: 30px;
  width: 30%;
}

.testimonial-left h4 {
  font-size: 20px;
}

.testimonial-left h2 {
  font-size: 15px;
  font-weight: 500;
  padding: 0px 50px 0px 0px;
  letter-spacing: 0.05rem;
}

.author-info p {
  font-size: 25px;
  position: relative;
  margin: 40px 0px 0px 0px;
}

.testimonial-section .testimonial-center {
  width: 30%;
  background: #f8f8f8;
}

.testimonial-section .testimonial-right {
  width: 40%;
  padding: 40px;
  background: #f8f8f8;
}


/* Tablet (1024px and below, but above 991px) */
@media (max-width: 1024px) and (min-width: 992px) {
  .testimonial-section .heading {
    flex-direction: row;
    /* Keep row for larger tablets */
    align-items: flex-start;
    text-align: left;
    gap: 1px;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 40px;
    max-width: 1200px;
    margin-left: -60px;
    margin-right: 1px;
    flex-wrap: wrap;
  }

  .testimonial-section .heading h2 {
    font-size: 25px;
    font-weight: 330;
    white-space: nowrap;
    /* Prevent wrapping for this size */
  }

  .testimonial-section .heading h3 {
    font-size: 22px;
    font-weight: 600;
  }

  .testimonial-section .header-right {
    margin-right: -60px;
    max-width: 600px;
    margin-top: -25px;
  }

  .testimonial-section .decorative-branch {
    width: 50px;
    height: 50px;
    position: relative;
    left: 15px;
    top: -21px;
    display: block;
    /* Ensure visible */
  }

  .testimonial-section .decorative-branch img {
    width: 50px;
    height: 50px;
    left: 0;
    top: 0;
  }
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #8b0000;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #8b0000;
  color: #fff;
}

.prev-arrow {
  left: 10px;
}

.next-arrow {
  right: 10px;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.open {
  display: flex;
}

.video-box {
  position: relative;
  background: #000;
  width: min(900px, 90%);
  height: min(500px, 60vh);
  border-radius: 12px;
  overflow: hidden;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  cursor: pointer;
}

.video-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
}


/* =========================================================
   RESPONSIVE FIX — PERFECT ALIGNMENT VERSION
   Keeps exact desktop structure, just scales gracefully
========================================================= */

/* ---------- Large Tablet (max-width: 1200px) ---------- */
@media (max-width: 1200px) {
  .testimonial-section {
    padding: 50px 30px;
  }

  .testimonial-section .heading {
    max-width: 1000px;
    margin-bottom: 60px;
    padding: 0 20px;
  }

  .testimonial-section .heading h2 {
    font-size: 36px;
  }

  .testimonial-section .heading h3 {
    font-size: 26px;
  }

  .testimonial-section .header-right {
    max-width: 420px;
    margin-left: 40px;
  }

  .testimonial-section .carousel-container {
    max-width: 1200px;
    padding: 0 40px;
    height: 420px;
  }

  .testimonial-section .carousel-slide {
    width: 800px;
    height: 350px;
    margin-left: -400px;
    margin-top: -175px;
  }
}

/* ---------- Tablet (550px to 991px) ---------- */
@media (max-width: 991px) and (min-width: 551px) {
  .testimonial-section {
    padding: 40px 20px;
  }



  /* Header Section: 2 rows, 1 column layout */
  .testimonial-section .heading {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    gap: 20px;
  }

  /* Row 1: Heading with decorative branch */
  .testimonial-section .header-left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }

  .testimonial-section .decorative-branch {
    width: 60px;
    height: 60px;
  }

  .testimonial-section .decorative-branch img {
    width: 60px;
    height: 60px;
    top: -35px;
    left: 0;
  }

  .testimonial-section .heading h2 {
    font-size: 28px;
    white-space: normal;
  }

  .testimonial-section .heading h3 {
    font-size: 20px;
  }

  .testimonial-section .golden-underline {
    width: 200px;
  }

  /* Row 2: Heading content */
  .testimonial-section .header-right {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: justify;
  }

  .testimonial-section .header-right p {
    font-size: 15px;
    line-height: 1.7;
  }



  /* Carousel: Tablet size with 3-card animation effect */
  .testimonial-section .carousel-container {
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
    height: auto;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-section .carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-section .carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .testimonial-section .carousel-slide {
    position: absolute !important;
    width: 600px !important;
    height: auto !important;
    min-height: 400px !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    margin-top: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    display: block !important;
  }

  /* 3-card animation states for tablet */
  .testimonial-section .carousel-slide.prev {
    transform: translate(-50%, -50%) scale(0.65) translateX(-200px);
    opacity: 0.3;
    filter: blur(2px);
    z-index: 1;
  }

  .testimonial-section .carousel-slide.active {
    transform: translate(-50%, -50%) scale(1) translateX(0);
    opacity: 1;
    filter: blur(0);
    z-index: 3;
  }

  .testimonial-section .carousel-slide.next {
    transform: translate(-50%, -50%) scale(0.65) translateX(200px);
    opacity: 0.3;
    filter: blur(2px);
    z-index: 1;
  }

  .testimonial-section .carousel-slide:not(.prev):not(.active):not(.next) {
    opacity: 0;
    visibility: hidden;
    display: none !important;
  }

  .testimonial-section .testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    min-height: 400px;
  }

  /* Row 1, Column 1: Left content */
  .testimonial-section .testimonial-left {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding: 24px 20px;
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
  }

  .testimonial-section .testimonial-left h4 {
    font-size: 12px;
    margin: 5px 0;
  }

  .testimonial-section .testimonial-left h2 {
    font-size: 15px;
    margin: 8px 0;
    padding: 0;
    line-height: 1.4;
  }

  .testimonial-section .testimonial-left .author-info p {
    font-size: 16px;
    margin: 8px 0;
  }

  .testimonial-section .testimonial-left .author-info small {
    font-size: 12px;
  }

  /* Row 1, Column 2: Video/Center content */
  .testimonial-section .testimonial-center {
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 100%;
    background: #f8f8f8;
    min-height: 250px;
    position: relative;
  }

  /* Row 2: Full width content */
  .testimonial-section .testimonial-right {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding: 24px;
    background: #f8f8f8;
    text-align: justify;
    min-height: 150px;
  }

  .testimonial-section .testimonial-right p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Show navigation arrows */
  .nav-arrow {
    display: block !important;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .prev-arrow {
    left: 5px;
  }

  .next-arrow {
    right: 5px;
  }
}

/* ---------- Mobile (300px to 550px) ---------- */
@media (max-width: 550px) {
  .testimonial-section {
    padding: 30px 15px;
  }

  /* Header Section: 2 rows, 1 column layout */
  .testimonial-section .heading {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    margin: 0 auto 30px auto;
    padding: 0 10px;
    gap: 15px;
  }

  /* Row 1: Heading with decorative branch (smaller) */
  .testimonial-section .header-left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .testimonial-section .decorative-branch {
    width: 45px;
    height: 45px;
  }

  .testimonial-section .decorative-branch img {
    width: 45px;
    height: 45px;
    top: -37px;
    left: 0;
  }

  .testimonial-section .heading h2 {
    font-size: 22px;
    white-space: normal;
    line-height: 1.3;
  }

  .testimonial-section .heading h3 {
    font-size: 16px;
    margin: 5px 0;
  }

  .testimonial-section .golden-underline {
    width: 150px;
    margin-top: 8px;
  }

  /* Row 2: Heading content (smaller size) */
  .testimonial-section .header-right {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: justify;
  }

  .testimonial-section .header-right p {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Carousel: Mobile size with 3-card animation effect */
  .testimonial-section .carousel-container {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    height: auto;
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-section .carousel-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-section .carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .testimonial-section .carousel-slide {
    position: absolute !important;
    width: 280px !important;
    height: auto !important;
    min-height: 350px !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    margin-top: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    display: block !important;
  }

  /* 3-card animation states for mobile */
  .testimonial-section .carousel-slide.prev {
    transform: translate(-50%, -50%) scale(0.6) translateX(-120px);
    opacity: 0.25;
    filter: blur(2px);
    z-index: 1;
  }

  .testimonial-section .carousel-slide.active {
    transform: translate(-50%, -50%) scale(1) translateX(0);
    opacity: 1;
    filter: blur(0);
    z-index: 3;
  }

  .testimonial-section .carousel-slide.next {
    transform: translate(-50%, -50%) scale(0.6) translateX(120px);
    opacity: 0.25;
    filter: blur(2px);
    z-index: 1;
  }

  .testimonial-section .carousel-slide:not(.prev):not(.active):not(.next) {
    opacity: 0;
    visibility: hidden;
    display: none !important;
  }

  .testimonial-section .testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: auto;
    min-height: 350px;
  }

  /* Row 1, Column 1: Left content */
  .testimonial-section .testimonial-left {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding: 14px 10px;
    background: linear-gradient(135deg, #8b0000, #a52a2a);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
  }

  .testimonial-section .testimonial-left h4 {
    font-size: 9px;
    margin: 3px 0;
  }

  .testimonial-section .testimonial-left h2 {
    font-size: 11px;
    margin: 5px 0;
    padding: 0;
    line-height: 1.3;
  }

  .testimonial-section .testimonial-left .quote-mark-left {
    font-size: 24px;
  }

  .testimonial-section .testimonial-left .author-info p {
    font-size: 11px;
    margin: 3px 0;
  }

  .testimonial-section .testimonial-left .author-info small {
    font-size: 8px;
  }

  /* Row 1, Column 2: Video/Center content */
  .testimonial-section .testimonial-center {
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 100%;
    background: #f8f8f8;
    min-height: 200px;
    position: relative;
  }

  /* Row 2: Full width content */
  .testimonial-section .testimonial-right {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding: 14px;
    background: #f8f8f8;
    text-align: justify;
    min-height: 120px;
  }

  .testimonial-section .testimonial-right .quote-mark-right {
    font-size: 24px;
  }

  .testimonial-section .testimonial-right p {
    font-size: 11px;
    line-height: 1.5;
  }

  .testimonial-section .testimonial-right .stars {
    font-size: 11px;
  }

  /* Show navigation arrows */
  .nav-arrow {
    display: block !important;
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .prev-arrow {
    left: 2px;
  }

  .next-arrow {
    right: 2px;
  }
}


body {
  font-family: Arial, sans-serif;
  background: #fff8f0;
  margin: 0;
  padding: 0;
}

.faq-section {
  max-width: 1100px;
  margin: 10px auto;
  padding: 10px;
  background-color: #FFFBEF;
}

.faq-title {
  font-family: "League Spartan", sans-serif;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #861010;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  font-family: "League Spartan", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  color: #2c2c54;
  letter-spacing: 0.5px;
  word-spacing: 0.18em;
  line-height: 1.7;
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  font-weight: bold;
  min-width: 24px;
  transition: all 0.3s ease;
  color: #861010;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px 0 59px;
  background: #fafafa;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-family: "League Spartan", sans-serif;
  font-size: 16px;
  color: #333;
  margin: 15px 0;
  line-height: 1.5;
}

/* Active State */
.faq-item.active {
  box-shadow: 0 6px 25px rgba(134, 16, 16, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 15px 59px;
}

.faq-item.active .faq-icon {
  color: #861010;
}

.faq-item.active .faq-icon::before {
  content: '−';
}

.faq-icon::before {
  content: '+';
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}


.footer {
  background: #7a0a0a;
  /* Dark red background */
  color: #fff;
  padding: 50px 20px 20px;
  /* font-family: 'Poppins', sans-serif; */
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 30px;
}

.footer-logo {
  width: 80px;
  margin-bottom: 15px;
}

.tagline {
  font-family: 'Mia Kulfi', sans-serif !important;
  font-size: 18px;
  line-height: 1.4;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f1c40f;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}


.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #f1c40f;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter form {
    margin: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* --------------------------------------------------
   Responsive Overrides (non-breaking) - 2025-10-03
   Goal: Preserve desktop, enhance tablet/mobile
--------------------------------------------------- */

/* Global safety: prevent horizontal scroll and ensure predictable sizing */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* About section: Additional responsive adjustments (only for 991px+) */
@media (min-width: 992px) and (max-width: 1024px) {
  .about-section {
    padding: 40px 16px;
  }

  .images-wrapper {
    gap: 1rem;
  }

  .text-content {
    padding-right: 0;
  }
}

/* Statistics: switch to grid and control columns by breakpoint */
.statistics-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
}

@media (max-width: 991px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    width: 90% !important;
  }
}

@media (max-width: 768px) {
  .statistics-section {
    padding-top: 60px;
    padding-bottom: 180px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .statistics-grid {
    grid-template-columns: 1fr !important;
    padding: 30px 20px !important;
    gap: 16px !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .statistics-section {
    padding: 40px 10px;
  }

  .statistics-grid {
    padding: 24px 14px !important;
    gap: 14px !important;
  }
}

/* Founder: Additional desktop adjustments (only for 991px+) */
@media (min-width: 992px) and (max-width: 1024px) {
  .founder-container {
    gap: 28px;
  }

  .founder-img img {
    max-width: 400px;
    width: 100%;
    height: auto;
  }

  .founder-title {
    font-size: 38px;
  }

  .founder-content h2 {
    font-size: 28px;
  }

  .founder-section .description {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    max-width: 700px;
    text-align: justify;
  }
}

/* Testimonials: tighten paddings and ensure single-card view on small screens */
/* @media (max-width: 991px) {
  .testimonial-section { padding: 40px 16px; }
  .testimonial-section .carousel-container { padding: 0 16px; height: auto; }
}

@media (max-width: 576px) {
  .testimonial-section .heading { padding: 0 16px; }
  .testimonial-section .testimonial-right p { font-size: 14px; }
} */

/* FAQ: keep two columns on tablet, one on mobile; reduce inner padding on small */
@media (max-width: 1024px) {
  .faq-section {
    padding: 16px;
  }

  .faq-container {
    grid-template-columns: 1fr 1fr;
  }

  .fq-h {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 10px 16px;
  }

  .fq-h {
    font-size: 15px;
  }
}

/* Footer: explicit 4→2→1 grid behavior (desktop already 4) */
@media (min-width: 901px) {
  .footer-container {
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  }
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Safety: prevent any component from exceeding viewport width */
.about-section,
.statistics-section,
.founder-section,
.testimonial-section,
.faq-section,
.footer {
  overflow-x: hidden;
}