/* =========================================================
   IBP SCHOOL — MAIN STYLESHEET
   Author: IBP Web Team
   Description: Premium, accessible, mobile-first design
   ========================================================= */

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
    --primary:       #691524;       /* Deep Burgundy / Maroon */
    --primary-dark:  #4b0e19;
    --primary-light: #942a3d;
    --accent:        #fdfdfd;       /* Crisp White/Cream */
    --accent-dark:   #424242;
    --dark:          #0e1a14;
    --text:          #2d3b36;
    --text-muted:    #5f7069;
    --bg-light:      #f4f8f6;
    --bg-white:      #ffffff;
    --border:        #dde8e3;

    --font-display:  'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body:     'DM Sans', system-ui, sans-serif;

    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     24px;
    --radius-xl:     40px;

    /* Maroon base color transitions for smooth shadow integration */
    --shadow-sm:     0 2px 12px rgba(105, 21, 36, 0.06);
    --shadow-md:     0 8px 32px rgba(105, 21, 36, 0.10);
    --shadow-lg:     0 16px 64px rgba(105, 21, 36, 0.14);

    --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Glassmorphism Configuration */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.6);
}

/* ── RESETS & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}
.service-card:hover ul {
    color: rgba(255, 255, 255, 0.8);
}
/* --- GLOBAL PREMIUM COMPONENTS --- */
        .section-padding {
            padding: 100px 0;
        }

/* ── UTILITY CLASSES ────────────────────────────────────── */
.section-pad       { padding: 100px 0; }
.text-accent       { color: #ffbc00fc; }

/* Section Labels */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(244,161,48,0.12);
  margin-bottom: 16px;
}
.section-label.light { color: var(--accent); background: rgba(244,161,48,0.2); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-heading em {
  font-style: italic;
  color: var(--primary);
}
.section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 12px;
}
.section-body  {
  color: var(--text-muted);
  margin-bottom: 10px;
}
p.section-body {
    text-align: justify;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,74,0.3);
}
.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--primary-dark);
  padding: 8px 0;
  z-index: 1100;
}
.topbar-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
}
.donate-btn {
  background: var(--primary);
  color: var(--bg-white);
}
.donate-btn:hover { background: var(--accent-dark); color: var(--bg-white); }

.contact-btn {
    color: #590202d9;
    border: 1px solid rgb(77 3 3 / 30%);
    background: rgb(255, 255, 255);
}
.btn--primary {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(133, 11, 11, .3);
}
.contact-btn:hover { color: #590202d9; border-color: #590202d9; background: rgb(255, 255, 255); }

h2.apply-head {
    text-align: start;
    color: white;
}
p.apply-text {
    color: white;
    text-align: start;
}
.apply-btn {
    font-size: 20px;
    padding: 15px 35px 15px 35px;
}
.apply-btn:hover {
    color: #ffffffd9;
    border: 1px solid #ffffffd9;
    background: #590202d9;
}


/* ── NAVBAR ─────────────────────────────────────────────── */

.logo-main {
    width: 100px;
}
#mainNav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  z-index: 1050;
}
#mainNav.scrolled {
  padding: 4px 0;
  box-shadow: var(--shadow-md);
}

/* Logo */
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.logo-icon:hover { background: var(--primary-dark); }
.logo-text { line-height: 1.1; }
.logo-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--dark);
}
.logo-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Nav Links */
.navbar-nav .nav-link {
  /*font-weight: 500;*/
  font-size: 0.93rem;
  color: black !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-fast);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 60%; }
.navbar-nav .nav-link:hover { color: var(--primary) !important; background: var(--bg-light); }
.navbar-nav .nav-link.active { color: var(--primary) !important; }

/* Dropdown */
/* .dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 8px;
  animation: dropFade 0.25s ease;
  min-width: 220px;
  border-top: 3px solid var(--primary);
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition-fast);
}
.dropdown-item:hover { background: var(--bg-light); color: var(--primary); } */
/* Hover Dropdown */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Optional Smooth Effect */
.dropdown-menu {
  display: none;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 8px;
  animation: dropFade 0.25s ease;
  min-width: 220px;
  border-top: 3px solid var(--primary);
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--bg-light);
  color: var(--primary);
}

/* Hamburger */
.navbar-toggler { border: none; padding: 4px; outline: none !important; box-shadow: none !important; }
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger-icon span {
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-cta { font-size: 0.9rem; padding: 10px 22px; }

/* ── HERO SECTION ───────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}

.hero-slide {
  position: relative;
  height: 90vh;
  min-height: 600px;
  max-height: 800px;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slick-current .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,26,20,0.82) 0%,
    rgba(14,26,20,0.5) 60%,
    rgba(14,26,20,0.3) 100%
  );
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}
.slide-inner { max-width: 680px; }
.slide-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(244,161,48,0.5);
  border-radius: 100px;
  margin-bottom: 24px;
}
.slide-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.slide-heading em {
  font-style: italic;
  color: var(--accent);
}
.slide-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.slide-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Slick slider dots & arrows overrides */
.hero-slider .slick-dots {
  bottom: 28px;
}
.hero-slider .slick-dots li button::before {
  color: rgba(255,255,255,0.6);
  font-size: 10px;
}
.hero-slider .slick-dots li.slick-active button::before { color: var(--accent); }
.hero-slider .slick-prev,
.hero-slider .slick-next {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  z-index: 5;
  transition: var(--transition-fast);
}
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover { background: var(--primary); border-color: var(--primary); }
.hero-slider .slick-prev { left: 4px; }
.hero-slider .slick-next { right: 4px; }
.hero-slider .slick-prev::before,
.hero-slider .slick-next::before { font-size: 18px; }
.slick-dots li button:before {
    font-size: 14px;
    line-height: 20px;
}

/* Slide entrance animation */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  animation: revealUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 5;
}
.scroll-indicator span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  border-radius: 2px;
  animation: scrollPulse 1.8s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ── STATS RIBBON ───────────────────────────────────────── */
.stats-ribbon {
  background: var(--primary);
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.stats-ribbon::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.stat-item {
  text-align: center;
  padding: 16px;
  position: relative;
  color: #fff;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat-number {
  /*font-family: var(--font-display);*/
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.stat-plus { font-size: 1.6rem; font-weight: 700; color: var(--accent); }
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin: 8px 0 0;
}

/* ── ABOUT SECTION ──────────────────────────────────────── */
.about-section { background: var(--bg-white); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 28px; left: -20px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.about-badge i { font-size: 1.4rem; }
.about-float-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.4;
  border-left: 4px solid var(--primary);
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--primary); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }

/* Reveal animations */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}
.reveal-up[data-scroll] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  animation: none;
}

/* ── SCHOOLS SECTION ────────────────────────────────────── */
.schools-section { background: var(--bg-light); }

.school-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.school-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.school-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.school-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.school-card:hover .school-card-img img { transform: scale(1.06); }
.school-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,26,20,0.5), transparent);
}
.school-card-body { padding: 32px; }
.school-icon {
  width: 56px; height: 56px;
  background: rgba(26,107,74,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition-fast);
}
.school-card:hover .school-icon { background: var(--primary); color: #fff; }
.school-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}
.school-card-body p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }

/* ── SERVICES SECTION ───────────────────────────────────── */
.services-section { background: var(--bg-white); }

.service-card {
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-dark);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card > * { position: relative; z-index: 1; }

.service-icon-wrap {
  width: 64px; height: 64px;
  background: rgb(255 255 255 / 13%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bg-white);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgb(255 255 255 / 22%); color: #fff; }
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--bg-white);
  transition: var(--transition-fast);
}
ul.service-points {
    color: white;
}
.service-card:hover h4 { color: #fff; }
.service-card p { font-size: 0.92rem; color: var(--bg-white); transition: var(--transition-fast); line-height: 1.6; }
.service-card:hover p { color: rgba(255,255,255,0.8); }
.service-arrow {
  margin-top: 20px;
  font-size: 1.4rem;
  color: var(--primary);
  transition: var(--transition-fast);
}
.service-card:hover .service-arrow { color: var(--accent); transform: translateX(4px); }
.service-card--highlight {
  border-color: var(--accent);
  background: rgba(244,161,48,0.05);
}

/* Scroll-animated reveal-up without animation (JS-driven) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0s);
}
[data-reveal].in-view { opacity: 1; transform: none; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--bg-light); }

/* Video banner */
.video-testimonial-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
}
.video-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.6s ease;
}
.video-testimonial-banner:hover .video-banner-bg { transform: scale(1); }
.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(78 15 26 / 84%), rgb(0 0 0 / 84%));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 24px;
}
.play-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(244,161,48,0.5));
  animation: pulsePop 2s ease infinite;
}
@keyframes pulsePop {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.video-banner-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.video-banner-overlay p { opacity: 0.8; font-size: 0.95rem; }

/* Testimonial Slider */
.testimonial-slider { padding-bottom: 20px; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  margin: 12px;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--primary);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars { color: var(--accent); font-size: 0.9rem; }
.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
}
.testimonial-text::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: -20px; left: -10px;
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
}
.testimonial-author strong { display: block; font-weight: 600; color: var(--dark); }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }

/* Testimonial slick dots */
.testimonial-slider .slick-dots { bottom: -30px; }
.testimonial-slider .slick-dots li button::before { color: #707070; }
.testimonial-slider .slick-dots li.slick-active button::before { color: var(--primary); }

/* ── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0 0 0 / 90%), rgb(105 21 36 / 73%));
}
.cta-content { position: relative; z-index: 2; }
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-heading em { font-style: italic; color: var(--accent); }
.cta-subtext { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }

/* ---- APPLY NOW-------------------------------- */
.apply-now {
    padding: 40px;
    background: #5E1421;
    text-align: center;
}
.apply-btn {
    background: white !important;
    color: black !important;
    border: 1px solid white !important;
}
.connect-btn a.btn-header.btn-header--solid.apply-btn {
    font-size: 20px;
}
/* ---- CONTACT ----------------------------------------- */
/*.contact__grid {*/
/*  display: grid;*/
/*  grid-template-columns: 1fr 1fr;*/
/*  gap: 80px;*/
/*  align-items: start;*/
/*}*/
/*.contact__para {*/
/*  color: var(--text-mid);*/
/*  line-height: 1.8;*/
/*  margin-bottom: 28px;*/
/*  font-size: 1.02rem;*/
/*}*/
/*.contact__details {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 14px;*/
/*  margin-bottom: 36px;*/
/*}*/
/*.contact__detail {*/
/*  display: flex;*/
/*  align-items: flex-start;*/
/*  gap: 6px;*/
/*  font-size: .93rem;*/
/*  color: var(--text-mid);*/
/*  line-height: 1.5;*/
/*}*/
/*.contact__detail_phone {*/
/*  font-size: .93rem;*/
/*  color: var(--text-mid);*/
/*  line-height: 1.5;*/
/*}*/
/*.contact__detail span { flex-shrink: 0; }*/
/*.contact__map-wrap {*/
/*  width: 100%;*/
/*  border-radius: var(--radius);*/
/*  overflow: hidden;*/
/*  box-shadow: var(--shadow-md);*/
/*  border: 1px solid var(--border);*/
/*  line-height: 0;*/
/*}*/
/*.contact__map {*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: 120px;*/
/*  border: 4px solid #ffffff;*/
/*  border-radius: var(--radius);*/
/*}*/
/*.contact__form-wrap {*/
/*  background: var(--silver);*/
  /* border-radius: var(--radius); */
/*  padding: 44px 40px;*/
  /* box-shadow: var(--shadow-sm); */
/*  border-radius: 30px;*/
/*  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;*/
/*}*/
/*.contact__form {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 22px;*/
/*}*/
/*.form-group {*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 8px;*/
/*}*/
/*.form-group label {*/
/*  font-size: .85rem;*/
/*  font-weight: 600;*/
/*  color: var(--text);*/
/*  letter-spacing: .02em;*/
/*}*/
/*.form-group input,*/
/*.form-group textarea {*/
/*  font-family: var(--font-body);*/
/*  font-size: .93rem;*/
/*  color: var(--text);*/
/*  background: var(--white);*/
/*  border: 1.5px solid var(--border);*/
/*  border-radius: 10px;*/
/*  padding: 12px 16px;*/
/*  outline: none;*/
/*  transition: border-color .25s;*/
/*  resize: vertical;*/
/*  width: 100%;*/
/*}*/
/*.form-group input:focus,*/
/*.form-group textarea:focus {*/
/*  border-color: var(--accent);*/
/*  box-shadow: 0 0 0 3px rgba(133,11,11,.1);*/
/*}*/
/*.form-group input::placeholder,*/
/*.form-group textarea::placeholder {*/
/*  color: #b0b0b0;*/
/*}*/

/* ---- CONTACT RESPONSIVE ----------------------------------------- */

/*@media (max-width: 991px) {*/

/*  .contact__grid {*/
/*    grid-template-columns: 1fr;*/
/*    gap: 50px;*/
/*  }*/

/*  .contact__form-wrap {*/
/*    padding: 35px 28px;*/
/*  }*/

/*}*/

/*@media (max-width: 767px) {*/

/*  .contact.section {*/
/*    overflow: hidden;*/
/*  }*/

/*  .contact__grid {*/
/*    gap: 40px;*/
/*  }*/

/*  .contact__form-wrap {*/
/*    padding: 28px 20px;*/
/*    border-radius: 22px;*/
/*  }*/

/*  .section-heading {*/
/*    font-size: 2rem;*/
/*    line-height: 1.2;*/
/*  }*/

/*  .contact__para {*/
/*    font-size: .95rem;*/
/*    line-height: 1.7;*/
/*  }*/

/*  .contact__detail,*/
/*  .contact__detail_phone {*/
/*    font-size: .9rem;*/
/*    line-height: 1.7;*/
/*    word-break: break-word;*/
/*  }*/

/*  .contact__detail a,*/
/*  .contact__detail_phone a {*/
/*    display: inline-block;*/
/*    margin-bottom: 4px;*/
/*  }*/

/*  .form-group input,*/
/*  .form-group textarea {*/
/*    padding: 12px 14px;*/
/*    font-size: .92rem;*/
/*  }*/

/*  .btn--full {*/
/*    width: 100%;*/
/*  }*/

/*}*/

/*@media (max-width: 480px) {*/

/*  .contact__form-wrap {*/
/*    padding: 24px 16px;*/
/*    border-radius: 18px;*/
/*  }*/

/*  .section-heading {*/
/*    font-size: 1.7rem;*/
/*  }*/

/*  .contact__details {*/
/*    gap: 12px;*/
/*  }*/

/*  .contact__detail,*/
/*  .contact__detail_phone {*/
/*    font-size: .85rem;*/
/*  }*/

/*}*/
/*.contact__detail_phone {*/
/*  display: flex;*/
/*  flex-wrap: wrap;*/
/*  gap: 5px;*/
/*  align-items: flex-start;*/
/*}*/


/* ---- CONTACT MAIN LAYOUT (FLEX VERSION) ---- */

.contact__grid {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
}

/* LEFT SIDE */
.contact__info {
  flex: 1;
  min-width: 280px;
}

/* RIGHT SIDE */
.contact__form-wrap {
  flex: 1;
  min-width: 280px;
  background: var(--silver);
  padding: 44px 40px;
  border-radius: 30px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
              rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
              rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/* TEXT */
.contact__para {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 1.02rem;
}

/* DETAILS */
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

/* PHONE + ADDRESS FIX */
.contact__detail,
.contact__detail_phone {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.contact__detail_phone a,
.contact__detail a {
  word-break: break-word;
}

/* ICON FIX */
.contact__detail span,
.contact__detail_phone span {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(133, 11, 11, 0.1);
}

/* ---- RESPONSIVE FIX ---- */

@media (max-width: 991px) {
  .contact__grid {
    flex-direction: column;
    gap: 50px;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }
}

@media (max-width: 767px) {
  .contact__grid {
    gap: 30px;
  }

  .contact__form-wrap {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact__form-wrap {
    padding: 20px 14px;
  }

  .contact__detail,
  .contact__detail_phone {
    font-size: .85rem;
  }
}


/* ── NEWS SECTION ───────────────────────────────────────── */
.news-section { background: var(--bg-light); }

.news-tabs { gap: 8px; border: none; flex-wrap: wrap; }
.news-tab-btn {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
.news-tab-btn.active,
.news-tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.news-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.news-card-img { position: relative; height: 210px; overflow: hidden; }
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-category {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--primary);
  color: #fff;
}
.category-da { background: #1e6fa8; }
.category-sl { background: #9c4bb5; }
.news-card-body { padding: 22px; }
.news-date { font-size: 0.78rem; color: var(--text-muted); display: block; margin-bottom: 10px; }
.news-card-body h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.news-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}
.news-link:hover { gap: 10px; color: var(--primary-dark); }

/* ── FOOTER ─────────────────────────────────────────────── */


.site-footer { background: var(--accent-dark); }

.footer-top { padding: 72px 0 48px; }

.footer-brand .logo-main { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.logo-icon--footer { background: var(--primary-light); }

.footer-about {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }

.footer-contact {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact li i { color: var(--accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--accent); }

.contact__map-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid rgb(255, 255, 255);
    line-height: 0;
}

/* ── FLOATING ELEMENTS ──────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 15px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition-fast);
  z-index: 999;
  animation: floatPop 3s ease infinite;
}
.whatsapp-float:hover { background: #128C7E; color: #fff; transform: scale(1.12); }
@keyframes floatPop {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
}

.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  z-index: 998;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── MODAL ──────────────────────────────────────────────── */
.modal-content { border-radius: var(--radius-md); overflow: hidden; }

/* ── RESPONSIVE ADJUSTMENTS ─────────────────────────────── */
@media (max-width: 991px) {
  .section-pad { padding: 72px 25px; }
  .navbar-collapse {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }
  .navbar-nav .nav-link::after { display: none; }
  .nav-cta { margin: 8px 0 0; width: 100%; text-align: center; }
  .dropdown-menu { box-shadow: none; border: none; padding: 0 0 0 16px; }
  .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 767px) {
    
  .section-pad { padding: 56px 25; }
  .hero-slide { height: 75vh; min-height: 520px; }
  .slide-heading { font-size: 2rem; }
  .about-main-img { height: 320px; }
  .about-badge { left: 12px; top: 16px; font-size: 0.8rem; padding: 8px 14px; }
  .about-float-card { right: 8px; bottom: -12px; max-width: 180px; font-size: 0.8rem; }
  .testimonial-card { padding: 28px 20px; }
  .hero-slider .slick-prev { left: 10px; top: 400px; }
  .hero-slider .slick-next { right: 10px; top: 400px; }
  .video-testimonial-banner { height: 300px; }
  .play-icon {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: -18px;
    filter: drop-shadow(0 4px 16px rgba(244, 161, 48, 0.5));
    animation: pulsePop 2s ease infinite;
   }
   .mb-0 {
    text-align: center;
    padding: 1px 75px 0px 87px;
    margin-bottom: 0;
    }
  .scroll-indicator { display: none; }
  .stat-number { font-size: 2rem; }
  .topbar { display: none; }
  h2.section-title { text-align: center; }
  
   .news-tab-btn {
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 9px;
    border-radius: 100px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    }
    
    .row.align-items-center.g-5 {
    padding: 15px 25px;
}
}

@media (max-width: 480px) {
  .slide-ctas { flex-direction: column; }
  .slide-ctas .btn { text-align: center; }
  .cta-section { padding: 80px 0; }
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
  .topbar, #mainNav, .whatsapp-float, .scroll-top { display: none; }
}

/********************         BANNER CSS           ********************/

/* --- PREMIUM BANNER CORE VARS & SYSTEM SETUP --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Urbanist:wght@500;700;800;900&display=swap');

:root {
    --primary-burgundy: #6E1626;
    --primary-burgundy-rgb: 110, 22, 38;
    --dark-charcoal: #4E4E4E;
    --font-heading: 'Urbanist', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- BANNER MAIN STYLING CONTAINER --- */
.premium-inner-banner {
    position: relative;
    width: 100%;
    min-height: 370px;
    height: 55vh;
    max-height: 700px;
    background-color: #0c0507; /* Dark fallback */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

@media (max-width: 991.98px) {
    .premium-inner-banner {
        height: auto;
        min-height: 620px;
        padding: 100px 0 140px 0;
    }
}

/* --- MEDIA & IMAGE ENVIRONMENT LAYERS --- */
.banner-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.banner-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.08);
    filter: brightness(0.7) contrast(1.02);
    /*animation: slowCinematicZoom 20s var(--transition-cinematic) forwards;*/
}

@keyframes slowCinematicZoom {
    0% { transform: scale(1.08) translateY(0); }
    100% { transform: scale(1.02) translateY(-10px); }
}

/* --- CINEMATIC GRADIENT LIGHTING & OVERLAYS --- */
.banner-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(75deg, 
                rgba(12, 5, 7, 0.92) 0%, 
                rgba(12, 5, 7, 0.65) 45%, 
                rgba(110, 22, 38, 0.2) 100%);
}

.banner-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 3;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(var(--primary-burgundy-rgb), 0.4);
    bottom: -100px;
    left: -50px;
    animation: pulseAmbientGlow 8s infinite alternate ease-in-out;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(235, 94, 85, 0.2);
    top: -50px;
    right: 10%;
    animation: pulseAmbientGlow 12s infinite alternate-reverse ease-in-out;
}

@keyframes pulseAmbientGlow {
    0% { transform: translateY(0) scale(1); opacity: 0.4; }
    100% { transform: translateY(-30px) scale(1.15); opacity: 0.6; }
}

/* --- INTERACTIVE FLOATING ARCHITECTURAL ELEMENTS --- */
.floating-architect-shape {
    position: absolute;
    z-index: 3;
    background: rgb(255 255 255 / 15%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.shape-orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 20%;
    right: 15%;
    animation: smoothFloatMotion 6s infinite alternate ease-in-out;
}

.shape-pill {
    width: 60px;
    height: 140px;
    border-radius: 100px;
    bottom: 15%;
    right: 5%;
    transform: rotate(35deg);
    animation: smoothFloatMotion 9s infinite alternate-reverse ease-in-out;
}

@keyframes smoothFloatMotion {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-25px) rotate(15deg); }
}

/* --- MAIN FLEX LAYOUT STRUCTURING --- */
.banner-flex-wrapper {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
}

/* --- GLASSMORPHISM CONTAINER PANEL --- */
.glass-content-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 55px;
    opacity: 0;
    transform: translateY(40px);
    animation: revealPanelBox 1.2s var(--transition-cinematic) 0.2s forwards;
    transition: border-color 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}

.glass-content-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 110px rgba(110, 22, 38, 0.15), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@keyframes revealPanelBox {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575.98px) {
    .glass-content-panel {
        padding: 35px 25px;
        border-radius: 24px;
        background: rgba(12, 5, 7, 0.5); /* Slightly darker backing on small screens */
    }
}

/* --- PREMIUM INTERIOR PANEL COMPONENT TYPOGRAPHY --- */
.premium-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 25px;
}

.badge-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #eb5e55;
    border-radius: 50%;
    box-shadow: 0 0 12px #eb5e55;
    position: relative;
    animation: continuousPulse 2s infinite ease-in-out;
}

@keyframes continuousPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.5; }
}

.premium-banner-badge .badge-text {
    font-family: var(--font-heading);
    color: #f1f3f5;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.premium-banner-title {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 900;
    font-size: calc(1.4rem + 1.6vw);
    line-height: 1.15;
    letter-spacing: -0.02em;
    /*margin-bottom: 20px;*/
}

/* Modern text gradient fill clip effect */
.accent-text-clip {
    background: linear-gradient(135deg, #ffffff 30%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ffffff;
    position: relative;
}

.accent-text-clip::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #a30320 0%, transparent 100%);
}

.premium-banner-lead {
    color: rgba(241, 243, 245, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 650px;
}

/* --- BANNER INTERACTIVE FOOTER ROW (FLEX ARCHITECTURE) --- */
.banner-interactive-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

@media (max-width: 575.98px) {
    .banner-interactive-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
}

/* --- STYLISH BREADCRUMB SYSTEM --- */
.custom-premium-breadcrumb .breadcrumb-item,
.custom-premium-breadcrumb .breadcrumb-item a {
    color: rgba(241, 243, 245, 0.5);
    font-size: 0.95rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.custom-premium-breadcrumb .breadcrumb-item a:hover {
    color: #ffffff;
}

.custom-premium-breadcrumb .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

/* Custom premium arrow separator alternative to standard slashes */
.custom-premium-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    padding-right: 12px;
    padding-left: 10px;
}

/* --- PREMIUM ACTION TRIGGER BUTTON --- */
.banner-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    color: #0c0507;
    padding: 14px 30px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s var(--transition-smooth);
}

.banner-action-btn .btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(var(--primary-burgundy-rgb), 0.08);
    color: var(--primary-burgundy);
    border-radius: 50%;
    font-size: 0.8rem;
    transition: transform 0.4s var(--transition-smooth);
}

.banner-action-btn:hover {
    background: var(--primary-burgundy);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(110, 22, 38, 0.3);
}

.banner-action-btn:hover .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateX(5px);
}

/* --- ARCHITECTURAL SVG BOTTOM SECTION DIVIDER --- */
.banner-bottom-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}

.banner-bottom-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 45px;
}

/* Matches page background block content directly underneath */
.banner-bottom-divider .shape-fill {
    fill: #ffffff; 
}



/* ============================= */
/* Mobile Responsive Media Query */
/* ============================= */

/* Large Tablets & Small Laptops */
@media (max-width: 1200px) {

}

/* Tablets */
@media (max-width: 992px) {

}

/* Small Tablets */
@media (max-width: 768px) {
.contact__map-wrap {
        width: 100%;
        overflow: hidden;
        display: block;
        margin: 15px auto 0;
    }
    
    .contact__map {
        width: 100% !important;
        max-width: 100%;
        height: 250px;
        border: none;
        display: block;
    }
    .footer-top {
    padding: 72px 25px 48px;
}
}

/* Mobile Devices */
@media (max-width: 576px) {
    
        .premium-inner-banner {
        height: auto;
        min-height: 470px;
        padding: 0px;
    }

}

/* Small Mobile Devices */
@media (max-width: 400px) {

}

/*///////////////// new section css ////////////////////*/

/* ==========================================================================
   1. ROOT VARIABLES & GLOBAL SETUP
   ========================================================================== */


/* Base resets for modern feel */
/*body {*/
/*    font-family: var(--font-body);*/
/*    background-color: var(--bg-light);*/
/*    color: var(--text);*/
/*    overflow-x: hidden;*/
/*    -webkit-font-smoothing: antialiased;*/
/*}*/

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    color: var(--dark);
    letter-spacing: -0.02em;
}

/* ==========================================================================
   2. EXTRA NEW CLASSES (SECTION LAYOUT & BACKGROUNDS)
   ========================================================================== */
.storytelling-container {
    position: relative;
    overflow: hidden;
    padding: 60px 0; /* Smooth scaling for smaller viewports */
}

/* Background Abstract Blobs */
.mesh-blob {
    position: absolute;
    background: radial-gradient(circle, rgba(105, 21, 36, 0.07) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.blob-top { width: 350px; height: 350px; top: -5%; left: -10%; }
.blob-mid { width: 450px; height: 450px; top: 35%; right: -15%; }
.blob-bottom { width: 300px; height: 300px; bottom: 0; left: 5%; }

/* Custom Line Indicator underneath Header Title */
.deco-line-animated {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    margin: 20px auto;
    border-radius: var(--radius-sm);
    position: relative;
}
.deco-line-animated::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-light);
    border-radius: 50%;
    top: -3px;
    left: 0;
    box-shadow: 0 0 8px var(--primary-light);
    animation: moveDot 4s infinite ease-in-out;
}
@keyframes moveDot {
    0%, 100% { left: 0; }
    50% { left: calc(100% - 10px); }
}

/* ==========================================================================
   3. EXTRA NEW CLASSES (COMPONENTS & ANIMATIONS)
   ========================================================================== */

/* Premium Responsive Glass Card Structure */
.premium-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px; /* Default for mobile devices */
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.premium-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(105, 21, 36, 0.2);
    background: var(--bg-white);
}

/* Flexible Icon Badge Wrapper */
.icon-wrapper {
    width: 55px;
    height: 55px;
    background-color: rgba(105, 21, 36, 0.08);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}
.premium-glass-card:hover .icon-wrapper {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: rotate(5deg) scale(1.05);
}

/* Feature 1 Specifics: Pill Badges */
.badge-pill-custom {
    display: inline-block;
    background: rgba(105, 21, 36, 0.04);
    color: var(--primary-light);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 4px;
    border: 1px solid rgba(105, 21, 36, 0.08);
    transition: var(--transition-fast);
}
.badge-pill-custom:hover {
    background: rgba(105, 21, 36, 0.08);
    color: var(--primary-dark);
}

/* Feature 2 Specifics: Counter Badge */
.highlight-counter-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.premium-glass-card:hover .highlight-counter-box {
    box-shadow: 0 12px 24px rgba(105, 21, 36, 0.2);
}

/* Feature 3 Specifics: Trophy/Medal Cards */
.medal-metric-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.medal-metric-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.medal-metric-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 5px;
}

/* Feature 4 Specifics: Arts Masonry/Gallery Frames */
.gallery-crop-frame {
    overflow: hidden;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3; /* Perfectly manages grid aspects across changing widths */
}
.gallery-crop-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-crop-frame:hover img {
    transform: scale(1.08);
}

/* Feature 5 Specifics: Audio Interactive CSS Waves */
.music-wave-bar-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
}
.music-wave-bar {
    width: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
    animation: dynamicWave 1s ease-in-out infinite alternate;
}
.music-wave-bar:nth-child(2) { animation-delay: 0.15s; height: 70%; animation-duration: 0.8s; }
.music-wave-bar:nth-child(3) { animation-delay: 0.3s; height: 100%; animation-duration: 1.2s; }
.music-wave-bar:nth-child(4) { animation-delay: 0.45s; height: 40%; animation-duration: 0.9s; }
@keyframes dynamicWave {
    0% { height: 15%; }
    100% { height: 95%; }
}

/* Bottom Closing Premium Statement Banner */
.premium-closing-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg); /* Safer border curves for mobile screens */
    padding: 50px 20px;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}
.premium-closing-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}
.premium-closing-banner h2 {
    color: var(--bg-white);
    font-weight: 600;
    line-height: 1.4;
    font-size: 1.6rem;
}

/* Call-to-action Button rules */
.btn-cta-premium {
    background-color: var(--bg-white);
    color: var(--primary);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
}
.btn-cta-premium:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

/* Intersection Observer Scroll System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* ==========================================================================
   4. PROGRESSIVE MEDIA QUERIES (FULLY RESPONSIVE ENGINE)
   ========================================================================== */

/* --- Tablet Devices & Above (Small Landscape & IPads: min-width: 576px) --- */
@media (min-width: 576px) {
    .premium-glass-card {
        padding: 32px; /* Giving cards breathable space */
    }
    .medal-metric-card {
        padding: 20px 12px;
    }
    .medal-metric-card h5 {
        font-size: 1rem;
    }
}

/* --- Medium Sized Displays (Tablets in Landscape: min-width: 768px) --- */
@media (min-width: 768px) {
    .storytelling-container {
        padding: 80px 0;
    }
    .section-title {
        font-size: 2.6rem;
    }
    .premium-closing-banner {
        padding: 70px 40px;
        border-radius: var(--radius-xl);
    }
    .premium-closing-banner h2 {
        font-size: 2.2rem;
    }
    /* Scaling decorative background vector blobs bigger for larger displays */
    .blob-top { width: 550px; height: 550px; }
    .blob-mid { width: 650px; height: 650px; }
}

/* --- Premium Large Workstations & Laptops (Desktops: min-width: 992px) --- */
@media (min-width: 992px) {
    .storytelling-container {
        padding: 110px 0;
    }
    .section-title {
        font-size: 3.2rem;
        line-height: 1.15;
    }
    .premium-glass-card {
        padding: 40px; /* Luxurious padding for clean desktop visibility */
    }
    .premium-closing-banner h2 {
        font-size: 2.6rem;
    }
    .btn-cta-premium {
        font-size: 0.85rem;
        padding: 15px 38px;
    }
    .blob-top { width: 650px; height: 650px; top: -10%; left: -15%; }
    .blob-mid { width: 800px; height: 800px; top: 40%; right: -20%; }
    .blob-bottom { width: 500px; height: 500px; bottom: 0; left: 10%; }
}





