/* Our Brands Section Styles */

/* Global Reset for Overflow Issues */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  min-height: 100%;
}

/* Our Brands Page Container */
.our-brands-page {
  position: relative;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: visible;
  padding-bottom: clamp(80px, 10vw, 140px);
}

/* Responsive page height adjustments */
@media screen and (max-width: 1728px) {
  .our-brands-page {
    min-height: 660vh;
  }
}

@media screen and (max-width: 1440px) {
  .our-brands-page {
    min-height: 600vh;
  }
}

@media screen and (max-width: 1200px) {
  .our-brands-page {
    min-height: 100vh;
  }
}

@media screen and (max-width: 992px) {
  .our-brands-page {
    min-height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .our-brands-page {
    min-height: 100vh;
    padding-bottom: clamp(60px, 12vw, 120px);
  }
}

@media screen and (max-width: 480px) {
  .our-brands-page {
    min-height: 100vh;
    padding-bottom: clamp(48px, 14vw, 100px);
  }
}

@media screen and (max-width: 375px) {
  .our-brands-page {
    min-height: 100vh;
  }
}

.our-brands-section {
  position: relative;
  width: 100%;
  max-width: 1728px;
  min-height: 100%;
  margin: 0 auto;
  overflow: visible;
  display: block;
  padding-bottom: clamp(60px, 9vw, 120px);
}

/* SVG Container */
.svg-container {
  position: absolute;
  top: 297px;
  left: 0;
  width: 100%;
  max-width: 1728px;
  height: 720px;
  opacity: 1;
  transform: rotate(0deg);
  gap: 4px;
  z-index: 1;
}

.footer-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(0deg);
}

/* Main Image Container */
.main-image-container {
  position: absolute;
  top: 207px;
  left: 532px;
  width: 1200px;
  height: 675px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 2;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(0deg);
}

/* Text Container */
.text-container {
  position: absolute;
  top: 339px;
  left: 137px;
  width: 616px;
  height: 354px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 3;
  display: block;
  background: var(--text-container-bg, #ffffff);
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.text-label {
  position: absolute;
  top: 69px;
  left: 30px;
  width: 150px;
  height: 30px;
  opacity: 1;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: 0%;
  text-align: center;
  color: #BA9C44;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-heading {
  position: absolute;
  top: 115px;
  left: 30px;
  width: 564px;
  height: 158px;
  opacity: 1;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--text-container-heading, #000000);
  transition: color 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

/* BTC Brand Section */
.btc-brand-section {
  position: absolute;
  width: 1304px;
  height: 528px;
  top: 1080px;
  left: 230px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 4;
}

.btc-brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(0deg);
}

.btc-brand-content-div {
  position: absolute;
  width: 600px;
  height: 528px;
  top: 0px;
  left: 0px;
  opacity: 1;
  transform: rotate(0deg);
  background: var(--btc-brand-bg, #202020);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

/* BTC Logo SVG */
.btc-logo-svg {
  width: 344px;
  height: 100.86280059814453px;
  opacity: 1;
  transform: rotate(0deg);
  object-fit: contain;
  margin-left: 82px;
}

/* BTC Description Text */
.btc-description-text {
  width: 356px;
  height: 64px;
  opacity: 1;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-text-color, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 82px;
  transition: color 0.3s ease;
}

/* BTC Learn More Button */
.btc-learn-more-button {
  width: 157px;
  height: 44px;
  opacity: 1;
  gap: 10px;
  padding: 2px 20px;
  border-radius: 5px;
  background: #B1974D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: background-color 0.3s ease;
  margin-left: 82px;
}

.btc-learn-more-button:hover {
  background: #9a7f3f;
}

.btc-button-text {
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--btc-button-text-color, #000000);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  /* mx-3 equivalent (12px) */
  transition: color 0.3s ease;
}

.btc-brand-content-image {
  position: absolute;
  width: 704px;
  height: 528px;
  top: 0px;
  left: 600px;
  opacity: 1;
  transform: rotate(0deg);
  object-fit: cover;
  z-index: 5;
}

/* GDM Brand Section */
.gdm-brand-section {
  position: absolute;
  width: 1304px;
  height: 528px;
  top: 1704px;
  left: 230px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 4;
}

.gdm-brand-content-div {
  position: absolute;
  width: 600px;
  height: 528px;
  top: 0px;
  left: 704px;
  opacity: 1;
  transform: rotate(0deg);
  background: var(--btc-brand-bg, #202020);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

/* GDM Logo SVG */
.gdm-logo-svg {
  width: 344px;
  height: 100.86280059814453px;
  opacity: 1;
  transform: rotate(0deg);
  object-fit: contain;
  margin-left: 82px;
}

/* GDM Description Text */
.gdm-description-text {
  width: 356px;
  height: 64px;
  opacity: 1;
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-text-color, #FFFFFF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 82px;
  transition: color 0.3s ease;
}

/* GDM Learn More Button */
.gdm-learn-more-button {
  width: 157px;
  height: 44px;
  opacity: 1;
  gap: 10px;
  padding: 2px 20px;
  border-radius: 5px;
  background: #B1974D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: background-color 0.3s ease;
  margin-left: 82px;
}

.gdm-learn-more-button:hover {
  background: #9a7f3f;
}

.gdm-button-text {
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--btc-button-text-color, #000000);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  /* mx-3 equivalent (12px) */
  transition: color 0.3s ease;
}

.gdm-brand-content-image {
  position: absolute;
  width: 704px;
  height: 528px;
  top: 0px;
  left: 0px;
  opacity: 1;
  transform: rotate(0deg);
  object-fit: cover;
  z-index: 5;
}

/* Responsive Design - Following About-Us Pattern */
@media screen and (max-width: 1728px) {
  .our-brands-section {
    width: 100% !important;
    max-width: 1728px !important;
    margin: 0 auto !important;
  }

  .svg-container {
    width: 100% !important;
    height: calc(100vw * 0.3744) !important;
    max-height: 647px !important;
    top: min(calc(100vw * 0.1719), 297px) !important;
    left: 0 !important;
  }

  .main-image-container {
    width: calc(100vw * 0.6944) !important;
    max-width: 1200px !important;
    height: calc(100vw * 0.3906) !important;
    max-height: 675px !important;
    top: min(calc(100vw * 0.1198), 207px) !important;
    left: min(calc(100vw * 0.3079), 532px) !important;
  }

  .text-container {
    width: calc(100vw * 0.3565) !important;
    max-width: 616px !important;
    height: calc(100vw * 0.2049) !important;
    max-height: 354px !important;
    top: min(calc(100vw * 0.1962), 339px) !important;
    left: min(calc(100vw * 0.0793), 137px) !important;
  }

  .text-label {
    font-size: clamp(18px, calc(100vw * 0.0139), 24px) !important;
  }

  .text-heading {
    font-size: clamp(32px, calc(100vw * 0.0370), 64px) !important;
  }

  .btc-brand-section {
    width: min(calc(100vw * 0.7546), 1304px) !important;
    height: min(calc(100vw * 0.3056), 528px) !important;
    top: min(calc(100vw * 0.6250), 1080px) !important;
    left: min(calc(100vw * 0.1331), 230px) !important;
  }

  .btc-brand-content-div {
    width: min(calc(100vw * 0.3472), 600px) !important;
    height: min(calc(100vw * 0.3056), 528px) !important;
    padding: min(calc(100vw * 0.0231), 40px) !important;
    gap: min(calc(100vw * 0.0116), 20px) !important;
    align-items: flex-start !important;
  }

  .btc-logo-svg {
    width: min(calc(100vw * 0.1991), 344px) !important;
    height: min(calc(100vw * 0.0584), 100.86280059814453px) !important;
    margin-left: min(calc(100vw * 0.0475), 82px) !important;
  }

  .btc-description-text {
    width: min(calc(100vw * 0.2060), 356px) !important;
    height: min(calc(100vw * 0.0370), 64px) !important;
    font-size: clamp(14px, calc(100vw * 0.0093), 16px) !important;
    margin-left: min(calc(100vw * 0.0475), 82px) !important;
  }

  .btc-learn-more-button {
    width: min(calc(100vw * 0.0909), 157px) !important;
    height: min(calc(100vw * 0.0255), 44px) !important;
    padding: min(calc(100vw * 0.0012), 2px) min(calc(100vw * 0.0116), 20px) !important;
    justify-content: flex-start !important;
    margin-left: min(calc(100vw * 0.0475), 82px) !important;
  }

  .btc-button-text {
    gap: min(calc(100vw * 0.0069), 12px) !important;
  }

  .btc-brand-content-image {
    width: min(calc(100vw * 0.4074), 704px) !important;
    height: min(calc(100vw * 0.3056), 528px) !important;
    left: min(calc(100vw * 0.3472), 600px) !important;
  }

  .gdm-brand-section {
    width: min(calc(100vw * 0.7546), 1304px) !important;
    height: min(calc(100vw * 0.3056), 528px) !important;
    top: min(calc(100vw * 0.9861), 1704px) !important;
    left: min(calc(100vw * 0.1331), 230px) !important;
  }

  .gdm-brand-content-div {
    width: min(calc(100vw * 0.3472), 600px) !important;
    height: min(calc(100vw * 0.3056), 528px) !important;
    padding: min(calc(100vw * 0.0231), 40px) !important;
    gap: min(calc(100vw * 0.0116), 20px) !important;
    align-items: flex-start !important;
    left: min(calc(100vw * 0.4074), 704px) !important;
  }

  .gdm-logo-svg {
    width: min(calc(100vw * 0.1991), 344px) !important;
    height: min(calc(100vw * 0.0584), 100.86280059814453px) !important;
    margin-left: min(calc(100vw * 0.0475), 82px) !important;
  }

  .gdm-description-text {
    width: min(calc(100vw * 0.2060), 356px) !important;
    height: min(calc(100vw * 0.0370), 64px) !important;
    font-size: clamp(14px, calc(100vw * 0.0093), 16px) !important;
    margin-left: min(calc(100vw * 0.0475), 82px) !important;
  }

  .gdm-learn-more-button {
    width: min(calc(100vw * 0.0909), 157px) !important;
    height: min(calc(100vw * 0.0255), 44px) !important;
    padding: min(calc(100vw * 0.0012), 2px) min(calc(100vw * 0.0116), 20px) !important;
    justify-content: flex-start !important;
    margin-left: min(calc(100vw * 0.0475), 82px) !important;
  }

  .gdm-button-text {
    gap: min(calc(100vw * 0.0069), 12px) !important;
  }

  .gdm-brand-content-image {
    width: min(calc(100vw * 0.4074), 704px) !important;
    height: min(calc(100vw * 0.3056), 528px) !important;
    left: 0px !important;
  }
}

@media screen and (max-width: 1200px) {
  .our-brands-section {
    height: 600px;
  }

  .svg-container {
    height: 500px;
    top: 200px;
  }

  .main-image-container {
    width: 80%;
    max-width: 1000px;
    height: 500px;
    top: 150px;
    left: 10%;
  }

  .text-container {
    width: 70%;
    max-width: 500px;
    height: 300px;
    top: 250px;
    left: 15%;
  }

  .text-label {
    font-size: 20px;
  }

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

  .btc-brand-section {
    width: 1000px;
    height: 400px;
    top: 900px;
    left: 100px;
  }

  .btc-brand-content-div {
    width: 400px;
    height: 400px;
    padding: 30px;
    gap: 15px;
    align-items: flex-start;
  }

  .btc-logo-svg {
    width: 280px;
    height: 82px;
    margin-left: 60px;
  }

  .btc-description-text {
    width: 300px;
    height: 50px;
    font-size: 14px;
    margin-left: 60px;
  }

  .btc-learn-more-button {
    width: 130px;
    height: 38px;
    padding: 2px 16px;
    justify-content: flex-start;
    margin-left: 60px;
  }

  .btc-button-text {
    gap: 10px;
  }

  .btc-brand-content-image {
    width: 500px;
    height: 400px;
    left: 450px;
  }

  .gdm-brand-section {
    width: 1000px;
    height: 400px;
    top: 1500px;
    left: 100px;
  }

  .gdm-brand-content-div {
    width: 400px;
    height: 400px;
    padding: 30px;
    gap: 15px;
    align-items: flex-start;
    left: 500px;
  }

  .gdm-logo-svg {
    width: 280px;
    height: 82px;
    margin-left: 60px;
  }

  .gdm-description-text {
    width: 300px;
    height: 50px;
    font-size: 14px;
    margin-left: 60px;
  }

  .gdm-learn-more-button {
    width: 130px;
    height: 38px;
    padding: 2px 16px;
    justify-content: flex-start;
    margin-left: 60px;
  }

  .gdm-button-text {
    gap: 10px;
  }

  .gdm-brand-content-image {
    width: 500px;
    height: 400px;
    left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .our-brands-section {
    height: 500px;
  }

  .svg-container {
    height: 400px;
    top: 150px;
  }

  .main-image-container {
    width: 90%;
    height: 400px;
    top: 100px;
    left: 5%;
  }

  .text-container {
    width: 80%;
    height: 250px;
    top: 200px;
    left: 10%;
  }

  .text-label {
    font-size: 18px;
  }

  .text-heading {
    font-size: 36px;
  }

  .btc-brand-section {
    width: 90%;
    height: 300px;
    top: 800px;
    left: 5%;
  }

  .btc-brand-content-div {
    width: 40%;
    height: 300px;
    padding: 20px;
    gap: 12px;
    align-items: flex-start;
  }

  .btc-logo-svg {
    width: 200px;
    height: 58px;
    margin-left: 40px;
  }

  .btc-description-text {
    width: 250px;
    height: 40px;
    font-size: 12px;
    margin-left: 40px;
  }

  .btc-learn-more-button {
    width: 110px;
    height: 32px;
    padding: 2px 12px;
    justify-content: flex-start;
    margin-left: 40px;
  }

  .btc-button-text {
    gap: 8px;
  }

  .btc-brand-content-image {
    width: 50%;
    height: 300px;
    left: 45%;
  }

  .gdm-brand-section {
    width: 90%;
    height: 300px;
    top: 1300px;
    left: 5%;
  }

  .gdm-brand-content-div {
    width: 40%;
    height: 300px;
    padding: 20px;
    gap: 12px;
    align-items: flex-start;
    left: 50%;
  }

  .gdm-logo-svg {
    width: 200px;
    height: 58px;
    margin-left: 40px;
  }

  .gdm-description-text {
    width: 250px;
    height: 40px;
    font-size: 12px;
    margin-left: 40px;
  }

  .gdm-learn-more-button {
    width: 110px;
    height: 32px;
    padding: 2px 12px;
    justify-content: flex-start;
    margin-left: 40px;
  }

  .gdm-button-text {
    gap: 8px;
  }

  .gdm-brand-content-image {
    width: 50%;
    height: 300px;
    left: 0%;
  }
}

@media screen and (max-width: 480px) {
  .our-brands-section {
    height: 400px;
  }

  .svg-container {
    height: 300px;
    top: 100px;
  }

  .main-image-container {
    width: 95%;
    height: 300px;
    top: 80px;
    left: 2.5%;
  }

  .text-container {
    width: 90%;
    height: 200px;
    top: 150px;
    left: 5%;
  }

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

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

  .btc-brand-section {
    width: 95%;
    height: 250px;
    top: 700px;
    left: 2.5%;
  }

  .btc-brand-content-div {
    width: 40%;
    height: 250px;
    padding: 15px;
    gap: 10px;
    align-items: flex-start;
  }

  .btc-logo-svg {
    width: 150px;
    height: 44px;
    margin-left: 30px;
  }

  .btc-description-text {
    width: 200px;
    height: 35px;
    font-size: 11px;
    margin-left: 30px;
  }

  .btc-learn-more-button {
    width: 100px;
    height: 28px;
    padding: 2px 10px;
    justify-content: flex-start;
    margin-left: 30px;
  }

  .btc-button-text {
    gap: 6px;
  }

  .btc-brand-content-image {
    width: 50%;
    height: 250px;
    left: 45%;
  }

  .gdm-brand-section {
    width: 95%;
    height: 250px;
    top: 1100px;
    left: 2.5%;
  }

  .gdm-brand-content-div {
    width: 40%;
    height: 250px;
    padding: 15px;
    gap: 10px;
    align-items: flex-start;
    left: 50%;
  }

  .gdm-logo-svg {
    width: 150px;
    height: 44px;
    margin-left: 30px;
  }

  .gdm-description-text {
    width: 200px;
    height: 35px;
    font-size: 11px;
    margin-left: 30px;
  }

  .gdm-learn-more-button {
    width: 100px;
    height: 28px;
    padding: 2px 10px;
    justify-content: flex-start;
    margin-left: 30px;
  }

  .gdm-button-text {
    gap: 6px;
  }

  .gdm-brand-content-image {
    width: 50%;
    height: 250px;
    left: 0%;
  }
}

/* Gemeva Brand Section */
.gemeva-brand-section {
  position: absolute;
  width: 1304px;
  height: 528px;
  top: 2328px;
  left: 230px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 4;
}

.gemeva-brand-content-div {
  position: absolute;
  width: 600px;
  height: 528px;
  top: 0px;
  left: 0px;
  opacity: 1;
  transform: rotate(0deg);
  background: var(--btc-brand-bg, #202020);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

/* Gemeva Logo SVG */
.gemeva-logo-svg {
  width: 344px;
  height: 100.86280059814453px;
  opacity: 1;
  transform: rotate(0deg);
  margin-left: 82px;
  transition: filter 0.3s ease;
}

/* Gemeva Description Text */
.gemeva-description-text {
  width: 356px;
  height: 64px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-text-color, #FFFFFF);
  margin-left: 82px;
  transition: color 0.3s ease;
}

/* Gemeva Learn More Button */
.gemeva-learn-more-button {
  position: relative;
  width: 157px;
  height: 44px;
  opacity: 1;
  transform: rotate(0deg);
  gap: 10px;
  padding: 2px 20px;
  border-radius: 5px;
  background: #B1974D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 82px;
  transition: background-color 0.3s ease;
}

.gemeva-learn-more-button:hover {
  background: #9a8240;
}

.gemeva-button-text {
  font-family: 'NexaRegular', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-button-text-color, #000000);
  display: flex;
  align-items: center;
  gap: 12px;
  /* mx-3 equivalent (12px) */
  transition: color 0.3s ease;
}

.gemeva-brand-content-image {
  position: absolute;
  width: 704px;
  height: 528px;
  top: 0px;
  left: 600px;
  opacity: 1;
  transform: rotate(0deg);
  object-fit: cover;
  z-index: 5;
}

/* Responsive Design - Following About-Us Pattern */
@media screen and (max-width: 1728px) {
  .gemeva-brand-section {
    width: min(calc(100vw * 0.7546), 1304px);
    height: min(calc(100vw * 0.3056), 528px);
    top: min(calc(100vw * 1.3472), 2328px);
    left: min(calc(100vw * 0.1331), 230px);
  }

  .gemeva-brand-content-div {
    width: min(calc(100vw * 0.3472), 600px);
    height: min(calc(100vw * 0.3056), 528px);
    padding: min(calc(100vw * 0.0231), 40px);
    gap: min(calc(100vw * 0.0116), 20px);
    align-items: flex-start;
  }

  .gemeva-logo-svg {
    width: min(calc(100vw * 0.1991), 344px);
    height: min(calc(100vw * 0.0584), 100.86280059814453px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .gemeva-description-text {
    width: min(calc(100vw * 0.2060), 356px);
    height: min(calc(100vw * 0.0370), 64px);
    font-size: min(calc(100vw * 0.0093), 16px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .gemeva-learn-more-button {
    width: min(calc(100vw * 0.0909), 157px);
    height: min(calc(100vw * 0.0255), 44px);
    padding: min(calc(100vw * 0.0012), 2px) min(calc(100vw * 0.0116), 20px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .gemeva-button-text {
    font-size: min(calc(100vw * 0.0093), 16px);
    gap: min(calc(100vw * 0.0069), 12px);
  }

  .gemeva-brand-content-image {
    width: min(calc(100vw * 0.4074), 704px);
    height: min(calc(100vw * 0.3056), 528px);
    left: min(calc(100vw * 0.3472), 600px);
  }
}

@media screen and (max-width: 1200px) {
  .gemeva-brand-section {
    width: 900px;
    height: 400px;
    top: 2000px;
    left: 100px;
  }

  .gemeva-brand-content-div {
    width: 400px;
    height: 400px;
    padding: 30px;
    gap: 15px;
    align-items: flex-start;
  }

  .gemeva-logo-svg {
    width: 280px;
    height: 82px;
    margin-left: 60px;
  }

  .gemeva-description-text {
    width: 300px;
    height: 50px;
    font-size: 14px;
    margin-left: 60px;
  }

  .gemeva-learn-more-button {
    width: 120px;
    height: 36px;
    padding: 2px 15px;
    margin-left: 60px;
  }

  .gemeva-button-text {
    font-size: 14px;
    gap: 10px;
  }

  .gemeva-brand-content-image {
    width: 500px;
    height: 400px;
    left: 450px;
  }
}

@media screen and (max-width: 768px) {
  .gemeva-brand-section {
    width: 90%;
    height: 300px;
    top: 1700px;
    left: 5%;
  }

  .gemeva-brand-content-div {
    width: 40%;
    height: 300px;
    padding: 20px;
    gap: 12px;
    align-items: flex-start;
  }

  .gemeva-logo-svg {
    width: 200px;
    height: 58px;
    margin-left: 40px;
  }

  .gemeva-description-text {
    width: 250px;
    height: 40px;
    font-size: 12px;
    margin-left: 40px;
  }

  .gemeva-learn-more-button {
    width: 100px;
    height: 32px;
    padding: 2px 12px;
    margin-left: 40px;
  }

  .gemeva-button-text {
    font-size: 12px;
    gap: 8px;
  }

  .gemeva-brand-content-image {
    width: 50%;
    height: 300px;
    left: 45%;
  }
}

@media screen and (max-width: 480px) {
  .gemeva-brand-section {
    width: 95%;
    height: 250px;
    top: 1500px;
    left: 2.5%;
  }

  .gemeva-brand-content-div {
    width: 40%;
    height: 250px;
    padding: 15px;
    gap: 10px;
    align-items: flex-start;
  }

  .gemeva-logo-svg {
    width: 150px;
    height: 44px;
    margin-left: 30px;
  }

  .gemeva-description-text {
    width: 200px;
    height: 35px;
    font-size: 10px;
    margin-left: 30px;
  }

  .gemeva-learn-more-button {
    width: 80px;
    height: 28px;
    padding: 2px 10px;
    margin-left: 30px;
  }

  .gemeva-button-text {
    font-size: 10px;
    gap: 6px;
  }

  .gemeva-brand-content-image {
    width: 50%;
    height: 250px;
    left: 45%;
  }
}

/* Odyssey Brand Section */
.odyssey-brand-section {
  position: absolute;
  width: 1304px;
  height: 528px;
  top: 2952px;
  left: 230px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 4;
}

.odyssey-brand-content-div {
  position: absolute;
  width: 600px;
  height: 528px;
  top: 0px;
  left: 704px;
  opacity: 1;
  transform: rotate(0deg);
  background: var(--btc-brand-bg, #202020);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

/* Odyssey Logo SVG */
.odyssey-logo-svg {
  width: 344px;
  height: 100.86280059814453px;
  opacity: 1;
  transform: rotate(0deg);
  margin-left: 82px;
  transition: filter 0.3s ease;
}

/* Odyssey Description Text */
.odyssey-description-text {
  width: 356px;
  height: 64px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-text-color, #FFFFFF);
  margin-left: 82px;
  transition: color 0.3s ease;
}

/* Odyssey Learn More Button */
.odyssey-learn-more-button {
  position: relative;
  width: 157px;
  height: 44px;
  opacity: 1;
  transform: rotate(0deg);
  gap: 10px;
  padding: 2px 20px;
  border-radius: 5px;
  background: #B1974D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 82px;
  transition: background-color 0.3s ease;
}

.odyssey-learn-more-button:hover {
  background: #9a8240;
}

.odyssey-button-text {
  font-family: 'NexaRegular', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-button-text-color, #000000);
  display: flex;
  align-items: center;
  gap: 12px;
  /* mx-3 equivalent (12px) */
  transition: color 0.3s ease;
}

.odyssey-brand-content-image {
  position: absolute;
  width: 704px;
  height: 528px;
  top: 0px;
  left: 0px;
  opacity: 1;
  transform: rotate(0deg);
  object-fit: cover;
  z-index: 5;
}

/* Responsive Design - Following About-Us Pattern */
@media screen and (max-width: 1728px) {
  .odyssey-brand-section {
    width: min(calc(100vw * 0.7546), 1304px);
    height: min(calc(100vw * 0.3056), 528px);
    top: min(calc(100vw * 1.7083), 2952px);
    left: min(calc(100vw * 0.1331), 230px);
  }

  .odyssey-brand-content-div {
    width: min(calc(100vw * 0.3472), 600px);
    height: min(calc(100vw * 0.3056), 528px);
    padding: min(calc(100vw * 0.0231), 40px);
    gap: min(calc(100vw * 0.0116), 20px);
    align-items: flex-start;
    left: min(calc(100vw * 0.4074), 704px);
  }

  .odyssey-logo-svg {
    width: min(calc(100vw * 0.1991), 344px);
    height: min(calc(100vw * 0.0584), 100.86280059814453px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .odyssey-description-text {
    width: min(calc(100vw * 0.2060), 356px);
    height: min(calc(100vw * 0.0370), 64px);
    font-size: min(calc(100vw * 0.0093), 16px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .odyssey-learn-more-button {
    width: min(calc(100vw * 0.0909), 157px);
    height: min(calc(100vw * 0.0255), 44px);
    padding: min(calc(100vw * 0.0012), 2px) min(calc(100vw * 0.0116), 20px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .odyssey-button-text {
    font-size: min(calc(100vw * 0.0093), 16px);
    gap: min(calc(100vw * 0.0069), 12px);
  }

  .odyssey-brand-content-image {
    width: min(calc(100vw * 0.4074), 704px);
    height: min(calc(100vw * 0.3056), 528px);
    left: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .odyssey-brand-section {
    width: 900px;
    height: 400px;
    top: 2600px;
    left: 100px;
  }

  .odyssey-brand-content-div {
    width: 400px;
    height: 400px;
    padding: 30px;
    gap: 15px;
    align-items: flex-start;
    left: 500px;
  }

  .odyssey-logo-svg {
    width: 280px;
    height: 82px;
    margin-left: 60px;
  }

  .odyssey-description-text {
    width: 300px;
    height: 50px;
    font-size: 14px;
    margin-left: 60px;
  }

  .odyssey-learn-more-button {
    width: 120px;
    height: 36px;
    padding: 2px 15px;
    margin-left: 60px;
  }

  .odyssey-button-text {
    font-size: 14px;
    gap: 10px;
  }

  .odyssey-brand-content-image {
    width: 500px;
    height: 400px;
    left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .odyssey-brand-section {
    width: 90%;
    height: 300px;
    top: 2300px;
    left: 5%;
  }

  .odyssey-brand-content-div {
    width: 40%;
    height: 300px;
    padding: 20px;
    gap: 12px;
    align-items: flex-start;
    left: 50%;
  }

  .odyssey-logo-svg {
    width: 200px;
    height: 58px;
    margin-left: 40px;
  }

  .odyssey-description-text {
    width: 250px;
    height: 40px;
    font-size: 12px;
    margin-left: 40px;
  }

  .odyssey-learn-more-button {
    width: 100px;
    height: 32px;
    padding: 2px 12px;
    margin-left: 40px;
  }

  .odyssey-button-text {
    font-size: 12px;
    gap: 8px;
  }

  .odyssey-brand-content-image {
    width: 50%;
    height: 300px;
    left: 0%;
  }
}

@media screen and (max-width: 480px) {
  .odyssey-brand-section {
    width: 95%;
    height: 250px;
    top: 2100px;
    left: 2.5%;
  }

  .odyssey-brand-content-div {
    width: 40%;
    height: 250px;
    padding: 15px;
    gap: 10px;
    align-items: flex-start;
    left: 50%;
  }

  .odyssey-logo-svg {
    width: 150px;
    height: 44px;
    margin-left: 30px;
  }

  .odyssey-description-text {
    width: 200px;
    height: 35px;
    font-size: 10px;
    margin-left: 30px;
  }

  .odyssey-learn-more-button {
    width: 80px;
    height: 28px;
    padding: 2px 10px;
    margin-left: 30px;
  }

  .odyssey-button-text {
    font-size: 10px;
    gap: 6px;
  }

  .odyssey-brand-content-image {
    width: 50%;
    height: 250px;
    left: 0%;
  }
}

/* Travel Boutique Brand Section */
.travel-boutique-brand-section {
  position: absolute;
  width: 1304px;
  height: 528px;
  top: 3576px;
  left: 230px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 4;
}

.travel-boutique-brand-content-div {
  position: absolute;
  width: 600px;
  height: 528px;
  top: 0px;
  left: 0px;
  opacity: 1;
  transform: rotate(0deg);
  background: var(--btc-brand-bg, #202020);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

/* Travel Boutique Logo SVG */
.travel-boutique-logo-svg {
  width: 344px;
  height: 100.86280059814453px;
  opacity: 1;
  transform: rotate(0deg);
  margin-left: 82px;
  transition: filter 0.3s ease;
}

/* Travel Boutique Description Text */
.travel-boutique-description-text {
  width: 356px;
  height: 64px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-text-color, #FFFFFF);
  margin-left: 82px;
  transition: color 0.3s ease;
}

/* Travel Boutique Learn More Button */
.travel-boutique-learn-more-button {
  position: relative;
  width: 157px;
  height: 44px;
  opacity: 1;
  transform: rotate(0deg);
  gap: 10px;
  padding: 2px 20px;
  border-radius: 5px;
  background: #B1974D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 82px;
  transition: background-color 0.3s ease;
}

.travel-boutique-learn-more-button:hover {
  background: #9a8240;
}

.travel-boutique-button-text {
  font-family: 'NexaRegular', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-button-text-color, #000000);
  display: flex;
  align-items: center;
  gap: 12px;
  /* mx-3 equivalent (12px) */
  transition: color 0.3s ease;
}

.travel-boutique-brand-content-image {
  position: absolute;
  width: 704px;
  height: 528px;
  top: 0px;
  left: 600px;
  opacity: 1;
  transform: rotate(0deg);
  object-fit: cover;
  z-index: 5;
}

/* Responsive Design - Following About-Us Pattern */
@media screen and (max-width: 1728px) {
  .travel-boutique-brand-section {
    width: min(calc(100vw * 0.7546), 1304px);
    height: min(calc(100vw * 0.3056), 528px);
    top: min(calc(100vw * 2.0694), 3576px);
    left: min(calc(100vw * 0.1331), 230px);
  }

  .travel-boutique-brand-content-div {
    width: min(calc(100vw * 0.3472), 600px);
    height: min(calc(100vw * 0.3056), 528px);
    padding: min(calc(100vw * 0.0231), 40px);
    gap: min(calc(100vw * 0.0116), 20px);
    align-items: flex-start;
  }

  .travel-boutique-logo-svg {
    width: min(calc(100vw * 0.1991), 344px);
    height: min(calc(100vw * 0.0584), 100.86280059814453px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .travel-boutique-description-text {
    width: min(calc(100vw * 0.2060), 356px);
    height: min(calc(100vw * 0.0370), 64px);
    font-size: min(calc(100vw * 0.0093), 16px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .travel-boutique-learn-more-button {
    width: min(calc(100vw * 0.0909), 157px);
    height: min(calc(100vw * 0.0255), 44px);
    padding: min(calc(100vw * 0.0012), 2px) min(calc(100vw * 0.0116), 20px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .travel-boutique-button-text {
    font-size: min(calc(100vw * 0.0093), 16px);
    gap: min(calc(100vw * 0.0069), 12px);
  }

  .travel-boutique-brand-content-image {
    width: min(calc(100vw * 0.4074), 704px);
    height: min(calc(100vw * 0.3056), 528px);
    left: min(calc(100vw * 0.3472), 600px);
  }
}

@media screen and (max-width: 1200px) {
  .travel-boutique-brand-section {
    width: 900px;
    height: 400px;
    top: 3200px;
    left: 100px;
  }

  .travel-boutique-brand-content-div {
    width: 400px;
    height: 400px;
    padding: 30px;
    gap: 15px;
    align-items: flex-start;
  }

  .travel-boutique-logo-svg {
    width: 280px;
    height: 82px;
    margin-left: 60px;
  }

  .travel-boutique-description-text {
    width: 300px;
    height: 50px;
    font-size: 14px;
    margin-left: 60px;
  }

  .travel-boutique-learn-more-button {
    width: 120px;
    height: 36px;
    padding: 2px 15px;
    margin-left: 60px;
  }

  .travel-boutique-button-text {
    font-size: 14px;
    gap: 10px;
  }

  .travel-boutique-brand-content-image {
    width: 500px;
    height: 400px;
    left: 450px;
  }
}

@media screen and (max-width: 768px) {
  .travel-boutique-brand-section {
    width: 90%;
    height: 300px;
    top: 2900px;
    left: 5%;
  }

  .travel-boutique-brand-content-div {
    width: 40%;
    height: 300px;
    padding: 20px;
    gap: 12px;
    align-items: flex-start;
  }

  .travel-boutique-logo-svg {
    width: 200px;
    height: 58px;
    margin-left: 40px;
  }

  .travel-boutique-description-text {
    width: 250px;
    height: 40px;
    font-size: 12px;
    margin-left: 40px;
  }

  .travel-boutique-learn-more-button {
    width: 100px;
    height: 32px;
    padding: 2px 12px;
    margin-left: 40px;
  }

  .travel-boutique-button-text {
    font-size: 12px;
    gap: 8px;
  }

  .travel-boutique-brand-content-image {
    width: 50%;
    height: 300px;
    left: 45%;
  }
}

@media screen and (max-width: 480px) {
  .travel-boutique-brand-section {
    width: 95%;
    height: 250px;
    top: 2700px;
    left: 2.5%;
  }

  .travel-boutique-brand-content-div {
    width: 40%;
    height: 250px;
    padding: 15px;
    gap: 10px;
    align-items: flex-start;
  }

  .travel-boutique-logo-svg {
    width: 150px;
    height: 44px;
    margin-left: 30px;
  }

  .travel-boutique-description-text {
    width: 200px;
    height: 35px;
    font-size: 10px;
    margin-left: 30px;
  }

  .travel-boutique-learn-more-button {
    width: 80px;
    height: 28px;
    padding: 2px 10px;
    margin-left: 30px;
  }

  .travel-boutique-button-text {
    font-size: 10px;
    gap: 6px;
  }

  .travel-boutique-brand-content-image {
    width: 50%;
    height: 250px;
    left: 45%;
  }
}

/* Egypt Gold School Brand Section */
.egypt-gold-school-brand-section {
  position: absolute;
  width: 1304px;
  height: 528px;
  top: 4200px;
  left: 230px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 4;
}

.egypt-gold-school-brand-content-div {
  position: absolute;
  width: 600px;
  height: 528px;
  top: 0px;
  left: 704px;
  opacity: 1;
  transform: rotate(0deg);
  background: var(--btc-brand-bg, #202020);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

/* Egypt Gold School Logo SVG */
.egypt-gold-school-logo-svg {
  width: 344px;
  height: 100.86280059814453px;
  opacity: 1;
  transform: rotate(0deg);
  margin-left: 82px;
  transition: filter 0.3s ease;
}

/* Egypt Gold School Description Text */
.egypt-gold-school-description-text {
  width: 356px;
  height: 64px;
  opacity: 1;
  transform: rotate(0deg);
  font-family: 'NexaRegular', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-text-color, #FFFFFF);
  margin-left: 82px;
  transition: color 0.3s ease;
}

/* Egypt Gold School Learn More Button */
.egypt-gold-school-learn-more-button {
  position: relative;
  width: 157px;
  height: 44px;
  opacity: 1;
  transform: rotate(0deg);
  gap: 10px;
  padding: 2px 20px;
  border-radius: 5px;
  background: #B1974D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 82px;
  transition: background-color 0.3s ease;
}

.egypt-gold-school-learn-more-button:hover {
  background: #9a8240;
}

.egypt-gold-school-button-text {
  font-family: 'NexaRegular', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  color: var(--btc-button-text-color, #000000);
  display: flex;
  align-items: center;
  gap: 12px;
  /* mx-3 equivalent (12px) */
  transition: color 0.3s ease;
}

.egypt-gold-school-brand-content-image {
  position: absolute;
  width: 704px;
  height: 528px;
  top: 0px;
  left: 0px;
  opacity: 1;
  transform: rotate(0deg);
  object-fit: cover;
  z-index: 5;
}

/* Responsive Design - Following About-Us Pattern */
@media screen and (max-width: 1728px) {
  .egypt-gold-school-brand-section {
    width: min(calc(100vw * 0.7546), 1304px);
    height: min(calc(100vw * 0.3056), 528px);
    top: min(calc(100vw * 2.4306), 4200px);
    left: min(calc(100vw * 0.1331), 230px);
  }

  .egypt-gold-school-brand-content-div {
    width: min(calc(100vw * 0.3472), 600px);
    height: min(calc(100vw * 0.3056), 528px);
    padding: min(calc(100vw * 0.0231), 40px);
    gap: min(calc(100vw * 0.0116), 20px);
    align-items: flex-start;
    left: min(calc(100vw * 0.4074), 704px);
  }

  .egypt-gold-school-logo-svg {
    width: min(calc(100vw * 0.1991), 344px);
    height: min(calc(100vw * 0.0584), 100.86280059814453px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .egypt-gold-school-description-text {
    width: min(calc(100vw * 0.2060), 356px);
    height: min(calc(100vw * 0.0370), 64px);
    font-size: min(calc(100vw * 0.0093), 16px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .egypt-gold-school-learn-more-button {
    width: min(calc(100vw * 0.0909), 157px);
    height: min(calc(100vw * 0.0255), 44px);
    padding: min(calc(100vw * 0.0012), 2px) min(calc(100vw * 0.0116), 20px);
    margin-left: min(calc(100vw * 0.0475), 82px);
  }

  .egypt-gold-school-button-text {
    font-size: min(calc(100vw * 0.0093), 16px);
    gap: min(calc(100vw * 0.0069), 12px);
  }

  .egypt-gold-school-brand-content-image {
    width: min(calc(100vw * 0.4074), 704px);
    height: min(calc(100vw * 0.3056), 528px);
    left: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .egypt-gold-school-brand-section {
    width: 900px;
    height: 400px;
    top: 3800px;
    left: 100px;
  }

  .egypt-gold-school-brand-content-div {
    width: 400px;
    height: 400px;
    padding: 30px;
    gap: 15px;
    align-items: flex-start;
    left: 500px;
  }

  .egypt-gold-school-logo-svg {
    width: 280px;
    height: 82px;
    margin-left: 60px;
  }

  .egypt-gold-school-description-text {
    width: 300px;
    height: 50px;
    font-size: 14px;
    margin-left: 60px;
  }

  .egypt-gold-school-learn-more-button {
    width: 120px;
    height: 36px;
    padding: 2px 15px;
    margin-left: 60px;
  }

  .egypt-gold-school-button-text {
    font-size: 14px;
    gap: 10px;
  }

  .egypt-gold-school-brand-content-image {
    width: 500px;
    height: 400px;
    left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .egypt-gold-school-brand-section {
    width: 90%;
    height: 300px;
    top: 3500px;
    left: 5%;
  }

  .egypt-gold-school-brand-content-div {
    width: 40%;
    height: 300px;
    padding: 20px;
    gap: 12px;
    align-items: flex-start;
    left: 50%;
  }

  .egypt-gold-school-logo-svg {
    width: 200px;
    height: 58px;
    margin-left: 40px;
  }

  .egypt-gold-school-description-text {
    width: 250px;
    height: 40px;
    font-size: 12px;
    margin-left: 40px;
  }

  .egypt-gold-school-learn-more-button {
    width: 100px;
    height: 32px;
    padding: 2px 12px;
    margin-left: 40px;
  }

  .egypt-gold-school-button-text {
    font-size: 12px;
    gap: 8px;
  }

  .egypt-gold-school-brand-content-image {
    width: 50%;
    height: 300px;
    left: 0%;
  }
}

@media screen and (max-width: 480px) {
  .egypt-gold-school-brand-section {
    width: 95%;
    height: 250px;
    top: 3300px;
    left: 2.5%;
  }

  .egypt-gold-school-brand-content-div {
    width: 40%;
    height: 250px;
    padding: 15px;
    gap: 10px;
    align-items: flex-start;
    left: 50%;
  }

  .egypt-gold-school-logo-svg {
    width: 150px;
    height: 44px;
    margin-left: 30px;
  }

  .egypt-gold-school-description-text {
    width: 200px;
    height: 35px;
    font-size: 10px;
    margin-left: 30px;
  }

  .egypt-gold-school-learn-more-button {
    width: 80px;
    height: 28px;
    padding: 2px 10px;
    margin-left: 30px;
  }

  .egypt-gold-school-button-text {
    font-size: 10px;
    gap: 6px;
  }

  .egypt-gold-school-brand-content-image {
    width: 50%;
    height: 250px;
    left: 0%;
  }
}

/* Our Brands Footer SVG */
.our-brands-footer-svg {
  position: absolute;
  width: 100%;
  max-width: 1728px;
  height: 179px;
  top: 4831px;
  left: 0px;
  opacity: 1;
  transform: rotate(0deg);
  z-index: 1;
}

/* Responsive Design for Footer SVG */
@media screen and (max-width: 1728px) {
  .our-brands-footer-svg {
    width: min(calc(100vw * 1.0), 1728px);
    height: min(calc(100vw * 0.1036), 179px);
    top: min(calc(100vw * 2.7963), 4831px);
    left: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .our-brands-footer-svg {
    width: 100%;
    height: 120px;
    top: 4200px;
    left: 0px;
  }
}

@media screen and (max-width: 768px) {
  .our-brands-footer-svg {
    width: 100%;
    height: 100px;
    top: 3800px;
    left: 0px;
  }
}

@media screen and (max-width: 480px) {
  .our-brands-footer-svg {
    width: 100%;
    height: 80px;
    top: 3600px;
    left: 0px;
  }
}

/* SVG Theme Support */
/* Light mode - show btc.svg, hide btc-white.svg */
.light-theme .btc-logo-light {
  display: block;
}

.light-theme .btc-logo-dark {
  display: none;
}

/* Dark mode - hide btc.svg, show btc-white.svg */
.dark-theme .btc-logo-light {
  display: none;
}

.dark-theme .btc-logo-dark {
  display: block;
}

/* Default (no theme class) - show light version */
.btc-logo-light {
  display: block;
}

.btc-logo-dark {
  display: none;
}

/* Prevent horizontal scroll on all screen sizes */
.kpm-nav {
  max-width: 100vw;
  box-sizing: border-box;
}

/* Fix elements that might cause horizontal overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure all absolutely positioned elements stay within bounds */
.our-brands-page>* {
  max-width: 100vw;
}

/* Prevent child elements from creating their own scroll contexts */
.our-brands-page .our-brands-section,
.our-brands-page .KPM_WEBSITE_FOOTER {
  overflow: visible;
}

/* Ensure content flows naturally without creating scroll contexts */
.light-theme,
.dark-theme {
  overflow: visible;
  width: 100%;
  max-width: 100vw;
}

.our-brands-section {
  box-sizing: border-box;
  overflow: visible;
}

/* ========================================
   NAVBAR AND MOBILE MENU STYLES
   ======================================== */

/* Main Navbar */
.kpm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1728px;
  margin: 0 auto;
  padding: 20px 40px;
  box-sizing: border-box;
  position: fixed;
  z-index: 1000;
}

.kpm-nav__logo {
  flex-shrink: 0;
}

.kpm-nav__logo img {
  height: 40px;
  width: auto;
}

.kpm-nav__tabs {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.kpm-nav__tab {
  font-family: 'NexaRegular', 'Nexa', sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.kpm-nav__tab:hover {
  color: var(--accent-color, #B1974D) !important;
}

.kpm-nav__icons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.kpm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kpm-icon img {
  width: 20px;
  height: 20px;
}

.kpm-nav__divider {
  width: 100%;
  height: 1px;
  background: rgba(177, 151, 77, 0.3);
  margin: 0 auto;
  max-width: 1728px;
}

/* Mobile Menu Toggle (Hidden by default, shown on mobile) */
.kpm-nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.kpm-nav__mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #B1974D !important;
  background-color: #B1974D !important;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
  margin: 2px 0;
}

.kpm-nav__mobile-toggle.active span:nth-child(1) {
  background: #B1974D !important;
  background-color: #B1974D !important;
  transform: rotate(-45deg) translate(-5px, 6px);
}

.kpm-nav__mobile-toggle.active span:nth-child(2) {
  background: #B1974D !important;
  background-color: #B1974D !important;
  opacity: 0;
}

.kpm-nav__mobile-toggle.active span:nth-child(3) {
  background: #B1974D !important;
  background-color: #B1974D !important;
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.kpm-nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.kpm-nav__mobile-menu.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

/* Ensure mobile menu is visible on mobile devices */
@media screen and (max-width: 1024px) {
  .kpm-nav__mobile-menu {
    z-index: 9999 !important;
  }
  
  .kpm-nav__mobile-menu.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Mobile Menu Header */
.kpm-nav__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(177, 151, 77, 0.3);
}

.kpm-nav__mobile-logo img {
  height: 40px;
  width: auto;
}

.kpm-nav__mobile-close {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.kpm-nav__mobile-close span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 2px 0;
}

.kpm-nav__mobile-close span:first-child {
  transform: rotate(45deg) translate(0px, 0px);
}

.kpm-nav__mobile-close span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Content */
.kpm-nav__mobile-content {
  padding: 40px 20px;
  height: calc(100vh - 80px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Mobile Navigation Tabs */
.kpm-nav__mobile-tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kpm-nav__mobile-tab {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: left;
  border-left: 4px solid transparent;
  background-color: rgba(255, 255, 255, 0.05);
}

.kpm-nav__mobile-tab:hover {
  background-color: rgba(177, 151, 77, 0.2);
  border-left-color: #B1974D;
  transform: translateX(10px);
}

/* Mobile Toggle Section */
.kpm-nav__mobile-toggle-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(177, 151, 77, 0.3);
  border-bottom: 1px solid rgba(177, 151, 77, 0.3);
}

.kpm-nav__mobile-toggle-section .ui-switch {
  transform: scale(1.5);
}

/* Mobile Social Icons */
.kpm-nav__mobile-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.kpm-nav__mobile-social .kpm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(177, 151, 77, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.kpm-nav__mobile-social .kpm-icon:hover {
  background-color: rgba(177, 151, 77, 0.3);
  transform: scale(1.1);
  border-color: #B1974D;
}

.kpm-nav__mobile-social .kpm-icon img {
  width: 24px;
  height: 24px;
}

/* Light Mode Mobile Menu Styles */
.kpm-nav__mobile-menu .kpm-nav__mobile-tab[style*="color: black"] {
  color: black !important;
}

.kpm-nav__mobile-menu .kpm-nav__mobile-tab[style*="color: black"]:hover {
  background-color: rgba(177, 151, 77, 0.2);
  color: #B1974D !important;
}

/* Dark Mode Mobile Toggle Styles */
.t-dark-mode .kpm-nav__mobile-toggle span {
  background: #B1974D !important;
  background-color: #B1974D !important;
}

.t-dark-mode .kpm-nav__mobile-toggle.active span:nth-child(1) {
  background: #B1974D !important;
  background-color: #B1974D !important;
}

.t-dark-mode .kpm-nav__mobile-toggle.active span:nth-child(2) {
  background: #B1974D !important;
  background-color: #B1974D !important;
}

.t-dark-mode .kpm-nav__mobile-toggle.active span:nth-child(3) {
  background: #B1974D !important;
  background-color: #B1974D !important;
}

/* Mobile and Tablet Responsive - Desktop-like Layout */
@media screen and (max-width: 1024px) {

  /* Mobile Navbar - Keep desktop layout but smaller */
  .kpm-nav {
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
  }

  .kpm-nav__logo {
    margin: 0;
    order: 1;
  }

  .kpm-nav__mobile-toggle {
    display: flex;
    order: 3;
    margin: 0;
  }

  .kpm-nav__tabs {
    display: none;
  }

  .kpm-nav__icons {
    display: none;
  }
}

/* Mobile Menu styles are now handled by this file */

/* ========================================
   Global responsive overrides for Our Brands
   - Make layout fluid across desktop sizes
   - Stack brand blocks as column on mobile
   ======================================== */

/* Fluid desktop widths: allow sections to use full width up to container */
@media screen and (max-width: 1728px) {
  .our-brands-section {
    width: 100% !important;
    max-width: 1728px !important;
    margin: 0 auto !important;
  }
}

/* Tablet and down: convert absolute layouts to flowing columns */
@media screen and (max-width: 992px) {
  .our-brands-section {
    position: relative !important;
    height: auto !important;
    min-height: unset !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    padding: 90px 16px 0 16px !important;
    /* push content below fixed navbar */
  }

  /* Hero order like About Us: text first, then main image */
  .text-container {
    order: 1 !important;
  }

  .main-image-container {
    order: 2 !important;
  }

  .text-container,
  .main-image-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    z-index: 1 !important;
  }

  /* Make hero text visible and sized naturally on mobile */
  .text-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 16px !important;
    border-radius: 12px !important;
    background: var(--text-container-bg, #ffffff) !important;
    margin-top: 0 !important;
    /* rely on section padding to clear navbar */
    min-height: clamp(180px, 34vw, 280px) !important;
    /* increased mobile height */
  }

  .text-label,
  .text-heading {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    text-align: left !important;
  }

  .text-label {
    font-size: 16px !important;
    color: #BA9C44 !important;
  }

  .text-heading {
    font-size: 28px !important;
    color: var(--text-container-heading, #000000) !important;
    line-height: 1.25 !important;
  }

  .main-image-container {
    width: 100% !important;
  }

  .main-image-container .main-image {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* place svg after hero image, small and cropped */
  .svg-container {
    display: block !important;
    order: 3 !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: clamp(60px, 14vw, 120px) !important;
    overflow: hidden !important;
    margin: 0 auto !important;
    z-index: 1 !important;
  }

  .svg-container .footer-svg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  /* Ensure the first brand block follows the hero and is visible */
  .btc-brand-section {
    order: 4 !important;
    margin-top: 8px !important;
  }

  .gdm-brand-section {
    order: 5 !important;
  }

  .gemeva-brand-section {
    order: 6 !important;
  }

  .odyssey-brand-section {
    order: 7 !important;
  }

  .travel-boutique-brand-section {
    order: 8 !important;
  }

  .egypt-gold-school-brand-section {
    order: 9 !important;
  }

  .btc-brand-section,
  .gdm-brand-section,
  .gemeva-brand-section,
  .odyssey-brand-section,
  .travel-boutique-brand-section,
  .egypt-gold-school-brand-section {
    z-index: 1 !important;
  }

  /* All brand wrappers become column containers */
  .btc-brand-section,
  .gdm-brand-section,
  .gemeva-brand-section,
  .odyssey-brand-section,
  .travel-boutique-brand-section,
  .egypt-gold-school-brand-section {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Content and image blocks flow naturally and fill width */
  .btc-brand-content-div,
  .gdm-brand-content-div,
  .gemeva-brand-content-div,
  .odyssey-brand-content-div,
  .travel-boutique-brand-content-div,
  .egypt-gold-school-brand-content-div,
  .btc-brand-content-image,
  .gdm-brand-content-image,
  .gemeva-brand-content-image,
  .odyssey-brand-content-image,
  .travel-boutique-brand-content-image,
  .egypt-gold-school-brand-content-image {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  /* Put images first, then content for a consistent vertical flow */
  .btc-brand-content-image,
  .gdm-brand-content-image,
  .gemeva-brand-content-image,
  .odyssey-brand-content-image,
  .travel-boutique-brand-content-image,
  .egypt-gold-school-brand-content-image {
    order: 1;
  }

  .btc-brand-content-div,
  .gdm-brand-content-div,
  .gemeva-brand-content-div,
  .odyssey-brand-content-div,
  .travel-boutique-brand-content-div,
  .egypt-gold-school-brand-content-div {
    order: 2;
  }

  /* Inner paddings and alignments for content cards */
  .btc-brand-content-div,
  .gdm-brand-content-div,
  .gemeva-brand-content-div,
  .odyssey-brand-content-div,
  .travel-boutique-brand-content-div,
  .egypt-gold-school-brand-content-div {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 40px !important;
    /* more gap between items */
    padding: 20px 18px !important;
    box-sizing: border-box !important;
    /* decreased height per request */
    min-height: clamp(240px, 42vw, 320px) !important;
  }

  /* Prevent inner elements from overflowing */
  .btc-brand-content-div *,
  .gdm-brand-content-div *,
  .gemeva-brand-content-div *,
  .odyssey-brand-content-div *,
  .travel-boutique-brand-content-div *,
  .egypt-gold-school-brand-content-div * {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
  }

  /* Logos: scale and remove desktop offsets */
  .btc-logo-svg,
  .gdm-logo-svg,
  .gemeva-logo-svg,
  .odyssey-logo-svg,
  .travel-boutique-logo-svg,
  .egypt-gold-school-logo-svg {
    margin: 0 !important;
    width: clamp(160px, 60%, 260px) !important;
    height: auto !important;
  }

  /* Descriptions: readable, full width */
  .btc-description-text,
  .gdm-description-text,
  .gemeva-description-text,
  .odyssey-description-text,
  .travel-boutique-description-text,
  .egypt-gold-school-description-text {
    margin: 0 !important;
    width: 100% !important;
    max-width: 52ch !important;
    font-size: clamp(12px, 2.8vw, 16px) !important;
    line-height: 1.45 !important;
    text-align: left !important;
  }

  /* Buttons: consistent touch target */
  .btc-learn-more-button,
  .gdm-learn-more-button,
  .gemeva-learn-more-button,
  .odyssey-learn-more-button,
  .travel-boutique-learn-more-button,
  .egypt-gold-school-learn-more-button {
    margin: 0 !important;
    align-self: flex-start !important;
    padding: 8px 14px !important;
    height: auto !important;
    width: clamp(120px, 44%, 140px) !important;
    /* smaller button width */
  }

  .btc-button-text,
  .gdm-button-text,
  .gemeva-button-text,
  .odyssey-button-text,
  .travel-boutique-button-text,
  .egypt-gold-school-button-text {
    gap: 8px !important;
    font-size: clamp(12px, 2.8vw, 16px) !important;
    line-height: 1.2 !important;
  }

  /* Reset desktop left margins for logos/text/buttons to avoid overflow */
  .btc-logo-svg,
  .gdm-logo-svg,
  .gemeva-logo-svg,
  .odyssey-logo-svg,
  .travel-boutique-logo-svg,
  .egypt-gold-school-logo-svg,
  .btc-description-text,
  .gdm-description-text,
  .gemeva-description-text,
  .odyssey-description-text,
  .travel-boutique-description-text,
  .egypt-gold-school-description-text,
  .btc-learn-more-button,
  .gdm-learn-more-button,
  .gemeva-learn-more-button,
  .odyssey-learn-more-button,
  .travel-boutique-learn-more-button,
  .egypt-gold-school-learn-more-button {
    margin-left: 0 !important;
  }
}

/* Small mobile: tighten gaps and ensure images keep aspect */
@media screen and (max-width: 480px) {
  .our-brands-section {
    gap: 24px !important;
  }

  .btc-brand-content-image img,
  .gdm-brand-content-image img,
  .gemeva-brand-content-image img,
  .odyssey-brand-content-image img,
  .travel-boutique-brand-content-image img,
  .egypt-gold-school-brand-content-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
}

/* Mobile footer on Our Brands - copied from About Us */
@media screen and (max-width: 1024px) {

  .KPM_WEBSITE_FOOTER_BRANDS,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100%;
    height: auto;
    margin-top: 30px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-flags-div,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-flags-div {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px !important;
    padding: 20px 0 !important;
    justify-items: center;
    order: 1;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-social-media-icons,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-social-media-icons {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    text-align: center !important;
    /* center children */
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 auto !important;
    order: 2;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-social-media-icons>div,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-social-media-icons>div {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    margin: -20px 90px !important;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-footer-desc2,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-footer-desc2 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    text-align: center;
    padding: 0 20px 10px 20px !important;
    order: 3;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-footer-line,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-footer-line {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 10px auto !important;
    order: 4;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-footer-desc,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-footer-desc {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    padding: 10px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    white-space: normal !important;
    text-align: left !important;
    order: 5;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-footer-desc span,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-footer-desc span {
    display: block !important;
    white-space: normal !important;
    margin-left: 0px !important;
    /* space before second line */
  }
}

@media screen and (max-width: 768px) {

  .KPM_WEBSITE_FOOTER_BRANDS,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL {
    padding: 26px 16px !important;
    gap: 18px;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-flags-div,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-flags-div {
    gap: 16px 18px !important;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-social-media-icons,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-social-media-icons {
    gap: 14px;
    padding: 0 15px 15px 15px !important;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-footer-desc2,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-footer-desc2 {
    font-size: 14px;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-footer-desc,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-footer-desc {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {

  .KPM_WEBSITE_FOOTER_BRANDS,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL {
    padding: 24px 14px !important;
    gap: 16px;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-flags-div,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-flags-div {
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px !important;
    padding: 18px 12px !important;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-social-media-icons,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-social-media-icons {
    gap: 12px;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-social-media-icons>div,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-social-media-icons>div {
    width: 40px;
    height: 40px;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-social-media-icons img,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-social-media-icons img {
    width: 20px;
    height: 20px;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-footer-desc2,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-footer-desc2 {
    font-size: 13px;
  }

  .KPM_WEBSITE_FOOTER_BRANDS .kpm-footer-desc,
  .KPM_WEBSITE_FOOTER_BRANDS_CAREERS-DETIAL .kpm-footer-desc {
    font-size: 11px;
  }
}

/* Shared hero overlay container for brand detail pages */
.brand-detail-hero-block {
  position: relative;
  width: 100%;
  display: block;
}

.brand-detail-hero-block>img[class$="-detail-image-header"] {
  display: block;
  width: 100%;
  height: auto;
}

.brand-detail-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  pointer-events: none;
}

.brand-detail-hero-overlay>* {
  pointer-events: auto;
}

/* Shared footer container for brand detail pages */
.brand-detail-footer-block {
  position: relative;
  width: 100%;
  margin: clamp(32px, 8vw, 52px) auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 4vw, 28px);
}

/* ========================================
   Brand Details Responsive Layout
   ======================================== */
@media screen and (max-width: 992px) {
  .brand-detail-page {
    position: relative !important;
    padding: 90px 16px 48px !important;
    overflow-x: hidden !important;
  }

  .brand-detail-hero-block {
    position: relative !important;
    width: 100% !important;
    margin: 0 auto clamp(36px, 9vw, 56px) !important;
  }

  .brand-detail-hero-block>img[class$="-detail-image-header"] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    max-height: clamp(260px, 68vw, 460px);
    object-fit: cover !important;
    border-radius: 18px !important;
    display: block !important;
  }

  .brand-detail-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(6px, 2vw, 14px) !important;
    padding: clamp(18px, 5vw, 28px) !important;
    text-align: center !important;
    pointer-events: none !important;
  }

  .brand-detail-page [class$="-detail-logo-header"] {
    position: static !important;
    transform: none !important;
    width: clamp(120px, 32vw, 200px) !important;
    height: auto !important;
    margin: 0 !important;
    display: block !important;
    z-index: 1 !important;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
    pointer-events: auto !important;
  }

  .brand-detail-page [class$="-detail-text-header"] {
    position: static !important;
    transform: none !important;
    width: min(92%, 540px) !important;
    height: auto !important;
    margin: 0 !important;
    font-size: clamp(22px, 5.2vw, 32px) !important;
    line-height: 1.35 !important;
    text-align: center !important;
    padding: 0 12px !important;
    display: block !important;
    z-index: 1 !important;
    color: inherit !important;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    pointer-events: auto !important;
  }

  .brand-detail-page [class$="-detail-image1"],
  .brand-detail-page [class$="-detail-image2"],
  .brand-detail-page [class$="-detail-image3"],
  .brand-detail-page [class$="-detail-image4"],
  .brand-detail-page [class$="-detail-image5"],
  .brand-detail-page [class$="-detail-image6"],
  .brand-detail-page [class$="-detail-image7"],
  .brand-detail-page [class$="-detail-image8"],
  .brand-detail-page [class$="-detail-image9"],
  .brand-detail-page [class$="-detail-image10"],
  .brand-detail-page [class$="-detail-image11"],
  .brand-detail-page [class$="-detail-image12"],
  .brand-detail-page [class$="-detail-image13"],
  .brand-detail-page [class$="-detail-image14"],
  .brand-detail-page [class$="-detail-image15"] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 32px 0 !important;
    border-radius: 0 !important;
    display: block !important;
  }

  .brand-detail-page [class$="-detail-image1-text"],
  .brand-detail-page [class$="-detail-image2-text"],
  .brand-detail-page [class$="-detail-image3-text"],
  .brand-detail-page [class$="-detail-image4-text"],
  .brand-detail-page [class$="-detail-image5-text"],
  .brand-detail-page [class$="-detail-image6-text"],
  .brand-detail-page [class$="-detail-image7-text"],
  .brand-detail-page [class$="-detail-image8-text"],
  .brand-detail-page [class$="-detail-image9-text"],
  .brand-detail-page [class$="-detail-image10-text"],
  .brand-detail-page [class$="-detail-image11-text"],
  .brand-detail-page [class$="-detail-image12-text"],
  .brand-detail-page [class$="-detail-image13-text"],
  .brand-detail-page [class$="-detail-image14-text"],
  .brand-detail-page [class$="-detail-image15-text"] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: clamp(18px, 4vw, 32px) 0 !important;
    display: block !important;
    font-size: clamp(15px, 3.6vw, 18px) !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .brand-detail-page .GDandmore-detail-image2,
  .brand-detail-page .GDandmore-detail-image3,
  .brand-detail-page .GDandmore-detail-image4 {
    width: calc(100% - 32px) !important;
    margin: 32px auto !important;
    border-radius: 12px !important;
  }

  .brand-detail-page .GDandmore-detail-image2-text,
  .brand-detail-page .GDandmore-detail-image3-text,
  .brand-detail-page .GDandmore-detail-image4-text {
    width: calc(100% - 32px) !important;
    margin: clamp(18px, 4vw, 28px) auto !important;
    padding: 0 8px !important;
  }

  .brand-detail-page .GDandmore-detail-image2-text span,
  .brand-detail-page .GDandmore-detail-image3-text span,
  .brand-detail-page .GDandmore-detail-image4-text span {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: clamp(18px, 4.8vw, 24px) !important;
    line-height: 1.35 !important;
  }

  .brand-detail-page .GDandmore-detail-signature-text {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 32px 0 0 !important;
    display: block !important;
    text-align: center !important;
    font-size: clamp(20px, 5vw, 26px) !important;
    line-height: 1.4 !important;
    padding-bottom: 12px !important;
    border: none !important;
    border-bottom: 2px solid rgba(177, 151, 77, 0.5) !important;
  }

  .brand-detail-page .GDandmore-detail-footer {
    position: relative !important;
    display: block !important;
    width: calc(100% - 32px) !important;
    height: auto !important;
    margin: clamp(32px, 8vw, 52px) auto clamp(18px, 4vw, 28px) !important;
    border-radius: 14px !important;
    object-fit: cover !important;
    top: auto !important;
    left: auto !important;
  }

  .brand-detail-page .GDandmore-detail-footer-div {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 24px 20px !important;
    border-radius: 16px !important;
  }

  .brand-detail-page .GDandmore-detail-footer-div-text {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    font-size: clamp(16px, 3.8vw, 19px) !important;
    line-height: 1.6 !important;
  }

  .brand-detail-page .GDandmore-detail-footer-div-text span {
    font-size: clamp(20px, 5vw, 26px) !important;
    line-height: 1.35 !important;
  }

  .brand-detail-page .GDandmore-detail-footer-text {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 24px 0 0 !important;
    display: block !important;
    text-align: center !important;
    font-size: clamp(20px, 6vw, 28px) !important;
  }

  .brand-detail-footer-block .GDandmore-detail-footer {
    position: relative !important;
    display: block !important;
    width: calc(100% - 32px) !important;
    height: auto !important;
    margin: 0 auto !important;
    border-radius: 14px !important;
    object-fit: cover !important;
  }

  .brand-detail-footer-block .GDandmore-detail-footer-div,
  .brand-detail-footer-block .GDandmore-detail-footer-text {
    width: calc(100% - 32px) !important;
    margin: 0 auto !important;
  }

  .brand-detail-footer-block .GDandmore-detail-footer-text {
    margin-top: clamp(12px, 3vw, 20px) !important;
  }

  .brand-detail-page .GDandmore-detail-discover {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: calc(100% - 32px) !important;
    height: auto !important;
    margin: 24px auto 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch !important;
  }

  .brand-detail-page .GDandmore-detail-discover-container1,
  .brand-detail-page .GDandmore-detail-discover-container2,
  .brand-detail-page .GDandmore-detail-discover-container3 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 20px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    box-sizing: border-box !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .brand-detail-page .GDandmore-detail-discover-container1-text,
  .brand-detail-page .GDandmore-detail-discover-container2-text,
  .brand-detail-page .GDandmore-detail-discover-container3-text {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    font-size: clamp(16px, 4vw, 20px) !important;
    line-height: 1.5 !important;
  }

  .brand-detail-page .GDandmore-detail-discover-container1-button {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: fit-content !important;
    height: auto !important;
    margin: 0 !important;
    padding: 10px 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .brand-detail-page .GDandmore-detail-discover-container1-button-icon {
    position: static !important;
    top: auto !important;
    left: auto !important;
  }

  .brand-detail-page .GDandmore-detail-discover-container1-button-text {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    font-size: clamp(14px, 3.6vw, 16px) !important;
    line-height: 1.3 !important;
  }
}

@media screen and (max-width: 600px) {
  .brand-detail-page {
    padding: 84px 14px 40px !important;
  }

  .brand-detail-page .GDandmore-detail-logo-header {
    margin: -48px auto 12px !important;
  }

  .brand-detail-page .GDandmore-detail-text-header {
    font-size: clamp(20px, 5.6vw, 28px) !important;
    color: #ffffff !important;

  }

  .brand-detail-page .GDandmore-detail-discover {
    gap: 14px !important;
  }
}

@media screen and (max-width: 480px) {
  .brand-detail-page {
    padding: 80px 12px 36px !important;
  }

  .brand-detail-page .GDandmore-detail-image1,
  .brand-detail-page .GDandmore-detail-image2,
  .brand-detail-page .GDandmore-detail-image3,
  .brand-detail-page .GDandmore-detail-image4 {
    margin-top: 20px !important;
  }

  .brand-detail-page .GDandmore-detail-image1-text,
  .brand-detail-page .GDandmore-detail-image2-text,
  .brand-detail-page .GDandmore-detail-image3-text,
  .brand-detail-page .GDandmore-detail-image4-text {
    font-size: clamp(14px, 4vw, 17px) !important;
  }

  .brand-detail-page .GDandmore-detail-discover-container1,
  .brand-detail-page .GDandmore-detail-discover-container2,
  .brand-detail-page .GDandmore-detail-discover-container3 {
    padding: 18px 16px !important;
  }

  .brand-detail-page .GDandmore-detail-discover-container1-button {
    width: 100% !important;
    justify-content: center !important;
  }
}