

/* 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: -40px !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;
  }
}

 /* Gallery Styles */
         .fancy__gallery__wrapper {
         min-height: 100vh;
         background: #000;
         padding: 60px 0;
         position: relative;
         overflow: hidden;
         }
         .fancy__gallery__title {
         text-align: center;
         margin-bottom: 60px;
         position: relative;
         z-index: 2;
         }
         .fancy__gallery__title h2 {
         font-size: 4rem;
         font-weight: 700;
         color: #fff;
         margin-bottom: 20px;
         text-transform: uppercase;
         letter-spacing: 2px;
         }
         .fancy__gallery__title p {
         color: #999;
         font-size: 1.2rem;
         }
         .fancy__gallery__grid {
         display: grid;
         grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
         gap: 20px;
         padding: 0 40px;
         max-width: 1600px;
         margin: 0 auto;
         }
         .fancy__gallery__item {
         position: relative;
         overflow: hidden;
         border-radius: 12px;
         cursor: pointer;
         aspect-ratio: 1;
         background: #111;
         opacity: 0;
         transform: translateY(30px);
         transition: opacity 0.6s ease, transform 0.6s ease;
         }
         .fancy__gallery__item.fancy__loaded {
         opacity: 1;
         transform: translateY(0);
         }
         .fancy__gallery__item:hover .fancy__gallery__img {
         transform: scale(1.1);
         }
         .fancy__gallery__item:hover .fancy__gallery__info {
         opacity: 1;
         }
         .fancy__gallery__img {
         width: 100%;
         height: 100%;
         object-fit: cover;
         transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
         will-change: transform;
         }
         .fancy__gallery__overlay {
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
         opacity: 1;
         pointer-events: none;
         display: flex;
         flex-direction: column;
         justify-content: flex-end;
         padding: 20px;
         }
         .fancy__gallery__actions {
         display: flex;
         justify-content: flex-start;
         gap: 10px;
         margin-bottom: 10px;
         pointer-events: auto;
         }
         .fancy__gallery__download {
         position: absolute;
         right: 16px;
         bottom: 16px;   /* 👈 pushes it down */
         background: transparent;
         border: none;
         border-radius: 0;
         width: 40px;
         height: 40px;
         display: flex;
         align-items: center;
         justify-content: center;
         cursor: pointer;
         transition: all 0.3s ease;
         opacity: 1;
         z-index: 10;
         }
         .fancy__gallery__download:hover {
         transform: scale(1.2);
         }
         .fancy__gallery__download svg {
         width: 28px;
         height: 28px;
         color: #fff;
         stroke-width: 2.5;
         filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8));
         }
         /* Optional: more breathing room on mobile */
         @media (max-width: 768px) {
         .fancy__gallery__download {
         right: 12px;
         bottom: 12px;
         }
         }
         .fancy__gallery__info {
         opacity: 0;
         transition: opacity 0.4s ease;
         }
         .fancy__gallery__item:hover .fancy__gallery__info {
         opacity: 1;
         }
         .fancy__gallery__info h3 {
         color: #fff;
         font-size: 1.3rem;
         margin-bottom: 8px;
         font-weight: 600;
         }
         .fancy__gallery__info p {
         color: #ddd;
         font-size: 0.95rem;
         }
         /* Lightbox Styles */
         .fancy__lightbox {
         display: none;
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background: rgba(0, 0, 0, 0.95);
         z-index: 10000;
         justify-content: center;
         align-items: center;
         animation: fancy__fadeIn 0.3s ease;
         }
         .fancy__lightbox.fancy__active {
         display: flex;
         }
         @keyframes fancy__fadeIn {
         from { opacity: 0; }
         to { opacity: 1; }
         }
         .fancy__lightbox__content {
         max-width: 90%;
         max-height: 90%;
         position: relative;
         animation: fancy__zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
         }
         @keyframes fancy__zoomIn {
         from {
         transform: scale(0.8);
         opacity: 0;
         }
         to {
         transform: scale(1);
         opacity: 1;
         }
         }
         .fancy__lightbox__img {
         max-width: 100%;
         max-height: 90vh;
         border-radius: 8px;
         box-shadow: 0 20px 60px rgba(0,0,0,0.5);
         }
         .fancy__lightbox__close {
         position: absolute;
         top: -50px;
         right: 0;
         color: #fff;
         font-size: 40px;
         cursor: pointer;
         background: transparent;
         border: none;
         padding: 10px;
         transition: transform 0.3s ease;
         }
         .fancy__lightbox__close:hover {
         transform: rotate(90deg);
         }
         .fancy__lightbox__nav {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         color: #fff;
         font-size: 50px;
         cursor: pointer;
         background: rgba(255,255,255,0.1);
         border: none;
         padding: 20px;
         border-radius: 50%;
         transition: all 0.3s ease;
         backdrop-filter: blur(10px);
         }
         .fancy__lightbox__nav:hover {
         background: rgba(255,255,255,0.2);
         transform: translateY(-50%) scale(1.1);
         }
         .fancy__lightbox__prev {
         left: 30px;
         }
         .fancy__lightbox__next {
         right: 30px;
         }
         .fancy__lightbox__caption {
         text-align: center;
         color: #fff;
         margin-top: 20px;
         font-size: 1.1rem;
         }
         /* Loading Animation */
         .fancy__loader {
         text-align: center;
         padding: 40px;
         display: none;
         }
         .fancy__loader.fancy__visible {
         display: block;
         }
         .fancy__loader__spinner {
         border: 4px solid #333;
         border-top: 4px solid #fff;
         border-radius: 50%;
         width: 50px;
         height: 50px;
         animation: fancy__spin 1s linear infinite;
         margin: 0 auto;
         }
         @keyframes fancy__spin {
         0% { transform: rotate(0deg); }
         100% { transform: rotate(360deg); }
         }
         /* Floating Background Elements */
         .fancy__bg__circle {
         position: absolute;
         border-radius: 50%;
         background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
         pointer-events: none;
         animation: fancy__float 20s infinite ease-in-out;
         }
         .fancy__bg__circle:nth-child(1) {
         width: 300px;
         height: 300px;
         top: 10%;
         left: 5%;
         animation-delay: 0s;
         }
         .fancy__bg__circle:nth-child(2) {
         width: 200px;
         height: 200px;
         bottom: 20%;
         right: 10%;
         animation-delay: 5s;
         }
         .fancy__bg__circle:nth-child(3) {
         width: 250px;
         height: 250px;
         top: 50%;
         right: 20%;
         animation-delay: 10s;
         }
         @keyframes fancy__float {
         0%, 100% { transform: translateY(0) translateX(0); }
         25% { transform: translateY(-30px) translateX(20px); }
         50% { transform: translateY(-50px) translateX(-20px); }
         75% { transform: translateY(-30px) translateX(10px); }
         }
         /* Responsive */
         @media (max-width: 768px) {
         .fancy__gallery__title h2 {
         font-size: 2.5rem;
         }
         .fancy__gallery__grid {
         grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
         gap: 10px;
         padding: 0 20px;
         }
         .fancy__lightbox__nav {
         font-size: 30px;
         padding: 10px;
         }
         .fancy__lightbox__prev {
         left: 10px;
         }
         .fancy__lightbox__next {
         right: 10px;
         }
         .fancy__lightbox__close {
         top: 10px;
         right: 10px;
         }
         }



/* === Unique Section Base === */
.bold-hero {
  background: radial-gradient(circle at top, #101025, #060613);
  color: #fff;
  text-align: center;
  padding: 10rem 2rem 6rem; /* ⬆️ Added more top space */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;

}

.bold-hero__inner {
  max-width: 1350px;
  width: 100%;
  z-index: 2;

}

/* === Title and Subtitle === */
.bold-hero__title {
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.1;
  margin-top: 4rem; /* ⬇️ Pushes title down more */
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  background: linear-gradient(90deg, #ff69b4, #ffa600, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bold-hero__subtitle {
  font-size: 1.9rem;
  opacity: 0.8;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* === Video Wrapper === */
.bold-hero__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  background: #000;
  transition: transform 0.4s ease;
  border-radius: 20px;
}

.bold-hero__video-wrapper:hover {
  transform: scale(1.02);
}

/* === Thumbnail + Play Button === */
.bold-hero__video-thumb {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.bold-hero__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.3s ease;
}

.bold-hero__video-thumb:hover img {
  filter: brightness(0.95);
}

.bold-hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.1);
  border: 3px solid rgba(255,255,255,0.7);
  color: white;
  font-size: 3rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.bold-hero__play-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%) scale(1.1);
}

/* === Video Frame === */
.bold-hero__video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0; /* ❌ sharp edges */
}



.bold-gallery-section {
    max-width: 1400px;
    margin: 0 auto 40px;
}

.bold-section-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(45deg, #ff6b00, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === FIXED GRID (4 IMAGES PER ROW) === */
.bold-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.bold-grid-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
}

.bold-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.bold-grid-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.bold-grid-card:hover::before {
    opacity: 0;
}

.bold-card-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}
.bold-card-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* makes the image fit perfectly */
    display: block;
}


.bold-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bold-action-btn {
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    border: 3px solid;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.bold-btn-primary {
    background-color: #ff6b00;
    color: white;
    border-color: #ff6b00;
}

.bold-btn-primary:hover {
    background-color: white;
    color: #ff6b00;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.bold-btn-secondary {
    background-color: white;
    color: #ff6b00;
    border-color: white;
}

.bold-btn-secondary:hover {
    background-color: #ff6b00;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Popup Modal Styles */
.bold-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    animation: boldFadeIn 0.3s ease;
}

.bold-lightbox-overlay.bold-lightbox-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes boldFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.bold-lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: boldZoomIn 0.3s ease;
}

@keyframes boldZoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.bold-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.5);
}

.bold-lightbox-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 1001;
}

.bold-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 107, 0, 0.9);
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.bold-control-btn:hover {
    background: #ff6b00;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
}

.bold-close-icon {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b00;
}

.bold-close-icon:hover {
    background: white;
}

.bold-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 107, 0, 0.9);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.bold-nav-arrow:hover {
    background: #ff6b00;
    transform: translateY(-50%) scale(1.1);
}

.bold-arrow-prev {
    left: 20px;
}

.bold-arrow-next {
    right: 20px;
}

.bold-image-title {
    text-align: center;
    margin-top: 20px;
    font-size: 1.2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.bold-image-progress {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 107, 0, 0.9);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    backdrop-filter: blur(10px);
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1024px) {
    .bold-image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bold-gallery-section {
        padding: 30px 10px;
        margin-bottom: 60px;
    }

    .bold-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .bold-action-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .bold-lightbox-controls {
        top: 10px;
        right: 10px;
        gap: 10px;
    }

    .bold-control-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .bold-nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .bold-arrow-prev {
        left: 10px;
    }

    .bold-arrow-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .bold-image-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .bold-section-heading {
        margin-bottom: 30px;
    }

    .bold-lightbox-container {
        max-width: 95%;
    }
}
