﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --crimson: #8b1a1a;
  --crimson-d: #5c0f0f;
  --gold: #c8860a;
  --gold-l: #e8a820;
  --ivory: #fdf6e3;
  --ivory-d: #f0e6cc;
  --brown: #2c1810;
  --brown-m: #5a3825;
  --dark: #120800;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--ivory);
  color: var(--brown);
  overflow-x: hidden;
}

.hindi {
  font-family: "Noto Serif Devanagari", serif;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--ivory-d);
}

::-webkit-scrollbar-thumb {
  background: var(--crimson);
  border-radius: 3px;
}

/* â”€â”€ Utility â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 2px;
  margin: 20px 0 36px;
}

.divider.center {
  margin: 20px auto 36px;
}

/* â”€â”€ Navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--ivory-d);
  box-shadow: 0 2px 12px rgba(44, 24, 16, 0.06);
  transition: all 0.4s ease;
  padding: 12px 0;
}

#navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(44, 24, 16, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.nav-feather {
  width: 100px;
  height: 40px;
  display: block;
  margin-bottom: -4px;
}

.nav-logo .name-en {
  font-family: "Dancing Script", cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--brown-m);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--crimson);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links li:first-child a {
  color: var(--gold);
}

/* â”€â”€ Dropdown Menu â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: '▼';
  display: inline-block;
  font-size: 9px;
  margin-left: 6px;
  color: #2c1810;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  /* margin: 8px 0 0 0; */
  background: var(--white);
  border: 1px solid var(--ivory-d);
  border-radius: 4px;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.15);
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: var(--brown-m);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
  position: relative;
}

.dropdown-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.dropdown-menu li a:hover {
  color: var(--crimson);
  background: rgba(200, 134, 10, 0.05);
}

.dropdown-menu li a:hover::after {
  width: 100%;
}

.dropdown-menu li:first-child a {
  border-radius: 3px 3px 0 0;
}

.dropdown-menu li:last-child a {
  border-radius: 0 0 3px 3px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
#hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  background: var(--dark);
}

/* Slider track */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1.06);
}

/* Dark gradient overlay over slides */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(18, 8, 0, 0.3) 0%,
      rgba(18, 8, 0, 0.05) 50%,
      rgba(18, 8, 0, 0.45) 100%);
  z-index: 1;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(18, 8, 0, 0.35);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 2px;
}

.slider-arrow:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

.slider-arrow.prev {
  left: 28px;
}

.slider-arrow.next {
  right: 28px;
}

/* Slide counter */
.slider-counter {
  position: absolute;
  bottom: 56px;
  right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.slider-counter .current {
  font-size: 22px;
  color: var(--white);
  font-weight: 300;
}

/* Dot navigation */
.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  z-index: 3;
  width: 0%;
  transition: width linear;
}

/* â”€â”€ Stats Bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#stats {
  background: var(--crimson-d);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 24px 16px;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 1;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 40px;
  color: var(--gold-l);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  flex-shrink: 0;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
}

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-l);
  line-height: 1.2;
  display: block;
}

.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  display: block;
}

/* â”€â”€ About â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#about {
  padding: 100px 0;
  background: var(--ivory);
}

.about-main {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}

.about-img-frame {
  position: relative;
}

.about-img-frame::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 55%;
  height: 55%;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  pointer-events: none;
}

.about-img-frame::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 55%;
  height: 55%;
  border-bottom: 3px solid var(--crimson);
  border-right: 3px solid var(--crimson);
  pointer-events: none;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: sepia(10%) contrast(1.05);
}

.about-img-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--brown-m);
  opacity: 0.7;
}

.about-tribute-sub {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--brown-m);
  opacity: 0.75;
}

.about-tribute-name {
  text-align: center;
  margin-top: 4px;
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--brown-d, #5a3e2b);
  letter-spacing: 0.5px;
}

.about-content-col h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 6px;
}

.about-content-col h2 em {
  font-style: italic;
  color: var(--crimson);
}

.about-name-hindi {
  font-size: 15px;
  color: var(--brown-m);
  opacity: 0.55;
  margin-bottom: 6px;
}

.about-content-col .divider {
  margin: 18px 0 24px;
}

.about-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--brown-m);
  margin-bottom: 36px;
}

.about-stats-row {
  display: flex;
  border: 1px solid var(--ivory-d);
  border-radius: 4px;
  overflow: hidden;
}

.about-stat-item {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border-right: 1px solid var(--ivory-d);
}

.about-stat-item:last-child {
  border-right: none;
}

.about-stat-n {
  display: block;
  font-size: 34px;
  font-weight: 600;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 5px;
}

.about-stat-l {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-m);
  opacity: 0.65;
}

.about-keypoints {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  background: var(--white);
  border: 1px solid var(--ivory-d);
  border-radius: 4px;
  overflow: hidden;
}

.about-kp {
  padding: 36px 32px;
  border-right: 1px solid var(--ivory-d);
  position: relative;
  overflow: hidden;
}

.about-kp:last-child {
  border-right: none;
}

.about-kp-num {
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
  color: var(--ivory-d);
  position: absolute;
  top: 10px;
  right: 16px;
  pointer-events: none;
  user-select: none;
}

.about-kp-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 14px;
  padding-bottom: 14px;
  position: relative;
}

.about-kp-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.about-kp:nth-child(2) .about-kp-title::after {
  background: var(--crimson);
}

.about-kp:nth-child(3) .about-kp-title::after {
  background: var(--brown-m);
}

.about-kp p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--brown-m);
  position: relative;
}

/* â”€â”€ Awards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#awards {
  padding: 100px 0;
  background: var(--white);
}

#awards .container {
  max-width: 1400px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Bungee Inline", cursive;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 100;
  color: var(--brown);
  text-shadow: 0 1px 2px rgba(51, 51, 51, 0.2);
}

.section-header h2 em {
  font-style: italic;
  color: var(--crimson);
}

.awards-stepper {
  display: flex;
  position: relative;
  gap: 0;
  padding: 4px 0 8px;
}

.awards-stepper::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--crimson), var(--gold));
  z-index: 0;
}

.stepper-item {
  flex: 1;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.stepper-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  border: 4px solid var(--ivory);
  box-shadow: 0 0 0 3px var(--gold);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  flex-shrink: 0;
  transition:
    background 0.3s,
    transform 0.3s;
}

.stepper-item:hover .stepper-bubble {
  background: var(--crimson-d);
  transform: scale(1.08);
}

.stepper-content {
  background: var(--white);
  border: 1px solid var(--ivory-d);
  border-radius: 6px;
  padding: 16px 14px;
  width: 100%;
  transition: box-shadow 0.3s;
}

.stepper-item:hover .stepper-content {
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.1);
  border-color: var(--gold);
}

.award-title-hi {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--crimson);
  margin-bottom: 8px;
  line-height: 1.4;
}

.award-desc {
  font-size: 15px;
  color: var(--brown-m);
  line-height: 1.7;
}

.awards-more {
  text-align: center;
  margin-top: 48px;
}

/* Buttons */
.btn-primary {
  padding: 14px 36px;
  background: var(--crimson);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--crimson-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.4);
}

.btn-outline {
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-white {
  padding: 14px 40px;
  background: var(--white);
  color: var(--crimson);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.3s;
}

.btn-white:hover {
  background: var(--ivory-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* â”€â”€ Tribute â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#tribute {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-d) 100%);
}

.tribute-card {
  max-width: 750px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 60px 48px;
  box-shadow: 0 8px 32px rgba(139, 26, 26, 0.08);
  transition: all 0.3s ease;
}

.tribute-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(139, 26, 26, 0.12);
}

.tribute-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.tribute-icon-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(200, 134, 10, 0.2);
  font-size: 120px;
  line-height: 1;
}

.tribute-icon {
  width: 80px;
  height: 80px;
  color: var(--white);
}

.tribute-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.tribute-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.tribute-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  margin: 0 auto 20px;
  border-radius: 1px;
}

.tribute-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--brown-m);
  max-width: 600px;
}

/* â”€â”€ Media â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#media {
  padding: 30px 0;
  background: var(--ivory);
}

#media .container {
  max-width: 1400px;
  padding: 0 24px;
}

#media .section-label {
  color: var(--gold);
}

#media .section-header h2 {
  color: var(--brown);
}

#media .section-header h2 em {
  color: var(--crimson);
}

#media .divider.center {
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}

.media-cta {
  text-align: center;
  margin-top: 48px;
}

.media-cta .btn-primary {
  background: var(--crimson);
  color: var(--white);
  padding: 14px 36px;
}

/* Bootstrap 5 Grid System */
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.col-lg-3,
.col-md-6,
.col-sm-12 {
  flex: 0 0 auto;
  width: auto;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-bottom: 1rem;
}

.col-lg-3 {
  width: 20% !important;
}

.col-md-6 {
  width: 50%;
}

.col-sm-12 {
  width: 100%;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
  cursor: pointer;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: sepia(30%);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 8, 0, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.media-overlay span {
  font-size: 12px;
  color: var(--white);
  letter-spacing: 1px;
}

.media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1008 0%, #2c1810 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(200, 134, 10, 0.3);
}

.media-cta {
  text-align: center;
  margin-top: 40px;
}

/* â”€â”€ Contact Strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#contact-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--crimson-d), var(--crimson));
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--crimson-d), var(--crimson));
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact-strip h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

#contact-strip p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

#contact-strip .btn-white,
#contact-strip .btn-primary {
  position: relative;
  z-index: 2;
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background-image: url('../images/footer__banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0 20px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(44, 24, 16, 0.1);
  margin-bottom: 32px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(0.8) contrast(1.1);
}

.footer-brand .logo-en {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--brown);
  margin-bottom: 4px;
}

.footer-brand .logo-hi {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 20px;
  color: var(--crimson);
  margin-bottom: 16px;
  font-weight: 900;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(44, 24, 16, 0.85);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 20px;
  font-weight: 900;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(44, 24, 16, 0.8);
  transition: color 0.2s;
  font-weight: 600;
}

.footer-col ul a:hover {
  color: var(--crimson);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(44, 24, 16, 0.75);
  font-weight: 700;
}

.footer-link {
  color: var(--crimson);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-made {
  font-size: 12px;
  color: rgba(44, 24, 16, 0.7);
}

/* Social Icons in Footer */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-social h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
  font-weight: 900;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icon {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(44, 24, 16, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(44, 24, 16, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon i {
  font-size: 18px;
}

.social-icon:hover {
  border-color: var(--crimson);
  background-color: var(--crimson);
  color: white;
  transform: translateY(-3px);
}

/* Mobile Menu */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--dark);
  z-index: 999;
  padding: 80px 24px 40px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--gold);
  margin-left: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.3s ease;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 200px;
  opacity: 1;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 8px;
}

.mobile-dropdown-menu li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 0;
  border-bottom: none;
  transition: color 0.2s;
}

.mobile-dropdown-menu li a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  padding: 0;
  line-height: 1;
  z-index: 1001;
  font-weight: 300;
}

.mobile-close:hover {
  color: var(--gold);
}

.mobile-close:active {
  color: var(--gold-l);
}

/* Poetry Section */
#poetry {
  padding: 50px 0;
  /* background: #ede8df; */
  position: relative;
  overflow: hidden;
}

.poetry-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.poetry-label {
  font-family: "Bungee Inline", cursive;
  font-size: 40px;
  font-weight: 100;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 40px;
  display: block;
  text-shadow: 0 1px 2px #666;
}

.poetry-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg,
      var(--crimson),
      var(--gold),
      var(--crimson));
  border-radius: 2px;
  margin: 0 auto 48px;
}

.poetry-text {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 20px;
  line-height: 2.2;
  color: var(--brown);
  margin-bottom: 48px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 2;
}

.poetry-text::before {
  content: '"';
  position: absolute;
  left: -30px;
  top: -20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  color: rgba(139, 26, 26, 0.08);
  line-height: 1;
}

.poetry-source {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.poetry-source-text {
  font-size: 13px;
  color: var(--brown-m);
  letter-spacing: 0.5px;
  font-style: italic;
  font-weight: 500;
}

.poetry-source-book {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--crimson);
  padding: 4px 20px;
  border: 2px solid var(--crimson);
  border-radius: 2px;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  #poetry {
    padding: 80px 0;
  }

  .poetry-label {
    font-size: 1.5rem;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
  }

  .poetry-divider {
    width: 60px;
    height: 3px;
    margin: 0 auto 36px;
  }

  .poetry-text {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 36px;
  }

  .poetry-text::before {
    font-size: 80px;
    left: -20px;
    top: -10px;
  }

  .poetry-source {
    gap: 12px;
  }

  .poetry-source-text {
    font-size: 12px;
  }

  .poetry-source-book {
    font-size: 14px;
    padding: 3px 16px;
  }

  .completed_work_card {
    aspect-ratio: 3/4;
  }
}

/* â”€â”€ Featured Books Section (New Design) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#featured-section {
  padding: 80px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

#featured-section .section-header h2 {
  color: var(--brown);
}

#featured-section .section-header h2 em {
  color: var(--crimson);
}

.featured-books-wrapper {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
  padding: 0 40px;
  width: 100%;
}

.featured-books-showcase {
  display: flex;
  gap: 24px;
  position: relative;
  flex-wrap: nowrap;
  transition: transform 0.25s ease-out;
}

.featured-book-card {
  background: linear-gradient(135deg,
      rgba(200, 134, 10, 0.05) 0%,
      rgba(139, 26, 26, 0.05) 100%);
  border: 2px solid var(--ivory-d);
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  width: calc((100vw - 80px - 100px) / 3);
  min-width: 280px;
}

.featured-book-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(200, 134, 10, 0.15);
}

.book-year-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--crimson);
  background: rgba(200, 134, 10, 0.25);
  padding: 6px 14px;
  border-radius: 3px;
  border: 1px solid var(--gold);
}

.featured-book-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--crimson);
  margin: 12px 0 0;
  padding-top: 8px;
}

.featured-book-subtitle {
  font-size: 12px;
  color: var(--brown-m);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

.featured-book-content {
  font-size: 14px;
  color: var(--brown);
  font-style: italic;
  margin: 8px 0 12px;
  line-height: 1.5;
}

.book-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  width: fit-content;
  margin-top: auto;
}

.featured-nav-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.featured-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--crimson);
  background: transparent;
  color: var(--crimson);
  font-size: 26px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}

.featured-nav-btn:hover {
  background: var(--crimson);
  color: var(--white);
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.3);
}

.featured-cta {
  text-align: center;
  margin-top: 36px;
}

.featured-cta .btn-primary {
  padding: 14px 42px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .featured-book-card {
    padding: 24px 20px;
    width: calc(50% - 12px) !important;
    min-width: 200px !important;
  }

  .featured-book-title {
    font-size: 22px;
  }

  .featured-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }

  #featured-section {
    padding: 30px 0;
  }
}

/* â”€â”€ All Books Grid Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#all-books-section {
  padding: 100px 0;
  background: var(--ivory);
}

#all-books-section .section-header {
  margin-bottom: 60px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.book-grid-card {
  background: linear-gradient(135deg,
      rgba(139, 26, 26, 0.08) 0%,
      rgba(88, 56, 37, 0.08) 100%);
  border: 2px solid var(--gold);
  padding: 32px 28px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.book-grid-card:hover {
  border-color: var(--crimson);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.2);
  transform: translateY(-4px);
  background: linear-gradient(135deg,
      rgba(139, 26, 26, 0.15) 0%,
      rgba(88, 56, 37, 0.15) 100%);
}

.books-grid-cta {
  text-align: center;
}

.books-grid-cta .btn-primary {
  padding: 14px 42px;
  font-size: 13px;
}

/* New Book Card Design */
.book-card-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.book-card-new:hover .book-cover-box {
  transform: translateY(-8px);
}

.book-cover-box {
  aspect-ratio: 200 / 280;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Colored book backgrounds disabled - using neutral SVG only */

.book-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.book-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.book-title-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0;
  font-family: "Noto Serif Devanagari", serif;
}

.book-subtitle {
  font-size: 0.9rem;
  color: var(--brown-m);
  margin: 0;
  font-style: italic;
}

.book-publisher-info {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.book-year-badge {
  display: inline-block;
  background: var(--crimson);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .book-grid-card {
    padding: 24px 20px;
  }

  .featured-book-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .books-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .book-grid-card {
    padding: 20px 16px;
  }

  .completed-work-section {
    padding: 2em 0;
  }

  .completed_work_card {
    aspect-ratio: 3/4.5;
  }
}

/* â”€â”€ Commendations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#commendations {
  padding: 100px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

#commendations::before {
  content: '"';
  position: absolute;
  top: -60px;
  right: 4%;
  font-family: "Cormorant Garamond", serif;
  font-size: 500px;
  color: rgba(200, 134, 10, 0.04);
  line-height: 1;
  pointer-events: none;
}

#commendations .section-label {
  color: var(--gold);
}

#commendations .section-header h2 {
  color: var(--brown);
}

#commendations .section-header h2 em {
  color: var(--crimson);
}

#commendations .divider.center {
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
}

.commend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.commend-card {
  background: linear-gradient(135deg,
      rgba(200, 134, 10, 0.08) 0%,
      rgba(139, 26, 26, 0.08) 100%);
  border: 2px solid var(--gold);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.commend-card:hover {
  background: linear-gradient(135deg,
      rgba(200, 134, 10, 0.15) 0%,
      rgba(139, 26, 26, 0.15) 100%);
  border-color: var(--crimson);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.commend-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.commend-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-top: 32px;
  font-weight: 500;
}

.commend-quote.hindi {
  font-family: "Noto Serif Devanagari", serif;
  font-style: normal;
  font-size: 15px;
  line-height: 2;
}

.commend-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--ivory-d);
  padding-top: 16px;
}

.commend-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson-d), var(--crimson));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid rgba(200, 134, 10, 0.3);
}

.commend-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--crimson);
}

.commend-role {
  font-size: 11px;
  color: var(--brown);
  letter-spacing: 0.5px;
  margin-top: 2px;
  font-weight: 500;
}

.commend-more {
  text-align: center;
  margin-top: 48px;
}

#commendations .awards-more {
  margin-top: 48px;
}

#commendations .btn-primary {
  background: var(--crimson);
  color: var(--white);
  padding: 14px 36px;
}

/* â”€â”€ Biodata Highlights â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bio-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0 28px;
}

.bio-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bio-detail-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.bio-detail-value {
  font-size: 13px;
  color: var(--brown-m);
  line-height: 1.5;
}

/* â”€â”€ Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-col {
    max-width: 380px;
    margin: 0 auto;
  }

  .about-keypoints {
    grid-template-columns: 1fr;
  }

  .about-kp {
    border-right: none;
    border-bottom: 1px solid var(--ivory-d);
  }

  .about-kp:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 48px 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-stepper {
    flex-wrap: wrap;
    gap: 16px;
  }

  .awards-stepper::before {
    display: none;
  }

  .stepper-item {
    flex: 0 0 calc(100% - 1px);
    /* min-width: unset; */
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tribute-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 16px;
  }

  .footer-col ul {
    gap: 8px;
  }

  .footer-col ul a {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 0 20px;
  }

  .slider-arrow.prev {
    left: 12px;
  }

  .slider-arrow.next {
    right: 12px;
  }
}

/* Tablets (600px - 768px) - 2 Column Footer */
@media (min-width: 600px) and (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 20px;
    margin-bottom: 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand .logo-en {
    font-size: 18px;
  }

  .footer-brand .logo-hi {
    font-size: 14px;
  }

  .footer-brand p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-col ul a {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 0 20px;
    gap: 12px;
  }

  .footer-copy,
  .footer-made {
    font-size: 13px;
  }
}

@media (max-width: 599px) {
  footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
    margin-bottom: 24px;
  }

  .footer-brand .logo-en {
    font-size: 18px;
  }

  .footer-brand .logo-hi {
    font-size: 14px;
  }

  .footer-brand p {
    font-size: 15px;
    line-height: 1.6;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .footer-col ul a {
    font-size: 13px;
  }

  .footer-bottom {
    padding: 0 20px;
    gap: 12px;
  }

  .footer-copy,
  .footer-made {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 30px 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(44, 24, 16, 0.08);
    padding-bottom: 24px;
  }

  .footer-brand .logo-en {
    font-size: 16px;
  }

  .footer-brand .logo-hi {
    font-size: 16px;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  .footer-col ul {
    gap: 6px;
  }

  .footer-col ul a {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 0 16px;
  }

  .footer-copy {
    font-size: 13px;
  }

  .footer-made {
    font-size: 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.logo-img {
  width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* â”€â”€ Lightbox Gallery â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  display: block;
  opacity: 1;
}

.lightbox-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1001;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  animation: fadeInDown 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: 30px;
  background: #8b1a1a;
  border: none;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1002;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
  background: #6b1212;
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  padding: 12px 18px;
  transition: all 0.2s;
  border-radius: 4px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--gold);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

@media (max-width: 768px) {
  .lightbox-image {
    max-width: unset;
    max-height: unset;
    height: 12em;
    object-fit: cover;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 24px;
    padding: 8px 12px;
  }

  /* Tablet responsive */
  #hero {
    height: 70vh;
  }

  .container {
    padding: 0 16px;
  }

  .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commend-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-lg-3 {
    width: 50% !important;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .featured-book-title {
    font-size: 22px;
  }
}

@media (max-width: 1024px) {

  /* Tablet and below */
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {

  /* Mobile responsive */
  #hero {
    height: 55vh;
  }

  .container {
    padding: 0 12px;
  }

  #navbar {
    padding: 8px 0;
  }

  .nav-inner {
    gap: 12px;
  }

  .logo-img {
    width: 180px;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 24px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-num {
    font-size: 32px;
  }

  .about-keypoints {
    flex-direction: column;
  }

  .about-kp {
    flex: 1 1 100%;
  }

  .awards-stepper {
    padding: 0;
    gap: 0;
  }

  .stepper-item {
    flex-direction: column;
    padding: 20px 12px;
  }

  .stepper-bubble {
    min-width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .stepper-content {
    flex: 1;
    margin-left: 0px !important;
  }

  .award-title-hi {
    font-size: 18px;
  }

  .award-desc {
    font-size: 13px;
  }

  .commend-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .commend-card {
    padding: 20px 16px;
  }

  .commend-quote {
    font-size: 14px;
    padding-top: 16px;
  }

  .books-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .book-grid-card {
    padding: 20px 16px;
  }

  .featured-book-title {
    font-size: 22px;
  }

  .featured-book-subtitle {
    font-size: 11px;
  }

  .featured-book-content {
    font-size: 16px;
  }

  .col-lg-3,
  .col-md-6,
  .col-sm-12 {
    width: 100% !important;
  }

  .media-card {
    height: 250px;
    margin: 0 auto;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .section-label {
    font-size: 10px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
    /* left: 12px !important;
    right: 12px !important; */
  }

  .slider-counter {
    bottom: 40px;
    right: 16px;
    font-size: 12px;
  }

  .slider-counter .current {
    font-size: 18px;
  }

  .slider-dots {
    bottom: 16px;
    gap: 6px;
  }

  .slider-dot {
    width: 5px;
    height: 5px;
  }

  .slider-dot.active {
    width: 20px;
  }

  #contact-strip {
    padding: 40px 0;
  }

  #contact-strip h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  #contact-strip p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn-primary,
  .btn-white,
  .btn-outline {
    padding: 12px 24px;
    font-size: 12px;
  }

  footer {
    padding: 30px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Biodata Page */
.biodata-section {
  padding: 30px 0;
  background: white;
}

.biodata-intro {
  text-align: left;
  /* margin-bottom: 50px; */
  padding: 0;
}

.biodata-intro .section-heading {
  font-family: "Bungee Inline", cursive;
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: left;
}

.intro-text {
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.8;
  text-align: left;
}

.biodata-block {
  margin-bottom: 60px;
  padding: 0;
  background: transparent;
}

.biodata-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 18px;
}

.biodata-block p:last-child {
  margin-bottom: 0;
}

.biodata-subheading {
  font-size: 30px;
  font-weight: 700;
  color: var(--crimson);
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
}

.biodata-block:first-child .biodata-subheading {
  margin-top: 0;
}

.biodata-list {
  list-style: none;
  padding-left: 0;
  margin: 25px 0;
}

.biodata-list li {
  margin-bottom: 14px;
  line-height: 1.8;
  color: var(--brown);
  font-size: 1.1rem;
  padding-left: 25px;
  position: relative;
}

.biodata-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--crimson);
  font-size: 1.2rem;
}

.biodata-list li strong {
  color: var(--brown);
}

.biodata-intro-heading {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--crimson);
  margin-top: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* â”€â”€ Lullby Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lullby-section {
  padding: 30px 0;
  background: white;
}

.lullby-card {
  margin-bottom: 70px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
}

.lullby-header {
  margin-bottom: 25px;
  position: relative;
}

.lullby-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 0 0 15px 0;
  letter-spacing: 0.5px;
}

.lullby-accent {
  height: 3px;
  width: 50px;
  background: var(--crimson);
  border-radius: 2px;
  margin-top: 0;
}

/* â”€â”€ Biodata About Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.biodata-about-full {
  margin-bottom: 80px;
  padding: 0;
  background: transparent;
}

.biodata-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding: 0;
  background: transparent;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 8px solid var(--gold);
}

.image-border {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--gold);
  border-radius: 2px;
}

.tribute-text {
  text-align: center;
  margin-top: 15px;
  font-size: 0.95rem;
  color: var(--brown);
  letter-spacing: 0.5px;
}

.tribute-name {
  text-align: center;
  margin-top: 5px;
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 500;
}

.about-content-full {
  padding: 0;
  max-width: 100%;
  text-align: center;
}

.about-content-full .section-label {
  text-align: center;
}

.about-content-full .divider {
  margin: 20px auto 36px;
}

.about-content {
  padding: 0;
}

.section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.about-heading {
  font-family: "Bungee Inline", cursive;
  font-size: 3rem;
  color: var(--brown);
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-align: center;
}

.about-name {
  color: var(--crimson);
  font-style: italic;
}

.about-description {
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.8;
  margin: 25px 0 35px 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--ivory-d);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--crimson);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
}

/* Biodata About Responsive */
@media (max-width: 1024px) {
  .biodata-about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-heading {
    font-size: 2.2rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .biodata-about {
    margin-bottom: 60px;
    gap: 30px;
  }

  .about-heading {
    font-size: 1.8rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .biodata-about {
    margin-bottom: 40px;
  }

  .about-heading {
    font-size: 1.4rem;
  }

  .about-description {
    font-size: 0.95rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 10px;
  }

  .image-border {
    top: -8px;
    right: -8px;
  }

  .about-image img {
    border-width: 5px;
  }
}

.lullby-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--brown);
  margin-bottom: 16px;
}

.lullby-content p:last-child {
  margin-bottom: 0;
}

/* Lullby Responsive - Tablet */
@media (max-width: 1024px) {
  .lullby-title {
    font-size: 1.7rem;
  }

  .lullby-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .lullby-section {
    padding: 20px 0;
  }

  .lullby-card {
    margin-bottom: 50px;
  }

  .lullby-title {
    font-size: 1.5rem;
  }

  .lullby-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }
}

/* Lullby Responsive - Mobile */
@media (max-width: 480px) {
  .lullby-section {
    padding: 15px 0;
  }

  .lullby-card {
    margin-bottom: 40px;
  }

  .lullby-title {
    font-size: 1.3rem;
  }

  .lullby-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .lullby-accent {
    width: 40px;
  }
}

/* ── Page Header Styles ──────────────────────────────────── */
section.page-header {
  background: var(--ivory);
  position: relative;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  margin-top: 80px;
  margin-bottom: 80px;
  overflow: visible;
}

/* Banner Header with Background Image */
section.page-header.page-header-banner {
  background-color: transparent !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  min-height: 350px;
  margin-top: 70px;
  margin-bottom: 0;
}

section.page-header.page-header-banner::before {
  display: none !important;
}

section.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 35px,
      rgba(255, 255, 255, 0.05) 35px,
      rgba(255, 255, 255, 0.05) 70px);
  pointer-events: none;
}

section.page-header .page-title {
  font-family: "Bungee Inline", cursive;
  font-size: 35px;
  margin: 0 auto 20px;
  letter-spacing: 2px;
  color: var(--brown);
  text-align: center;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

section.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

section.page-header .breadcrumb a {
  color: var(--brown);
  text-decoration: none;
  transition: color 0.2s;
}

section.page-header .breadcrumb a:hover {
  color: var(--crimson);
}

section.page-header .breadcrumb .separator {
  color: var(--brown);
  margin: 0 6px;
}

section.page-header .breadcrumb .current {
  color: var(--brown);
  font-weight: 500;
}

/* Biodata Responsive - Tablet */
@media (max-width: 1024px) {
  .biodata-intro .section-heading {
    font-size: 2.2rem;
  }

  .biodata-subheading {
    font-size: 1.4rem;
  }

  .biodata-block p,
  .biodata-list li {
    font-size: 1rem;
  }

  section.page-header .page-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .biodata-section {
    padding: 20px 0;
  }

  .biodata-block {
    margin-bottom: 50px;
  }

  .biodata-intro {
    margin-bottom: 60px;
  }

  .biodata-intro .section-heading {
    font-size: 1.9rem;
  }

  .biodata-subheading {
    font-size: 1.3rem;
    margin-top: 35px;
  }

  section.page-header .page-title {
    font-size: 2.2rem;
  }

  section.page-header {
    margin-bottom: 60px;
    padding: 30px 0;
  }

  section.page-header .breadcrumb {
    font-size: 12px;
  }
}

/* Biodata Responsive - Mobile */
@media (max-width: 480px) {
  .biodata-section {
    padding: 15px 0;
  }

  .biodata-block {
    margin-bottom: 40px;
  }

  .biodata-block p,
  .biodata-list li {
    font-size: 0.95rem;
  }

  .biodata-intro {
    margin-bottom: 60px;
  }

  .biodata-intro .section-heading {
    font-size: 1.5rem;
  }

  .biodata-subheading {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .intro-text {
    font-size: 1rem;
  }

  .biodata-list li {
    padding-left: 20px;
  }

  section.page-header {
    margin-bottom: 50px;
    padding: 20px 0;
  }

  section.page-header .page-title {
    font-size: 1.8rem;
  }

  section.page-header .breadcrumb {
    font-size: 12px;
    gap: 6px;
  }
}

/* Navodaya Prayer Page */
.navodaya-section {
  padding: 55px;
  background: #fff;
}

.navodaya-header {
  text-align: center;
  margin-bottom: 50px;
}

.navodaya-prayer-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 1px;
  margin: 0 0 20px;
  text-transform: lowercase;
}

.navodaya-prayer-title::first-letter {
  text-transform: uppercase;
}

/* â”€â”€ Awards Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.awards-section {
  padding: 80px 0;
  background: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.awards-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 20px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 2px;
  margin: 0 auto;
}

.awards-container {
  position: relative;
  padding: 30px 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.award-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.award-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--crimson);
  margin-bottom: 16px;
  box-shadow: 0 0 0 4px rgba(139, 26, 26, 0.15);
}

.award-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 28px;
  width: 100%;
  box-shadow: 0 4px 16px rgba(44, 24, 16, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.award-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--crimson), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.award-item:hover .award-box {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(44, 24, 16, 0.15);
  border-left-color: var(--crimson);
}

.award-item:hover .award-box::before {
  opacity: 1;
}

.year-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--crimson), var(--gold));
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.award-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 0 0 10px;
  letter-spacing: 0.3px;
  line-height: 1.35;
}

.award-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--brown);
  margin: 0 0 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.award-description {
  font-size: 0.9rem;
  color: var(--brown-m);
  margin: 0;
  line-height: 1.7;
}

.award-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--crimson);
  margin: 0 0 10px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.award-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--brown);
  margin: 0 0 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.award-description {
  font-size: 0.95rem;
  color: var(--brown-m);
  margin: 0;
  line-height: 1.7;
}

.awards-cta {
  text-align: center;
  margin-top: 80px;
}

.btn-primary {
  display: inline-block;
  background: var(--crimson);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--crimson-d);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.3);
  transform: translateY(-2px);
}

/* Awards Responsive */
@media (max-width: 1024px) {
  .awards-section {
    padding: 30px 0;
  }

  .awards-title {
    font-size: 2.2rem;
  }

  .stepper-item:nth-child(odd),
  .stepper-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }

  .awards-stepper::before {
    left: 32px;
  }

  /* .stepper-bubble {
    left: 0;
    transform: translateX(-50%);
  } */

  /* .stepper-item:hover .stepper-bubble {
    transform: translateX(-50%) scale(1.1);
  } */

  /* .stepper-content {
    margin-left: 100px;
  } */
}

@media (max-width: 1200px) {
  .awards-process-line {
    gap: 30px;
    padding: 80px 0 50px;
  }

  .process-item {
    width: calc(25% - 22px);
  }

  .process-card {
    padding: 18px 20px;
    font-size: 12px;
  }

  .award-title {
    font-size: 1rem;
  }

  .award-subtitle {
    font-size: 0.9rem;
  }

  .award-description {
    font-size: 0.8rem;
  }

  .process-dot {
    width: 70px;
    height: 70px;
  }

  .process-year {
    font-size: 12px;
    bottom: -28px;
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 30px 0;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .awards-title {
    font-size: 2.2rem;
  }

  .awards-process-line {
    flex-direction: column;
    gap: 40px;
    padding: 60px 0 40px;
  }

  .awards-process-line::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-1px);
  }

  .process-item {
    width: 45%;
    margin-bottom: 60px;
  }

  .process-item:nth-child(odd) {
    margin-left: 0;
  }

  .process-item:nth-child(even) {
    margin-left: auto;
  }

  .process-content.top {
    margin-bottom: 50px;
  }

  .process-content.bottom {
    margin-top: 50px;
  }

  .process-dot {
    width: 60px;
    height: 60px;
  }

  .process-year {
    bottom: -26px;
    font-size: 12px;
  }

  .process-card {
    padding: 16px 18px;
  }

  .award-title {
    font-size: 0.95rem;
  }

  .award-subtitle {
    font-size: 0.85rem;
  }

  .award-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .awards-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .awards-title {
    font-size: 1.8rem;
  }

  .awards-process-line {
    gap: 20px;
    padding: 50px 0 30px;
  }

  .awards-process-line::before {
    left: 20px;
  }

  .process-item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 50px;
  }

  .process-item:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
  }

  .process-content {
    margin-left: 70px;
  }

  .process-content.top {
    margin-bottom: 40px;
  }

  .process-content.bottom {
    margin-top: 40px;
  }

  .process-dot {
    position: absolute;
    left: -44px;
    width: 52px;
    height: 52px;
    border-width: 3px;
  }

  .process-year {
    position: static;
    font-size: 11px;
    margin-top: 8px;
    text-align: left;
  }

  .process-card {
    padding: 14px 16px;
    font-size: 11px;
    text-align: left;
  }

  .award-title {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .award-subtitle {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .award-description {
    font-size: 0.75rem;
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 12px;
  }

  .awards-cta {
    margin-top: 60px;
  }
}

/* commendations css */
.commendations-section {
  /* padding: 80px 0; */
  padding: 0;
  background: #fff;
}

.commendation-block {
  margin-bottom: 30px;
  margin-top: 0;
  padding: 20px 20px;
  border-radius: 6px;
  background: #ffffff;
}

.commendation-block:nth-child(even) {
  background: #fdf6e4;
}

.commendation-main-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson);
  text-align: center;
  margin: 30px 0 24px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.commendation-author {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--crimson);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: 0.2px;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.commendation-designation {
  font-size: 0.95rem;
  color: var(--brown-m);
  text-align: center;
  margin: 0 0 35px;
  line-height: 1.6;
  font-style: italic;
  letter-spacing: 0.2px;
}

.commendation-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  padding: 30px;
  place-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.text-column {
  background: transparent;
  padding: 36px;
  padding-bottom: 24px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #d4af37;
  box-shadow: none;
  transition: all 0.3s ease;
}

.text-column:hover {
  border-bottom: 2px solid #c9a227;
  box-shadow: none;
}

.text-column p {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--brown);
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: 0.2px;
  word-spacing: 0.25em;
  white-space: pre-wrap;
}

.commendation-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  /* margin: 70px 0; */
  position: relative;
}

.commendation-divider::after {
  content: 'âœ¦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--ivory);
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0 12px;
}

.commendation-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.col-item {
  background: transparent;
  padding: 36px;
  border-radius: 6px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.3s ease;
}

.col-item:hover {
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.15);
}

.blessing-text {
  margin: 0 0 20px;
  padding: 0 0 20px 0;
  border-bottom: 2px solid #d4af37;
}

.blessing-line-1,
.blessing-line-2,
.blessing-line-3 {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #6d4c41;
  margin: 0 0 8px 0;
  text-align: left;
  letter-spacing: 0.25px;
  text-justify: inter-word;
}

.blessing-line-1 {
  font-weight: 700;
  color: #5d4037;
  margin-bottom: 10px;
}

.blessing-author {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #c41e3a;
  margin: 0;
  padding: 0;
  border: none;
  letter-spacing: 0.3px;
  text-align: left;
}

.section-heading {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: 0.4px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 16px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 2px;
}

.section-author {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--crimson);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: 0.2px;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.section-designation {
  font-size: 0.9rem;
  color: var(--brown-m);
  text-align: center;
  margin: 0 0 26px;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

.section-text {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1rem;
  line-height: 2;
  color: var(--brown);
  margin: 0;
  text-align: center;
  background: var(--white);
  padding: 45px;
  border-radius: 6px;
  border: 2px solid var(--ivory-d);
  border-left: 5px solid var(--gold);
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.08);
  text-justify: inter-word;
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-text:hover {
  box-shadow: 0 12px 28px rgba(44, 24, 16, 0.15);
  border-left-color: var(--crimson);
}

/* Commendations Responsive */
@media (max-width: 1024px) {
  .commendations-section {
    /* padding: 80px 0; */
    padding: 0;
  }

  .commendation-block {
    margin-bottom: 80px;
  }

  .commendation-text-grid,
  .commendation-three-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 45px;
  }

  .text-column,
  .col-item {
    padding: 36px 28px;
  }

  .commendation-main-title,
  .section-heading {
    font-size: 1.6rem;
  }

  .commendation-author,
  .section-author {
    font-size: 1.1rem;
  }

  .text-column p,
  .blessing-text,
  .section-text {
    font-size: 0.98rem;
    line-height: 1.95;
  }

  .commendation-divider {
    margin: 70px 0;
  }

  .section-text {
    padding: 45px 35px;
  }
}

@media (max-width: 768px) {
  .commendations-section {
    /* padding: 30px 0; */
    padding: 0;
  }

  .commendation-block {
    margin-bottom: 60px;
  }

  .commendation-text-grid,
  .commendation-three-col {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .text-column,
  .col-item {
    padding: 32px 24px;
  }

  .commendation-main-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .section-heading {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .commendation-author,
  .section-author {
    font-size: 1rem;
  }

  .commendation-designation,
  .section-designation {
    margin-bottom: 30px;
  }

  .text-column p,
  .blessing-text {
    font-size: 18px;
    line-height: 1.9;
  }

  .section-text {
    font-size: 18px;
    line-height: 1.9;
    padding: 40px 28px;
  }

  .commendation-divider {
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .commendations-section {
    /* padding: 40px 0; */
    padding: 0;
  }

  .commendation-block {
    margin-bottom: 50px;
  }

  .commendation-text-grid,
  .commendation-three-col {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .text-column,
  .col-item {
    padding: 24px 18px;
    border-top-width: 3px;
    border-left-width: 4px;
  }

  .commendation-main-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  .section-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .section-heading::after {
    width: 50px;
    height: 2px;
  }

  .commendation-author,
  .section-author {
    font-size: 0.95rem;
  }

  .commendation-designation,
  .section-designation {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .text-column p,
  .blessing-text {
    font-size: 17px;
    line-height: 1.8;
  }

  .blessing-text {
    margin-bottom: 16px;
  }

  .section-text {
    font-size: 18px;
    line-height: 1.8;
    padding: 28px 20px;
    border-left-width: 4px;
  }

  .commendation-divider {
    margin: 10px 0;
  }

  .commendation-divider::after {
    font-size: 1rem;
  }
}

.navodaya-prayer {
  /* max-width: 950px; */
  margin: 0 auto;
  /* padding: 60px 40px; */
  background: var(--white);
  border-radius: 8px;
  /* box-shadow: 0 2px 12px rgba(44, 24, 16, 0.08); */
}

.navodaya-prayer p {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.1rem;
  line-height: 2.1;
  color: var(--brown);
  margin: 0;
  text-align: center;
  letter-spacing: 0.3px;
}

/* Navodaya Prayer Responsive */
@media (max-width: 1024px) {
  .navodaya-section {
    padding: 80px 0;
  }

  .navodaya-header {
    margin-bottom: 0px;
  }

  .navodaya-prayer-title {
    font-size: 2.6rem;
  }

  .navodaya-prayer {
    padding: 50px 32px;
  }

  .navodaya-prayer p {
    font-size: 1.05rem;
    line-height: 2;
  }
}

@media (max-width: 768px) {
  .navodaya-section {
    padding: 30px 0;
  }

  .navodaya-header {
    margin-bottom: 0px;
  }

  .navodaya-prayer-title {
    font-size: 2rem;
  }

  .navodaya-prayer {
    padding: 40px 24px;
  }

  .navodaya-prayer p {
    font-size: 1rem;
    line-height: 1.95;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .navodaya-section {
    padding: 40px 0;
  }

  .navodaya-header {
    margin-bottom: 0px;
  }

  .navodaya-prayer-title {
    font-size: 1.6rem;
  }

  .navodaya-prayer {
    padding: 30px 16px;
  }

  .navodaya-prayer p {
    font-size: 0.95rem;
    line-height: 1.85;
    text-align: left;
  }
}

/* â”€â”€ Awards Page Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .award-box {
    padding: 24px;
  }

  .award-title {
    font-size: 1.15rem;
  }

  .award-subtitle {
    font-size: 0.95rem;
  }

  .award-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 30px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .awards-title {
    font-size: 2.2rem;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }

  .award-box {
    padding: 22px;
  }

  .year-badge {
    padding: 5px 12px;
    font-size: 12px;
    margin-bottom: 12px;
  }

  .award-title {
    font-size: 1.1rem;
  }

  .award-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .award-description {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .awards-section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .awards-title {
    font-size: 1.8rem;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .award-dot {
    width: 12px;
    height: 12px;
    margin-bottom: 12px;
  }

  .award-box {
    padding: 20px;
    border-left-width: 3px;
  }

  .year-badge {
    padding: 4px 10px;
    font-size: 11px;
    margin-bottom: 10px;
  }

  .award-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .award-subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .award-description {
    font-size: 0.75rem;
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 12px;
  }

  .awards-cta {
    margin-top: 60px;
  }
}

/* Books Page - New Design */
.books-section {
  padding: 40px !important;
  background: #fff;
  display: none;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.books-section.active {
  display: block;
  opacity: 1;
}

.books-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 12px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.books-subtitle {
  font-size: 1rem;
  color: var(--brown-m);
  margin: 0 0 24px;
  letter-spacing: 1px;
  line-height: 1.6;
}

.books-lang-section {
  margin-bottom: 80px;
}

.books-lang-section:nth-child(even) {
  background: #fdf6e4;
  padding: 60px 40px;
  border-radius: 8px;
  margin: 0 -24px 80px;
  padding-left: calc(40px + 24px);
  padding-right: calc(40px + 24px);
}

.lang-category-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--gold);
  letter-spacing: 0.5px;
  position: relative;
}

.lang-category-title.hindi {
  font-family: "Noto Serif Devanagari", serif;
  color: var(--crimson);
}

.lang-category-title.english {
  font-family: "Cormorant Garamond", serif;
  color: var(--brown);
}

.lang-category-title.punjabi {
  font-family: "Noto Serif Devanagari", serif;
  color: var(--crimson);
}

.lang-category-title .lang-en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.7em;
  color: var(--brown-m);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.books-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin: 0;
}

.book-card {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f3 100%);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.12);
  border: 1.5px solid var(--ivory-d);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.book-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--crimson), var(--gold));
  opacity: 0;
  transition: opacity 0.45s ease;
}

.book-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--crimson));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s ease;
  border-radius: 16px 0 0 16px;
}

.book-card:hover {
  transform: translateY(-18px);
  box-shadow: 0 24px 60px rgba(44, 24, 16, 0.2);
  border-color: var(--gold);
  background: linear-gradient(135deg, #ffffff 0%, #fffbf7 100%);
}

.book-card:hover::before {
  opacity: 1;
}

.book-card:hover::after {
  transform: scaleY(1);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.book-icon {
  font-size: 2.2rem;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(139, 26, 26, 0.15));
}

.book-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--crimson), #6b1515);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
  flex-shrink: 0;
}

.book-name {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 0 0 14px;
  letter-spacing: 0.4px;
  line-height: 1.42;
  flex-grow: 1;
}

.book-meta {
  display: flex;
  /* flex-direction: column; */
  gap: 8px;
}

.book-type {
  font-size: 0.9rem;
  color: var(--brown);
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.book-publisher {
  font-size: 0.88rem;
  color: var(--brown-m);
  margin: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-icon {
  font-size: 1rem;
  display: inline-block;
}

.books-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 80px 0;
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--ivory) 0%, #f5ede2 100%);
  border-radius: 8px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--crimson);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.books-cta {
  text-align: center;
  margin-top: 80px;
}

/* Books Responsive */
@media (max-width: 1024px) {
  .books-title {
    font-size: 2.2rem;
  }

  .books-lang-section:nth-child(even) {
    padding: 50px 30px;
    padding-left: calc(30px + 24px);
    padding-right: calc(30px + 24px);
  }

  .books-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
  }

  .book-card {
    padding: 24px 20px;
  }

  .book-icon {
    font-size: 2rem;
  }

  .book-year {
    font-size: 12px;
  }

  .lang-category-title {
    font-size: 1.6rem;
  }

  .book-name {
    font-size: 1.15rem;
  }

  .books-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .books-section {
    padding: 30px 20px !important;
  }

  .books-title {
    font-size: 2rem;
  }

  .books-lang-section {
    margin-bottom: 60px;
  }

  .books-lang-section:nth-child(even) {
    padding: 40px 20px;
    padding-left: calc(20px + 24px);
    padding-right: calc(20px + 24px);
    margin: 0 -24px 60px;
  }

  .lang-category-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .books-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .book-card {
    padding: 20px 18px;
  }

  .book-icon {
    font-size: 1.8rem;
  }

  .book-year {
    font-size: 11px;
    padding: 4px 10px;
  }

  .book-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .book-type {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .book-publisher {
    font-size: 0.8rem;
  }

  .books-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 24px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .books-section {
    padding: 20px;
  }

  .books-title {
    font-size: 1.6rem;
  }

  .books-subtitle {
    font-size: 0.9rem;
  }

  .books-lang-section {
    margin-bottom: 50px;
  }

  .books-lang-section:nth-child(even) {
    padding: 30px 16px;
    padding-left: calc(16px + 16px);
    padding-right: calc(16px + 16px);
    margin: 0 -16px 50px;
  }

  .lang-category-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .books-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .book-card {
    padding: 18px 16px;
  }

  .book-year {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .book-name {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .book-type {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .book-publisher {
    font-size: 0.75rem;
  }

  .books-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 16px;
    margin: 60px 0;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .books-cta {
    margin-top: 60px;
  }
}

/* â”€â”€ Books Tabs Design â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.books-tabs-container {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44, 24, 16, 0.08);
}

.tabs-header {
  display: flex;
  border-bottom: 2px solid var(--ivory-d);
  background: var(--ivory);
  padding: 0;
  gap: 0;
}

.tab-btn {
  flex: 1;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-m);
  transition: all 0.3s ease;
  position: relative;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-bottom: 3px solid transparent;
}

.tab-btn .tab-label {
  display: block;
  font-family: "Noto Serif Devanagari", serif;
}

.tab-btn .tab-count {
  display: inline-block !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85em;
  color: var(--gold);
  margin-left: 8px;
  font-weight: 600;
  opacity: 1;
  visibility: visible;
}

.tab-btn:hover {
  color: var(--crimson);
  background: rgba(139, 26, 26, 0.04);
}

.tab-btn.active {
  color: var(--crimson);
  border-bottom-color: var(--gold);
  background: var(--white);
}

.tab-btn.active .tab-count {
  color: var(--crimson);
}

.tab-content {
  display: none;
  padding: 50px 40px;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.books-lang-section {
  margin-bottom: 0;
}

.books-lang-section:nth-child(even) {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 0;
}

.lang-category-title {
  display: none;
}

/* Tabs Responsive */
@media (max-width: 768px) {
  .tabs-header {
    padding: 0;
  }

  .tab-btn {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .tab-btn .tab-label {
    display: block;
  }

  .tab-btn .tab-count {
    display: inline-block !important;
    font-size: 0.8em;
  }

  .tab-content {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .tabs-header {
    padding: 0;
  }

  .tab-btn {
    padding: 12px 12px;
    font-size: 0.8rem;
  }

  .tab-btn .tab-label {
    display: block;
  }

  .tab-btn .tab-count {
    display: inline-block !important;
    font-size: 0.7em;
    margin-left: 4px;
    margin-top: 0;
  }

  .tab-content {
    padding: 30px 16px;
  }
}

/* â”€â”€ Enhanced Books Tabs Design â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.books-tabs-container {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.12);
  margin-bottom: 60px;
}

.tabs-header {
  display: flex;
  border-bottom: 3px solid var(--ivory-d);
  background: linear-gradient(135deg, var(--ivory) 0%, #f5ede2 100%);
  padding: 8px;
  gap: 8px;
  border-radius: 12px 12px 0 0;
}

.tab-btn {
  flex: 1;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-m);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}

.tab-icon {
  font-size: 1.4rem;
  display: block;
}

.tab-btn .tab-label {
  display: block;
  font-family: "Noto Serif Devanagari", serif;
}

.tab-btn .tab-count {
  display: inline-block !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8em;
  color: var(--crimson);
  font-weight: 700;
  background: rgba(139, 26, 26, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  min-width: 24px;
  text-align: center;
}

.tab-btn:hover {
  color: var(--crimson);
  background: rgba(139, 26, 26, 0.06);
  transform: translateY(-2px);
}

.tab-btn.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--crimson), #6b1515);
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);
}

.tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.tab-content {
  display: none;
  padding: 60px 40px;
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.books-lang-section {
  margin-bottom: 0;
}

.books-lang-section:nth-child(even) {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin: 0;
}

.lang-category-title {
  display: none;
}

/* Responsive Tabs */
@media (max-width: 768px) {
  .tabs-header {
    padding: 6px;
    gap: 6px;
  }

  .tab-btn {
    padding: 16px 14px;
    font-size: 0.85rem;
    gap: 6px;
  }

  .tab-icon {
    font-size: 1.2rem;
  }

  .tab-btn .tab-label {
    display: block;
  }

  .tab-btn .tab-count {
    font-size: 0.75em;
    padding: 2px 6px;
  }

  .tab-content {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .tabs-header {
    padding: 6px;
    gap: 4px;
  }

  .tab-btn {
    padding: 12px 8px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .tab-icon {
    font-size: 1rem;
  }

  .tab-btn .tab-count {
    font-size: 0.65em;
    padding: 1px 4px;
    min-width: 20px;
  }

  .tab-content {
    padding: 30px 16px;
  }
}

/* â”€â”€ New Books Page Design â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.books-tabs-wrapper {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(44, 24, 16, 0.12);
}

.tabs-nav {
  display: flex;
  gap: 8px;
  padding: 24px;
  background: linear-gradient(135deg, var(--ivory) 0%, #f5ede2 100%);
  border-bottom: 2px solid var(--ivory-d);
  flex-wrap: wrap;
}

.tab-button {
  padding: 14px 28px;
  background: var(--white);
  border: 2px solid var(--ivory-d);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.tab-button:hover {
  border-color: var(--gold);
  color: var(--crimson);
  transform: translateY(-2px);
}

.tab-button.active {
  background: linear-gradient(135deg, var(--crimson), #6b1515);
  border-color: var(--crimson);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(139, 26, 26, 0.2);
}

.tab-name {
  font-family: "Noto Serif Devanagari", serif;
}

.tab-badge {
  background: rgba(139, 26, 26, 0.15);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.85em;
  font-weight: 700;
  color: var(--crimson);
}

.tab-button.active .tab-badge {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.tab-panel {
  display: none;
  padding: 40px 24px;
  animation: fadeInUp 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.books-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: #fafaf9;
  border-radius: 12px;
  border: 1px solid var(--ivory-d);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  align-items: flex-start;
}

.book-item:hover {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
  transform: translateX(4px);
}

.book-left {
  flex-shrink: 0;
}

.book-cover {
  width: 100px;
  height: 140px;
  background: linear-gradient(135deg, #8b1a1a, #6b1515);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  box-shadow: 0 8px 20px rgba(139, 26, 26, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.book-cover.green {
  background: linear-gradient(135deg, #2d7d3c, #1e5828);
}

.book-cover.red {
  background: linear-gradient(135deg, #c41e3a, #8b0000);
}

.book-cover.blue {
  background: linear-gradient(135deg, #0066cc, #003366);
}

.book-cover.gold {
  background: linear-gradient(135deg, #c8860a, #8b6914);
}

.book-cover.purple {
  background: linear-gradient(135deg, #663399, #4b2566);
}

.book-right {
  flex: 1;
  padding: 4px 0;
}

.book-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 0 0 8px;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.book-genre {
  font-size: 0.95rem;
  color: var(--brown);
  margin: 0 0 16px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
}

.book-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.detail-item {
  font-size: 0.9rem;
  color: var(--brown-m);
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-label {
  font-weight: 600;
  color: var(--brown);
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tabs-nav {
    padding: 16px;
    gap: 8px;
  }

  .tab-button {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .book-item {
    gap: 16px;
    padding: 16px;
  }

  .book-cover {
    width: 80px;
    height: 120px;
    font-size: 2.5rem;
  }

  .book-title {
    font-size: 1.15rem;
  }

  .book-genre {
    font-size: 0.85rem;
  }

  .book-details {
    gap: 16px;
  }

  .detail-item {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .tabs-nav {
    padding: 12px;
  }

  .tab-button {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .book-item {
    flex-direction: column;
    gap: 16px;
    padding: 14px;
  }

  .book-cover {
    width: 100%;
    height: 100px;
    font-size: 2rem;
  }

  .book-title {
    font-size: 1.1rem;
  }

  .book-genre {
    font-size: 0.8rem;
  }

  .book-details {
    flex-direction: column;
    gap: 10px;
  }

  .detail-item {
    font-size: 0.8rem;
  }
}

/* â”€â”€ Sticky Book Design â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.books-container-sticky {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 0;
}

.book-item-sticky {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fafaf9 0%, #f5f5f5 100%);
  border: 1px solid var(--ivory-d);
  transition: all 0.3s ease;
  min-height: auto;
  width: 100%;
}

.book-cover-sticky {
  min-width: 200px;
}

.book-content-sticky {
  width: 100%;
  min-width: 0;
}

.book-item-sticky:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
  background: var(--white);
}

.book-cover-sticky {
  position: sticky;
  top: 100px;
  width: 200px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(44, 24, 16, 0.2);
  transition: all 0.3s ease;
}

.book-item-sticky:hover .book-cover-sticky {
  transform: scale(1.05);
  box-shadow: 0 24px 60px rgba(44, 24, 16, 0.25);
}

.book-cover-sticky.crimson {
  background: linear-gradient(135deg, #8b1a1a 0%, #6b1515 100%);
}

.book-cover-sticky.green {
  background: linear-gradient(135deg, #2d7d3c 0%, #1e5828 100%);
}

.book-cover-sticky.red {
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
}

.book-cover-sticky.blue {
  background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
}

.book-cover-sticky.gold {
  background: linear-gradient(135deg, #c8860a 0%, #8b6914 100%);
}

.book-cover-sticky.purple {
  background: linear-gradient(135deg, #663399 0%, #4b2566 100%);
}

.book-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-placeholder svg {
  width: 100%;
  height: 100%;
}

.book-content-sticky {
  padding: 8px 0;
}

.book-title-sticky {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 0 0 12px;
  letter-spacing: 0.4px;
  line-height: 1.4;
}

.book-genre-sticky {
  font-size: 1.1rem;
  color: var(--brown);
  margin: 0 0 24px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
}

.book-meta-sticky {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.6;
}

.meta-label {
  font-weight: 600;
  color: var(--crimson);
  font-style: italic;
  min-width: 100px;
}

.meta-value {
  color: var(--brown-m);
}

/* Responsive */
@media (max-width: 1024px) {
  .book-item-sticky {
    grid-template-columns: 160px 1fr;
    gap: 24px;
    min-height: auto;
  }

  .book-cover-sticky {
    width: 160px;
    height: 224px;
    top: 80px;
  }

  .book-title-sticky {
    font-size: 1.4rem;
  }

  .book-genre-sticky {
    font-size: 1rem;
  }

  .meta-row {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .book-item-sticky {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .tab-panel {
    padding: 20px 0;
  }

  .book-cover-sticky {
    position: static;
    width: 100%;
    max-width: 280px;
    height: 200px;
    margin: 0 auto;
  }

  .book-title-sticky {
    font-size: 1.3rem;
  }

  .book-genre-sticky {
    font-size: 0.95rem;
  }

  .meta-row {
    font-size: 0.9rem;
  }

  .meta-label {
    min-width: 80px;
  }
}

@media (max-width: 480px) {
  .book-item-sticky {
    padding: 16px;
    gap: 16px;
  }

  .book-cover-sticky {
    max-width: 100%;
    height: 160px;
  }

  .book-title-sticky {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .book-genre-sticky {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .meta-row {
    font-size: 0.85rem;
    gap: 8px;
  }

  .meta-label {
    min-width: auto;
    font-size: 0.8rem;
  }

  .meta-value {
    font-size: 0.8rem;
  }
}

/* Premium Books Page Design */
.books-main {
  background: #fafafa;
  padding: 30px 0;
}

.books-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-gap: 2em;
  padding: 0 24px;
}

/* Sidebar Navigation */
.books-sidebar {
  position: sticky;
  top: 1em;
  height: fit-content;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.books-stack-icon {
  width: 100px;
  height: 100px;
  max-width: 100%;
}

.sidebar-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 4px;
  font-family: "Noto Serif Devanagari", serif;
}

.sidebar-count {
  font-size: 0.9rem;
  color: var(--brown-m);
  margin: 0;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--brown);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  position: relative;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ivory);
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--ivory);
  transform: translateX(4px);
}

.nav-link.active {
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
  color: var(--crimson);
  font-weight: 600;
}

.nav-link.active .nav-dot {
  background: var(--crimson);
  width: 10px;
  height: 10px;
}

.sidebar-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 2px solid var(--ivory);
}

.stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--brown-m);
  font-weight: 500;
}

/* Main Content Area */
.books-content {
  flex: 1;
}

.books-section {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.books-section.active {
  display: block;
  opacity: 1;
}

.section-header-books {
  margin-bottom: 48px;
}

.section-header-books h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0 0 12px;
  font-family: "Noto Serif Devanagari", serif;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--brown-m);
  margin: 0;
  line-height: 1.6;
}

/* Books Grid Premium */
.books-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.book-language-group {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.language-badge {
  grid-column: 1 / -1;
}

.language-badge {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--crimson);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--gold);
  font-family: "Noto Serif Devanagari", serif;
}

/* Book Card Grid Layout */
.book-card-grid {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: white;
  border-radius: 14px;
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
}

.book-card-grid:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-color: var(--crimson);
}

.book-card-top {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.book-icon-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.book-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.book-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0;
  font-family: "Noto Serif Devanagari", serif;
  line-height: 1.3;
  text-align: center;
}

.book-card-subtitle {
  font-size: 0.9rem;
  color: var(--brown-m);
  margin: 0;
  font-style: italic;
  text-align: center;
}

.book-card-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 4px 0;
}

.book-year-badge {
  background: var(--crimson);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.book-card-description {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.4;
  margin: 8px 0 0 0;
  text-align: center;
}

.book-card-footer {
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  margin-top: 8px;
}

.book-card-language {
  font-size: 0.85rem;
  color: #666;
}

/* Book Card Premium */
.book-card-premium {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 2px solid var(--gold);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.book-card-premium:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-color: var(--crimson);
}

.book-cover {
  width: 100px;
  height: 100px;
  background: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
  margin-bottom: 0;
}

.book-icon-simple {
  width: 60px;
  height: 60px;
  color: var(--brown);
  stroke: var(--brown);
}

.book-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.book-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.book-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown);
  margin: 0;
  font-family: "Noto Serif Devanagari", serif;
  line-height: 1.3;
}

.book-genre {
  font-size: 0.85rem;
  color: var(--brown-m);
  margin: 0;
  font-style: italic;
}

.book-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  margin-top: 8px;
}

.meta-badge {
  background: var(--crimson);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.meta-text {
  font-size: 0.8rem;
  color: #666;
}

.book-description {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
  margin-top: 4px;
}

/* CTA Section */
.books-cta-section {
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, var(--crimson) 0%, #6b1515 100%);
  border-radius: 16px;
  text-align: center;
  color: white;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px;
  font-family: "Noto Serif Devanagari", serif;
}

.cta-content p {
  font-size: 1.05rem;
  margin: 0 0 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
  border: 2px solid white;
}

.cta-btn.primary {
  background: white;
  color: var(--crimson);
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--crimson);
}

/* Responsive Design */
@media (min-width: 1200px) {
  .books-container {
    max-width: 1400px;
    grid-template-columns: 300px 1fr;
    grid-gap: 2em;
  }

  .books-sidebar {
    top: 1em;
  }

  .book-language-group {
    gap: 32px;
  }
}

@media (max-width: 1199px) and (min-width: 1025px) {
  .books-container {
    max-width: 100%;
    grid-template-columns: 260px 1fr;
    gap: 50px;
    padding: 0 20px;
  }

  .books-sidebar {
    position: sticky;
    top: 120px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .sidebar-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .sidebar-header img {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
  }

  .sidebar-header h2 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .nav-link {
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .section-header-books h3 {
    font-size: 1.5rem;
  }

  .book-language-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .book-card-premium {
    gap: 18px;
    padding: 22px;
  }

  .book-title {
    font-size: 1.05rem;
  }

  .book-genre {
    font-size: 0.85rem;
  }

  .book-cover {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
  }

  .book-icon-simple {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .books-container {
    grid-template-columns: 220px 1fr;
    gap: 30px;
    padding: 0 16px;
    max-width: 100%;
  }

  .books-sidebar {
    position: sticky;
    top: 5em;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .sidebar-header {
    text-align: center;
    margin-bottom: 16px;
  }

  .sidebar-header img {
    width: 70px;
    height: 70px;
    margin: 0 auto 12px;
  }

  .sidebar-header h2 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .section-header-books h3 {
    font-size: 1.4rem;
  }

  .book-language-group {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .book-card-premium {
    gap: 16px;
    padding: 18px;
  }

  .book-title {
    font-size: 1rem;
  }

  .book-genre {
    font-size: 0.8rem;
  }

  .book-cover {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }

  .book-icon-simple {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .books-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .books-sidebar {
    position: unset;
    width: 100%;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .sidebar-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .sidebar-header img {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    margin-bottom: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .nav-link {
    white-space: nowrap;
    padding: 10px 14px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .section-header-books h3 {
    font-size: 1.4rem;
  }

  .book-language-group {
    grid-template-columns: 1fr;
  }

  .book-card-premium {
    gap: 0;
    padding: 18px;
  }

  .book-title {
    font-size: 1rem;
  }

  .book-genre {
    font-size: 0.85rem;
  }

  .book-meta {
    gap: 12px;
  }

  .meta-badge {
    font-size: 0.75rem;
  }

  .book-description {
    font-size: 0.85rem;
  }

  .sidebar-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .books-cta-section {
    padding: 32px 20px;
    margin-top: 60px;
  }

  .cta-content h3 {
    font-size: 1.3rem;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin: 0 0 20px;
  }

  .cta-buttons {
    gap: 12px;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .books-main {
    padding: 40px 0;
  }

  .books-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 12px;
  }

  .books-sidebar {
    position: unset;
    top: 0;
    /* z-index: 100; */
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    /* margin-bottom: 16px; */
  }

  .sidebar-header {
    text-align: center;
    margin-bottom: 16px;
  }

  .sidebar-header img {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
  }

  .sidebar-header h2 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 0;
    margin-bottom: 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  .nav-dot {
    width: 6px;
    height: 6px;
  }

  .section-header-books {
    margin-bottom: 24px;
  }

  .section-header-books h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .book-language-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .book-card-premium {
    gap: 12px;
    padding: 14px;
    flex-direction: row;
  }

  .book-cover {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .book-icon-simple {
    width: 45px;
    height: 45px;
  }

  .book-details {
    flex: 1;
  }

  .book-title {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .book-genre {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }

  .book-meta {
    gap: 8px;
    margin-bottom: 6px;
  }

  .meta-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }

  .meta-text {
    font-size: 0.7rem;
  }

  .book-description {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .book-title {
    font-size: 1rem;
  }

  .book-genre {
    font-size: 0.8rem;
  }

  .book-meta {
    gap: 12px;
  }

  .meta-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .meta-text {
    font-size: 0.8rem;
  }

  .book-description {
    font-size: 0.85rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }
}

/* Optimized for 300px-600px screens */
@media (min-width: 300px) and (max-width: 600px) {
  .books-main {
    padding: 25px 0;
  }

  .books-container {
    grid-template-columns: 1fr;
    gap: 1em;
    padding: 0.5em;
  }

  .sidebar-header h2 {
    font-size: 1rem;
  }

  .sidebar-nav {
    gap: 8px;
    padding: 10px 0;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 0.75rem;
  }

  .section-header-books h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .books-grid-premium {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .book-card-premium {
    gap: 12px;
    padding: 12px;
  }

  .book-cover {
    width: 65px;
    height: 80px;
  }

  .book-heading {
    font-size: 0.9rem;
  }

  .meta-badge {
    font-size: 0.7rem;
  }

  .book-language {
    font-size: 0.75rem;
  }
}

/* Ultra Small (< 300px) */
@media (max-width: 299px) {
  .books-main {
    padding: 20px 0;
  }

  .books-container {
    gap: 12px;
    padding: 0 6px;
  }

  .books-sidebar {
    padding: 10px;
    margin-bottom: 10px;
  }

  .sidebar-header img {
    width: 45px;
    height: 45px;
  }

  .sidebar-header h2 {
    font-size: 0.85rem;
  }

  .nav-link {
    padding: 6px 10px;
    font-size: 0.65rem;
  }

  .section-header-books h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .section-subtitle {
    font-size: 0.75rem;
  }

  .books-grid-premium {
    gap: 10px;
  }

  .book-card-premium {
    gap: 10px;
    padding: 10px;
  }

  .book-cover {
    width: 55px;
    height: 70px;
  }

  .book-heading {
    font-size: 0.8rem;
    margin-bottom: 2px;
  }

  .meta-badge {
    font-size: 0.6rem;
    padding: 2px 6px;
  }

  .book-language {
    font-size: 0.65rem;
  }
}

/* â”€â”€ Guestbook Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.guestbook-section {
  background: #fff;
  padding: 30px 0;
}

/* â”€â”€ Guestbook Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.guestbook-hero {
  background: white;
  padding: 50px 40px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 50px;
  border: 2px solid var(--gold-l);
  box-shadow: 0 3px 12px rgba(139, 26, 26, 0.06);
}

.hero-title {
  font-size: 2.2rem;
  color: var(--crimson);
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1rem;
  color: var(--brown-m);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* â”€â”€ Two Column Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.guestbook-container-two-col {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.guestbook-col-8 {
  grid-column: span 1;
}

.guestbook-col-4 {
  grid-column: span 1;
}

.guestbook-form-section {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.guestbook-entries-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: fit-content;
  position: sticky;
  top: 120px;
  width: 450px;
}

/* â”€â”€ Guestbook Form Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-header {
  margin-bottom: 35px;
  padding-bottom: 0;
  border-bottom: none;
  text-align: center;
  padding-top: 10px;
}

.form-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.form-header h3 {
  font-size: 1.6rem;
  color: var(--crimson);
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--brown-m);
  margin: 0;
  font-weight: 400;
}

/* â”€â”€ Guestbook Form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.guestbook-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.3px;
}

.required {
  color: var(--crimson);
  font-weight: 600;
}

.form-input,
.form-textarea {
  padding: 12px 14px;
  font-size: 0.9rem;
  border: 1px solid #c9b8a0;
  border-radius: 3px;
  background: white;
  color: var(--brown);
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #9a8b7a;
  background: white;
  box-shadow: 0 0 0 2px rgba(154, 139, 122, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a89982;
}

.form-textarea {
  resize: vertical;
  line-height: 1.5;
  min-height: 110px;
  font-family: "Inter", sans-serif;
}

/* â”€â”€ CAPTCHA Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-captcha {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.captcha-wrapper {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.captcha-box {
  background: white;
  border: 1px solid #c9b8a0;
  border-radius: 3px;
  padding: 10px 14px;
  min-width: 130px;
  text-align: center;
  flex-shrink: 0;
}

.captcha-code {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 2px;
  font-family: "Courier New", monospace;
}

.captcha-input {
  flex: 1;
  padding: 12px 14px;
}

/* â”€â”€ Submit Button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-submit {
  align-self: flex-start;
  padding: 10px 28px;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  background: #8b6f47;
  border: 1px solid #8b6f47;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 12px;
}

.btn-submit:hover {
  background: #7a6240;
  border-color: #7a6240;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.btn-submit:active {
  transform: translateY(0);
}

/* â”€â”€ Guestbook Entries Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.entries-header {
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: none;
  text-align: center;
  padding-top: 10px;
}

.entries-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.entries-header h3 {
  font-size: 1.6rem;
  color: var(--crimson);
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.entries-subtitle {
  font-size: 0.95rem;
  color: var(--brown-m);
  margin: 0;
  font-weight: 400;
}

/* â”€â”€ Guestbook Entries â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.guestbook-entries {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

.guestbook-entry {
  background: white;
  padding: 24px 28px;
  border-radius: 12px;
  border: 2px solid var(--gold-l);
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.guestbook-entry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--crimson) 100%);
}

.guestbook-entry:hover {
  box-shadow: 0 12px 32px rgba(139, 26, 26, 0.15);
  transform: translateY(-4px);
  border-color: var(--crimson);
}

.entry-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.entry-quote-icon {
  font-size: 2.8rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  font-family: Georgia, serif;
}

.entry-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson) 0%, var(--gold) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
}

.entry-message {
  color: var(--brown);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 14px;
  font-style: italic;
  padding-left: 12px;
  border-left: 3px solid var(--gold-l);
}

.entry-message p {
  margin: 0;
}

.entry-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}

.entry-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--ivory-d) 0%, transparent 100%);
}

.entry-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.entry-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--crimson);
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.3px;
}

.entry-email {
  font-size: 0.85rem;
}

.entry-email a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.entry-email a:hover {
  color: var(--crimson);
  text-decoration: underline;
}

/* â”€â”€ Entries CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.entries-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.05) 0%, rgba(201, 162, 39, 0.05) 100%);
  border-radius: 12px;
  border: 2px dashed var(--gold-l);
}

.entries-cta p {
  font-size: 1rem;
  color: var(--brown-m);
  margin: 0 0 16px;
  line-height: 1.6;
}

.cta-link {
  display: inline-block;
  padding: 12px 28px;
  background: var(--crimson);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cta-link:hover {
  background: var(--crimson-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 26, 26, 0.2);
}

/* â”€â”€ Guestbook Responsive Design â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */

/* Desktop+ (1025px and above) - Two Column Layout */
@media (min-width: 1025px) {
  .guestbook-container-two-col {
    display: grid;
    grid-template-columns: 1.3fr 1.3fr;
    gap: 40px;
    align-items: start;
  }

  .guestbook-col-7,
  .guestbook-col-5 {
    width: auto;
  }

  .guestbook-col-7 {
    grid-column: span 1;
  }

  .guestbook-col-5 {
    grid-column: span 1;
    position: sticky;
    top: 120px;
    height: fit-content;
  }

  .guestbook-form-section {
    padding: 50px;
    margin-bottom: 0;
  }

  .guestbook-entries-section {
    position: sticky;
    top: 120px;
    padding: 45px;
  }

  .form-header h3,
  .entries-header h3 {
    font-size: 1.5rem;
  }

  .form-subtitle,
  .entries-subtitle {
    font-size: 0.95rem;
  }
}

/* Large Desktop (1201px+) */
@media (min-width: 1201px) {
  .guestbook-section {
    padding: 30px 0;
  }

  .guestbook-container-two-col {
    gap: 45px;
  }

  .guestbook-col-5 {
    top: 140px;
  }

  .guestbook-entries-section {
    top: 140px;
  }
}

/* Tablets - Large (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .guestbook-section {
    padding: 50px 0;
  }

  .guestbook-container-two-col {
    gap: 35px;
  }

  .guestbook-col-5 {
    top: 110px;
  }

  .guestbook-entries-section {
    top: 110px;
  }

  .guestbook-form-section {
    padding: 45px;
  }

  .guestbook-entries-section {
    padding: 40px;
  }

  .form-header h3,
  .entries-header h3 {
    font-size: 1.35rem;
  }
}

/* Tablets - Medium (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .guestbook-section {
    padding: 45px 0;
  }

  .guestbook-container-two-col {
    display: block;
  }

  .guestbook-col-7,
  .guestbook-col-5 {
    width: 100%;
  }

  .guestbook-form-section {
    padding: 40px;
    margin-bottom: 40px;
  }

  .guestbook-entries-section {
    padding: 35px;
    position: static;
  }

  .form-header h3,
  .entries-header h3 {
    font-size: 1.2rem;
  }

  .form-subtitle,
  .entries-subtitle {
    font-size: 0.9rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-input,
  .form-textarea {
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .form-row {
    gap: 18px;
  }

  .btn-submit {
    padding: 11px 28px;
    font-size: 0.9rem;
  }

  .guestbook-entry {
    padding: 24px;
  }

  .entry-quote-icon {
    font-size: 2.5rem;
  }

  .entry-name {
    font-size: 1rem;
  }

  .entry-message {
    font-size: 0.9rem;
  }
}

/* Tablets - Small (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .guestbook-section {
    padding: 40px 0;
  }

  .guestbook-container-two-col {
    display: block;
  }

  .guestbook-col-7,
  .guestbook-col-5 {
    width: 100%;
  }

  .guestbook-form-section {
    padding: 32px;
    margin-bottom: 32px;
  }

  .guestbook-entries-section {
    padding: 32px;
  }

  .form-header h3,
  .entries-header h3 {
    font-size: 1.15rem;
  }

  .form-subtitle,
  .entries-subtitle {
    font-size: 0.88rem;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-input,
  .form-textarea {
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .form-textarea {
    min-height: 120px;
  }

  .form-row {
    gap: 16px;
  }

  .btn-submit {
    padding: 10px 26px;
    font-size: 0.9rem;
  }

  .captcha-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .captcha-box {
    min-width: 100%;
  }

  .captcha-input {
    width: 100%;
  }

  .guestbook-entry {
    padding: 22px;
  }

  .entry-quote-icon {
    font-size: 2.2rem;
  }

  .entry-name {
    font-size: 0.95rem;
  }

  .entry-message {
    font-size: 0.9rem;
  }
}

/* Mobile - Large (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  .guestbook-section {
    padding: 35px 0;
  }

  .guestbook-container-two-col {
    display: block;
  }

  .guestbook-col-7,
  .guestbook-col-5 {
    width: 100%;
  }

  .guestbook-form-section {
    padding: 24px;
    margin-bottom: 28px;
  }

  .guestbook-entries-section {
    padding: 24px;
  }

  .form-header h3,
  .entries-header h3 {
    font-size: 1.05rem;
  }

  .form-header {
    margin-bottom: 24px;
  }

  .form-subtitle,
  .entries-subtitle {
    font-size: 0.85rem;
  }

  .form-group {
    gap: 6px;
    margin-bottom: 18px;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-input,
  .form-textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .form-textarea {
    min-height: 100px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .btn-submit {
    padding: 10px 22px;
    font-size: 0.8rem;
    margin-top: 4px;
  }

  .captcha-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .captcha-box {
    padding: 10px 12px;
    min-width: 100%;
  }

  .captcha-code {
    font-size: 0.95rem;
  }

  .captcha-input {
    width: 100%;
    padding: 10px 12px;
  }

  .guestbook-entry {
    padding: 18px;
  }

  .entry-quote-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .entry-message {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }

  .entry-name {
    font-size: 0.9rem;
  }

  .entry-email {
    font-size: 0.8rem;
  }
}

/* Mobile - Extra Small (below 480px) */
@media (max-width: 479px) {
  .guestbook-section {
    padding: 28px 0;
  }

  .guestbook-container-two-col {
    display: block;
  }

  .guestbook-col-7,
  .guestbook-col-5 {
    width: 100%;
  }

  .guestbook-form-section {
    padding: 18px;
    margin-bottom: 22px;
  }

  .guestbook-entries-section {
    padding: 18px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .form-header h3,
  .entries-header h3 {
    font-size: 0.95rem;
  }

  .form-header {
    margin-bottom: 18px;
  }

  .form-subtitle,
  .entries-subtitle {
    font-size: 0.8rem;
  }

  .form-group {
    gap: 5px;
    margin-bottom: 14px;
  }

  .form-label {
    font-size: 0.8rem;
  }

  .form-input,
  .form-textarea {
    padding: 9px 11px;
    font-size: 0.8rem;
  }

  .form-textarea {
    min-height: 90px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-col-half {
    grid-column: span 1;
  }

  .btn-submit {
    padding: 9px 20px;
    font-size: 0.75rem;
    margin-top: 2px;
  }

  .captcha-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .captcha-box {
    padding: 9px 11px;
    min-width: 100%;
  }

  .captcha-code {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .captcha-input {
    width: 100%;
    padding: 9px 11px;
    font-size: 0.8rem;
  }

  .guestbook-entry {
    padding: 16px;
  }

  .entry-top {
    margin-bottom: 10px;
  }

  .entry-quote-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }

  .entry-message {
    font-size: 0.8rem;
    margin-bottom: 12px;
    padding-left: 10px;
  }

  .entry-footer {
    padding-top: 10px;
  }

  .entry-name {
    font-size: 0.85rem;
  }

  .entry-email {
    font-size: 0.75rem;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   â”€â”€ CONTACT PAGE STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Contact Section Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.contact-section {
  padding: 50px 0;
  background: #fff;
}

.contact-hero {
  text-align: center;
  margin-bottom: 60px;
}

.contact-hero .hero-title {
  font-size: 2.5rem;
  color: var(--crimson);
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-hero .hero-description {
  font-size: 1rem;
  color: var(--brown-m);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* â”€â”€ Contact Form Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.contact-form-section {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 1px solid rgba(201, 184, 160, 0.3);
  margin-bottom: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  margin: 0;
}

.form-full-width {
  grid-column: 1 / -1 !important;
}

.contact-info-section {
  padding: 10px;
}

/* â”€â”€ Contact Info Header â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.info-header {
  margin-bottom: 40px;
  text-align: left;
}

.info-header h3 {
  font-size: 1.6rem;
  color: var(--crimson);
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.info-subtitle {
  font-size: 0.95rem;
  color: var(--brown-m);
  margin: 0;
  font-weight: 400;
}

/* â”€â”€ Contact Details â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.contact-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, #fefdfb 0%, #fffbf7 100%);
  border-radius: 10px;
  border: 1px solid var(--gold-l);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.08);
  border-color: var(--crimson);
  transform: translateY(-2px);
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.1) 0%, rgba(200, 134, 10, 0.1) 100%);
  border-radius: 8px;
  color: var(--crimson);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.contact-text h4 {
  font-size: 1.1rem;
  color: var(--crimson);
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.contact-text p {
  font-size: 0.95rem;
  color: var(--brown);
  margin: 0;
  line-height: 1.5;
}

.contact-text a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-text a:hover {
  color: var(--crimson);
  text-decoration: underline;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   â”€â”€ CONTACT PAGE RESPONSIVE DESIGN
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Desktop+ (1025px and above) */
@media (min-width: 1025px) {
  .contact-form-section {
    padding: 50px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
  }

  .contact-hero .hero-title {
    font-size: 2.5rem;
  }

  .contact-hero .hero-description {
    font-size: 1rem;
  }
}

/* Large Tablets (1025px - 1200px) */
@media (min-width: 1025px) and (max-width: 1200px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-form-section {
    padding: 45px;
    margin-bottom: 40px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 18px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .contact-item {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
  }

  .contact-hero {
    margin-bottom: 50px;
  }

  .contact-hero .hero-title {
    font-size: 2.2rem;
  }

  .contact-hero .hero-description {
    font-size: 0.95rem;
  }

  .info-header h3 {
    font-size: 1.4rem;
  }

  .contact-text h4 {
    font-size: 1rem;
  }

  .contact-text p {
    font-size: 0.9rem;
  }
}

/* Medium Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .contact-section {
    padding: 45px 0;
  }

  .contact-form-section {
    padding: 40px;
    margin-bottom: 35px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 50px;
  }

  .contact-item {
    padding: 18px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 10px;
  }

  .contact-hero {
    margin-bottom: 45px;
  }

  .contact-hero .hero-title {
    font-size: 2rem;
  }

  .contact-hero .hero-description {
    font-size: 0.95rem;
  }

  .info-header h3 {
    font-size: 1.3rem;
  }

  .contact-text h4 {
    font-size: 0.95rem;
  }

  .contact-text p {
    font-size: 0.85rem;
  }
}

/* Small Tablets (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-hero {
    margin-bottom: 40px;
  }

  .contact-hero .hero-title {
    font-size: 1.8rem;
  }

  .contact-hero .hero-description {
    font-size: 0.9rem;
  }

  .info-header {
    margin-bottom: 28px;
  }

  .info-header h3 {
    font-size: 1.2rem;
  }

  .info-subtitle {
    font-size: 0.9rem;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 45px;
  }

  .contact-item {
    padding: 16px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
  }

  .contact-icon svg {
    width: 26px;
    height: 26px;
  }

  .contact-text h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }

  .contact-text p {
    font-size: 0.8rem;
  }

  .contact-form-section {
    padding: 32px;
    margin-bottom: 32px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .contact-form .form-group {
    margin-bottom: 0;
  }

  .form-full-width {
    margin-top: 10px;
  }

  .form-label {
    font-size: 0.9rem;
  }

  .form-input,
  .form-textarea {
    padding: 11px 13px;
    font-size: 0.9rem;
  }

  .form-textarea {
    min-height: 110px;
  }

  .btn-submit {
    padding: 10px 26px;
    font-size: 0.85rem;
  }

  .captcha-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .captcha-box {
    min-width: 100%;
  }

  .captcha-input {
    width: 100%;
  }
}

/* Mobile - Large (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  .contact-section {
    padding: 35px 0;
  }

  .contact-hero {
    margin-bottom: 35px;
  }

  .contact-hero .hero-title {
    font-size: 1.5rem;
  }

  .contact-hero .hero-description {
    font-size: 0.9rem;
  }

  .info-header {
    margin-bottom: 24px;
  }

  .info-header h3 {
    font-size: 1.1rem;
  }

  .info-subtitle {
    font-size: 0.88rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 40px;
  }

  .contact-item {
    padding: 14px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 6px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-text h4 {
    font-size: 0.85rem;
    margin-bottom: 3px;
  }

  .contact-text p {
    font-size: 0.8rem;
  }

  .contact-form-section {
    padding: 24px;
    margin-bottom: 28px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-form .form-group {
    margin-bottom: 0;
  }

  .form-full-width {
    margin-top: 8px;
  }

  .form-label {
    font-size: 0.85rem;
  }

  .form-input,
  .form-textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .form-textarea {
    min-height: 100px;
  }

  .btn-submit {
    padding: 10px 22px;
    font-size: 0.8rem;
  }

  .captcha-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .captcha-box {
    padding: 10px 12px;
    min-width: 100%;
  }

  .captcha-code {
    font-size: 0.95rem;
  }

  .captcha-input {
    width: 100%;
    padding: 10px 12px;
  }
}

/* Mobile - Extra Small (below 480px) */
@media (max-width: 479px) {
  .contact-section {
    padding: 28px 0;
  }

  .contact-hero {
    margin-bottom: 28px;
  }

  .contact-hero .hero-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .contact-hero .hero-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .info-header {
    margin-bottom: 18px;
    text-align: center;
  }

  .info-header h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .info-subtitle {
    font-size: 0.8rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .contact-item {
    padding: 12px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    margin: 0 auto 6px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-text h4 {
    font-size: 0.8rem;
    margin-bottom: 3px;
    line-height: 1.3;
  }

  .contact-text p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .contact-text a {
    font-size: 0.75rem;
  }

  .contact-form-section {
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form .form-group {
    margin-bottom: 0;
    gap: 5px;
  }

  .form-full-width {
    margin-top: 6px;
  }

  .form-label {
    font-size: 0.8rem;
    font-weight: 500;
  }

  .form-input,
  .form-textarea {
    padding: 9px 11px;
    font-size: 0.8rem;
    border-radius: 3px;
  }

  .form-textarea {
    min-height: 90px;
    resize: vertical;
  }

  .btn-submit {
    padding: 9px 18px;
    font-size: 0.75rem;
    margin-top: 4px;
  }

  .form-captcha {
    gap: 8px;
  }

  .captcha-wrapper {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .captcha-box {
    padding: 9px 11px;
    min-width: 100%;
    border-radius: 3px;
  }

  .captcha-code {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .captcha-input {
    width: 100%;
    padding: 9px 11px;
    font-size: 0.8rem;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   â”€â”€ MEDIA PAGE STYLES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Media Section Base â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.media-section {
  padding: 50px 0;
}

.media-hero {
  text-align: center;
  margin-bottom: 50px;
}

.media-hero .hero-title {
  font-size: 2.5rem;
  color: var(--crimson);
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.media-hero .hero-description {
  font-size: 1rem;
  color: var(--brown-m);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* â”€â”€ Featured Media Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.featured-media {
  margin-bottom: 0;
  padding: 30px 0 15px;
  background: linear-gradient(135deg, rgba(254, 253, 251, 0.5) 0%, rgba(255, 251, 247, 0.5) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  display: block;
}

.section-header .serif {
  font-size: 3.2rem;
  color: var(--brown);
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.section-header .serif em {
  color: var(--crimson);
  font-style: italic;
  margin-left: 12px;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--crimson) 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.divider.center {
  margin: 0 auto;
}

/* â”€â”€ Gallery Wrapper (3 Top, 2 Bottom) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.masonry-gallery-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-top-row,
.gallery-bottom-row {
  display: grid;
  gap: 24px;
  width: 100%;
}

.gallery-top-row {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-bottom-row {
  grid-template-columns: repeat(2, 1fr);
  max-width: 66.66%;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  border: 6px solid #c9b8a0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 0;
}

/* â”€â”€ Press Header Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.press-header {
  text-align: center;
  margin-bottom: 45px;
  padding: 40px 0;
  border-top: 1px solid rgba(201, 184, 160, 0.3);
}

.press-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
}

.press-title {
  font-size: 2.8rem;
  color: var(--brown);
  margin: 0 0 20px;
  font-family: "Bungee Inline", cursive;
  font-weight: 400;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.press-title-italic {
  color: var(--crimson);
  font-style: italic;
  margin-left: 8px;
}

.press-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--crimson) 100%);
  margin: 0 auto;
  border-radius: 2px;
}

/* â”€â”€ Press Images Special Styling â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.media-gallery .media-item[data-category="press"] {
  display: none;
}

.media-gallery .media-item[data-category="press"][style*="display: block"] {
  display: block;
}

.press-image {
  background: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(201, 184, 160, 0.2);
}

.press-image img {
  object-fit: contain;
  padding: 8px;
  background: white;
}

/* â”€â”€ Media Filter Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.media-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown);
  background: white;
  border: 2px solid var(--gold-l);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}

.filter-btn:hover {
  background: var(--gold-l);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 134, 10, 0.2);
}

.filter-btn.active {
  background: var(--crimson);
  color: white;
  border-color: var(--crimson);
  box-shadow: 0 6px 16px rgba(139, 26, 26, 0.25);
}

/* â”€â”€ Media Gallery â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.media-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(20px);
}

.media-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

.media-item.visible {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â”€â”€ Media Link â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.media-link {
  display: block;
  position: relative;
  text-decoration: none;
  height: 100%;
}

/* â”€â”€ Media Image Container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.media-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #fefdfb 0%, #fffbf7 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.media-item:hover .media-image img {
  transform: scale(1.08);
}

/* â”€â”€ Media Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(139, 26, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  cursor: pointer;
}

.media-item:hover .media-overlay {
  opacity: 1;
}

.media-overlay svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* â”€â”€ Media Info â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â€“ */
.media-info {
  padding: 0 4px;
}

.media-title {
  font-size: 1.1rem;
  color: var(--crimson);
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.media-category {
  font-size: 0.85rem;
  color: var(--gold);
  margin: 0;
  text-transform: capitalize;
  font-weight: 500;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   â”€â”€ MEDIA PAGE RESPONSIVE DESIGN
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Desktop+ (1025px and above) */
@media (min-width: 1025px) {
  .media-section {
    padding: 0;
  }

  .featured-media {
    padding: 90px 0 70px;
  }

  .masonry-gallery-wrapper {
    gap: 32px;
  }

  .gallery-top-row,
  .gallery-bottom-row {
    gap: 28px;
  }

  .gallery-bottom-row {
    max-width: 66.66%;
  }

  .featured-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .media-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .media-filters {
    gap: 18px;
    margin-bottom: 60px;
  }

  .filter-btn {
    padding: 11px 32px;
    font-size: 0.9rem;
  }

  .section-header .serif {
    font-size: 2.8rem;
  }
}

/* Large Tablets (1000px - 1200px) */
@media (min-width: 1000px) and (max-width: 1200px) {
  .media-section {
    padding: 40px 30px;
  }

  .featured-media {
    padding: 70px 0 50px;
  }

  .masonry-gallery-wrapper {
    gap: 24px;
    padding: 0 20px;
  }

  .gallery-top-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 70%;
  }

  .gallery-item {
    min-height: 300px;
    aspect-ratio: unset;
  }

  .featured-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .section-header .serif {
    font-size: 2.2rem;
  }

  .media-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 45px;
  }

  .media-hero {
    margin-bottom: 40px;
  }

  .media-hero .hero-title {
    font-size: 2rem;
  }

  .media-hero .hero-description {
    font-size: 0.93rem;
  }

  .media-filters {
    gap: 14px;
    margin-bottom: 45px;
  }

  .filter-btn {
    padding: 9px 20px;
    font-size: 0.8rem;
  }

  .media-title {
    font-size: 0.9rem;
  }

  .page-header {
    padding: 50px 30px;
  }

  footer {
    padding: 50px 30px 25px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding: 0;
  }

  .footer-col h4 {
    font-size: 10px;
  }

  .footer-col ul a {
    font-size: 12px;
  }
}

/* Medium Tablets (769px - 999px) */
@media (min-width: 769px) and (max-width: 999px) {
  .media-section {
    padding: 40px 30px;
  }

  .featured-media {
    padding: 60px 0 45px;
  }

  .masonry-gallery-wrapper {
    gap: 22px;
    padding: 0 15px;
  }

  .gallery-top-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .gallery-bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 70%;
  }

  .gallery-item {
    min-height: 280px;
    border: 5px solid #c9b8a0;
    aspect-ratio: unset;
  }

  .featured-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header .serif {
    font-size: 2rem;
  }

  .press-header {
    margin-bottom: 32px;
    padding: 25px 0;
  }

  .press-title {
    font-size: 2rem;
  }

  .media-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 40px;
  }

  .media-hero {
    margin-bottom: 35px;
  }

  .media-hero .hero-title {
    font-size: 1.9rem;
  }

  .media-hero .hero-description {
    font-size: 0.9rem;
  }

  .media-filters {
    gap: 11px;
    margin-bottom: 40px;
  }

  .filter-btn {
    padding: 9px 18px;
    font-size: 0.75rem;
  }

  .media-image {
    margin-bottom: 10px;
  }

  .media-title {
    font-size: 0.9rem;
  }

  .page-header {
    padding: 45px 30px;
  }

  footer {
    padding: 45px 30px 22px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 0;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .media-category {
    font-size: 0.8rem;
  }
}

/* Small Tablets (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .media-section {
    padding: 0;
  }

  .featured-media {
    padding: 60px 0 40px;
  }

  .masonry-gallery-wrapper {
    gap: 20px;
  }

  .gallery-top-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-bottom-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 70%;
  }

  .section-header .serif {
    font-size: 2.4rem;
  }

  .featured-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 35px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header .serif {
    font-size: 1.9rem;
  }

  .press-header {
    margin-bottom: 30px;
    padding: 25px 0;
  }

  .press-title {
    font-size: 1.9rem;
  }

  .media-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }

  .media-hero {
    margin-bottom: 35px;
  }

  .media-hero .hero-title {
    font-size: 1.8rem;
  }

  .media-hero .hero-description {
    font-size: 0.9rem;
    max-width: 550px;
  }

  .media-filters {
    gap: 10px;
    margin-bottom: 40px;
  }

  .filter-btn {
    padding: 9px 18px;
    font-size: 0.75rem;
  }

  .media-image {
    margin-bottom: 10px;
  }

  .media-overlay svg {
    width: 36px;
    height: 36px;
  }

  .media-title {
    font-size: 0.9rem;
  }

  .media-category {
    font-size: 0.75rem;
  }
}

/* Mobile - Large (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  .media-section {
    padding: 0;
  }

  .featured-media {
    padding: 50px 0 35px;
  }

  .masonry-gallery-wrapper {
    gap: 18px;
  }

  .gallery-top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .gallery-bottom-row {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .section-header .serif {
    font-size: 2rem;
  }

  .featured-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header .serif {
    font-size: 1.6rem;
  }

  .press-header {
    margin-bottom: 28px;
    padding: 20px 0;
  }

  .press-title {
    font-size: 1.6rem;
  }

  .media-gallery {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 35px;
  }

  .media-hero {
    margin-bottom: 32px;
  }

  .media-hero .hero-title {
    font-size: 1.5rem;
  }

  .media-hero .hero-description {
    font-size: 0.9rem;
    max-width: 500px;
  }

  .media-filters {
    gap: 8px;
    margin-bottom: 35px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }

  .media-image {
    margin-bottom: 10px;
    aspect-ratio: 1 / 1;
  }

  .media-overlay svg {
    width: 32px;
    height: 32px;
  }

  .media-title {
    font-size: 0.85rem;
  }

  .media-category {
    font-size: 0.7rem;
  }
}

/* Mobile - Extra Small (below 480px) */
@media (max-width: 479px) {
  .media-section {
    padding: 28px 0;
  }

  .press-header {
    margin-bottom: 24px;
    padding: 18px 0;
  }

  .press-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
  }

  .press-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .press-divider {
    width: 50px;
    height: 2px;
  }

  .media-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }

  .media-gallery .media-item[data-category="press"]:nth-child(4),
  .media-gallery .media-item[data-category="press"]:nth-child(5) {
    grid-column: span 1;
  }

  .media-hero {
    margin-bottom: 28px;
  }

  .media-hero .hero-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .media-hero .hero-description {
    font-size: 0.85rem;
    max-width: 450px;
    line-height: 1.5;
  }

  .media-filters {
    gap: 6px;
    margin-bottom: 28px;
  }

  .filter-btn {
    padding: 7px 12px;
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .media-image {
    margin-bottom: 8px;
    aspect-ratio: 1 / 1;
  }

  .media-overlay svg {
    width: 28px;
    height: 28px;
  }

  .media-title {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .media-category {
    font-size: 0.65rem;
  }

  .media-info {
    padding: 0;
  }

  .featured-media {
    padding: 30px 0 15px;
  }

  .masonry-gallery-wrapper {
    gap: 16px;
  }

  .gallery-top-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-bottom-row {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 100%;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .section-header .serif {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .divider {
    width: 60px;
    height: 3px;
  }

  .featured-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 28px;
  }
}

/* â”€â”€ Lightbox Close Icon â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lightbox-close-icon {
  position: absolute;
  top: -55px;
  right: 0;
  width: 50px;
  height: 50px;
  background: #8b1a1a !important;
  border: 3px solid #c8a828 !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  font-size: 38px !important;
  font-weight: 300 !important;
  cursor: pointer !important;
  line-height: 1 !important;
  padding: 0 !important;
  outline: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10001 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

.lightbox-close-icon:hover {
  background: #6b1212 !important;
  transform: scale(1.15) !important;
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.8) !important;
}

.lightbox-close-icon:active {
  transform: scale(0.95) !important;
}

/* Media Page CSS */
main.media-section {
  padding: 50px 40px;
  background: #fff;
}

/* Extra Small Phones (< 480px) */
@media (max-width: 479px) {
  main.media-section {
    padding: 30px 20px;
  }

  .masonry-gallery-wrapper {
    gap: 16px;
    margin-bottom: 60px;
    padding: 0 10px;
  }

  .gallery-top-row,
  .gallery-bottom-row {
    gap: 12px;
  }

  .gallery-top-row {
    grid-template-columns: 1fr;
  }

  .gallery-bottom-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .gallery-item {
    min-height: 280px;
    border: 5px solid #c9b8a0;
  }

  .page-header {
    padding: 40px 20px;
  }

  .page-title {
    font-size: 1.8rem;
  }
}

/* â”€â”€ Videos Page Styling â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.videos-section {
  padding: 60px 40px;
  background: #fff;
}

.videos-hero {
  text-align: center;
  margin-bottom: 60px;
}

.videos-hero .section-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.videos-hero .hero-title {
  font-family: "Bungee Inline", cursive;
  font-size: 3.2rem;
  color: var(--crimson);
  margin-bottom: 20px;
  font-weight: 500;
}

.videos-hero .hero-description {
  font-size: 1.05rem;
  color: rgba(44, 24, 16, 0.8);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.video-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  background: #f5f5f5;
  transition: all 0.3s ease;
  border: 8px solid #c9b8a0;
}

.video-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive - Large Tablets (1000px - 1200px) */
@media (min-width: 1000px) and (max-width: 1200px) {
  .videos-section {
    padding: 50px 35px;
  }

  .videos-hero {
    margin-bottom: 50px;
  }

  .videos-hero .hero-title {
    font-size: 2.8rem;
  }

  .videos-hero .hero-description {
    font-size: 1rem;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
  }
}

/* Responsive - Medium Tablets (769px - 999px) */
@media (min-width: 769px) and (max-width: 999px) {
  .videos-section {
    padding: 45px 30px;
  }

  .videos-hero {
    margin-bottom: 45px;
  }

  .videos-hero .hero-title {
    font-size: 2.4rem;
  }

  .videos-hero .hero-description {
    font-size: 0.95rem;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 50px;
  }
}

/* Responsive - Small Tablets (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .videos-section {
    padding: 40px 25px;
  }

  .videos-hero {
    margin-bottom: 40px;
  }

  .videos-hero .hero-title {
    font-size: 2.2rem;
  }

  .videos-hero .hero-description {
    font-size: 0.9rem;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
}

/* Responsive - Mobile Large (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  .videos-section {
    padding: 35px 20px;
  }

  .videos-hero {
    margin-bottom: 35px;
  }

  .videos-hero .hero-title {
    font-size: 1.9rem;
  }

  .videos-hero .hero-description {
    font-size: 0.85rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
}

/* Responsive - Mobile XS (< 480px) */
@media (max-width: 479px) {
  .videos-section {
    padding: 30px 16px;
  }

  .videos-hero {
    margin-bottom: 30px;
  }

  .videos-hero .hero-title {
    font-size: 1.6rem;
  }

  .videos-hero .hero-description {
    font-size: 0.8rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
}

/* â”€â”€ Awards Timeline Styling â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.awards-section {
  padding: 60px 40px;
  background: #fff;
}

.awards-header {
  text-align: center;
  margin-bottom: 80px;
}

.awards-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.awards-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  color: var(--crimson);
  margin-bottom: 12px;
  font-weight: 500;
}

.awards-description {
  font-size: 1rem;
  color: rgba(44, 24, 16, 0.7);
  margin-bottom: 24px;
}

.awards-divider {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 0 auto;
  border-radius: 2px;
}

.horizontal-timeline {
  position: relative;
  padding: 60px 20px;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.timeline-item {
  flex: 0 1 calc(25% - 30px);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 300px;
}

.timeline-item.top {
  justify-content: flex-start;
  padding-bottom: 60px;
}

.timeline-item.bottom {
  justify-content: flex-end;
  padding-top: 60px;
}

.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-item.top .timeline-node {
  bottom: -45px;
}

.timeline-item.bottom .timeline-node {
  top: -45px;
}

.node-dot {
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 4px solid var(--crimson);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold);
}

.timeline-card {
  background: var(--white);
  border: 2px solid rgba(139, 26, 26, 0.15);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  flex: 1;
}

.timeline-card:hover {
  border-color: var(--crimson);
  box-shadow: 0 8px 35px rgba(139, 26, 26, 0.15);
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: var(--crimson);
  margin-bottom: 8px;
  font-weight: 500;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.card-desc {
  font-size: 0.85rem;
  color: rgba(44, 24, 16, 0.7);
  line-height: 1.5;
  margin: 0;
}

.awards-grid {
  position: relative;
  z-index: 1;
}

.award-item {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.award-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.award-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--crimson);
  margin-bottom: 8px;
  font-weight: 500;
}

.award-subtitle {
  font-size: 0.95rem;
  color: rgba(44, 24, 16, 0.8);
  font-weight: 600;
  margin-bottom: 8px;
}

.award-description {
  font-size: 0.9rem;
  color: rgba(44, 24, 16, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}

.award-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.award-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-header-section {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.timeline-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  color: var(--crimson);
  margin-bottom: 12px;
  font-weight: 500;
}

.timeline-subtitle {
  font-size: 1rem;
  color: rgba(44, 24, 16, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.journey-timeline {
  position: relative;
  padding: 30px 0;
}

.timeline-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--crimson), var(--gold), var(--crimson));
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-events {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-event {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.timeline-event.left {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.timeline-event.right {
  justify-content: flex-start;
}

.timeline-event.left .event-card {
  margin-right: 40px;
  text-align: right;
}

.timeline-event.right .event-card {
  margin-left: 40px;
  text-align: left;
}

.event-card {
  background: var(--white);
  border: 2px solid rgba(139, 26, 26, 0.15);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  flex: 0 1 calc(50% - 60px);
}

.event-card:hover {
  border-color: var(--crimson);
  box-shadow: 0 8px 35px rgba(139, 26, 26, 0.15);
  transform: translateY(-5px);
}

.card-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-event.left .card-icon {
  margin-left: auto;
  margin-right: 0;
}

.timeline-event.right .card-icon {
  margin-right: auto;
  margin-left: 0;
}

.event-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--crimson);
  margin-bottom: 8px;
  font-weight: 500;
}

.event-subtitle {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.event-description {
  font-size: 0.85rem;
  color: rgba(44, 24, 16, 0.7);
  line-height: 1.5;
  margin: 0;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 4px solid var(--crimson);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px var(--gold);
}

.awards-cta {
  text-align: center;
  margin-top: 60px;
}

.btn-primary {
  display: inline-block;
  background: var(--crimson);
  color: #fff;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #6b1212;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.3);
}

/* Responsive - Large Tablets (1000px - 1200px) */
@media (min-width: 1000px) and (max-width: 1200px) {
  .awards-section {
    padding: 50px 35px;
  }

  .timeline-heading {
    font-size: 2.8rem;
  }

  .event-card {
    flex: 0 1 calc(50% - 50px);
  }

  .event-title {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
  .gallery-item {
    aspect-ratio: unset !important;
  }

  .guestbook-form {
    gap: 0;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {

  /* .gallery-item {
    aspect-ratio: unset !important;
  } */
  .guestbook-form {
    gap: 10px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .guestbook-form {
    gap: 10px;
  }

  .gallery-item {
    aspect-ratio: unset !important;
  }

  .text-column p,
  .blessing-text,
  .section-text {
    font-size: 18px;
    line-height: 1.95;
  }

  .book-year-badge {
    font-size: 1em;
  }

  .book-card-premium {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* Responsive - Medium Tablets (769px - 999px) */
@media (min-width: 769px) and (max-width: 999px) {
  .awards-section {
    padding: 45px 30px;
  }

  .timeline-heading {
    font-size: 2.4rem;
  }

  .event-card {
    flex: 0 1 calc(50% - 40px);
  }

  .event-title {
    font-size: 1.2rem;
  }

  .event-description {
    font-size: 0.8rem;
  }
}

/* Responsive - Small Tablets (600px - 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .awards-section {
    padding: 40px 25px;
  }

  .timeline-heading {
    font-size: 2.2rem;
  }

  .timeline-center-line {
    left: 20px;
  }

  .timeline-event {
    margin-bottom: 50px;
  }

  .timeline-event.left,
  .timeline-event.right {
    flex-direction: row;
    justify-content: flex-start;
  }

  .timeline-event.left .event-card,
  .timeline-event.right .event-card {
    margin-left: 80px;
    margin-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
    top: 30px;
  }

  .event-card {
    flex: 1;
  }

  .event-title {
    font-size: 1.1rem;
  }

  .event-description {
    font-size: 0.8rem;
  }
}

/* Responsive - Mobile Large (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
  .awards-section {
    padding: 35px 20px;
  }

  .timeline-heading {
    font-size: 1.9rem;
  }

  .timeline-center-line {
    left: 20px;
  }

  .timeline-event {
    margin-bottom: 45px;
  }

  .timeline-event.left,
  .timeline-event.right {
    flex-direction: row;
    justify-content: flex-start;
  }

  .timeline-event.left .event-card,
  .timeline-event.right .event-card {
    margin-left: 70px;
    margin-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 20px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .event-card {
    flex: 1;
    padding: 16px;
  }

  .event-title {
    font-size: 1rem;
  }

  .event-description {
    font-size: 0.75rem;
  }
}

/* Responsive - Mobile XS (< 480px) */
@media (max-width: 479px) {
  .awards-section {
    padding: 30px 16px;
  }

  .timeline-header-section {
    margin-bottom: 50px;
  }

  .timeline-heading {
    font-size: 1.6rem;
  }

  .timeline-center-line {
    left: 15px;
  }

  .timeline-event {
    margin-bottom: 40px;
  }

  .timeline-event.left,
  .timeline-event.right {
    flex-direction: row;
    justify-content: flex-start;
  }

  .timeline-event.left .event-card,
  .timeline-event.right .event-card {
    margin-left: 60px;
    margin-right: 0;
    text-align: left;
  }

  .timeline-dot {
    left: 15px;
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .event-card {
    flex: 1;
    padding: 14px;
  }

  .card-year {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
  }

  .event-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .event-subtitle {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .event-description {
    font-size: 0.7rem;
  }
}

/* -- Premium Awards Timeline ----------------------------------- */
.awards-premium-section {
  padding: 80px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f0e6cc 100%);
}

.premium-header {
  text-align: center;
  margin-bottom: 100px;
}

.premium-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: var(--crimson);
  margin-bottom: 20px;
  font-weight: 500;
}

.premium-subtitle {
  font-size: 1.1rem;
  color: rgba(44, 24, 16, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.premium-timeline-wrapper {
  position: relative;
  margin-bottom: 80px;
  padding: 40px 0;
}

.timeline-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
}

.timeline-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--crimson);
  background: var(--white);
  color: var(--crimson);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-nav-btn:hover:not(:disabled) {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.2);
  transform: scale(1.08);
}

.timeline-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.timeline-track {
  position: relative;
  height: 100px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 60px;
  background: transparent;
}

.timeline-track::-webkit-scrollbar {
  height: 6px;
}

.timeline-track::-webkit-scrollbar-track {
  background: transparent;
}

.timeline-track::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.timeline-nodes-container {
  position: relative;
  display: flex;
  gap: 50px;
  min-width: min-content;
  padding: 30px 0;
  justify-content: flex-start;
}

.timeline-nodes-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -60px;
  right: -60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  z-index: 0;
  transform: translateY(-50%);
}

.timeline-progress {
  display: none;
}

.timeline-node {
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.node-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.timeline-node:hover .node-badge {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.timeline-node.active .node-badge {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-width: 3px;
}

.node-year {
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}

.awards-carousel {
  position: relative;
  height: 340px;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(139, 26, 26, 0.1);
}

.award-card-premium {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 36px;
}

.award-card-premium.active {
  opacity: 1;
  visibility: visible;
}

.card-content {
  display: flex;
  gap: 32px;
  height: 100%;
  align-items: center;
}

.card-badge {
  width: 100px;
  height: 100px;
  min-width: 100px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-year-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.card-award-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--crimson);
  margin-bottom: 6px;
  font-weight: 500;
}

.card-organization {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.card-award-desc {
  font-size: 0.92rem;
  color: rgba(44, 24, 16, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-btn {
  display: inline-block;
  width: fit-content;
  padding: 12px 28px;
  background: var(--crimson);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #6b1212;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.3);
}

@media (max-width: 1024px) {
  .awards-premium-section {
    padding: 60px 30px;
  }

  .premium-title {
    font-size: 2.8rem;
  }

  .card-award-title {
    font-size: 1.9rem;
  }

  .card-badge {
    width: 100px;
    height: 100px;
  }

  .card-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .awards-premium-section {
    padding: 50px 20px;
  }

  .premium-title {
    font-size: 2.2rem;
  }

  .premium-subtitle {
    font-size: 1rem;
  }

  .timeline-track {
    padding: 0 30px;
  }

  .timeline-nodes-container {
    gap: 30px;
  }

  .node-badge {
    width: 56px;
    height: 56px;
    border-width: 2px;
  }

  .awards-carousel {
    height: 320px;
  }

  .award-card-premium {
    padding: 30px;
  }

  .card-content {
    gap: 24px;
  }

  .card-badge {
    width: 80px;
    height: 80px;
  }

  .card-award-title {
    font-size: 1.6rem;
  }

  .card-award-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .awards-premium-section {
    padding: 40px 16px;
  }

  .premium-header {
    margin-bottom: 60px;
  }

  .premium-title {
    font-size: 1.8rem;
  }

  .premium-subtitle {
    font-size: 0.95rem;
  }

  .timeline-nav-btn {
    width: 40px;
    height: 40px;
  }

  .timeline-track {
    padding: 0 20px;
    height: 70px;
  }

  .timeline-nodes-container {
    gap: 24px;
    padding: 30px 0;
  }

  .node-badge {
    width: 48px;
    height: 48px;
  }

  .node-year {
    font-size: 0.8rem;
  }

  .awards-carousel {
    height: auto;
    min-height: 380px;
  }

  .award-card-premium {
    padding: 20px;
    position: static;
    opacity: 1;
    visibility: visible;
  }

  .award-card-premium:not(.active) {
    display: none;
  }

  .card-content {
    flex-direction: column;
    gap: 20px;
  }

  .card-badge {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }

  .card-info {
    text-align: center;
  }

  .card-award-title {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .card-organization {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .card-award-desc {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }
}


/* ── LUXURY MUSEUM TIMELINE ─────────────────────────────────── */

.luxury-timeline-section {
  padding: 100px 40px;
  background: #ffffff;
}

.timeline-intro {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  color: #8b1a1a;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}

.intro-subtitle {
  font-size: 1.1rem;
  color: rgba(44, 24, 16, 0.65);
  line-height: 1.8;
  font-weight: 300;
}

/* Progress Container */
.progress-container {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  height: 20px;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b1a1a, #ceaf3d);
  width: 0;
  transition: width 0.4s ease;
}

.progress-container::before,
.progress-container::after {
  content: '';
  position: absolute;
  top: 0;
  height: 2px;
  width: 100%;
  background: rgba(139, 26, 26, 0.1);
  z-index: -1;
}

.progress-text {
  display: block;
  font-size: 0.9rem;
  color: #ceaf3d;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Year Display */
.year-display {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.year-display::before,
.year-display::after {
  content: '';
  display: block;
  height: 1px;
  background: #ceaf3d;
  width: 60px;
  margin: 0 auto 16px;
}

.year-display::after {
  margin-top: 16px;
  margin-bottom: 0;
}

.year-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  color: #ceaf3d;
  font-weight: 400;
  letter-spacing: 2px;
  transition: all 0.4s ease;
}

/* Timeline Wrapper */
.timeline-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 100px;
  position: relative;
}

.timeline-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #8b1a1a;
  background: #ffffff;
  color: #8b1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.timeline-arrow:hover {
  background: #8b1a1a;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.2);
}

.timeline-scroll {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 30px 0;
}

.timeline-scroll::-webkit-scrollbar {
  height: 4px;
}

.timeline-scroll::-webkit-scrollbar-track {
  background: rgba(139, 26, 26, 0.05);
  border-radius: 2px;
}

.timeline-scroll::-webkit-scrollbar-thumb {
  background: #ceaf3d;
  border-radius: 2px;
}

.timeline-track {
  position: relative;
  padding: 0 40px;
  display: inline-flex;
  gap: 50px;
  min-width: 100%;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b1a1a 10%, #8b1a1a 90%, transparent);
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-nodes {
  display: flex;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
}

.node-medal {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.timeline-node:hover .node-medal {
  opacity: 1;
  transform: scale(1.15);
}

.timeline-node.active .node-medal {
  opacity: 1;
  transform: scale(1.25);
  filter: drop-shadow(0 4px 12px rgba(206, 175, 61, 0.4));
}

.node-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: #8b1a1a;
  letter-spacing: 0.5px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.timeline-node:hover .node-year,
.timeline-node.active .node-year {
  opacity: 1;
  color: #ceaf3d;
}

/* Award Card Display */
.awards-display {
  position: relative;
  height: 340px;
  margin-bottom: 60px;
}

.award-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}

.award-card.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.card-content {
  display: flex;
  gap: 60px;
  height: 100%;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(139, 26, 26, 0.15);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.award-card.active .card-content {
  animation: fadeUpIn 0.5s ease forwards;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-left {
  flex-shrink: 0;
}

.card-icon {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.award-card.active .card-icon {
  transform: scale(1.05);
}

.card-right {
  flex: 1;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: #8b1a1a;
  margin: 0 0 6px;
  font-weight: 500;
}

.card-organization {
  font-size: 0.95rem;
  color: #ceaf3d;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: 0.5px;
}

.card-year {
  font-size: 0.85rem;
  color: rgba(139, 26, 26, 0.5);
  font-weight: 600;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-description {
  font-size: 0.95rem;
  color: rgba(44, 24, 16, 0.7);
  line-height: 1.6;
  margin: 0 0 16px;
}

.card-link {
  display: inline-block;
  font-size: 0.9rem;
  color: #8b1a1a;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: #ceaf3d;
  border-bottom-color: #ceaf3d;
}

/* Responsive */
@media (max-width: 1024px) {
  .luxury-timeline-section {
    padding: 80px 30px;
  }

  .intro-title {
    font-size: 3rem;
  }

  .year-value {
    font-size: 3.5rem;
  }

  .card-content {
    gap: 40px;
    padding: 32px;
  }

  .card-icon {
    width: 100px;
    height: 100px;
  }

  .card-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .luxury-timeline-section {
    padding: 60px 20px;
  }

  .intro-title {
    font-size: 2.2rem;
  }

  .intro-subtitle {
    font-size: 1rem;
  }

  .year-value {
    font-size: 2.8rem;
  }

  .timeline-arrow {
    width: 40px;
    height: 40px;
  }

  .timeline-track {
    padding: 0 20px;
    gap: 40px;
  }

  .timeline-nodes {
    gap: 40px;
  }

  .node-medal {
    font-size: 1.6rem;
  }

  .card-content {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    height: auto;
    min-height: 320px;
  }

  .card-icon {
    width: 90px;
    height: 90px;
  }

  .card-title {
    font-size: 1.6rem;
  }

  .card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .luxury-timeline-section {
    padding: 40px 16px;
  }

  .timeline-intro {
    margin-bottom: 50px;
  }

  .intro-title {
    font-size: 1.8rem;
  }

  .intro-subtitle {
    font-size: 0.95rem;
  }

  .progress-container {
    margin-bottom: 40px;
  }

  .year-display {
    margin-bottom: 50px;
  }

  .year-value {
    font-size: 2.2rem;
  }

  .timeline-wrapper {
    margin-bottom: 60px;
  }

  .timeline-arrow {
    width: 36px;
    height: 36px;
  }

  .timeline-track {
    padding: 0 15px;
    gap: 35px;
  }

  .timeline-nodes {
    gap: 35px;
  }

  .node-medal {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .node-year {
    font-size: 0.75rem;
  }

  .awards-display {
    height: auto;
    min-height: 300px;
  }

  .card-content {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-organization {
    font-size: 0.9rem;
  }

  .card-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .card-link {
    font-size: 0.85rem;
  }
}

/* ── PREMIUM ZIG-ZAG TIMELINE ─────────────────────────────────── */

.zigzag-timeline-section {
  padding: 80px 40px;
  background: #ffffff;
}

.timeline-header {
  text-align: center;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: #8b1a1a;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}

.timeline-subtitle {
  font-size: 1.05rem;
  color: rgba(44, 24, 16, 0.7);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Zig-Zag Timeline Container */
.zigzag-timeline {
  position: relative;
  padding: 80px 0;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Timeline Line */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #8b1a1a, #8b1a1a);
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #ceaf3d, #e0c158);
  transform: translateY(-50%);
  width: 0;
  transition: width 0.2s ease;
  z-index: 1;
  box-shadow: 0 0 12px rgba(206, 175, 61, 0.4);
}

/* Timeline Items */
.timeline-item {
  flex: 0 0 auto;
  width: 300px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.timeline-item.top {
  margin-top: 0;
  margin-bottom: 120px;
}

.timeline-item.bottom {
  margin-top: 120px;
  margin-bottom: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline Node (Medal) */
.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #ceaf3d;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 3;
}

.timeline-item.top .timeline-node {
  bottom: -90px;
}

.timeline-item.bottom .timeline-node {
  top: -90px;
}

.node-medal {
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.node-year {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 700;
  color: #8b1a1a;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.timeline-item.bottom .node-year {
  top: -28px;
  bottom: auto;
}

.timeline-node:hover {
  background: #8b1a1a;
  border-color: #8b1a1a;
  box-shadow: 0 8px 24px rgba(206, 175, 61, 0.3);
  transform: translateX(-50%) scale(1.15);
}

.timeline-node:hover .node-medal {
  color: #ceaf3d;
  transform: scale(1.2);
}

/* Award Card */
.award-card {
  background: #ffffff;
  border: 2px solid #ceaf3d;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  margin-top: 20px;
}

.timeline-item.bottom .award-card {
  margin-top: 0;
  margin-bottom: 20px;
}

.award-card:hover {
  border-color: #8b1a1a;
  box-shadow: 0 16px 40px rgba(139, 26, 26, 0.12);
  transform: translateY(-8px);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.award-card:hover .card-icon {
  transform: scale(1.08);
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.card-org {
  font-size: 0.9rem;
  color: #ceaf3d;
  font-weight: 600;
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: 0.3px;
}

.card-desc {
  font-size: 0.9rem;
  color: rgba(44, 24, 16, 0.7);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
  .zigzag-timeline-section {
    padding: 60px 30px;
  }

  .timeline-title {
    font-size: 3rem;
  }

  .zigzag-timeline {
    gap: 50px;
    padding: 70px 0;
  }

  .timeline-item {
    width: 280px;
  }

  .card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .zigzag-timeline-section {
    padding: 50px 20px;
  }

  .timeline-title {
    font-size: 2.5rem;
  }

  .zigzag-timeline {
    gap: 40px;
    padding: 30px 0;
  }

  .timeline-item {
    width: 260px;
  }

  .timeline-node {
    width: 56px;
    height: 56px;
  }

  .node-medal {
    font-size: 1.6rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .zigzag-timeline-section {
    padding: 40px 16px;
  }

  .timeline-header {
    margin-bottom: 60px;
  }

  .timeline-title {
    font-size: 2rem;
  }

  .timeline-subtitle {
    font-size: 0.95rem;
  }

  .zigzag-timeline {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 32px;
    width: 3px;
    height: auto;
  }

  .timeline-progress {
    top: 0;
    bottom: auto;
    left: 32px;
    width: 3px;
    height: 0;
  }

  .timeline-item {
    width: 100%;
    margin-left: 100px;
  }

  .timeline-item.top,
  .timeline-item.bottom {
    margin-top: 0;
    margin-bottom: 40px;
  }

  .timeline-node {
    position: static;
    transform: none;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .timeline-item.top .timeline-node,
  .timeline-item.bottom .timeline-node {
    top: auto;
    bottom: auto;
  }

  .node-year {
    position: static;
    transform: none;
    display: block;
    margin-top: 8px;
    text-align: center;
  }

  .award-card {
    margin-top: 0;
    margin-bottom: 0;
  }

  .timeline-item.bottom .award-card {
    margin-bottom: 0;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .zigzag-timeline-section {
    padding: 30px 12px;
  }

  .timeline-title {
    font-size: 1.6rem;
  }

  .timeline-subtitle {
    font-size: 0.9rem;
  }

  .zigzag-timeline {
    padding: 0;
  }

  .timeline-item {
    margin-left: 70px;
  }

  .timeline-line {
    left: 24px;
  }

  .timeline-progress {
    left: 24px;
  }

  .timeline-node {
    width: 52px;
    height: 52px;
  }

  .node-medal {
    font-size: 1.4rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-org {
    font-size: 0.85rem;
  }

  .card-desc {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .award-card {
    padding: 20px;
    margin-bottom: 30px;
  }
}

/* ── PREMIUM ALTERNATING HORIZONTAL TIMELINE ─────────────────────────────────── */

.premium-timeline-section {
  padding: 100px 40px;
  background: #ffffff;
}

.timeline-header {
  text-align: center;
  margin-bottom: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  color: #8b1a1a;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: -1px;
}

.timeline-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Timeline Navigation */
.timeline-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #8b1a1a;
  background: #ffffff;
  color: #8b1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-arrow:hover {
  background: #8b1a1a;
  color: #ceaf3d;
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.2);
  transform: scale(1.05);
}

/* Timeline Wrapper */
.timeline-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 30px 0;
  margin-bottom: 40px;
}

.timeline-wrapper::-webkit-scrollbar {
  height: 6px;
}

.timeline-wrapper::-webkit-scrollbar-track {
  background: rgba(139, 26, 26, 0.05);
}

.timeline-wrapper::-webkit-scrollbar-thumb {
  background: #ceaf3d;
  border-radius: 3px;
}

/* Timeline Line */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #8b1a1a;
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #ceaf3d, #e0c158);
  width: 0;
  transition: width 0.2s ease;
  z-index: 1;
  box-shadow: 0 0 12px rgba(206, 175, 61, 0.5);
}

/* Timeline Items */
.timeline-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 360px;
  margin: 0 20px;
  animation: slideIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item.top {
  flex-direction: column-reverse;
}

.timeline-item.bottom {
  flex-direction: column;
}

/* Timeline Node */
.timeline-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.timeline-item.top .timeline-node {
  bottom: -95px;
}

.timeline-item.bottom .timeline-node {
  top: -95px;
}

.node-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #ceaf3d;
  box-shadow: 0 4px 12px rgba(206, 175, 61, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.node-dot::before {
  content: '🏆';
  font-size: 1.2rem;
}

.node-glow {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(206, 175, 61, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.timeline-item:hover .node-dot {
  transform: scale(1.2);
  box-shadow: 0 8px 24px rgba(206, 175, 61, 0.4);
  border-color: #8b1a1a;
  background: #8b1a1a;
  color: #ceaf3d;
}

/* Connector Line */
.connector-line {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, #ceaf3d, #8b1a1a);
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item.top .connector-line {
  top: 100%;
  left: 50%;
  height: 85px;
  transform: translateX(-50%);
}

.timeline-item.bottom .connector-line {
  bottom: 100%;
  left: 50%;
  height: 85px;
  transform: translateX(-50%);
}

/* Award Card */
.award-card {
  background: #ffffff;
  border: 2px solid #ceaf3d;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  flex: 0 0 auto;
  width: 100%;
  position: relative;
  z-index: 5;
}

.award-card:hover {
  border-color: #8b1a1a;
  box-shadow: 0 20px 48px rgba(139, 26, 26, 0.15);
  transform: translateY(-8px);
}

.award-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Year Badge */
.year-badge {
  display: inline-block;
  background: #8b1a1a;
  color: #ceaf3d;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.15);
  transition: all 0.3s ease;
}

.award-card:hover .year-badge {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 26, 26, 0.25);
}

/* Card Content */
.card-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.award-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.3;
}

.award-org {
  font-size: 0.95rem;
  color: #ceaf3d;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: 0.3px;
}

.award-desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px;
  letter-spacing: 0.2px;
}

.card-link {
  display: inline-block;
  color: #8b1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.4px;
}

.card-link:hover {
  color: #ceaf3d;
  border-bottom-color: #ceaf3d;
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
  .premium-timeline-section {
    padding: 80px 30px;
  }

  .timeline-title {
    font-size: 3.2rem;
  }

  .timeline-item {
    min-width: 340px;
  }

  .award-card {
    padding: 28px;
  }

  .award-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .premium-timeline-section {
    padding: 60px 20px;
  }

  .timeline-title {
    font-size: 2.8rem;
  }

  .timeline-description {
    font-size: 1rem;
  }

  .timeline-item {
    min-width: 320px;
    margin: 0 15px;
  }

  .timeline-node {
    width: 48px;
    height: 48px;
  }

  .node-dot {
    width: 36px;
    height: 36px;
    border-width: 2px;
    font-size: 1.4rem;
  }

  .node-dot::before {
    font-size: 1rem;
  }

  .award-card {
    padding: 24px;
  }

  .award-title {
    font-size: 1.5rem;
  }

  .card-icon {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .premium-timeline-section {
    padding: 50px 16px;
  }

  .timeline-header {
    margin-bottom: 60px;
  }

  .timeline-title {
    font-size: 2.2rem;
  }

  .timeline-description {
    font-size: 0.95rem;
  }

  .timeline-nav {
    gap: 24px;
    margin-bottom: 60px;
  }

  .nav-arrow {
    width: 44px;
    height: 44px;
  }

  .timeline-item {
    min-width: 100vw;
    margin: 0;
    padding: 0 16px;
  }

  .timeline-wrapper {
    padding: 50px 0;
    scroll-snap-type: x mandatory;
  }

  .timeline-item {
    scroll-snap-align: center;
  }

  .node-dot {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }

  .node-dot::before {
    font-size: 0.9rem;
  }

  .award-card {
    padding: 20px;
  }

  .award-title {
    font-size: 1.3rem;
  }

  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .award-desc {
    font-size: 0.85rem;
  }

  .year-badge {
    font-size: 0.85rem;
    padding: 6px 12px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .premium-timeline-section {
    padding: 40px 12px;
  }

  .timeline-title {
    font-size: 1.8rem;
  }

  .timeline-description {
    font-size: 0.9rem;
  }

  .timeline-nav {
    gap: 20px;
    margin-bottom: 50px;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .timeline-item {
    min-width: 100vw;
    padding: 0 12px;
  }

  .timeline-wrapper {
    padding: 40px 0;
  }

  .node-dot {
    width: 28px;
    height: 28px;
  }

  .node-dot::before {
    font-size: 0.8rem;
  }

  .award-card {
    padding: 16px;
    border-radius: 18px;
  }

  .award-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .award-org {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .award-desc {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .card-link {
    font-size: 0.8rem;
  }
}

/* ── MODERN ALTERNATING TIMELINE ─────────────────────────────────── */

.modern-timeline-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #faf8f4 0%, #ffffff 100%);
}

.timeline-intro {
  text-align: center;
  margin-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  color: #8b1a1a;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}

.intro-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
}

/* Timeline Wrapper */
.timeline-items-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-items-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, #ceaf3d, #8b1a1a, #ceaf3d);
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline Cards */
.timeline-card {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  animation: cardFadeIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-card.left {
  justify-content: flex-end;
  margin-right: 50%;
  padding-right: 40px;
}

.timeline-card.right {
  justify-content: flex-start;
  margin-left: 50%;
  padding-left: 40px;
}

/* Timeline Node Connector */
.timeline-card::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 4px solid #ceaf3d;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 0 6px #faf8f4;
  transition: all 0.3s ease;
}

.timeline-card:hover::before {
  box-shadow: 0 0 0 8px #faf8f4, 0 0 20px rgba(206, 175, 61, 0.6);
  transform: translateX(-50%) scale(1.3);
}

/* Card Content */
.card-content {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #ceaf3d;
  transition: all 0.4s ease;
  cursor: pointer;
}

.timeline-card:hover .card-content {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139, 26, 26, 0.12);
  border-left-color: #8b1a1a;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 16px;
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #8b1a1a;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

.card-year {
  background: #8b1a1a;
  color: #ceaf3d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.15);
  flex-shrink: 0;
}

.card-org {
  font-size: 0.95rem;
  color: #ceaf3d;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}

.card-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}

.card-link {
  display: inline-block;
  color: #8b1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.card-link:hover {
  color: #ceaf3d;
  border-bottom-color: #ceaf3d;
  transform: translateX(4px);
}

/* Card Icon */
.card-icon {
  font-size: 4rem;
  line-height: 1;
  opacity: 0.7;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.timeline-card:hover .card-icon {
  opacity: 1;
  transform: scale(1.15) rotate(-10deg);
}

.timeline-card.left .card-icon {
  order: 2;
}

.timeline-card.right .card-icon {
  order: -1;
}

/* Responsive */
@media (max-width: 1200px) {
  .modern-timeline-section {
    padding: 80px 30px;
  }

  .intro-title {
    font-size: 3.2rem;
  }

  .timeline-card {
    gap: 30px;
    margin-bottom: 70px;
  }

  .timeline-card.left {
    padding-right: 30px;
  }

  .timeline-card.right {
    padding-left: 30px;
  }

  .card-content {
    padding: 28px;
  }

  .card-title {
    font-size: 1.6rem;
  }

  .card-icon {
    font-size: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .modern-timeline-section {
    padding: 60px 20px;
  }

  .intro-title {
    font-size: 2.8rem;
  }

  .intro-subtitle {
    font-size: 1rem;
  }

  .timeline-card {
    gap: 24px;
    margin-bottom: 60px;
  }

  .timeline-card.left {
    margin-right: 45%;
    padding-right: 24px;
  }

  .timeline-card.right {
    margin-left: 45%;
    padding-left: 24px;
  }

  .card-content {
    padding: 24px;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-icon {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .modern-timeline-section {
    padding: 50px 16px;
  }

  .timeline-intro {
    margin-bottom: 60px;
  }

  .intro-title {
    font-size: 2.2rem;
  }

  .intro-subtitle {
    font-size: 0.95rem;
  }

  .timeline-items-wrapper::before {
    left: 20px;
  }

  .timeline-card {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 60px;
    margin-right: 0;
    gap: 0;
    padding: 0;
    margin-bottom: 50px;
  }

  .timeline-card.left,
  .timeline-card.right {
    margin-left: 60px;
    margin-right: 0;
    padding: 0;
  }

  .timeline-card::before {
    left: -40px;
  }

  .card-content {
    width: 100%;
    padding: 20px;
    border-left: 4px solid #ceaf3d;
  }

  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    order: initial;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-org {
    font-size: 0.9rem;
  }

  .card-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .modern-timeline-section {
    padding: 40px 12px;
  }

  .intro-title {
    font-size: 1.8rem;
  }

  .intro-subtitle {
    font-size: 0.9rem;
  }

  .timeline-items-wrapper::before {
    left: 16px;
  }

  .timeline-card {
    margin-left: 50px;
    margin-bottom: 40px;
  }

  .timeline-card::before {
    left: -34px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .card-content {
    padding: 16px;
    border-left: 3px solid #ceaf3d;
  }

  .card-header {
    flex-direction: column;
    gap: 8px;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-year {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .card-desc {
    font-size: 0.85rem;
  }

  .card-link {
    font-size: 0.85rem;
  }
}

/* ── BIOGRAPHY TIMELINE DESIGN ─────────────────────────────────── */

.biography-timeline-section {
  padding: 100px 40px;
  background: #ffffff;
}

.awards-header {
  text-align: center;
  margin-bottom: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.awards-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  color: #8b1a1a;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.awards-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Biography Timeline Container */
.biography-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}

.biography-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, #ceaf3d 0%, #8b1a1a 50%, #ceaf3d 100%);
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline Entries */
.timeline-entry {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  animation: entryFadeIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes entryFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-entry.top {
  flex-direction: row;
  margin-right: 50%;
  padding-right: 50px;
  justify-content: flex-end;
}

.timeline-entry.bottom {
  flex-direction: row-reverse;
  margin-left: 50%;
  padding-left: 50px;
  justify-content: flex-end;
}

/* Year Badge */
.entry-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: #8b1a1a;
  color: #ceaf3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.2);
  border: 3px solid #ffffff;
  transition: all 0.4s ease;
  z-index: 3;
}

.timeline-entry:hover .entry-year {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 8px 30px rgba(139, 26, 26, 0.3);
}

/* Entry Card */
.entry-card {
  background: #ffffff;
  border: 2px solid #ceaf3d;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  flex: 0 0 auto;
  width: calc(50% - 60px);
  cursor: pointer;
}

.timeline-entry.top .entry-card {
  margin-right: 0;
}

.timeline-entry.bottom .entry-card {
  margin-left: 0;
}

.entry-card:hover {
  border-color: #8b1a1a;
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.12);
}

/* Entry Content */
.entry-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #8b1a1a;
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.3;
}

.entry-subtitle {
  font-size: 0.95rem;
  color: #ceaf3d;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: 0.3px;
}

.entry-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 1200px) {
  .biography-timeline-section {
    padding: 80px 30px;
  }

  .awards-title {
    font-size: 3.2rem;
  }

  .timeline-entry {
    margin-bottom: 50px;
  }

  .timeline-entry.top {
    margin-right: 48%;
    padding-right: 40px;
  }

  .timeline-entry.bottom {
    margin-left: 48%;
    padding-left: 40px;
  }

  .entry-card {
    width: calc(50% - 45px);
  }

  .entry-year {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) {
  .biography-timeline-section {
    padding: 60px 20px;
  }

  .awards-title {
    font-size: 2.8rem;
  }

  .awards-subtitle {
    font-size: 1rem;
  }

  .timeline-entry {
    margin-bottom: 45px;
  }

  .timeline-entry.top {
    margin-right: 45%;
    padding-right: 30px;
  }

  .timeline-entry.bottom {
    margin-left: 45%;
    padding-left: 30px;
  }

  .entry-card {
    width: calc(50% - 40px);
    padding: 28px;
  }

  .entry-title {
    font-size: 1.6rem;
  }

  .entry-year {
    width: 56px;
    height: 56px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .biography-timeline-section {
    padding: 50px 16px;
  }

  .awards-header {
    margin-bottom: 60px;
  }

  .awards-title {
    font-size: 2.2rem;
  }

  .awards-subtitle {
    font-size: 0.95rem;
  }

  .biography-timeline {
    padding: 40px 0;
  }

  .biography-timeline::before {
    left: 24px;
  }

  .timeline-entry {
    flex-direction: column !important;
    align-items: flex-start;
    margin: 0 0 40px 60px;
    padding: 0 !important;
  }

  .entry-year {
    position: absolute;
    left: -48px;
    top: 0;
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
    border-width: 2px;
  }

  .entry-card {
    width: 100%;
    padding: 24px;
    border-left: 6px solid #ceaf3d;
    border-radius: 14px;
  }

  .timeline-entry.top .entry-card,
  .timeline-entry.bottom .entry-card {
    margin: 0;
  }

  .entry-title {
    font-size: 1.4rem;
  }

  .entry-subtitle {
    font-size: 0.9rem;
  }

  .entry-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .biography-timeline-section {
    padding: 40px 12px;
  }

  .awards-title {
    font-size: 1.8rem;
  }

  .awards-subtitle {
    font-size: 0.9rem;
  }

  .biography-timeline {
    padding: 30px 0;
  }

  .biography-timeline::before {
    left: 18px;
  }

  .timeline-entry {
    margin-left: 50px;
    margin-bottom: 30px;
  }

  .entry-year {
    left: -36px;
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
    border-width: 2px;
  }

  .entry-card {
    padding: 16px;
    border-left: 4px solid #ceaf3d;
  }

  .entry-title {
    font-size: 1.2rem;
  }

  .entry-subtitle {
    font-size: 0.85rem;
  }

  .entry-text {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

/* ── ELEGANT VERTICAL TIMELINE ─────────────────────────────────── */

.elegant-timeline-section {
  padding: 100px 40px;
  background: #ffffff;
}

.timeline-hero {
  text-align: center;
  margin-bottom: 120px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  color: #8b1a1a;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #999;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Elegant Timeline Container */
.elegant-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, transparent, #ceaf3d 20%, #ceaf3d 80%, transparent);
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline Items */
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  animation: itemSlideIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes itemSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item.left {
  justify-content: flex-end;
  margin-right: 50%;
  padding-right: 60px;
}

.timeline-item.right {
  justify-content: flex-start;
  margin-left: 50%;
  padding-left: 60px;
}

/* Year Badge */
.year-badge {
  width: 80px;
  height: 80px;
  background: #8b1a1a;
  color: #ceaf3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.2);
  border: 3px solid #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.timeline-item:hover .year-badge {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.3);
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 4px solid #ceaf3d;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px #faf8f4;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  box-shadow: 0 0 0 8px #faf8f4, 0 0 16px rgba(206, 175, 61, 0.5);
  transform: translateX(-50%) scale(1.3);
}

/* Timeline Card */
.timeline-card {
  background: #ffffff;
  border: 2px solid #ceaf3d;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  cursor: pointer;
  flex: 1;
}

.timeline-card:hover {
  border-color: #8b1a1a;
  box-shadow: 0 12px 40px rgba(139, 26, 26, 0.12);
  transform: translateY(-4px);
}

.card-award-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #8b1a1a;
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.3;
}

.card-subtitle {
  font-size: 0.95rem;
  color: #ceaf3d;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}

.card-location {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .elegant-timeline-section {
    padding: 80px 30px;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .timeline-item.left {
    margin-right: 48%;
    padding-right: 50px;
  }

  .timeline-item.right {
    margin-left: 48%;
    padding-left: 50px;
  }

  .year-badge {
    width: 70px;
    height: 70px;
    font-size: 1.2rem;
  }

  .timeline-card {
    padding: 24px 28px;
  }

  .card-award-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .elegant-timeline-section {
    padding: 60px 20px;
  }

  .timeline-hero {
    margin-bottom: 80px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .elegant-timeline {
    padding: 40px 0;
  }

  .timeline-center-line {
    left: 24px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 60px;
    padding: 0 0 0 100px;
  }

  .timeline-item.left,
  .timeline-item.right {
    margin-left: 0;
    margin-right: 0;
    padding-left: 100px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-dot {
    position: absolute;
    left: 16px;
    top: 0;
  }

  .year-badge {
    position: absolute;
    left: -68px;
    top: -10px;
    width: 60px;
    height: 60px;
    font-size: 1rem;
    border-width: 2px;
  }

  .timeline-card {
    width: 100%;
    padding: 20px 24px;
    border-left: 6px solid #ceaf3d;
  }

  .card-award-title {
    font-size: 1.4rem;
  }

  .card-subtitle {
    font-size: 0.9rem;
  }

  .card-location {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .elegant-timeline-section {
    padding: 50px 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .timeline-center-line {
    left: 18px;
  }

  .timeline-item {
    padding-left: 70px;
    margin-bottom: 45px;
  }

  .timeline-dot {
    left: 10px;
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .year-badge {
    left: -54px;
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
    border-width: 2px;
  }

  .timeline-card {
    padding: 16px 20px;
    border-left: 4px solid #ceaf3d;
    border-radius: 12px;
  }

  .card-award-title {
    font-size: 1.2rem;
    margin-bottom: 4px;
  }

  .card-subtitle {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .card-location {
    font-size: 0.8rem;
  }
}

/* ── PREMIUM AWARDS GRID SECTION ─────────────────────────────────── */

.awards-premium-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.awards-hero {
  text-align: center;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.awards-hero .section-label {
  display: inline-block;
  margin-bottom: 16px;
}

.awards-hero .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: #8b1a1a;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}

.awards-hero .hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Premium Awards Grid */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Award Card Styling */
.award-card {
  background: #ffffff;
  border: 2px solid #e8d4b8;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.08);
  animation: cardReveal 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(206, 175, 61, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.award-card:hover {
  transform: translateY(-16px) scale(1.02);
  border-color: #ceaf3d;
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.16);
}

.award-card:hover::before {
  opacity: 1;
}

.award-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.award-card:hover .award-icon {
  transform: scale(1.2) rotate(10deg);
}

.award-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #ceaf3d;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.award-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.4rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.4;
}

.award-subtitle {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  color: #8b1a1a;
  margin: 0 0 12px;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.5;
}

.award-org {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
  }

  .awards-hero .hero-title {
    font-size: 3rem;
  }

  .award-card {
    padding: 36px 24px;
  }

  .award-icon {
    font-size: 3rem;
  }

  .award-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .awards-premium-section {
    padding: 60px 24px;
  }

  .awards-hero {
    margin-bottom: 60px;
  }

  .awards-hero .hero-title {
    font-size: 2.4rem;
  }

  .awards-hero .hero-subtitle {
    font-size: 1rem;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }

  .award-card {
    padding: 32px 20px;
    border-radius: 12px;
  }

  .award-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .award-year {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .award-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .award-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .award-org {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .awards-premium-section {
    padding: 50px 16px;
  }

  .awards-hero .hero-title {
    font-size: 2rem;
  }

  .awards-hero .hero-subtitle {
    font-size: 0.95rem;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .award-card {
    padding: 28px 18px;
    border-radius: 12px;
  }

  .award-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  .award-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .award-year {
    font-size: 1.4rem;
  }

  .award-title {
    font-size: 1.1rem;
  }

  .award-subtitle {
    font-size: 0.85rem;
  }

  .award-org {
    font-size: 0.75rem;
  }
}


/* ── HORIZONTAL TIMELINE SECTION ─────────────────────────────────── */

.awards-timeline-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.timeline-hero {
  text-align: center;
  margin-bottom: 80px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-hero .section-label {
  display: inline-block;
  margin-bottom: 16px;
}

.timeline-hero .hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: #8b1a1a;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -1px;
}

.timeline-hero .hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Horizontal Timeline Container */
.horizontal-timeline {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 30px 0;
  scroll-behavior: smooth;
}

.horizontal-timeline::-webkit-scrollbar {
  height: 6px;
}

.horizontal-timeline::-webkit-scrollbar-track {
  background: #f0e6cc;
  border-radius: 10px;
}

.horizontal-timeline::-webkit-scrollbar-thumb {
  background: #8b1a1a;
  border-radius: 10px;
}

.timeline-track {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 0 20px;
  min-width: max-content;
  align-items: flex-start;
}

.timeline-line {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ceaf3d 10%, #ceaf3d 90%, transparent);
  z-index: 0;
}

/* Timeline Nodes */
.timeline-node {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  z-index: 1;
  animation: nodeReveal 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes nodeReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline Dot */
.node-dot {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 4px solid #ceaf3d;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px #fdf6e3;
  transition: all 0.3s ease;
}

.timeline-node:hover .node-dot {
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 0 6px #fdf6e3, 0 0 20px rgba(206, 175, 61, 0.6);
}

/* Timeline Card */
.node-card {
  background: #ffffff;
  border: 2px solid #e8d4b8;
  border-radius: 16px;
  padding: 28px 24px;
  margin-top: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(139, 26, 26, 0.08);
  position: relative;
  overflow: hidden;
}

.node-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(206, 175, 61, 0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.timeline-node:hover .node-card {
  transform: translateY(-12px);
  border-color: #ceaf3d;
  box-shadow: 0 12px 40px rgba(139, 26, 26, 0.16);
}

.timeline-node:hover .node-card::before {
  opacity: 1;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.4s ease;
}

.timeline-node:hover .card-icon {
  transform: scale(1.15) rotate(8deg);
}

.card-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #ceaf3d;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.2rem;
  color: #8b1a1a;
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.3;
}

.card-desc {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.9rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.4;
}

.card-org {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .timeline-track {
    gap: 32px;
  }

  .timeline-node {
    width: 260px;
  }

  .node-card {
    padding: 24px 20px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .card-year {
    font-size: 1.4rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-desc {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .awards-timeline-section {
    padding: 60px 20px;
  }

  .timeline-hero {
    margin-bottom: 60px;
  }

  .timeline-hero .hero-title {
    font-size: 2.4rem;
  }

  .timeline-hero .hero-subtitle {
    font-size: 1rem;
  }

  .timeline-track {
    gap: 28px;
    padding: 0 16px;
  }

  .timeline-node {
    width: 240px;
  }

  .node-card {
    padding: 20px 18px;
    margin-top: 35px;
  }

  .card-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .card-year {
    font-size: 1.3rem;
  }

  .card-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .card-desc {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .card-org {
    font-size: 0.75rem;
  }
}

@media (max-width: 600px) {
  .awards-timeline-section {
    padding: 50px 16px;
  }

  .timeline-hero .hero-title {
    font-size: 2rem;
  }

  .timeline-hero .hero-subtitle {
    font-size: 0.95rem;
  }

  .timeline-line {
    top: 50px;
  }

  .node-dot {
    top: 45px;
  }

  .timeline-track {
    gap: 24px;
    padding: 0 12px;
  }

  .timeline-node {
    width: 220px;
  }

  .node-card {
    padding: 18px 16px;
    margin-top: 32px;
    border-radius: 12px;
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .card-year {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .card-title {
    font-size: 0.95rem;
  }

  .card-desc {
    font-size: 0.75rem;
  }

  .card-org {
    font-size: 0.7rem;
  }
}


/* ── ALTERNATING HORIZONTAL TIMELINE ─────────────────────────────────── */

.awards-timeline-main {
  padding: 80px 40px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  min-height: 100vh;
}

.timeline-section-hero {
  text-align: center;
  margin-bottom: 80px;
}

.timeline-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.timeline-subtitle {
  font-size: 1.1rem;
  color: #ecf0f1;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Timeline Wrapper & Container */
.timeline-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding: 40px 0;
  scroll-behavior: smooth;
  position: relative;
}

.timeline-wrapper::-webkit-scrollbar {
  height: 8px;
}

.timeline-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.timeline-wrapper::-webkit-scrollbar-thumb {
  background: #e74c3c;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.timeline-wrapper::-webkit-scrollbar-thumb:hover {
  background: #c0392b;
}

.timeline-container {
  position: relative;
  display: flex;
  gap: 80px;
  padding: 100px 40px;
  min-width: max-content;
  align-items: center;
}

/* Central Timeline Line */
.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #34495e, #e74c3c, #34495e);
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  z-index: 1;
  animation: itemFadeIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes itemFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item.top {
  margin-bottom: 240px;
}

.timeline-item.bottom {
  margin-top: 240px;
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border: 4px solid #e74c3c;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 0 6px #34495e, 0 0 20px rgba(231, 76, 60, 0.6);
  transition: all 0.3s ease;
}

.timeline-item.top .timeline-dot {
  bottom: -140px;
}

.timeline-item.bottom .timeline-dot {
  top: -140px;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 0 6px #34495e, 0 0 30px rgba(231, 76, 60, 0.9);
}

/* Timeline Card */
.timeline-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
  transition: left 0.6s ease;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(231, 76, 60, 0.3);
  border-left: 4px solid #e74c3c;
}

.timeline-item:hover .timeline-card::before {
  left: 100%;
}

.card-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.2rem;
  color: #2c3e50;
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.4;
}

.card-subtitle {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  color: #34495e;
  margin: 0 0 8px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.9;
}

.card-org {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .timeline-container {
    gap: 60px;
    padding: 100px 30px;
  }

  .timeline-item {
    width: 300px;
  }

  .timeline-item.top {
    margin-bottom: 220px;
  }

  .timeline-item.bottom {
    margin-top: 220px;
  }

  .timeline-item.top .timeline-dot {
    bottom: -120px;
  }

  .timeline-item.bottom .timeline-dot {
    top: -120px;
  }
}

@media (max-width: 768px) {
  .awards-timeline-main {
    padding: 60px 20px;
  }

  .timeline-title {
    font-size: 2.2rem;
  }

  .timeline-subtitle {
    font-size: 1rem;
  }

  .timeline-container {
    gap: 50px;
    padding: 80px 20px;
  }

  .timeline-item {
    width: 280px;
  }

  .timeline-item.top {
    margin-bottom: 180px;
  }

  .timeline-item.bottom {
    margin-top: 180px;
  }

  .timeline-item.top .timeline-dot {
    bottom: -100px;
  }

  .timeline-item.bottom .timeline-dot {
    top: -100px;
  }

  .timeline-card {
    padding: 20px 18px;
  }

  .card-year {
    font-size: 1.4rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-subtitle {
    font-size: 0.9rem;
  }

  .card-org {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .awards-timeline-main {
    padding: 50px 16px;
  }

  .timeline-title {
    font-size: 1.8rem;
  }

  .timeline-subtitle {
    font-size: 0.95rem;
  }

  .timeline-container {
    gap: 40px;
    padding: 60px 16px;
  }

  .timeline-item {
    width: 260px;
  }

  .timeline-item.top {
    margin-bottom: 140px;
  }

  .timeline-item.bottom {
    margin-top: 140px;
  }

  .timeline-item.top .timeline-dot {
    bottom: -70px;
  }

  .timeline-item.bottom .timeline-dot {
    top: -70px;
  }

  .timeline-card {
    padding: 18px 16px;
    border-radius: 10px;
  }

  .card-year {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }

  .card-title {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .card-subtitle {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .card-org {
    font-size: 0.75rem;
  }
}


/* ── SIMPLE AWARDS LIST ─────────────────────────────────── */

.awards-section {
  padding: 80px 40px;
  background: #fdf6e3;
  min-height: 100vh;
}

.awards-list {
  max-width: 900px;
  margin: 0 auto;
}

.award-item {
  display: flex;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid #e8d4b8;
  transition: all 0.3s ease;
}

.award-item:last-child {
  border-bottom: none;
}

.award-item:hover {
  padding-left: 16px;
}

.award-year-badge {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #8b1a1a;
  padding-top: 2px;
}

.award-details {
  flex: 1;
  padding-top: 2px;
}

.award-name {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.3rem;
  color: #8b1a1a;
  margin: 0 0 6px;
  font-weight: 600;
}

.award-info {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .awards-section {
    padding: 60px 24px;
  }

  .award-item {
    gap: 20px;
    padding: 18px 0;
  }

  .award-year-badge {
    width: 70px;
    font-size: 1.5rem;
  }

  .award-name {
    font-size: 1.1rem;
  }

  .award-info {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .awards-section {
    padding: 50px 16px;
  }

  .award-item {
    gap: 16px;
    padding: 16px 0;
    flex-direction: column;
  }

  .award-year-badge {
    width: 100%;
    text-align: left;
    font-size: 1.3rem;
  }

  .award-name {
    font-size: 1rem;
  }

  .award-info {
    font-size: 0.85rem;
  }
}


/* ── IMPROVED AWARDS SECTION ─────────────────────────────────── */

.awards-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.awards-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.awards-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  color: #8b1a1a;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.awards-subtitle {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
}

.awards-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #8b1a1a, #ceaf3d);
  margin: 0 auto;
  border-radius: 2px;
}

.awards-list {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}

.award-card {
  background: #ffffff;
  border-left: 5px solid #ceaf3d;
  padding: 32px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(139, 26, 26, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(206, 175, 61, 0.1));
  transition: width 0.4s ease;
  pointer-events: none;
}

.award-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(139, 26, 26, 0.15);
  border-left-color: #8b1a1a;
}

.award-card:hover::before {
  width: 100%;
}

.award-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #ceaf3d;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.award-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.35rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.4;
}

.award-desc {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 10px;
  font-weight: 500;
  line-height: 1.5;
}

.award-org {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .awards-title {
    font-size: 2.8rem;
  }

  .awards-list {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
  }

  .award-card {
    padding: 28px 24px;
  }

  .award-year {
    font-size: 1.8rem;
  }

  .award-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .awards-section {
    padding: 60px 24px;
  }

  .awards-header {
    margin-bottom: 60px;
  }

  .awards-title {
    font-size: 2.2rem;
  }

  .awards-subtitle {
    font-size: 1rem;
  }

  .awards-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .award-card {
    padding: 24px 20px;
  }

  .award-year {
    font-size: 1.6rem;
  }

  .award-title {
    font-size: 1.1rem;
  }

  .award-desc {
    font-size: 16px;
  }

  .award-title-hi {
    font-size: 18px;
  }

  .award-org {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .awards-section {
    padding: 50px 16px;
  }

  .awards-title {
    font-size: 1.8rem;
  }

  .awards-subtitle {
    font-size: 0.95rem;
  }

  .award-card {
    padding: 20px 18px;
    border-left-width: 4px;
  }

  .award-year {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .award-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .award-desc {
    font-size: 16px;
  }

  .award-org {
    font-size: 0.75rem;
  }
}


/* ── NEW AWARDS DESIGN ─────────────────────────────────── */

.awards-main {
  padding: 80px 40px;
  background: #fdf6e3;
  min-height: 100vh;
}

.awards-container {
  max-width: 900px;
  margin: 0 auto;
}

.award-entry {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.award-year-box {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #8b1a1a;
  padding-top: 8px;
  border-bottom: 3px solid #ceaf3d;
  padding-bottom: 10px;
}

.award-content {
  flex: 1;
  border-bottom: 1px solid #e8d4b8;
  padding-bottom: 24px;
}

.entry-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.5rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.4;
}

.entry-subtitle {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.5;
}

.entry-location {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
  font-style: italic;
}

.award-entry:last-child .award-content {
  border-bottom: none;
}

/* Stagger animation delays */
.award-entry:nth-child(1) {
  animation-delay: 0.05s;
}

.award-entry:nth-child(2) {
  animation-delay: 0.1s;
}

.award-entry:nth-child(3) {
  animation-delay: 0.15s;
}

.award-entry:nth-child(4) {
  animation-delay: 0.2s;
}

.award-entry:nth-child(5) {
  animation-delay: 0.25s;
}

.award-entry:nth-child(6) {
  animation-delay: 0.3s;
}

.award-entry:nth-child(7) {
  animation-delay: 0.35s;
}

.award-entry:nth-child(8) {
  animation-delay: 0.4s;
}

.award-entry:nth-child(9) {
  animation-delay: 0.45s;
}

.award-entry:nth-child(10) {
  animation-delay: 0.5s;
}

.award-entry:nth-child(11) {
  animation-delay: 0.55s;
}

.award-entry:nth-child(12) {
  animation-delay: 0.6s;
}

.award-entry:nth-child(13) {
  animation-delay: 0.65s;
}

/* Responsive */
@media (max-width: 768px) {
  .awards-main {
    padding: 60px 24px;
  }

  .award-entry {
    gap: 24px;
    margin-bottom: 50px;
  }

  .award-year-box {
    width: 80px;
    font-size: 1.8rem;
  }

  .entry-title {
    font-size: 1.3rem;
  }

  .entry-subtitle {
    font-size: 0.95rem;
  }

  .entry-location {
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .awards-main {
    padding: 50px 16px;
  }

  .award-entry {
    gap: 16px;
    margin-bottom: 40px;
    flex-direction: column;
  }

  .award-year-box {
    width: 100%;
    font-size: 1.6rem;
    text-align: left;
    border-bottom: none;
    border-left: 4px solid #ceaf3d;
    padding-left: 12px;
    padding-bottom: 0;
    margin-bottom: 8px;
  }

  .entry-title {
    font-size: 1.2rem;
  }

  .entry-subtitle {
    font-size: 0.9rem;
  }

  .entry-location {
    font-size: 0.8rem;
  }

  .award-content {
    padding-bottom: 16px;
  }
}


/* ── VERTICAL TIMELINE DESIGN ─────────────────────────────────── */

.awards-timeline {
  padding: 100px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.timeline-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Central Timeline Line */
.timeline-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ceaf3d;
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  margin-bottom: 80px;
  display: flex;
  z-index: 1;
  animation: itemSlideIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes itemSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item.left {
  justify-content: flex-end;
  margin-right: 50%;
  padding-right: 60px;
}

.timeline-item.right {
  justify-content: flex-start;
  margin-left: 50%;
  padding-left: 60px;
}

/* Timeline Marker/Dot */
.timeline-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 4px solid #8b1a1a;
  border-radius: 50%;
  top: 20px;
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item.left .timeline-marker {
  right: -70px;
}

.timeline-item.right .timeline-marker {
  left: -70px;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(139, 26, 26, 0.2);
}

/* Timeline Card */
.timeline-card {
  background: #ffffff;
  border: 2px solid #e8d4b8;
  border-radius: 12px;
  padding: 32px 28px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(206, 175, 61, 0.1), transparent);
  transition: left 0.6s ease;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-8px);
  border-color: #ceaf3d;
  box-shadow: 0 12px 40px rgba(139, 26, 26, 0.15);
}

.timeline-item:hover .timeline-card::before {
  left: 100%;
}

/* Year Label Badge */
.year-label {
  display: inline-block;
  background: #8b1a1a;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.4rem;
  color: #8b1a1a;
  margin: 12px 0 10px;
  font-weight: 600;
  line-height: 1.4;
}

.card-text {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 8px;
  line-height: 1.5;
}

.card-org {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  font-style: italic;
}

/* Stagger animations */
.timeline-item:nth-child(1) {
  animation-delay: 0.05s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.15s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.25s;
}

.timeline-item:nth-child(6) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(7) {
  animation-delay: 0.35s;
}

.timeline-item:nth-child(8) {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(9) {
  animation-delay: 0.45s;
}

.timeline-item:nth-child(10) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(11) {
  animation-delay: 0.55s;
}

.timeline-item:nth-child(12) {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(13) {
  animation-delay: 0.65s;
}

/* Responsive */
@media (max-width: 1024px) {
  .timeline-item.left {
    margin-right: 48%;
    padding-right: 50px;
  }

  .timeline-item.right {
    margin-left: 48%;
    padding-left: 50px;
  }

  .timeline-item.left .timeline-marker {
    right: -60px;
  }

  .timeline-item.right .timeline-marker {
    left: -60px;
  }

  .timeline-card {
    padding: 28px 24px;
  }

  .card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .awards-timeline {
    padding: 60px 24px;
  }

  .timeline-content {
    padding: 20px 0;
  }

  .timeline-content::before {
    left: 24px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 60px;
    padding: 0 0 0 100px;
  }

  .timeline-item.left,
  .timeline-item.right {
    margin-left: 0;
    margin-right: 0;
    padding-left: 100px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-item.left .timeline-marker,
  .timeline-item.right .timeline-marker {
    left: 16px;
    top: -8px;
  }

  .timeline-card {
    width: 100%;
    padding: 24px 20px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .card-org {
    font-size: 0.8rem;
  }

  .year-label {
    font-size: 1rem;
    padding: 4px 12px;
  }
}

@media (max-width: 480px) {
  .book-year-badge {
    font-size: 1em;
  }

  .awards-timeline {
    padding: 50px 16px;
  }

  .timeline-content::before {
    left: 18px;
  }

  .timeline-item {
    padding-left: 70px;
    margin-bottom: 45px;
  }

  .timeline-item.left .timeline-marker,
  .timeline-item.right .timeline-marker {
    left: 10px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .timeline-card {
    padding: 20px 16px;
    border-radius: 10px;
  }

  .year-label {
    font-size: 0.9rem;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .card-title {
    font-size: 1rem;
    margin: 8px 0 6px;
  }

  .card-text {
    font-size: 0.85rem;
  }

  .card-org {
    font-size: 0.75rem;
  }
}


/* ── REFERENCE TIMELINE DESIGN ─────────────────────────────────── */

.timeline-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.timeline-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Central Timeline Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #8b4789;
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline Blocks */
.timeline-block {
  position: relative;
  width: 48%;
  margin-bottom: 100px;
  z-index: 1;
  animation: blockSlideIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes blockSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-block.left {
  margin-left: 0;
  margin-right: auto;
  text-align: right;
  padding-right: 60px;
}

.timeline-block.right {
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  padding-left: 60px;
}

/* Year Label */
.year-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Timeline Box/Card */
.timeline-box {
  background: #ffffff;
  border: 1px solid #e0d5c7;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.timeline-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 26, 26, 0.05), transparent);
  transition: left 0.6s ease;
}

.timeline-block:hover .timeline-box {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #ceaf3d;
}

.timeline-block:hover .timeline-box::before {
  left: 100%;
}

.box-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.4rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 600;
  line-height: 1.4;
}

.box-subtitle {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  color: #8b1a1a;
  margin: 0 0 8px;
  font-weight: 500;
  opacity: 0.8;
}

.box-text {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  font-style: italic;
}

/* Timeline Dots */
.timeline-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #8b4789;
  border: 3px solid #ffffff;
  border-radius: 50%;
  top: 28px;
  z-index: 2;
  box-shadow: 0 0 0 3px #8b4789;
  transition: all 0.3s ease;
}

.timeline-block.left .timeline-dot {
  right: -70px;
}

.timeline-block.right .timeline-dot {
  left: -70px;
}

.timeline-block:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 5px #8b4789;
}

/* Stagger animations */
.timeline-block:nth-child(1) {
  animation-delay: 0.05s;
}

.timeline-block:nth-child(2) {
  animation-delay: 0.1s;
}

.timeline-block:nth-child(3) {
  animation-delay: 0.15s;
}

.timeline-block:nth-child(4) {
  animation-delay: 0.2s;
}

.timeline-block:nth-child(5) {
  animation-delay: 0.25s;
}

.timeline-block:nth-child(6) {
  animation-delay: 0.3s;
}

.timeline-block:nth-child(7) {
  animation-delay: 0.35s;
}

.timeline-block:nth-child(8) {
  animation-delay: 0.4s;
}

.timeline-block:nth-child(9) {
  animation-delay: 0.45s;
}

.timeline-block:nth-child(10) {
  animation-delay: 0.5s;
}

.timeline-block:nth-child(11) {
  animation-delay: 0.55s;
}

.timeline-block:nth-child(12) {
  animation-delay: 0.6s;
}

.timeline-block:nth-child(13) {
  animation-delay: 0.65s;
}

/* Responsive */
@media (max-width: 1024px) {
  .timeline-block {
    width: 47%;
  }

  .timeline-block.left {
    padding-right: 50px;
  }

  .timeline-block.right {
    padding-left: 50px;
  }

  .timeline-block.left .timeline-dot {
    right: -60px;
  }

  .timeline-block.right .timeline-dot {
    left: -60px;
  }

  .timeline-box {
    padding: 24px 20px;
  }

  .box-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .book-year-badge {
    font-size: 1em;
    top: 0;
  }

  .timeline-section {
    padding: 60px 20px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-block {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    padding-left: 80px;
    padding-right: 0;
  }

  .timeline-block.left,
  .timeline-block.right {
    padding-left: 80px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-block.left .timeline-dot,
  .timeline-block.right .timeline-dot {
    left: -68px;
  }

  .timeline-box {
    padding: 20px 18px;
  }

  .box-title {
    font-size: 1.1rem;
  }

  .box-subtitle {
    font-size: 0.9rem;
  }

  .box-text {
    font-size: 0.8rem;
  }

  .year-label {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .timeline-section {
    padding: 50px 16px;
  }

  .timeline-line {
    left: 16px;
  }

  .timeline-block {
    padding-left: 70px;
    margin-bottom: 70px;
  }

  .timeline-block.left .timeline-dot,
  .timeline-block.right .timeline-dot {
    left: -58px;
    width: 14px;
    height: 14px;
  }

  .timeline-box {
    padding: 18px 14px;
    border-radius: 6px;
  }

  .box-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .box-subtitle {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .box-text {
    font-size: 0.75rem;
  }

  .year-label {
    font-size: 0.75rem;
  }
}


/* ── HORIZONTAL SCROLLABLE TIMELINE ─────────────────────────────────── */

.awards-horizontal {
  padding: 100px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.awards-section-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  color: #8b1a1a;
  margin-bottom: 80px;
  font-weight: 500;
}

/* Horizontal Scroll Container */
.horizontal-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 0;
  scroll-behavior: smooth;
  position: relative;
}

.horizontal-scroll::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: #8b1a1a;
  z-index: 0;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}

.horizontal-scroll::-webkit-scrollbar-track {
  background: #f0e6cc;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #8b1a1a;
  border-radius: 3px;
}

.awards-timeline-horizontal {
  display: flex;
  gap: 30px;
  padding: 0 20px;
  min-width: max-content;
}

/* Award Tiles */
.award-tile {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  animation: tileSlideIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes tileSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Year Badge */
.year-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #8b1a1a;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(139, 26, 26, 0.2);
  letter-spacing: 0.5px;
}

/* Tile Card */
.tile-card {
  background: #ffffff;
  border: 2px solid #ceaf3d;
  border-radius: 12px;
  padding: 32px 24px;
  margin-top: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.tile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(206, 175, 61, 0.1), transparent);
  transition: left 0.6s ease;
}

.award-tile:hover .tile-card {
  transform: translateY(-12px);
  border-color: #8b1a1a;
  box-shadow: 0 12px 32px rgba(139, 26, 26, 0.15);
}

.award-tile:hover .tile-card::before {
  left: 100%;
}

.tile-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.4rem;
  color: #8b1a1a;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.4;
}

.tile-desc {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  color: #8b1a1a;
  margin: 0 0 12px;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.5;
}

.tile-org {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  font-style: italic;
  line-height: 1.5;
}

/* Tile Dot */
.tile-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #8b4789;
  border: 3px solid #ffffff;
  border-radius: 50%;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  box-shadow: 0 0 0 2px #8b4789;
  transition: all 0.3s ease;
}

.award-tile:hover .tile-dot {
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 0 3px #8b4789;
}

/* Stagger animations */
.award-tile:nth-child(1) {
  animation-delay: 0.05s;
}

.award-tile:nth-child(2) {
  animation-delay: 0.1s;
}

.award-tile:nth-child(3) {
  animation-delay: 0.15s;
}

.award-tile:nth-child(4) {
  animation-delay: 0.2s;
}

.award-tile:nth-child(5) {
  animation-delay: 0.25s;
}

.award-tile:nth-child(6) {
  animation-delay: 0.3s;
}

.award-tile:nth-child(7) {
  animation-delay: 0.35s;
}

.award-tile:nth-child(8) {
  animation-delay: 0.4s;
}

.award-tile:nth-child(9) {
  animation-delay: 0.45s;
}

.award-tile:nth-child(10) {
  animation-delay: 0.5s;
}

.award-tile:nth-child(11) {
  animation-delay: 0.55s;
}

.award-tile:nth-child(12) {
  animation-delay: 0.6s;
}

.award-tile:nth-child(13) {
  animation-delay: 0.65s;
}

/* Responsive */
@media (max-width: 768px) {
  .awards-horizontal {
    padding: 60px 20px;
  }

  .awards-section-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
  }

  .award-tile {
    width: 300px;
  }

  .tile-card {
    padding: 28px 20px;
    margin-top: 18px;
  }

  .tile-title {
    font-size: 1.2rem;
  }

  .tile-desc {
    font-size: 0.9rem;
  }

  .tile-org {
    font-size: 0.8rem;
  }

  .year-badge {
    font-size: 1rem;
    padding: 6px 16px;
  }
}

@media (max-width: 480px) {
  .awards-horizontal {
    padding: 50px 16px;
  }

  .awards-section-title {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }

  .award-tile {
    width: 280px;
  }

  .tile-card {
    padding: 24px 16px;
    margin-top: 16px;
  }

  .tile-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .tile-desc {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .tile-org {
    font-size: 0.75rem;
  }

  .year-badge {
    font-size: 0.9rem;
    padding: 4px 12px;
  }

  .tile-dot {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}


/* ── IMPROVED HORIZONTAL TIMELINE ─────────────────────────────────── */

.awards-main-section {
  padding: 100px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.horizontal-timeline-wrapper {
  position: relative;
  padding: 30px 0;
}

/* Background Timeline Line */
.timeline-background-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: #8b1a1a;
  z-index: 0;
  transform: translateY(-50%);
}

/* Carousel Container */
.awards-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 20px;
  scroll-behavior: smooth;
  position: relative;
  z-index: 1;
}

.awards-carousel::-webkit-scrollbar {
  height: 6px;
}

.awards-carousel::-webkit-scrollbar-track {
  background: transparent;
}

.awards-carousel::-webkit-scrollbar-thumb {
  background: #8b1a1a;
  border-radius: 3px;
}

/* Award Card Item */
.award-card-item {
  flex-shrink: 0;
  width: 340px;
  position: relative;
  animation: cardFadeIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Year Tag/Badge */
.year-tag {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b1a1a;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Award Card Box */
.award-card-box {
  background: #ffffff;
  border: 2px solid #ceaf3d;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.award-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(206, 175, 61, 0.12), transparent);
  transition: left 0.6s ease;
}

.award-card-item:hover .award-card-box {
  transform: translateY(-12px);
  border-color: #8b1a1a;
  box-shadow: 0 12px 40px rgba(139, 26, 26, 0.16);
}

.award-card-item:hover .award-card-box::before {
  left: 100%;
}

.award-card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.35rem;
  color: #8b1a1a;
  margin: 8px 0 12px;
  font-weight: 600;
  line-height: 1.4;
}

.award-card-subtitle {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  color: #8b1a1a;
  margin: 0 0 12px;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.5;
}

.award-card-location {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  font-style: italic;
  line-height: 1.5;
}

/* Stagger animations */
.award-card-item:nth-child(1) {
  animation-delay: 0.05s;
}

.award-card-item:nth-child(2) {
  animation-delay: 0.1s;
}

.award-card-item:nth-child(3) {
  animation-delay: 0.15s;
}

.award-card-item:nth-child(4) {
  animation-delay: 0.2s;
}

.award-card-item:nth-child(5) {
  animation-delay: 0.25s;
}

.award-card-item:nth-child(6) {
  animation-delay: 0.3s;
}

.award-card-item:nth-child(7) {
  animation-delay: 0.35s;
}

.award-card-item:nth-child(8) {
  animation-delay: 0.4s;
}

.award-card-item:nth-child(9) {
  animation-delay: 0.45s;
}

.award-card-item:nth-child(10) {
  animation-delay: 0.5s;
}

.award-card-item:nth-child(11) {
  animation-delay: 0.55s;
}

.award-card-item:nth-child(12) {
  animation-delay: 0.6s;
}

.award-card-item:nth-child(13) {
  animation-delay: 0.65s;
}

/* Responsive */
@media (max-width: 1024px) {
  .award-card-item {
    width: 320px;
  }

  .award-card-box {
    padding: 28px 20px;
  }

  .award-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .awards-main-section {
    padding: 60px 20px;
  }

  .horizontal-timeline-wrapper {
    padding: 40px 0;
  }

  .awards-carousel {
    gap: 24px;
    padding: 40px 16px;
  }

  .award-card-item {
    width: 300px;
  }

  .year-tag {
    font-size: 1.1rem;
    padding: 8px 20px;
  }

  .award-card-box {
    padding: 24px 18px;
  }

  .award-card-title {
    font-size: 1.1rem;
    margin: 6px 0 8px;
  }

  .award-card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .award-card-location {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .awards-main-section {
    padding: 50px 16px;
  }

  .awards-carousel {
    gap: 16px;
    padding: 40px 12px;
  }

  .award-card-item {
    width: 280px;
  }

  .year-tag {
    font-size: 1rem;
    padding: 6px 16px;
  }

  .award-card-box {
    padding: 20px 16px;
    border-radius: 12px;
  }

  .award-card-title {
    font-size: 1rem;
    margin: 4px 0 6px;
  }

  .award-card-subtitle {
    font-size: 0.85rem;
  }

  .award-card-location {
    font-size: 0.75rem;
  }
}



/* ── HORIZONTAL TIMELINE AWARDS ─────────────────────────────────── */

.awards-main-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.horizontal-timeline-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
}

/* Background Timeline Line */
.timeline-background-line {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 300px;
  height: 4px;
  background: #8b1a1a;
  z-index: 0;
}

/* Carousel Container */
.awards-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scroll-behavior: smooth;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.awards-carousel::-webkit-scrollbar {
  height: 8px;
}

.awards-carousel::-webkit-scrollbar-track {
  background: #f0e6cc;
  border-radius: 4px;
}

.awards-carousel::-webkit-scrollbar-thumb {
  background: #8b1a1a;
  border-radius: 4px;
}

.awards-carousel::-webkit-scrollbar-thumb:hover {
  background: #5c0f0f;
}

/* Award Card Item */
.award-card-item {
  flex-shrink: 0;
  width: 360px;
  position: relative;
  animation: slideUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Year Tag/Badge */
.year-tag {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b1a1a;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Award Card Box */
.award-card-box {
  background: #ffffff;
  border: 2.5px solid #ceaf3d;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.award-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(206, 175, 61, 0.15), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.award-card-item:hover .award-card-box {
  transform: translateY(-16px);
  border-color: #8b1a1a;
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.18);
}

.award-card-item:hover .award-card-box::before {
  left: 100%;
}

.award-card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.45rem;
  color: #8b1a1a;
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.4;
}

.award-card-subtitle {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.98rem;
  color: #8b1a1a;
  margin: 0 0 14px;
  font-weight: 500;
  opacity: 0.87;
  line-height: 1.6;
}

.award-card-location {
  font-size: 0.87rem;
  color: #888;
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

/* Stagger animations */
.award-card-item:nth-child(1) {
  animation-delay: 0.06s;
}

.award-card-item:nth-child(2) {
  animation-delay: 0.12s;
}

.award-card-item:nth-child(3) {
  animation-delay: 0.18s;
}

.award-card-item:nth-child(4) {
  animation-delay: 0.24s;
}

.award-card-item:nth-child(5) {
  animation-delay: 0.30s;
}

.award-card-item:nth-child(6) {
  animation-delay: 0.36s;
}

.award-card-item:nth-child(7) {
  animation-delay: 0.42s;
}

.award-card-item:nth-child(8) {
  animation-delay: 0.48s;
}

.award-card-item:nth-child(9) {
  animation-delay: 0.54s;
}

.award-card-item:nth-child(10) {
  animation-delay: 0.60s;
}

.award-card-item:nth-child(11) {
  animation-delay: 0.66s;
}

.award-card-item:nth-child(12) {
  animation-delay: 0.72s;
}

.award-card-item:nth-child(13) {
  animation-delay: 0.78s;
}

/* Responsive */
@media (max-width: 1200px) {
  .horizontal-timeline-wrapper {
    padding: 40px 30px;
  }

  .timeline-background-line {
    left: 30px;
    width: 250px;
  }

  .award-card-item {
    width: 340px;
  }

  .award-card-box {
    padding: 32px 24px;
    min-height: 180px;
  }

  .award-card-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 1024px) {
  .award-card-item {
    width: 320px;
  }

  .award-card-box {
    padding: 28px 22px;
  }

  .award-card-title {
    font-size: 1.2rem;
  }

  .year-tag {
    font-size: 1.2rem;
    padding: 10px 24px;
  }
}

@media (max-width: 768px) {
  .awards-main-section {
    padding: 30px 0;
  }

  .horizontal-timeline-wrapper {
    padding: 40px 20px;
  }

  .timeline-background-line {
    left: 20px;
    width: 200px;
  }

  .awards-carousel {
    gap: 24px;
  }

  .award-card-item {
    width: 300px;
  }

  .year-tag {
    font-size: 1.1rem;
    padding: 8px 20px;
    top: -24px;
  }

  .award-card-box {
    padding: 24px 20px;
    min-height: 160px;
  }

  .award-card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .award-card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .award-card-location {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .awards-main-section {
    padding: 50px 0;
  }

  .horizontal-timeline-wrapper {
    padding: 30px 16px;
  }

  .timeline-background-line {
    left: 16px;
    width: 150px;
    height: 3px;
    bottom: 30px;
  }

  .awards-carousel {
    gap: 18px;
    padding: 10px 0;
  }

  .award-card-item {
    width: 280px;
  }

  .year-tag {
    font-size: 1rem;
    padding: 6px 16px;
    top: -22px;
  }

  .award-card-box {
    padding: 20px 16px;
    min-height: 140px;
    border-radius: 14px;
  }

  .award-card-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .award-card-subtitle {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }

  .award-card-location {
    font-size: 0.75rem;
  }
}


/* ── PREMIUM AWARDS TIMELINE ─────────────────────────────────── */

.awards-premium-main {
  padding: 100px 40px;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5f0e8 100%);
  min-height: 100vh;
}

.timeline-premium-wrapper {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

/* Top Timeline Line with Dots */
.timeline-top-line {
  position: relative;
  height: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.timeline-top-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #ceaf3d;
  transform: translateY(-50%);
  z-index: 0;
}

.timeline-top-dot {
  width: 20px;
  height: 20px;
  background: #ceaf3d;
  border: 3px solid #ffffff;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  box-shadow: 0 2px 8px rgba(206, 175, 61, 0.3);
}

/* Premium Carousel */
.premium-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  scroll-behavior: smooth;
  margin-bottom: 60px;
}

.premium-carousel::-webkit-scrollbar {
  height: 8px;
}

.premium-carousel::-webkit-scrollbar-track {
  background: #f0e6cc;
  border-radius: 4px;
}

.premium-carousel::-webkit-scrollbar-thumb {
  background: #8b1a1a;
  border-radius: 4px;
}

/* Premium Award Card */
.premium-award-card {
  flex-shrink: 0;
  width: 380px;
  background: #ffffff;
  border: 2.5px solid #ceaf3d;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: cardPop 0.6s ease forwards;
  opacity: 0;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@keyframes cardPop {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.premium-award-card:hover {
  transform: translateY(-16px);
  border-color: #8b1a1a;
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.18);
}

/* Year Badge Premium */
.year-badge-premium {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b1a1a;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Award Icon */
.award-icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
  display: inline-block;
  animation: bounce 0.6s ease;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Card Title */
.premium-card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.5rem;
  color: #8b1a1a;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* Divider Dot */
.divider-dot {
  width: 8px;
  height: 8px;
  background: #ceaf3d;
  border-radius: 50%;
  margin: 12px auto;
  display: inline-block;
}

/* Card Subtitle */
.premium-card-subtitle {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 0.95rem;
  color: #8b1a1a;
  margin: 12px 0;
  font-weight: 500;
  opacity: 0.85;
  line-height: 1.6;
}

/* Card Location */
.premium-card-location {
  font-size: 0.85rem;
  color: #888;
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

/* Bottom Divider */
.timeline-bottom-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  padding-top: 40px;
}

.divider-line {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ceaf3d, transparent);
}

.divider-ornament {
  font-size: 1.8rem;
  color: #ceaf3d;
}

/* Stagger animations */
.premium-award-card:nth-child(1) {
  animation-delay: 0.05s;
}

.premium-award-card:nth-child(2) {
  animation-delay: 0.1s;
}

.premium-award-card:nth-child(3) {
  animation-delay: 0.15s;
}

.premium-award-card:nth-child(4) {
  animation-delay: 0.2s;
}

.premium-award-card:nth-child(5) {
  animation-delay: 0.25s;
}

.premium-award-card:nth-child(6) {
  animation-delay: 0.3s;
}

.premium-award-card:nth-child(7) {
  animation-delay: 0.35s;
}

.premium-award-card:nth-child(8) {
  animation-delay: 0.4s;
}

.premium-award-card:nth-child(9) {
  animation-delay: 0.45s;
}

.premium-award-card:nth-child(10) {
  animation-delay: 0.5s;
}

.premium-award-card:nth-child(11) {
  animation-delay: 0.55s;
}

.premium-award-card:nth-child(12) {
  animation-delay: 0.6s;
}

.premium-award-card:nth-child(13) {
  animation-delay: 0.65s;
}

/* Responsive */
@media (max-width: 1200px) {
  .premium-award-card {
    width: 360px;
  }

  .award-icon {
    font-size: 2.8rem;
  }

  .premium-card-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 1024px) {
  .awards-premium-main {
    padding: 80px 30px;
  }

  .premium-award-card {
    width: 340px;
    min-height: 320px;
    padding: 28px 24px;
  }

  .award-icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
  }

  .year-badge-premium {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .awards-premium-main {
    padding: 60px 20px;
  }

  .timeline-premium-wrapper {
    max-width: 100%;
  }

  .premium-carousel {
    gap: 20px;
    margin-bottom: 40px;
  }

  .premium-award-card {
    width: 320px;
    min-height: 300px;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .year-badge-premium {
    font-size: 1.1rem;
    padding: 8px 20px;
    top: -20px;
  }

  .award-icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .premium-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .premium-card-subtitle {
    font-size: 0.9rem;
    margin: 10px 0;
  }

  .premium-card-location {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .awards-premium-main {
    padding: 50px 16px;
  }

  .timeline-top-line {
    margin-bottom: 30px;
    height: 30px;
  }

  .timeline-top-dot {
    width: 16px;
    height: 16px;
  }

  .premium-carousel {
    gap: 16px;
    margin-bottom: 30px;
  }

  .premium-award-card {
    width: 300px;
    min-height: 280px;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .year-badge-premium {
    font-size: 1rem;
    padding: 6px 16px;
    top: -18px;
  }

  .award-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
  }

  .premium-card-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .premium-card-subtitle {
    font-size: 0.85rem;
  }

  .premium-card-location {
    font-size: 0.75rem;
  }

  .timeline-bottom-divider {
    gap: 12px;
  }

  .divider-line {
    max-width: 120px;
  }

  .divider-ornament {
    font-size: 1.4rem;
  }
}


/* ── AWARDS 3-COLUMN GRID LAYOUT ─────────────────────────────────── */

.awards-grid-main {
  padding: 50px;
  background: #fff;
  min-height: 100vh;
}

.awards-grid-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}



/* 3-Column Grid Layout */
.awards-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 36px;
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 1;
}


/* Grid Award Card */
.grid-award-card {
  background: #ffffff;
  border: 2.5px solid #ceaf3d;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: cardFadeIn 0.6s ease forwards;
  opacity: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid-award-card:hover {
  transform: translateY(-12px);
  border-color: #8b1a1a;
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.16);
}

/* Year Badge */
.grid-year-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b1a1a;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Card Title */
.grid-card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.4rem;
  color: #8b1a1a;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.4;
}


/* Card Description (Award Details) */
.grid-card-description {
  font-size: 0.85rem;
  color: #555;
  margin: 10px 0 12px 0;
  line-height: 1.6;
  opacity: 1;
  display: block;
  visibility: visible;
  overflow: visible;
}

/* Card Location (City/Organization) */
.grid-card-location {
  font-size: 0.8rem;
  color: #888;
  margin: 10px 0 0 0;
  font-style: italic;
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

/* Stagger animations */
.grid-award-card:nth-child(1) {
  animation-delay: 0.06s;
}

.grid-award-card:nth-child(2) {
  animation-delay: 0.12s;
}

.grid-award-card:nth-child(3) {
  animation-delay: 0.18s;
}

.grid-award-card:nth-child(4) {
  animation-delay: 0.24s;
}

.grid-award-card:nth-child(5) {
  animation-delay: 0.30s;
}

.grid-award-card:nth-child(6) {
  animation-delay: 0.36s;
}

.grid-award-card:nth-child(7) {
  animation-delay: 0.42s;
}

.grid-award-card:nth-child(8) {
  animation-delay: 0.48s;
}

.grid-award-card:nth-child(9) {
  animation-delay: 0.54s;
}

.grid-award-card:nth-child(10) {
  animation-delay: 0.60s;
}

.grid-award-card:nth-child(11) {
  animation-delay: 0.66s;
}

.grid-award-card:nth-child(12) {
  animation-delay: 0.72s;
}

.grid-award-card:nth-child(13) {
  animation-delay: 0.78s;
}

.awards-section-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-label-awards {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ceaf3d;
  margin-bottom: 12px;
  display: inline-block;
}

.awards-heading {
  font-family: "Bungee Inline", cursive;
  font-size: 50px;
  color: #8b1a1a;
  margin: 12px 0 16px;
  /* font-weight: 700; */
  letter-spacing: -1px;
}

.awards-subheading {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin: 0 0 24px;
}

.section-divider-awards {
  width: 80px;
  height: 4px;
  background: #ceaf3d;
  border-radius: 2px;
  margin: 0 auto;
}

/* Awards Highlight Section */
.awards-highlight {
  text-align: center;
  margin: 40px 0 50px;
  padding: 30px;
  background: #fafaf8;
  border-radius: 6px;
  border-top: 3px solid #ceaf3d;
}

.awards-highlight-text {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5d4037;
  margin: 0;
  letter-spacing: 0.3px;
  line-height: 1.6;
}

/* Grid Layout Styles */
.awards-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 36px;
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 1;
}


/* Grid Award Card */
.grid-award-card {
  background: #ffffff;
  border: 2.5px solid #ceaf3d;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: cardFadeIn 0.6s ease forwards;
  opacity: 0;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.grid-award-card:hover {
  transform: translateY(-12px);
  border-color: #8b1a1a;
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.16);
}

/* Year Badge */
.grid-year-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b1a1a;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Card Title */
.grid-card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.4rem;
  color: #8b1a1a;
  margin: 0 0 12px;
  font-weight: 600;
  line-height: 1.4;
}

/* Card Subtitle (English Title) */
.grid-card-subtitle {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 0.9rem;
  color: #8b1a1a;
  margin: 0;
  font-weight: 500;
  opacity: 0.8;
  line-height: 1.5;
  display: none;
}

/* Card Description (Award Details) */
.grid-card-description {
  font-size: 1em;
  color: #555;
  margin: 0;
  line-height: 1.6;
  opacity: 1;
  display: block;
  visibility: visible;
  overflow: visible;
}

/* Card Location (City/Organization) */
.grid-card-location {
  font-size: 0.8rem;
  color: #888;
  margin: 10px 0 0 0;
  font-style: italic;
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

/* Stagger animations */
.grid-award-card:nth-child(1) {
  animation-delay: 0.06s;
}

.grid-award-card:nth-child(2) {
  animation-delay: 0.12s;
}

.grid-award-card:nth-child(3) {
  animation-delay: 0.18s;
}

.grid-award-card:nth-child(4) {
  animation-delay: 0.24s;
}

.grid-award-card:nth-child(5) {
  animation-delay: 0.30s;
}

.grid-award-card:nth-child(6) {
  animation-delay: 0.36s;
}

.grid-award-card:nth-child(7) {
  animation-delay: 0.42s;
}

.grid-award-card:nth-child(8) {
  animation-delay: 0.48s;
}

.grid-award-card:nth-child(9) {
  animation-delay: 0.54s;
}

.grid-award-card:nth-child(10) {
  animation-delay: 0.60s;
}

.grid-award-card:nth-child(11) {
  animation-delay: 0.66s;
}

.grid-award-card:nth-child(12) {
  animation-delay: 0.72s;
}

.grid-award-card:nth-child(13) {
  animation-delay: 0.78s;
}

.awards-section-header {
  text-align: center;
  margin-bottom: 0px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-label-awards {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ceaf3d;
  margin-bottom: 12px;
  display: inline-block;
}

.awards-heading {
  font-family: "Bungee Inline", cursive;
  font-size: 30px;
  color: #8b1a1a;
  margin: 12px 0 16px;
  /* font-weight: 700; */
  letter-spacing: -1px;
}

.awards-subheading {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin: 0 0 24px;
}

.section-divider-awards {
  width: 80px;
  height: 4px;
  background: #ceaf3d;
  border-radius: 2px;
  margin: 0 auto;
}

/* Responsive - Extra Large Screens (1400px+) */
@media (max-width: 1400px) {
  .awards-grid-main {
    padding: 40px 50px;
  }

  .awards-grid-layout {
    grid-gap: 3em;
  }
}

/* Responsive - Large Screens (1200px-1399px) */
@media (max-width: 1200px) {
  .awards-heading {
    font-size: 2.8rem;
  }

  .awards-grid-layout {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3em;
  }

  .grid-award-card {
    padding: 32px 24px;
  }

  .grid-card-title {
    font-size: 1.3rem;
    margin-top: 0.5em;
  }

  /* .grid-award-card:nth-child(13) {
    grid-column: 2;
    margin: 0 auto;
    border: 1px solid black;
  } */
}

@media (max-width: 1024px) {
  .awards-grid-main {
    /* padding: 80px 30px; */
    padding: 40px 30px;
  }

  .awards-section-header {
    margin-bottom: 0;
  }

  .awards-heading {
    font-size: 2.4rem;
  }

  .awards-grid-layout {
    grid-gap: 3em 2em;
  }

  .grid-award-card {
    padding: 26px 22px 28px;
  }

  .grid-card-title {
    font-size: 22px;
  }

  .grid-year-badge {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .awards-grid-main {
    padding: 60px 20px;
  }

  .awards-section-header {
    margin-bottom: 50px;
  }

  .awards-heading {
    font-size: 2.2rem;
  }

  .awards-subheading {
    font-size: 1rem;
  }

  .awards-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.5em 2em;
    padding: 30px 0;
  }

  .grid-award-card {
    padding: 36px 20px 24px;
  }

  .grid-year-badge {
    font-size: 1.1rem;
    padding: 8px 20px;
    top: -20px;
  }

  .grid-card-title {
    font-size: 22px;
  }

  .grid-card-subtitle {
    font-size: 0.9rem;
  }

  .grid-card-location {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .awards-grid-main {
    padding: 50px 16px;
  }

  .awards-section-header {
    margin-bottom: 40px;
  }

  .awards-heading {
    font-size: 1.8rem;
  }

  .awards-subheading {
    font-size: 0.95rem;
  }

  .awards-grid-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .grid-award-card {
    padding: 36px 16px 20px;
    min-height: 180px;
    margin-top: 20px;
  }

  .grid-year-badge {
    font-size: 1rem;
    padding: 6px 16px;
    top: -18px;
  }

  .grid-card-title {
    font-size: 22px;
  }

  .grid-card-description {
    font-size: 16px;
    margin: 0;
  }

  .grid-card-subtitle {
    font-size: 0.85rem;
  }

  .grid-card-location {
    font-size: 0.75rem;
  }

  /* .grid-award-card:nth-child(13) {
    grid-column: auto;
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid black;
  } */
}

/* Responsive - Extra Small Screens (< 480px) */
@media (max-width: 480px) {
  .awards-grid-main {
    padding: 40px 12px;
  }

  .awards-section-header {
    margin-bottom: 35px;
  }

  .section-label-awards {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }

  .awards-heading {
    font-size: 1.5rem;
    margin: 8px 0 12px;
  }

  .awards-subheading {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .section-divider-awards {
    width: 50px;
    height: 3px;
  }

  .awards-grid-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 15px 0;
  }

  .grid-award-card {
    padding: 33px 14px 18px;
    min-height: 160px;
    border-radius: 10px;
    margin-top: 18px;
  }

  .grid-year-badge {
    font-size: 1em;
    padding: 5px 14px;
    top: -1em;
  }

  .grid-card-title {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .grid-card-description {
    font-size: 16px;
    margin: 0;
  }

  .grid-card-subtitle {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .grid-card-location {
    font-size: 0.7rem;
  }
}

/* Responsive - Ultra Small Screens (< 360px) */
@media (max-width: 360px) {
  .awards-grid-main {
    padding: 35px 10px;
  }

  .awards-heading {
    font-size: 1.4rem;
  }

  .awards-subheading {
    font-size: 0.85rem;
  }

  .grid-award-card {
    padding: 26px 12px 16px;
    min-height: 150px;
    margin-top: 16px;
  }

  .grid-card-title {
    font-size: 22px;
  }

  .grid-card-description {
    font-size: 16px;
    margin: 0;
  }

  .grid-card-subtitle {
    font-size: 0.75rem;
  }

  .grid-card-location {
    font-size: 0.7rem;
  }
}


.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  background: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-label {
  color: #ceaf3d;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-title {
  font-family: "Bungee Inline", cursive;
  font-size: 2.5rem;
  color: #333;
  margin: 15px 0;
  line-height: 1.2;
}

.about-name {
  color: #8b1a1a;
  font-style: italic;
}

.about-divider {
  width: 60px;
  height: 4px;
  background: #8b1a1a;
  margin: 20px 0 25px;
}

.about-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  /* background: #f5f5f5; */
  border-radius: 10px;
  transition: all 0.3s;
}

.stat-item:hover {
  /* background: #ead6a3; */
  transform: translateY(-5px);
}

.stat-icon {
  width: 50px;
  height: 50px;
  /* margin: 0 auto 15px; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d3911d;
  font-size: 2rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b1a1a;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.75rem;
  color: #999;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Professional Section */
.professional-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.prof-left {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.prof-title {
  font-family: "Bungee Inline", cursive;
  font-size: 1.8rem;
  color: #333;
  line-height: 1.3;
  margin-bottom: 15px;
}

.prof-name {
  font-size: 1rem;
  color: #8b1a1a;
  font-weight: 600;
  margin-bottom: 5px;
}

.prof-subtitle {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.prof-description {
  color: #555;
  line-height: 1.8;
  font-size: 0.95rem;
}

.prof-right {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-heading {
  font-family: "Bungee Inline", cursive;
  font-size: 1.3rem;
  color: #8b1a1a;
  margin-bottom: 30px;
}

.affiliations-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.affiliation-item {
  display: flex;
  gap: 15px;
  padding-bottom: 15px;
}

.affiliation-icon {
  color: #ceaf3d;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.affiliation-text {
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ── Footer Redesign ──────────────────────────────── */
.footer-new {
  background: #faf8f5;
  color: #333;
  margin-top: 0;
}

.footer-top-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #ceaf3d, transparent);
  position: relative;
}

.footer-top-divider::after {
  content: '◆';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: #ceaf3d;
}

.footer-content {
  padding: 30px 0 15px;
  border-bottom: 1px solid #d4c5b9;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.footer-brand-section {
  text-align: left;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 15px;
}

.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-name-hindi {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.1rem;
  color: #8b1a1a;
  margin-bottom: 15px;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: #ceaf3d;
  margin-bottom: 15px;
}

.footer-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}

.footer-nav-section {
  text-align: center;
}

.footer-nav-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border: 2px solid #ceaf3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #8b1a1a;
}

.footer-section-title {
  font-family: "Bungee Inline", cursive;
  font-size: 0.9rem;
  color: #8b1a1a;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav-divider {
  width: 50px;
  height: 1px;
  background: #ceaf3d;
  margin: 10px auto 20px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
}

.footer-nav-list li {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d4c5b9;
}

.footer-nav-list li:last-child {
  border-bottom: none;
}

.footer-nav-list i {
  color: #ceaf3d;
  margin-right: 8px;
  font-size: 0.7rem;
}

.footer-nav-list a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.footer-nav-list a:hover {
  color: #8b1a1a;
  margin-left: 5px;
}

.footer-bottom-section {
  padding: 30px 0;
  background: #faf8f5;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.footer-quote-section {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.footer-quote-icon {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 3rem;
  color: #8b1a1a;
  font-weight: bold;
  opacity: 0.6;
  min-width: 60px;
  text-align: center;
  border: 2px solid #ceaf3d;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-quote {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  border-left: 2px solid #ceaf3d;
  padding-left: 20px;
}

.footer-social-section {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 2px solid #8b1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b1a1a;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.social-link:hover {
  background: #8b1a1a;
  color: #fff;
}

.footer-copyright {
  background: #8b1a1a;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-section {
    text-align: center;
  }

  .footer-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav-section {
    border-top: 1px solid #d4c5b9;
    padding-top: 30px;
  }

  .footer-content {
    padding: 25px 0 15px;
  }
}

@media (max-width: 480px) {
  .footer-main-grid {
    gap: 25px;
  }

  .footer-content {
    padding: 20px 0 10px;
  }

  .footer-bottom-section {
    padding: 40px 0;
  }

  .footer-quote {
    font-size: 0.9rem;
  }

  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* ── Footer Map Section ──────────────────────────── */
.footer-map-section {
  width: 100%;
  height: 300px;
  background: #f5f5f5;
}

.footer-map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .footer-map-section {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .footer-map-section {
    height: 200px;
  }
}

/* ── Update Footer Grid to 4 Columns ──────────────── */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
  gap: 40px !important;
  align-items: flex-start;
}

.footer-map-col {
  text-align: center;
}

.footer-map-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border: 2px solid #ceaf3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #8b1a1a;
}

.footer-map-embed {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-map-embed iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: none;
}

.footer-address {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #d4c5b9;
}

/* Responsive 4-Column Footer */
@media (max-width: 1200px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }

  .footer-brand-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .footer-brand-section {
    grid-column: auto;
    text-align: center;
  }

  .footer-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-nav-section,
  .footer-map-col {
    border-top: 1px solid #d4c5b9;
    padding-top: 25px;
  }

  .footer-map-embed iframe {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .footer-map-embed iframe {
    height: 120px;
  }

  .footer-address {
    font-size: 0.85rem;
  }
}

/* ── Awards Page (Bootstrap Columns) ──────────────────── */
.awards-row-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.award-card-item {
  background: #ffffff;
  border: 2.5px solid #ceaf3d;
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
  height: 100%;
}

.award-card-item:hover {
  transform: translateY(-12px);
  border-color: #8b1a1a;
  box-shadow: 0 16px 48px rgba(139, 26, 26, 0.16);
}

/* Award Year Badge */
.award-year-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #8b1a1a;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(139, 26, 26, 0.25);
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Award Card Title (Hindi) */
.award-card-title {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.4rem;
  color: #8b1a1a;
  margin: 0 0 12px 0;
  font-weight: 600;
  line-height: 1.4;
}

/* Award Card Subtitle (English) */
.award-card-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: #8b1a1a;
  margin: 0 0 12px 0;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1.5;
}

/* Award Card Description */
.award-card-description {
  font-size: 0.85rem;
  color: #555;
  margin: 10px 0 12px 0;
  line-height: 1.6;
  opacity: 1;
  display: block;
  visibility: visible;
  overflow: visible;
}

/* Award Card Location */
.award-card-location {
  font-size: 0.8rem;
  color: #888;
  margin: 10px 0 0 0;
  font-style: italic;
  line-height: 1.5;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .award-card-item {
    padding: 28px 22px;
  }

  .award-card-title {
    font-size: 1.2rem;
  }

  .award-year-badge {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .award-card {
    padding: 24px 20px;
  }

  .award-card-title {
    font-size: 1.1rem;
  }

  .award-card-subtitle {
    font-size: 0.9rem;
  }

  .award-card-location {
    font-size: 0.8rem;
  }

  .award-year-badge {
    font-size: 1.1rem;
    padding: 8px 20px;
    top: -20px;
  }
}

@media (max-width: 600px) {
  .award-card {
    padding: 20px 16px;
  }

  .award-card-title {
    font-size: 1rem;
  }

  .award-card-subtitle {
    font-size: 0.85rem;
  }

  .award-card-description {
    font-size: 0.8rem;
  }

  .award-year-badge {
    font-size: 1rem;
    padding: 6px 16px;
    top: -18px;
  }
}

/* ── Books Page Navigation Icons ──────────────────────── */
.nav-icon {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.2rem;
  line-height: 1;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sidebar-nav .nav-link:hover {
  color: #8b1a1a;
}

.sidebar-nav .nav-link.active {
  background: #8b1a1a;
  color: #faf8f5;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.sidebar-nav .nav-link.active .nav-icon {
  color: #faf8f5;
}

/* ── Books Page Card Styling ──────────────────────────── */
.book-heading {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2c1810;
  margin: 0;
  line-height: 1.3;
}

.book-vidya {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  font-style: italic;
  line-height: 1.4;
}

.book-publisher {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

.book-description {
  font-size: 0.85rem;
  color: #777;
  margin: 8px 0;
  line-height: 1.4;
}

.book-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
  padding-top: 0;
  border-top: none;
  font-size: 0.8rem;
  color: #888;
}

.book-language {
  display: inline-block;
  font-size: 0.8rem;
  color: #666;
}

/* ── Books Research Page ──────────────────────────────── */
.books-research-main {
  padding: 60px 0;
  background: #faf8f5;
  min-height: calc(100vh - 200px);
}

.research-section {
  padding: 40px 0;
}

.section-header-research {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-research h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #8b1a1a;
  margin-bottom: 12px;
  font-family: "Noto Serif Devanagari", serif;
}

.section-header-research .section-subtitle {
  font-size: 1.05rem;
  color: #666;
}

.research-table-wrapper {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
}

.research-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
}

.research-table thead {
  background: #5cb85c;
  color: white;
}

.research-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: "Noto Serif Devanagari", serif;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.research-table th:last-child {
  border-right: none;
}

.research-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.research-table tbody tr:hover {
  background-color: #f9f9f9;
}

.research-table tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}

.research-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: #333;
  font-family: "Noto Serif Devanagari", serif;
}

.research-table .year-cell {
  font-weight: 600;
  color: #8b1a1a;
  text-align: center;
}

/* Responsive Table */
@media (max-width: 768px) {
  .research-table-wrapper {
    overflow-x: auto;
  }

  .research-table th,
  .research-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .section-header-research h2 {
    font-size: 1.5rem;
  }
}

/* ── Book Info Labels ──────────────────────────────── */
.book-info-group {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.book-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8b1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.book-heading {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c1810;
  margin: 0;
  line-height: 1.3;
}

.book-vidya {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-style: italic;
}

.book-publisher {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.book-language {
  font-size: 0.85rem;
  color: #666;
}

/* ── Improved Book Info Labels & Alignment ──────────────────────────────── */
.book-info-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.book-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #8b1a1a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.book-heading {
  font-family: "Noto Serif Devanagari", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2c1810;
  margin: 0;
  line-height: 1.35;
}

.book-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  font-style: italic;
  line-height: 1.4;
}

.book-publisher-text {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.book-language {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

.book-meta {
  margin: 4px 0 0 0;
}

.meta-badge {
  background: #8b1a1a;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-block;
}

/* ── Book Labels with Hindi Support ──────────────────────────────── */
.book-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8b1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  font-family: "Noto Serif Devanagari", serif;
  display: block;
}

.contactform_inputfields.input-error,
textarea[name="message"].input-error {
  border: 1px solid red !important;
}

.error-message {
  color: red;
  font-size: 12px;
  display: none;
  margin-top: 5px;
}

.error-message.show {
  display: block;
}

/* ── Contact Form Alert ────────────────────────────── */
#contact-form-alert {
  display: none;
  margin-bottom: 20px;
}

#contact-form-alert .alert {
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

#contact-form-alert .alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

#contact-form-alert .alert-error {
  background: #fbe9e7;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ── Completed Work Section ──────────────────────────── */
.completed-work-section {
    padding: 3em 0;
    background: var(--ivory);
}

.completed_work_card {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1.3;
    display: inline-block;
    text-decoration: none;
    isolation: isolate;
    box-shadow: 0 24px 60px -28px rgba(139, 26, 26, 0.30);
}

.completed_work_card.reveal {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 0.7s ease, transform 0.7s ease !important;
}

.completed_work_card.reveal.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.completed_work_card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .6s;
}

.completed_work_card:hover img {
    transform: scale(1.08);
}

.completed_work_card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: background .6s ease;
}

.completed_work_card:hover::after {
    background: rgba(0,0,0,0.5);
}

.card-pdf-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.completed_work_card:hover .card-pdf-icon {
    opacity: 1;
}

.card-pdf-icon i {
    font-size: 64px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.card-pdf-icon:hover i {
    transform: scale(1.15);
}