:root {
  --bs-primary: #091f5b;
  --bs-primary-rgb: 9, 31, 91;
  --bs-accent: #4cc9f0;
  --bs-accent-yellow: #FFD700;
  --bs-body-bg: #f8f9fa;
  --bs-body-font-family: 'Outfit', sans-serif;
  --bs-background-dark: #0d1012;
}

body {
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1,
h2,
h3,
.font-serif {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-weight: 900;
}

h2 {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
}

h3 {
  font-weight: 700;
}

.text-primary {
  color: #091f5b !important;
}

.bg-primary {
  background-color: #091f5b !important;
}

.btn-primary {
  background-color: #091f5b;
  border-color: #091f5b;
}

/* Navbar */
.navbar {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.nav-link {
  font-weight: 500;
  color: #444;
}

.nav-link.active,
.nav-link:hover {
  color: var(--bs-primary) !important;
}

/* Hero Carousel */

/* Hero Carousel - Premium Overhaul */
.hero-carousel-img {
  height: 80vh;
  min-height: 600px;
  object-fit: cover;
}

.carousel-caption-custom {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.editorial-layout {
  text-align: left;
  max-width: 800px;
  padding-left: 5%;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

.hero-tagline {
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bs-accent);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::after {
  content: '';
  height: 1px;
  width: 50px;
  background: var(--bs-accent);
}

.hero-title-premium {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
}

.hero-desc-premium {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  border-left: 2px solid var(--bs-accent);
  padding-left: 20px;
  margin-bottom: 3rem;
  max-width: 500px;
}

/* Slide Specific Refinements */
.hero-slide-1 {
  background: linear-gradient(to right, rgba(9, 31, 91, 0.95) 0%, rgba(9, 31, 91, 0.6) 50%, transparent 100%);
}

.hero-slide-2 {
  background: linear-gradient(to right, rgba(13, 18, 18, 0.95) 0%, rgba(13, 18, 18, 0.6) 50%, transparent 100%);
}

.hero-slide-3 {
  background: linear-gradient(to right, rgba(30, 27, 24, 0.95) 0%, rgba(30, 27, 24, 0.6) 50%, transparent 100%);
}

/* Animations */
.carousel-item.active .hero-animate-up {
  animation: slideUpFade 1s both;
}

.carousel-item.active .hero-animate-scale {
  animation: scaleFade 1.2s both;
}

.hero-delay-1 {
  animation-delay: 0.2s;
}

.hero-delay-2 {
  animation-delay: 0.4s;
}

.hero-delay-3 {
  animation-delay: 0.6s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-10px) translateX(-50%);
  }

  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Animations Refined */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleFade {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Feature Strip */
.feature-strip {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(76, 201, 240, 0.1);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Custom Buttons */
.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  padding: 0.8rem 2rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b2670;
  border-color: #0b2670;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(9, 31, 91, 0.2);
}

.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
  padding: 0.8rem 2rem;
}

.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  color: white;
}

/* Express Section */
.express-section {
  background-color: var(--bs-background-dark);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  color: white;
}

.express-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(9, 31, 91, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

/* Countdown Timer */
.countdown-container {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.countdown-item {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-number {
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -2px;
}

.countdown-label {
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Service Cards */
.service-card {
  border: none;
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* How It Works - Premium Editorial */
.process-section {
  position: relative;
  overflow: hidden;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-card {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: white;
  border-radius: 2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  z-index: 1;
}

.process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -12px rgba(9, 31, 91, 0.12);
  border-color: rgba(76, 201, 240, 0.3);
}

.process-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(76, 201, 240, 0.08);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  transition: all 0.3s ease;
}

.process-card:hover .process-icon-box {
  background: var(--bs-primary);
  color: white;
  transform: rotate(-5deg) scale(1.1);
}

.process-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.process-path {
  position: absolute;
  top: 45%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(to right, transparent, transparent 10px, rgba(76, 201, 240, 0.2) 10px, rgba(76, 201, 240, 0.2) 20px);
  z-index: 0;
}

/* Steps - Legacy removal or override */
.step-card {
  display: none;
  /* Hide old cards if any remain */
}

/* Testimonials */
.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  height: 100%;
}

.stars {
  color: #FFD700;
  letter-spacing: -2px;
}

/* Locations */
.location-card {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  height: 300px;
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

/* Utilities */
.text-accent {
  color: var(--bs-accent) !important;
}

.bg-soft-blue {
  background-color: #f0f7ff;
}

.object-fit-contain {
  object-fit: contain;
}

.object-fit-cover {
  object-fit: cover;
}

.hover-scale {
  transition: transform 0.2s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(9, 31, 91, 0.05);
  border: 1px solid rgba(9, 31, 91, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  color: #091f5b;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.section-title {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.section-desc {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
  font-size: 1.1rem;
}

.breadcrumb-strip {
  background: #fdfdfd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "»";
  color: #ccc;
  font-size: 1rem;
  padding: 0 0.75rem;
}

.glass-cta-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2.5rem;
  padding: 4rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(9, 31, 91, 0.15);
}

.bg-premium-gradient {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/bg_cta.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.bg-premium-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(76, 201, 240, 0.1) 0%, rgba(9, 31, 91, 0) 60%);
  transform: rotate(-15deg);
  pointer-events: none;
}

@media (max-width: 768px) {
  .countdown-number {
    font-size: 2rem;
  }
}
#floatingDonationBtn{
    z-index:999;
}
.add-banner-icon {
    position: absolute;
    top: -25px;
    right: -25px;
    z-index: 99;
}
.add-banner-icon span {
    font-size:100px;
}