/* Independence Day — Content Left + Image Right + Flag Banner */

:root {
  --primary-color: #f26522;
  --secondary-color: #0d0e14;
  --text-muted: #666;
  --gradient-primary: linear-gradient(135deg, #f26522 0%, #ff8c42 100%);
}

/* Page Header Custom BG */
.ind-page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../../images/independence-day-celebration/independence-day-celebration-17.webp) !important;
  background-size: cover !important;
  background-position: center !important;
}

/* Hero */
.ind-hero {
  padding: 70px 0 50px;
  background: linear-gradient(160deg, #fff 0%, #fff7f2 40%, #f0faf0 100%);
  overflow: hidden;
}

.ind-hero-row {
  min-height: 75vh;
}

/* Content */
.ind-content {
  padding-right: 30px;
}

.ind-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 22px;
  box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.ind-badge i {
  font-size: 1rem;
}

.ind-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.ind-saffron-text {
  color: #ff9933;
}

.ind-green-text {
  color: #138808;
}

.ind-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Stats Row */
.ind-stats-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ind-stat-card {
  background: #fff;
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  flex: 1;
  min-width: 130px;
  transition: all 0.3s ease;
}

.ind-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(242, 101, 34, 0.1);
}

.ind-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.ind-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Image */
.ind-hero-img-wrap {
  position: relative;
  padding: 20px;
}

.ind-hero-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14);
  display: block;
  transition: transform 0.5s ease;
}

.ind-hero-img-wrap:hover .ind-hero-img {
  transform: scale(1.02);
}

/* Floating Badges */
.ind-float-badge {
  position: absolute;
  background: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--secondary-color);
  z-index: 3;
}

.ind-float-badge i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.ind-float-1 {
  top: 30px;
  right: 40px;
  animation: indFloat 3s ease-in-out infinite;
}

.ind-float-2 {
  bottom: 120px;
  right: 0;
  animation: indFloat 3s ease-in-out infinite 1s;
}

.ind-float-3 {
  bottom: 40px;
  left: 40px;
  animation: indFloat 3s ease-in-out infinite 2s;
}

@keyframes indFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ===== Indian Flag Banner (Horizontal) ===== */
.ind-flag-banner {
  display: flex;
  height: 140px;
  margin: 0;
  overflow: hidden;
}

.ind-flag-col {
  flex: 1;
  position: relative;
}

.ind-saffron-bg {
  background: linear-gradient(135deg, #ff9933 0%, #ffb366 50%, #ff9933 100%);
}

.ind-white-bg {
  background: linear-gradient(135deg, #fefefe 0%, #f5f0e8 50%, #fefefe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ind-green-bg {
  background: linear-gradient(135deg, #138808 0%, #1aaf0d 50%, #138808 100%);
}

.ind-ashoka-chakra {
  animation: indChakraSpin 20s linear infinite;
}

@keyframes indChakraSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Gallery */
.ind-gallery-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    rgba(242, 101, 34, 0.02) 100%
  );
}

.ind-section-header {
  margin-bottom: 50px;
}

.ind-section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ind-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1.2;
}

.ind-section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .ind-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .ind-hero-img {
    height: 380px;
  }

  .ind-float-2 {
    display: none;
  }

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

@media (max-width: 768px) {
  .ind-hero {
    padding: 50px 0 40px;
  }
  .ind-hero-row {
    min-height: auto;
  }
  .ind-title {
    font-size: 1.8rem;
  }

  .ind-hero-img {
    height: 300px;
  }

  .ind-hero-img-wrap {
    padding: 10px;
  }

  .ind-float-badge {
    display: none;
  }

  .ind-stats-row {
    gap: 10px;
  }

  .ind-stat-card {
    padding: 14px 16px;
  }

  .ind-stat-num {
    font-size: 1.6rem;
  }

  .ind-flag-banner {
    height: 90px;
  }

  .ind-ashoka-chakra svg {
    width: 50px;
    height: 50px;
  }

  .ind-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 576px) {
  .ind-title {
    font-size: 1.5rem;
  }
  .ind-flag-banner {
    height: 70px;
  }
  .ind-ashoka-chakra svg {
    width: 40px;
    height: 40px;
  }
  .ind-section-header {
    margin-bottom: 35px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
