/*Home Page CSS*/
.hero-section {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  /*background-image:
      linear-gradient(90deg, rgba(74, 74, 114, 0.2) 0%, rgba(74, 74, 114, 0.3) 36%, rgba(54, 54, 90, 0.2) 62%, rgba(106, 106, 163, 0.2) 100%),
      linear-gradient(180deg, rgba(53, 53, 97, 0.2) 0%, rgba(71, 71, 124, 0.2) 42%, rgba(73, 73, 133, 0.3) 100%),
      url("../images/hero-banner.jpg");*/
  background-position: center;
  background-size: cover;
}
@media only screen and (max-width: 991px) {
  .hero-section {
    height: auto;
    min-height: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.hero-section.min-90vh {
  height: 90vh;
  min-height: 90vh;
}
.hero-section.min-80vh {
  height: 80vh;
  min-height: 80vh;
}
.hero-section.min-70vh {
  height: 70vh;
  min-height: 70vh;
}
.hero-section.min-60vh {
  height: 60vh;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 76%, rgba(18, 33, 52, 0.9), transparent 32%), linear-gradient(90deg, rgba(5, 14, 28, 0.2), transparent 48%);
  pointer-events: none;
}
.hero-section.cii-life {
  background-image: linear-gradient(90deg, rgba(74, 74, 114, 0.4) 0%, rgba(74, 74, 114, 0.3) 36%, rgba(54, 54, 90, 0.6) 62%, rgba(106, 106, 163, 0.3) 100%), linear-gradient(180deg, rgba(53, 53, 97, 0.4) 0%, rgba(71, 71, 124, 0.3) 42%, rgba(73, 73, 133, 0.4) 100%), url(../images/ciii-life-bg-img-compressed.jpg);
}
.hero-section.cii-life::before {
  display: none;
}
.hero-section .hero-content {
  padding-top: 78px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
}
.hero-section .hero-content.pb-20 {
  padding-bottom: 20px;
}
.hero-section .hero-content .hero-copy {
  width: min(100%, 760px);
}
.hero-section .hero-content .hero-copy h1 {
  margin: 0;
  color: var(--paper);
  font-size: var(--fs-6xl);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.5px;
}
.hero-section .hero-content .hero-copy h1 span {
  position: relative;
  display: inline-block;
  margin-left: 124px;
  color: var(--brand-gold);
}
.hero-section .hero-content .hero-copy h1 span::before {
  content: "";
  position: absolute;
  top: 55%;
  right: calc(100% + 32px);
  width: 112px;
  height: 1px;
  /* Updated gradient here */
  background: linear-gradient(90deg, transparent, #f0cf66, #8c690f);
}
.hero-section .hero-content .hero-copy p {
  width: min(100%, 568px);
  margin: 20px 0 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
}
.hero-section .hero-content .hero-copy p.mt-20 {
  margin-top: 20px;
}
.hero-section .hero-content .hero-copy p.mb-10 {
  margin-bottom: 10px;
}
.hero-section .hero-content .partner-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 35px;
  margin-bottom: 14px;
  padding: 0 18px;
  border-radius: 999px;
  color: #d7b659;
  background: rgba(12, 24, 42, 0.78);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.hero-section .hero-content .partner-pill.outline {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--brand-gold-light);
  padding: 10px 35px;
  box-shadow: none;
}
.hero-section .hero-content .partner-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gold-light);
  box-shadow: 0 0 0 4px rgba(240, 207, 102, 0.12);
}
.hero-section .hero-content.align-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-section .hero-content.align-center .hero-copy h1 {
  font-size: var(--fs-8xl);
  font-family: "Playfair Display", serif;
}
.hero-section .hero-content.align-center .hero-copy h1 span {
  margin-left: 0;
}
.hero-section .hero-content.align-center .hero-copy h1 span::before {
  display: none;
  content: none;
}
.hero-section .hero-content.align-center .hero-copy p {
  width: auto;
  text-align: center;
}
.hero-section .stat-numbers {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-inline: auto; /* Centers container horizontally in hero */
  width: min(100%, 500px);
}
.hero-section .stat-numbers .stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hero-section .stat-numbers .stat-grid .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centers text horizontally */
  justify-content: center; /* Centers text vertically */
  text-align: center;
  position: relative;
  /* !* Vertical divider line between stat items *!
   &:not(:last-child)::after {
       content: "";
       position: absolute;
       right: -0.75rem; !* Offsets line inside grid gap *!
       top: 15%;
       height: 70%;
       width: 1px;
       background: rgba(255, 255, 255, 0.15);
   }*/
}
.hero-section .stat-numbers .stat-grid .stat-item .stat-num {
  color: var(--brand-gold);
  font-family: "Playfair Display", serif;
  font-size: var(--fs-5xl);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 0.35rem;
  white-space: nowrap;
}
.hero-section .stat-numbers .stat-grid .stat-item .stat-label {
  margin-top: 10px;
  font-size: var(--fs-sm);
  color: #dddddd; /* Slightly softened white for better readability */
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-section .hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.hero-section .hero-actions .btn-programmes {
  min-width: 225px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--theme-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.hero-section .hero-actions .btn-programmes:hover {
  color: var(--text-dark);
  border-color: rgba(255, 255, 255, 0.45);
  background: var(--brand-purple-xlight);
}

.hero-section {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 100px);
}

/* Background Carousel Styling */
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Base style for every slide with your linear gradient stack */
.hero-carousel .carousel-item {
  background-position: center;
  background-size: cover;
  transition: transform 0.8s ease-in-out;
}

/* Multi-layer gradient background applied over each image */
.hero-carousel .carousel-item {
  /* Dynamic image passed via inline style combined with your linear gradients */
  /*background-image:
      linear-gradient(90deg, rgba(74, 74, 114, 0.2) 0%, rgba(74, 74, 114, 0.3) 36%, rgba(54, 54, 90, 0.2) 62%, rgba(106, 106, 163, 0.2) 100%),
      linear-gradient(180deg, rgba(53, 53, 97, 0.2) 0%, rgba(71, 71, 124, 0.2) 42%, rgba(73, 73, 133, 0.3) 100%),
      url("{{ asset('images/hero-banner.jpg') }}");*/
}

/* Radial & side gradient overlays for all images */
.hero-carousel .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 5% 90%, rgba(18, 33, 52, 0.9), transparent 72%), linear-gradient(90deg, rgba(5, 14, 28, 0.2), transparent 78%);
  pointer-events: none;
}

/* Keep text content above slides */
.hero-content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.hero-content a,
.hero-content button {
  pointer-events: auto;
}

/* Right-aligned Navigation Controls */
.carousel-controls-right {
  /*position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 12px;
  @media (max-width: 768px) {
      left: 50%;
      right: auto;
      bottom: 10px;
      margin-left: -50px;
  }*/
}

.carousel-control-left-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  bottom: 80px;
  left: 40px;
  z-index: 3;
  display: flex;
  gap: 12px;
  top: 50%;
}
@media (max-width: 768px) {
  .carousel-control-left-btn {
    left: 20px;
    right: auto;
    bottom: 10px;
    margin-left: -50px;
  }
}

.carousel-control-right-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 3;
  display: flex;
  gap: 12px;
  top: 50%;
}
@media (max-width: 768px) {
  .carousel-control-right-btn {
    left: 50%;
    right: auto;
    bottom: 10px;
    margin-left: -50px;
  }
}

.carousel-control-left-btn:hover, .carousel-control-right-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.about-section {
  padding: 25px 0;
  /*.ambient-glow {
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(30, 58, 95, 0.3) 0%, transparent 70%);
  }*/
  /* Glassmorphism Cards */
}
.about-section .section-desc {
  color: var(--theme-black);
  line-height: 1.3;
  text-align: justify;
}
.about-section .glass-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
}
.about-section .glass-card.card-hover {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.about-section .glass-card.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.about-section .glass-card .stat-number {
  color: var(--brand-gold-light);
  font-family: "Playfair Display", sans-serif;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--fs-6xl);
}
.about-section .bg-accent-subtle {
  border: 1px solid #e6e6e6;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.about-section .bg-accent-subtle:hover {
  background: #f6f6f6;
  cursor: pointer;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=home.css.map */
