

/* Global: consistent vertical padding for major sections */
.sections,
.section,
.section.section-background,
.services-section,
.timeline-section,
.jx-section,
.u-section {
  padding-top: 20px !important;
  padding-bottom: 0px !important;
}

/* Hero Section container */
.hero-section {
  position: relative !important;
  width: 100% !important;
  height: 100vh !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden !important;
  background-color: #000 !important;
}

/* Hero content stacked vertically */
.hero-content {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100% !important;
  position: relative !important;
}

/* Image container */
.hero-image-container {
  max-width: 100% !important;
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative !important;
  /* needed for absolute positioning buttons */
}

/* Image */
.hero-image-container img {
  width: auto !important;
  height: 70% !important;
  /* adjust as needed */
  max-width: 100% !important;
  object-fit: contain !important;
}

/* Buttons slightly below bottom of image */
.bold-home-button-container {
  display: flex !important;
  justify-content: center !important;
  gap: 20px !important;
  position: absolute !important;
  bottom: -20px !important;
  /* slightly below image */
  left: 50% !important;
  transform: translateX(-50%) !important;
  /* center horizontally */
  flex-wrap: wrap !important;
}

/* Buttons styling */
.bold-home-btn {
  display: inline-block !important;
  width: 220px !important;
  padding: 14px 0 !important;
  text-align: center !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  color: white !important;
  background-color: orange !important;
  border-radius: 30px !important;
  transition: all 0.3s ease !important;
}

.bold-home-btn-outline {
  background-color: orange !important;
}

.bold-home-btn:hover,
.bold-home-btn-outline:hover {
  background-color: #fff !important;
  color: #000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bold-home-btn {
    width: 180px !important;
    padding: 14px 0 !important;
  }

  .hero-image-container img {
    height: 40vh !important;
    /* Medium screens: smaller image */
  }
}

@media (max-width: 480px) {
  .bold-home-button-container {
    flex-direction: column !important;
    gap: 15px !important;
    bottom: -5px !important;
    /* slightly below image on small phones */
  }

  .bold-home-btn {
    width: 100% !important;
    padding: 14px 10px !important;
  }

  .hero-image-container img {
    height: 30vh !important;
    /* Small phones: much smaller image */
    object-fit: contain !important;
  }
}

/* ============================
   The Bold Ones - Hero Section
   Scoped and responsive CSS
   ============================ */

.bold-hero-section .bold-hero-text-container {
  text-align: center !important;
  margin: 0 auto 2rem auto !important;
  padding: 0 1rem !important;
  max-width: 1100px !important;
}

.bold-hero-section .bold-hero-title {
  font-size: clamp(8rem, 9vw + 0.25rem, 4.5rem) !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin-bottom: 0.3rem !important;
  text-wrap: balance !important;
}

.bold-hero-section .bold-hero-subtitle {
  font-size: clamp(2rem, 1.5vw + 0.5rem, 1.5rem) !important;
  color: #f5f7fa !important;
  line-height: 1.4 !important;
  opacity: 0.95 !important;
  text-wrap: pretty !important;
}

/* Image container */
.bold-hero-section .bold-hero-image-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 auto 1.5rem auto !important;
}

.bold-hero-section .bold-hero-image {
  width: clamp(780px, 45vw, 400px) !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0.5rem !important;
}

/* Small screen adjustments */
@media (max-width: 600px) {
  .bold-hero-section .bold-hero-text-container {
    margin-bottom: 1.25rem !important;
  }

  .bold-hero-section .bold-hero-title {
    font-size: clamp(1.75rem, 6vw + 0.25rem, 3rem) !important;
  }

  .bold-hero-section .bold-hero-subtitle {
    font-size: clamp(0.9rem, 3vw + 0.2rem, 1.25rem) !important;
  }

  .bold-hero-section .bold-hero-image {
    width: clamp(150px, 50vw, 250px) !important;
  }
}

/* Unique wrapper so styles are scoped and always override */
.bold-ones-animated .color-transition-text {
  font-size: 40px !important;
  line-height: 1.4 !important;
  text-transform: none !important;
  text-align: center !important;
  letter-spacing: normal !important;
  margin: 0 auto !important;
  color: inherit !important;
  display: block !important;
}

/* Mask behavior */
.bold-ones-animated .mask {
  overflow: hidden !important;
  text-align: center !important;
  /* ensures mask text aligns with content */
}

/* Spacing between reveal lines */
.bold-ones-animated .mask+.mask {
  margin-top: 8px !important;
}

/* Ensure any H3 uppercasing or alignment is disabled */
.bold-ones-animated h3.color-transition-text {
  text-transform: none !important;
  font-weight: normal !important;
  text-align: center !important;
  font-size: 40px !important;
  /* reinforce size on H3 itself */
  line-height: 1.4 !important;
  margin: 0 auto !important;
}

/* Optional: preserve animation visuals */
.bold-ones-animated .text-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Outer wrapper */
.section-background {
  background-image: url('img/banner/12Yearsofbold.png') !important;
  background-size: cover !important;
  /* Makes the image cover the whole section */
  background-position: center !important;
  /* Centers the image */
  background-repeat: no-repeat !important;
  /* Prevents tiling */
}

.jx-section {
  padding: 40px 40px !important;
}

/* fixed unit */
.jx-container {
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}

/* 2 equal columns like col-6, centered, responsive */
.jx-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 40px !important;
}

.jx-item {
  flex: 0 0 48% !important;
  max-width: 48% !important;
  display: flex !important;
  justify-content: center !important;
}

@media (max-width: 991.98px) {
  .jx-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Card block (no color overrides) */
.jx-card {
  width: 100% !important;
  text-decoration: none !important;
}

.jx-card-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  min-height: 280px !important;
  padding: 40px 30px !important;
  border-radius: 18px !important;
}

/* Typography & spacing */
.jx-card-title {
  font-size: 4rem !important;
  margin-bottom: 10px !important;
}

.jx-card-body p {
  margin: 0.3rem 0 !important;
}

.jx-amount {
  font-size: clamp(36px, 5vw, 56px) !important;
  font-weight: 700 !important;
}

/* Countdown inline layout */
.jx-countdown {
  width: 100% !important;
}

.jx-countdown .jx-countdown-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(70px, 1fr)) !important;
  gap: 16px !important;
  align-items: center !important;
  justify-items: center !important;
  margin: 10px 0 6px !important;
}

.jx-countdown .jx-count-box {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.jx-countdown .jx-count-box span {
  font-size: clamp(28px, 4.5vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.jx-countdown .jx-count-box small {
  display: block !important;
  margin-top: 6px !important;
  font-size: 12px !important;
  opacity: 0.9 !important;
}

.jx-countdown .jx-count-label {
  margin-top: 6px !important;
  opacity: 0.9 !important;
}

.jx-countdown .jx-count-status {
  margin-top: 4px !important;
  font-size: 0.95rem !important;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .jx-card-inner {
    padding: 30px 20px !important;
    min-height: 240px !important;
  }

  .jx-card-title {
    font-size: 1.5rem !important;
  }

  .jx-countdown .jx-countdown-row {
    gap: 12px !important;
  }

  .jx-countdown .jx-count-box span {
    font-size: clamp(26px, 6vw, 36px) !important;
  }
}

/* Make items take the full container width inside #services only */
#services .service-list-card,
#services .service-list-card-wrapper {
  width: 100% !important;
}

#services .service-logo-title-wrapper {
  width: 100% !important;
  border-right: 0 !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 30px !important;
}

/* Add vertical spacing between rows */
#services .service-list-card {
  padding: 10px 0 !important;
}

/* Aside CSS for the background section */
.section.section-backgroundss {
  background-image: url('../img/banner/bg-02.png') !important;
  background-size: contain !important;
  /* Show entire image */
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 100% !important;
  min-height: 100vh !important;
  /* smaller height */
  padding: 20px 0 !important;
  /* add top & bottom padding to show image better */
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
}


/* Increase top and bottom padding on small screens (kept same top/bottom) */
@media (max-width: 576px) {
  .section.section-backgroundss {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
}

.services-section {
  /* unified padding comes from global rule above */
  background-image: url('../img/banner/bg-01.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  width: 100% !important;
  min-height: 100vh !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
}

/* Increase top and bottom padding on small screens (kept same top/bottom) */
@media (max-width: 576px) {
  .services-section {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }
}

.timeline-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #ed6623 0%, #ed6623 100%);
  /* unified padding comes from global rule above */
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.timeline-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-header h2 {
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  font-size: 4rem;
}

.timeline-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.9rem;
}

.focus-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  /* 3 columns */
  gap: 30px !important;
  margin-top: 50px !important;
}

.focus-item {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 30px !important;
  border-radius: 20px !important;
  position: relative !important;
  overflow: hidden !important;
  font-size: 3rem !important;
  color: white !important;
}

.focus-item::before {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -50% !important;
  width: 200% !important;
  height: 200% !important;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
  transform: rotate(45deg) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    /* 2 columns on medium screens */
  }
}

@media (max-width: 600px) {
  .focus-grid {
    grid-template-columns: 1fr !important;
    /* 1 column on small screens */
  }
}


.focus-item h3 {
  color: white;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
  position: relative;
}

.focus-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 20px;
  top: 20px;
}

.eligibility-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  margin-top: 60px;
}

.eligibility-box h3 {
  color: white;
  font-size: 3rem;
  margin-bottom: 30px;
}

.eligibility-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.eligibility-item {
  display: flex;
  align-items: start;
  gap: 15px;
  color: white;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 2rem;
}

.eligibility-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Sections wrapper */
.sections {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  /* vertical padding unified globally */
}

/* ======= Section 8 & Section 9 REMOVED as requested ======= */

/* Utility/other sections */
.u-section {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;

  /* Spacing and size */
  min-height: var(--u-min-height);
  padding: 50px 20px;
  /* horizontal kept; vertical unified globally */

  /* Background settings */
  background-color: #fff;
  /* white base color */
  background-image: url('img/banner/bg-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.u-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--u-overlay);
  z-index: -1;
}

.u-section__container {
  width: 100%;
  max-width: var(--u-max-width);
  display: grid;
  place-items: center;
}

.u-section__graphic {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .u-section__graphic {
    max-width: 720px;
    border-radius: 20px;
  }
}

@media (min-width: 1200px) {
  .u-section__graphic {
    max-width: 820px;
  }
}

.purpose-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;

}

.purpose-header {
  text-align: center;
  margin-bottom: 60px;
}

.purpose-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.25);
}

.purpose-header p {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.purpose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.purpose-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
}

.purpose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
}

.purpose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.purpose-icon svg {
  width: 36px;
  height: 36px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.purpose-card h3 {
  font-size: 2rem;
  font-weight: 500;
  color: #1a202c;
  margin-bottom: 15px;
}

.purpose-card p {
  font-size: 1.8rem;
  color: #4a5568;
  line-height: 1.7;
}

/* Responsive text */
@media (max-width: 768px) {
  .purpose-header h1 {
    font-size: 2.2rem;
  }

  .purpose-header p {
    font-size: 1.6rem;
  }

  .purpose-card h3 {
    font-size: 2.2rem;
  }

  .purpose-card p {
    font-size: 1.6rem;
  }
}


.governance-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
}

.governance-section {
  flex: 1;
  min-width: 350px;
  padding: 40px 40px;
  box-sizing: border-box;
}

.governance-section-purple {
  background: linear-gradient(135deg, #6B46C1 0%, #553C9A 100%);
  color: #ffffff;
}

.governance-section-purple h2,
.governance-section-purple p,
.governance-section-purple li,
.governance-section-purple .section-number,
.governance-section-purple .emphasis-text {
  color: #ffffff;
}

.governance-section-white {
  background: #ffffff;
  color: #333;
}

.governance-container {
  max-width: 600px;
  margin: 0 auto;
}

h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #000;
}

.governance-section-white h2 {
  color: #6B46C1;
}

.section-number {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.8;
  letter-spacing: 1px;
}

p,
.content-text,
.emphasis-text {
  font-size: 1.8rem;
  line-height: 1.9;
  margin-bottom: 30px;
  font-weight: 500;
 
}

.bullet-list {
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
}

.bullet-list li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1.9rem;
  line-height: 1.8;
  font-weight: 500;
  color: #fff;
}

.bullet-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
  font-weight: bold;
}


.bullet-lisst {
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
}

.bullet-lists li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
  font-size: 1.9rem;
  line-height: 1.8;
  font-weight: 500;
  color: #000;
}

.bullet-lists li:before {
  content: "▸";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
  font-weight: bold;
}

.governance-section-purple .bullet-list li:before {
  color: #FCD34D;
}

.governance-section-white .bullet-list li:before {
  color: #6B46C1;
}

.governance-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

.governance-section-white .governance-divider {
  background: rgba(107, 70, 193, 0.15);
}

@media (max-width: 1024px) {
  .governance-wrapper {
    flex-direction: column;
  }

  .governance-section {
    padding: 60px 20px;
  }

  h2 {
    font-size: 2.5rem;
  }

  p,
  .content-text,
  .emphasis-text,
  .bullet-list li {
    font-size: 1.4rem;
  }
}