/* Transparent Navbar Styles - Higher specificity to override existing styles */
.header.transparent-navbar {
  position: absolute !important;
  top: 60px !important; /* Position further below topbar to prevent overlap */
  width: 100%;
  z-index: 1100; /* Lower than topbar z-index */
  background: transparent !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: none !important;
}

/* Add sticky navbar style that gets applied via JavaScript on scroll */
.header.sticky,
.header.transparent-navbar.sticky,
.header.is-sticky,
.header.transparent-navbar.is-sticky {
  position: fixed !important;
  top: 0 !important;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
  z-index: 99999; /* Ultra-high z-index to ensure it stays above ALL content */
  width: 100% !important;
  left: 0 !important; /* Ensure it spans the full width */
  right: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 60px !important;
  transform: none !important;
  -webkit-transform: none !important;
  animation: none !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

.header.transparent-navbar .navbar {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(250, 177, 47, 0.2);
  padding: 15px 0 !important;
  transition: all 0.3s ease;
}

.header.transparent-navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
  z-index: 1200;
}

.header.transparent-navbar.scrolled .navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px);
}

.header.transparent-navbar .nav-link {
  color: #ffffff !important;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header.transparent-navbar .nav-link:hover {
  color: #FAB12F !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Links in sticky navbar */
.header.sticky .nav-link,
.header.transparent-navbar.sticky .nav-link {
  color: #333333 !important;
  text-shadow: none;
}

.header.sticky .nav-link:hover,
.header.transparent-navbar.sticky .nav-link:hover {
  color: #FAB12F !important;
}

/* Ensure sticky navbar doesn't get hidden */
.header.sticky,
.header.transparent-navbar.sticky,
.header.is-sticky,
.header.transparent-navbar.is-sticky,
html body .header.sticky,
html body .header.transparent-navbar.sticky,
html body .header.is-sticky,
html body .header.transparent-navbar.is-sticky,
body:not(.overflow-hidden) .header.sticky,
body:not(.overflow-hidden) .header.transparent-navbar.sticky,
body:not(.overflow-hidden) .header.is-sticky,
body:not(.overflow-hidden) .header.transparent-navbar.is-sticky,
body .header.sticky,
body .header.transparent-navbar.sticky,
body .header.is-sticky,
body .header.transparent-navbar.is-sticky {
  position: fixed !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  -webkit-transform: none !important;
  pointer-events: auto !important;
  display: block !important;
  top: 0 !important;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
}

.header.transparent-navbar.scrolled .nav-link {
  color: #333333 !important;
  text-shadow: none;
}

.header.transparent-navbar.scrolled .nav-link:hover {
  color: #FAB12F !important;
}

.header.transparent-navbar .btn--base {
  background: linear-gradient(135deg, #FAB12F, #FFD875) !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(250, 177, 47, 0.3);
  transition: all 0.3s ease;
}

.header.transparent-navbar .btn--base:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 177, 47, 0.4);
}

/* Top header base styles */
.top-header.transparent-top-header {
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(5px);
}

/* Ensure topbar sits above navbar */
.top-header {
  z-index: 1200 !important;
  position: relative;
  height: 60px; /* Set explicit height for the topbar */
  display: flex;
  align-items: center;
}

/* Make all topbar texts (labels + values) golden */
.top-header .vf-info-list__text,
.top-header .label,
.top-header .label.t-text-white {
  color: #FAB12F !important;
  text-shadow: none;
  font-weight: 600;
}

/* Tint topbar PNG/SVG icons to golden */
.top-header .vf-info-list__item img,
.top-header .vf-info-list__item i {
  filter: invert(68%) sepia(78%) saturate(640%) hue-rotate(355deg) brightness(100%) contrast(96%);
}

/* Ensure hover remains golden */
.top-header a.vf-info-list__text:hover {
  color: #FFD875 !important;
}

/* Hero section adjustments for transparent navbar */
.hero.modern-hero {
  padding-top: 180px; /* Increased space for topbar + transparent navbar with new positioning */
}

/* Mobile responsive styles for transparent navbar */
@media (max-width: 991px) {
  .header.transparent-navbar {
    position: fixed !important;
    top: 0 !important; /* On mobile, topbar is hidden so navbar can be at top */
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    padding: 0 !important;
    z-index: 1200; /* Higher z-index on mobile since topbar is hidden */
  }
  
  /* On mobile, sticky class is always active */
  .header.transparent-navbar.sticky {
    position: fixed !important;
    top: 0 !important;
  }
  
  .header.transparent-navbar .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    padding: 15px 20px !important;
  }
  
  .header.transparent-navbar .nav-link {
    color: #333333 !important;
    text-shadow: none;
  }
  
  .header.transparent-navbar .nav-link:hover {
    color: #FAB12F !important;
  }
  
  .top-header.transparent-top-header {
    display: none; /* Hide top header on mobile for cleaner look */
  }
  
  .hero.modern-hero {
    padding-top: 80px; /* Reduced padding for mobile */
  }
}

@media (max-width: 576px) {
  .hero.modern-hero {
    padding-top: 70px;
  }
  
  .header.transparent-navbar .navbar {
    padding: 12px 15px !important;
  }
}

/* Modernized hero section with golden and white glassmorphism */
.modern-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.modern-hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(250,177,47,0.15) 0%, rgba(255,255,255,0.25) 100%);
  z-index: 0;
  pointer-events: none;
}
.modern-hero__content {
  background: rgba(255,255,255,0.95);
  border-radius: 2rem;
  box-shadow: 0 12px 40px rgba(250,177,47,0.15), 0 0 0 1px rgba(250,177,47,0.2);
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  backdrop-filter: blur(12px);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  border: 2px solid rgba(250,177,47,0.3);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff !important;
}
.modern-hero__title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}
.modern-hero__accent {
  display: block;
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #FAB12F 0%, #FFD875 100%);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 2px 8px rgba(250,177,47,0.3);
}
.modern-hero__subtitle {
  font-size: 1.25rem;
  color: #ffffff !important;
  margin-bottom: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.modern-hero__btn {
  border-radius: 2rem;
  font-weight: 700;
  padding: 1.1rem 2.8rem;
  font-size: 1.18rem;
  box-shadow: 0 4px 20px rgba(250,177,47,0.25);
  border: 2px solid #FAB12F;
  color: #fff;
  background: linear-gradient(135deg, #FAB12F 0%, #FFD875 100%);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s, background 0.3s;
  outline: none;
  position: relative;
  overflow: hidden;
}
.modern-hero__btn:hover, .modern-hero__btn:focus {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 35px rgba(250,177,47,0.4);
  background: linear-gradient(135deg, #FFD875 0%, #FAB12F 100%);
  color: #2c2c2c;
  border-color: #FFD875;
}
@media (max-width: 991.98px) {
  .modern-hero__content { padding: 2rem 0.5rem; }
  .modern-hero__title { font-size: 2rem; }
}
/* Modernized hero section */
.modern-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.modern-hero__content {
  background: rgba(255,255,255,0.18);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  backdrop-filter: blur(6px);
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  border: 1.5px solid #FAB12F33;
  position: relative;
}
.modern-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #222;
  text-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}
.modern-hero__accent {
  display: block;
  width: 60px;
  height: 5px;
  background: linear-gradient(90deg, #FAB12F 0%, #FFD875 100%);
  border-radius: 2px;
  margin: 0 auto 1.2rem auto;
}
.modern-hero__btn {
  border-radius: 2rem;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  font-size: 1.15rem;
  box-shadow: 0 2px 12px rgba(250,177,47,0.15);
  border: 2px solid #FAB12F;
  color: #FAB12F;
  background: #fff;
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.18s, background 0.18s, color 0.18s;
}
.modern-hero__btn:hover, .modern-hero__btn:focus {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(250,177,47,0.22);
  background: linear-gradient(90deg, #FAB12F 0%, #FFD875 100%);
  color: #222;
  border-color: #FAB12F;
}
@media (max-width: 991.98px) {
  .modern-hero__content { padding: 2rem 0.5rem; }
  .modern-hero__title { font-size: 2rem; }
}
/* Unified feature section card with image and content */
.feature-section-card {
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(250,177,47,0.12), 0 1.5px 0 #FAB12F;
  background: #fff;
  overflow: hidden;
  margin-bottom: 2rem;
}
.feature-section-card .feature-img-col {
  background: #faf8f3;
}
.feature-section-card .feature-img-wrapper img {
  border-radius: 2rem 0 0 2rem;
  object-fit: cover;
  width: 100%;
  max-height: 420px;
  box-shadow: 0 2px 24px #FAB12F33;
}
@media (max-width: 991.98px) {
  .feature-section-card .feature-img-col {
    border-radius: 0 0 2rem 2rem;
  }
  .feature-section-card .feature-img-wrapper img {
    border-radius: 0 0 2rem 2rem;
  }
}
/* Unified about section card with image and content */
.about-section-card {
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(250,177,47,0.12), 0 1.5px 0 #FAB12F;
  background: #fff;
  overflow: hidden;
  margin-bottom: 2rem;
}
.about-section-card .about-img-col {
  background: #faf8f3;
}
.about-section-card .about-img-wrapper img {
  border-radius: 0 2rem 2rem 0;
  object-fit: cover;
  width: 100%;
  max-height: 420px;
  box-shadow: 0 2px 24px #FAB12F33;
}
@media (max-width: 991.98px) {
  .about-section-card .about-img-col {
    border-radius: 0 0 2rem 2rem;
  }
  .about-section-card .about-img-wrapper img {
    border-radius: 0 0 2rem 2rem;
  }
}
/* Gold border only on the left, matching card edges for about image */
/* Stronger yellow border for about image card */
.about-img.modern-card.card-border-left-gold {
  border-left: 10px solid #FAB12F;
  border-radius: 2rem 0 0 2rem;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 8px 32px #FAB12F33;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.about-img.modern-card.card-border-left-gold img {
  border-radius: 2rem 0 0 2rem;
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}
/* Gold border only on the left, matching card edges for feature image */
.card-border-left-gold {
  border-left: 6px solid #FAB12F;
  border-radius: 2rem 0 0 2rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 32px #FAB12F33,0 1.5px 0 #FAB12F;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.card-border-left-gold img {
  border-radius: 2rem 0 0 2rem;
  width: 100%;
  height: auto;
  display: block;
}
/* Modern card and animation for feature section image */
.feature-img.modern-card {
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(250,177,47,0.12), 0 1.5px 0 #FAB12F;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-img.modern-card:hover {
  box-shadow: 0 16px 48px 0 rgba(250,177,47,0.18), 0 2.5px 0 #FAB12F;
  transform: translateY(-6px) scale(1.03);
}
.feature-img {
  animation: fadeInLeft 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Modern card and animation for feature section (details row) */
.feature-card.modern-card {
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(250,177,47,0.12), 0 1.5px 0 #FAB12F;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card.modern-card:hover {
  box-shadow: 0 16px 48px 0 rgba(250,177,47,0.18), 0 2.5px 0 #FAB12F;
  transform: translateY(-6px) scale(1.03);
}
/* Modern card and animation for plan section */
.plan-section-cards {
  animation: fadeInUp 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.plan-card.modern-card {
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(250,177,47,0.12), 0 1.5px 0 #FAB12F;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.plan-card.modern-card:hover {
  box-shadow: 0 16px 48px 0 rgba(250,177,47,0.18), 0 2.5px 0 #FAB12F;
  transform: translateY(-6px) scale(1.03);
}
/* Modern card and animation for about section */
.modern-card {
  border-radius: 2rem;
  box-shadow: 0 8px 32px 0 rgba(250,177,47,0.12), 0 1.5px 0 #FAB12F;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
}
.modern-card:hover {
  box-shadow: 0 16px 48px 0 rgba(250,177,47,0.18), 0 2.5px 0 #FAB12F;
  transform: translateY(-6px) scale(1.03);
}
.about-card {
  animation: fadeInUp 1.1s cubic-bezier(0.23, 1, 0.32, 1);
}
.about-img {
  animation: fadeInRight 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Modern Landing Page Enhancements (do not override backend colors)
   - Animations, layout, and modern UI only
*/
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero__content {
  animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(255,255,255,0.02);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 3rem 2rem;
  backdrop-filter: blur(2px);
}
.hero__content-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border-bottom: 4px solid #FAB12F;
  display: inline-block;
  padding-bottom: 0.3rem;
}
.btn--base {
  border-radius: 2rem;
  font-weight: 600;
  padding: 0.85rem 2.5rem;
  font-size: 1.15rem;
  box-shadow: 0 2px 12px rgba(250,177,47,0.15);
  border: 2px solid #FAB12F;
  color: #FAB12F;
  background: #fff;
  transition: transform 0.18s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.18s, background 0.18s, color 0.18s;
}
.btn--base:hover, .btn--base:focus {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(250,177,47,0.22);
  background: linear-gradient(90deg, #FAB12F 0%, #FFD875 100%);
  color: #222;
  border-color: #FAB12F;
}
/* Gold accent for section headings */
.section-title, section h2, section h3 {
  color: #222;
  position: relative;
  margin-bottom: 1.5rem;
}
.section-title:after, section h2:after, section h3:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FAB12F 0%, #FFD875 100%);
  border-radius: 2px;
  margin-top: 0.5rem;
}
/* Gold accent for active nav links */
.navbar .nav-link.active, .navbar .nav-link:focus, .navbar .nav-link:hover {
  color: #FAB12F !important;
  border-bottom: 2px solid #FAB12F;
  background: transparent;
}

/* Homepage-specific sticky navbar styles to ensure it remains visible */
body.home .header.sticky,
body.home .header.transparent-navbar.sticky,
body.home .header.is-sticky,
body.home .header.transparent-navbar.is-sticky,
body.index .header.sticky,
body.index .header.transparent-navbar.sticky,
body.index .header.is-sticky,
body.index .header.transparent-navbar.is-sticky {
  position: fixed !important;
  top: 0 !important;
  z-index: 999999 !important;
  visibility: visible !important;
  opacity: 1 !important;
}
/* Gold accent for icons */
.icon-gold, .fa-gold, [class*="icon-"] {
  color: #FAB12F !important;
}
/* Gold accent box-shadow for cards */
.card, .feature-card, .info-card {
  box-shadow: 0 4px 24px 0 rgba(250,177,47,0.08), 0 1.5px 0 #FAB12F;
  border-radius: 1.5rem;
}
/* Gold accent for section dividers */
.divider-gold {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FAB12F 0%, #FFD875 100%);
  border-radius: 2px;
  margin: 2rem auto;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Section fade-in animation */
section, .section {
  animation: fadeInSection 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
@keyframes fadeInSection {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Responsive tweaks */
@media (max-width: 768px) {
  .hero__content-title { font-size: 2rem; }
  .hero__content { padding: 2rem 0.5rem; }
}

/* Partner/Brands Section with Golden Theme & React-like Modern UI */
.partner-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, rgba(255,255,255,0.97), rgba(250,177,47,0.05), rgba(255,255,255,0.97));
}

.partner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(250,177,47,0.5), transparent);
  opacity: 0.8;
}

.partner-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(250,177,47,0.5), transparent);
  opacity: 0.8;
}

.partner-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.partner-section .section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.partner-section .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #FAB12F, #FFD875);
  margin: 12px auto 0;
  border-radius: 2px;
}

.partner-section .section-subtitle {
  color: #777;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Brand Logo Containers with React-like Animation */
.partner-brands {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.partner-brand {
  padding: 15px 25px;
  flex: 0 0 16.666%;
  max-width: 16.666%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
  filter: grayscale(100%);
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.partner-brand:hover {
  transform: translateY(-8px);
  filter: grayscale(0%);
  opacity: 1;
}

.partner-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #FAB12F, #FFD875);
  transition: transform 0.3s ease;
  border-radius: 1px;
}

.partner-brand:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.partner-brand img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  transition: filter 0.3s ease;
}

.partner-brand:hover img {
  filter: drop-shadow(0 4px 10px rgba(250,177,47,0.3));
}

/* Golden glow effect on hover */
.partner-brand::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(250,177,47,0.1) 0%, rgba(255,255,255,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50%;
  z-index: -1;
}

.partner-brand:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}

/* React-like container styling */
.partner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

/* Modern divider with golden accent */
.golden-divider {
  height: 40px;
  position: relative;
  margin: 10px 0 30px;
}

.golden-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FAB12F, #FFD875);
  border-radius: 2px;
}

.golden-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.07);
  z-index: -1;
}

/* Partner Animation Classes */
.partner-brand.partner-visible {
  opacity: 0.75;
  transform: translateY(0);
}

/* Responsive adjustments for partner section */
@media (max-width: 991px) {
  .partner-brand {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .partner-brand {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
  }
  
  .partner-section {
    padding: 40px 0;
  }
}
