/* ================================================================
   INDEX.DESKTOP.CSS — Home Page Desktop Styles
   Bihar Vidyalaya Adhyapak Mahasangh
   ================================================================ */

/* ── HERO SECTION ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: auto;
  padding: 6rem 0 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-white);
}

/* Hero Background Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Dark premium overlay to make text and buttons pop beautifully */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* Floating Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--color-white);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: -50px;
  animation: floatSlow 10s ease-in-out infinite;
}

.shape-3 {
  width: 120px;
  height: 120px;
  top: 40%;
  right: 15%;
  animation: float 12s ease-in-out infinite;
  animation-delay: -3s;
}

.shape-4 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  right: 35%;
  animation: floatSlow 9s ease-in-out infinite;
  animation-delay: -5s;
}

.shape-5 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation: float 11s ease-in-out infinite;
  animation-delay: -2s;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding-top: 1rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
  animation: fadeInUp 0.8s ease 0.2s both;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.65), 0 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-title-accent {
  background: linear-gradient(135deg, #7DD3FC, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #FFFFFF;
  opacity: 1;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.4s both;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

/* Premium outline button for dark backgrounds */
.btn-outline-hero {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 2px solid rgba(255, 255, 255, 0.65) !important;
  color: #ffffff !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  font-weight: 600 !important;
}

.btn-outline-hero:hover {
  background: #ffffff !important;
  color: #0284C7 !important; /* Sky Blue */
  border-color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.35) !important;
  transform: translateY(-2.5px);
  text-shadow: none;
}

/* Hero Trust Strip */
.hero-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.25rem 2rem;
  background: rgba(2, 132, 199, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  animation: fadeInUp 0.8s ease 0.8s both;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: default;
}

.trust-badge-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7DD3FC;
  flex-shrink: 0;
}

.trust-badge-text {
  display: flex;
  flex-direction: column;
}

.trust-badge-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.trust-badge-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-top: 1px;
}

.trust-badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border-right: 3px solid rgba(255,255,255,0.5);
  border-bottom: 3px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  animation: float 2s ease-in-out infinite;
}

/* ── CHAIRMAN SECTION ─────────────────────────────────────────── */
.chairman-section {
  background: var(--color-bg);
}

.chairman-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  padding: 3rem;
  align-items: center;
}

.chairman-photo-wrapper {
  text-align: center;
}

.chairman-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-border);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.chairman-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Ambient rotating dashed outer ring */
.chairman-photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2.5px dashed var(--color-primary-light);
  opacity: 0.35;
  animation: spin 25s linear infinite;
  transition: opacity 0.3s ease, scale 0.3s ease, border-color 0.3s ease;
}

.chairman-photo:hover {
  transform: scale(1.06) rotate(1.5deg);
  box-shadow: 0 12px 30px rgba(230, 81, 0, 0.25);
  border-color: var(--color-primary);
}

.chairman-photo:hover::before {
  opacity: 0.8;
  scale: 1.04;
  border-color: var(--color-primary);
}

.chairman-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.chairman-photo:hover .chairman-photo-placeholder {
  transform: scale(1.12);
}

.chairman-name-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.chairman-photo-wrapper:hover .chairman-name-badge {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.chairman-name-badge h4 {
  font-size: 0.85rem;
  color: var(--color-white);
  margin-bottom: 2px;
}

.chairman-name-badge p {
  font-size: 0.75rem;
  opacity: 0.9;
}

.chairman-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-primary-dark);
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem 1.75rem;
  margin: 1.5rem 0;
  background: linear-gradient(90deg, rgba(255,111,0,0.05) 0%, rgba(255,111,0,0.01) 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.8;
  transition: border-left-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.chairman-quote:hover {
  border-left-color: var(--color-golden);
  background: linear-gradient(90deg, rgba(255,193,7,0.08) 0%, rgba(255,193,7,0.02) 100%);
  transform: translateX(4px);
}

.chairman-message-text {
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.chairman-signature {
  margin-top: 1rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.signature-line {
  margin-bottom: 4px;
}

/* Signature SVG path drawing animation on scroll reveal */
.signature-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active .signature-path {
  stroke-dashoffset: 0;
}

/* Button arrow shift on hover */
.chairman-content .btn svg {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chairman-content .btn:hover svg {
  transform: translateX(5px);
}

/* ── TWO COLUMN SECTION ───────────────────────────────────────── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.col-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--color-border-light);
  padding-bottom: 0.75rem;
}

.col-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(230, 81, 0, 0.2);
}

.col-icon svg {
  stroke: var(--color-white);
}

.col-header h3 {
  font-size: 1.45rem;
  color: var(--color-primary-dark);
  font-family: var(--font-primary);
  font-weight: 700;
}

/* Symmetrical List layouts */
.notice-mini-list,
.demands-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

/* Beautiful parallel card hover effects and structures */
.notice-mini-item,
.demand-item-card {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  border-left: 5px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-left-color 0.4s ease, background-color 0.3s ease;
  min-height: 140px;
}

.notice-mini-item {
  cursor: pointer;
}

.demand-item-card {
  border-left-color: var(--color-golden-dark);
}

.notice-mini-item:hover,
.demand-item-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 25px rgba(230, 81, 0, 0.12);
  background-color: #FFFDFB;
}

.notice-mini-item:hover {
  border-left-color: var(--color-primary-dark);
}

.demand-item-card:hover {
  border-left-color: var(--color-golden);
}

.notice-mini-item h4,
.demand-item-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0.5rem 0 0.4rem 0;
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.notice-mini-item:hover h4 {
  color: var(--color-primary);
}

.notice-mini-item p,
.demand-item-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.notice-mini-meta,
.demand-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--color-border-light);
  padding-top: 0.75rem;
  margin-top: auto;
}

.notice-mini-meta .tag,
.demand-card-meta .tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
}

/* ── NOTICE BOARD ─────────────────────────────────────────────── */
.notice-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.notice-search {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.notice-search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.notice-search .form-input {
  padding-left: 2.75rem;
}

.notice-filter-group {
  display: flex;
  gap: 0.75rem;
}

.notice-filter-group .form-select,
.notice-filter-group .form-input {
  min-width: 180px;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.notice-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.notice-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.notice-date {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.notice-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.notice-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  flex: 1;
}

.notice-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
}

.notice-card-actions {
  display: flex;
  gap: 0.5rem;
}

/* ── NEWS SECTION ─────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-img-placeholder {
  transform: scale(1.05);
}

.news-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  line-height: 1.1;
}

.news-date-badge .day {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-primary);
}

.news-date-badge .month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-card-body {
  padding: 1.5rem;
}

.news-card-body .tag {
  margin-bottom: 0.75rem;
}

.news-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.news-card:hover h3 {
  color: var(--color-primary);
}

.news-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  transition: gap var(--transition-fast);
}

.news-read-more:hover {
  gap: 10px;
}

/* ── TRANSFER BANNER ──────────────────────────────────────────── */
.transfer-banner-section {
  background: var(--gradient-warm);
}

.transfer-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
  background: rgba(255,255,255,0.85);
}

.transfer-banner-content {
  max-width: 550px;
}

.transfer-banner-content h2 {
  margin: 0.75rem 0;
}

.transfer-banner-content p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.transfer-banner-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.transfer-stat {
  text-align: center;
}

.transfer-stat strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.transfer-stat span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.transfer-banner-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── COMMUNITY VOICE (TESTIMONIAL MARQUEE) ────────────────────── */
#testimonials.section {
  padding: 3rem 0; /* Reduced vertical space for community voice section */
}

.testimonial-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 1.5rem;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.testimonial-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.75rem;
  animation: marqueeContinuous 38s linear infinite;
  padding-left: 0.75rem;
}

.testimonial-marquee-track:hover {
  animation-play-state: paused;
}

.testimonial-small-card {
  width: 360px;
  flex-shrink: 0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #FF6F00 0%, #E65100 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.testimonial-small-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 30px rgba(230, 81, 0, 0.4);
}

.testimonial-small-card .stars {
  font-size: 0.85rem;
  color: #FFD54F;
  margin-bottom: 0.75rem;
}

.testimonial-small-text {
  font-size: 0.88rem;
  line-height: 1.6;
  font-style: italic;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.testimonial-small-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
  padding-top: 0.75rem;
  margin-top: auto;
}

.author-avatar {
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.author-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.author-info span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  display: block;
}

@keyframes marqueeContinuous {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ── STATS SECTION ────────────────────────────────────────────── */
.stats-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,111,0,0.08);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-golden);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  color: rgba(255,255,255,0.85);
}

/* ── GALLERY PREVIEW (CONTINUOUS SINGLE ROW MARQUEE) ───────────── */
.gallery-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 1.5rem;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
}

.gallery-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: galleryMarqueeScroll 28s linear infinite;
}

.gallery-marquee-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  width: 320px;
  height: 220px;
  flex-shrink: 0;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-warm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: transform var(--transition-slow);
}

.gallery-placeholder span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.gallery-item:hover .gallery-placeholder {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230,81,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1.5rem;
  border: 2px solid white;
  border-radius: var(--radius-full);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

@keyframes galleryMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ── ENQUIRY FORM ─────────────────────────────────────────────── */
.enquiry-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.enquiry-info-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card-bold {
  background: var(--gradient-primary);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.info-card-bold::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.info-card-bold h3 {
  font-size: 1.85rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.info-card-bold p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.bullet-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.bullet-item:hover .bullet-icon {
  transform: scale(1.15) rotate(8deg);
  background: rgba(255, 255, 255, 0.25);
}

.bullet-details strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-golden);
  margin-bottom: 2px;
  font-weight: 700;
}

.bullet-details p {
  margin: 0;
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 700; /* Bold phone/email */
}

.office-timing-badge {
  background: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 700; /* Bold timings */
  color: var(--color-white);
  border-left: 4px solid var(--color-golden);
  margin-top: auto;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);
}

.enquiry-form-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-form {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.enquiry-form .form-group .form-label {
  font-weight: 700; /* Bold label as requested */
  color: var(--color-text);
  font-size: 0.88rem;
}

.enquiry-form .btn-primary {
  width: 100%;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ── ENHANCED ENQUIRY & CONTACT FORM STYLES ───────────────────── */
.glass-card-elevated {
  background: linear-gradient(145deg, #0284C7 0%, #0369A1 100%);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.pulse-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(5px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-bullets-enhanced {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.bullet-item-interactive {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bullet-item-interactive:not(.static):hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bullet-icon-wrapper {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.bullet-item-interactive:hover .action-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.glass-card-enhanced {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(2, 132, 199, 0.15);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}

.input-with-icon .form-input,
.input-with-icon .form-select {
  padding-left: 2.75rem;
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(30deg);
  transition: transform 0.8s ease;
}

.btn-shimmer:hover::after {
  transform: rotate(30deg) translate(50%, 50%);
}

/* ── PRE-FOOTER CTA STRIP ─────────────────────────────────────── */
.footer-cta-strip {
  background: linear-gradient(135deg, #0284C7 0%, #075985 100%);
  padding: 2.5rem 0;
  position: relative;
  z-index: 10;
}

.cta-strip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  backdrop-filter: blur(10px);
}

.cta-strip-tag {
  display: inline-block;
  color: var(--color-golden, #FFC107);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.cta-strip-text h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.cta-strip-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin: 0;
}

.shadow-gold {
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
  transition: all 0.3s ease;
}

.shadow-gold:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 193, 7, 0.5);
}

.footer-reg-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--color-golden, #FFC107);
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── TABLET ADJUSTMENTS ───────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .chairman-card {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .notice-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transfer-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .transfer-banner-content {
    max-width: 100%;
  }

  .transfer-banner-stats {
    justify-content: center;
  }

  .enquiry-split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── OUR LEADERSHIP SECTION ───────────────────────────────────── */
.leadership-section {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
}

.leadership-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.leader-card-home {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.leader-card-home:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.12);
  border-color: rgba(2, 132, 199, 0.2);
}

.leader-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Square aspect ratio */
  overflow: hidden;
  background: var(--color-bg-alt);
}

.leader-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.leader-card-home:hover .leader-image-wrapper img {
  transform: scale(1.08);
}

.leader-social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(360deg, rgba(2, 132, 199, 0.9) 0%, rgba(2, 132, 199, 0) 100%);
  padding: 1.5rem 1rem 1rem;
  display: flex;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.leader-card-home:hover .leader-social-overlay {
  transform: translateY(0);
  opacity: 1;
}

.social-icon {
  width: 32px;
  height: 32px;
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: scale(1.15) translateY(-2px);
}

.leader-info-home {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.leader-info-home h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.leader-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.leader-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
