 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --saffron: #d4652a;
     --saffron-light: #e8853e;
     --saffron-pale: #fdf3ec;
     --maroon: #8b1a1a;
     --gold: #c8961c;
     --gold-light: #f0b429;
     --dark: #1c1612;
     --text: #3d3028;
     --muted: #7a6e65;
     --cream: #faf7f2;
     --white: #ffffff;
     --border: rgba(212, 101, 42, 0.18);
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     background: var(--cream);
     color: var(--text);
     font-family: 'Poppins', sans-serif;
     font-weight: 300;
     overflow-x: hidden;
 }

 /* ══ NAVBAR ══ */
 #navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     background: var(--white);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s;
 }

 .nav-container {
     max-width: 1450px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 72px;
 }

 .logo img {
     height: 52px;
     width: auto;
     object-fit: contain;
 }

 /* Fallback logo text if image missing */
 .logo-text {
     font-family: 'Rozha One', serif;
     font-size: 20px;
     color: var(--saffron);
     letter-spacing: 0.05em;
     line-height: 1.1;
 }

 .logo-text span {
     display: block;
     font-size: 11px;
     color: var(--muted);
     font-family: 'Poppins', sans-serif;
     font-weight: 400;
     letter-spacing: 0.15em;
     text-transform: uppercase;
 }

 .nav-links {
     display: flex;
     gap: 32px;
     list-style: none;
 }

 .nav-links a {
     font-size: 13px;
     font-weight: 500;
     color: var(--text);
     text-decoration: none;
     letter-spacing: 0.03em;
     transition: color 0.3s;
     padding-bottom: 3px;
     border-bottom: 2px solid transparent;
 }

 .nav-links a:hover,
 .nav-links a.active {
     color: var(--saffron);
     border-bottom-color: var(--saffron);
 }
 /* Container styling to remove bullet points */
.nav-item {
  list-style: none;
}

/* The Button Base Style */
#signup-btn {
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-weight: 600;
  padding: 5px 24px;
  background-color:#322513; /* Primary Blue */
  color: #f6f7f8;
  border-radius: 50px; /* Pill shape */
  transition: all 0.3s ease; /* Smooth transition for hover */
  display: inline-block;
  border: 2px solid transparent;
}

/* The Hover Effect */
.signup-btn:hover {
  background-color: #bf1a1a;
  color: #007bff;
  border: 2px solid #007bff;
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Active State (when clicked) */
.signup-btn:active {
  transform: translateY(0);
}

 .hamburger {
     display: none;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     background: none;
     border: none;
     padding: 4px;
 }

 .hamburger span {
     display: block;
     width: 24px;
     height: 2px;
     background: var(--dark);
     border-radius: 2px;
     transition: all 0.3s;
 }

 /* Mobile Menu */
 .mobile-menu {
     display: none;
     position: fixed;
     inset: 0;
     background: var(--white);
     z-index: 2000;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 36px;
 }

 .mobile-menu.open {
     display: flex;
 }

 .mobile-menu a {
     font-size: 26px;
     font-family: 'Rozha One', serif;
     color: var(--dark);
     text-decoration: none;
     transition: color 0.3s;
 }

 .mobile-menu a:hover {
     color: var(--saffron);
 }

 .menu-close {
     position: absolute;
     top: 22px;
     right: 28px;
     font-size: 30px;
     background: none;
     border: none;
     cursor: pointer;
     color: var(--dark);
 }

 /* ══ HERO BAND ══ */
 .page-hero {
     margin-top: 72px;
     background: linear-gradient(135deg, var(--dark) 0%, #2d1f14 50%, #1c1612 100%);
     padding: 80px 32px 70px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .page-hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background:
         radial-gradient(ellipse at 20% 50%, rgba(212, 101, 42, 0.18) 0%, transparent 55%),
         radial-gradient(ellipse at 80% 30%, rgba(200, 150, 28, 0.12) 0%, transparent 50%);
 }

 /* Mandala-inspired decorative ring */
 .hero-ring {
     position: absolute;
     right: -80px;
     top: -80px;
     width: 380px;
     height: 380px;
     border-radius: 50%;
     border: 1px solid rgba(212, 101, 42, 0.15);
     pointer-events: none;
 }

 .hero-ring::before {
     content: '';
     position: absolute;
     inset: 30px;
     border-radius: 50%;
     border: 1px solid rgba(200, 150, 28, 0.12);
 }

 .hero-ring::after {
     content: '';
     position: absolute;
     inset: 60px;
     border-radius: 50%;
     border: 1px solid rgba(212, 101, 42, 0.08);
 }

 .page-hero .eyebrow {
     font-size: 27px;
     letter-spacing: 0.5em;
     text-transform: uppercase;
     color: var(--gold-light);
     margin-bottom: 18px;
     position: relative;
     display: inline-flex;
     align-items: center;
     gap: 14px;
 }

 .page-hero .eyebrow::before,
 .page-hero .eyebrow::after {
     content: '';
     display: block;
     width: 36px;
     height: 1px;
     background: var(--gold);
     opacity: 0.6;
 }

 .page-hero h1 {
     font-family: 'Rozha One', serif;
     font-size: clamp(36px, 6vw, 70px);
     color: var(--white);
     line-height: 1.05;
     position: relative;
     margin-bottom: 20px;
 }

 .page-hero h1 span {
     color: var(--gold-light);
 }

 .page-hero p {
     font-size: 19px;
     color: rgba(255, 255, 255, 0.55);
     max-width: 560px;
     margin: 0 auto;
     line-height: 1.9;
     position: relative;
 }

 /* Breadcrumb */
 .breadcrumb {
     position: relative;
     margin-top: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     font-size: 12px;
     color: rgba(255, 255, 255, 0.35);
     letter-spacing: 0.1em;
 }

 .breadcrumb a {
     color: var(--gold);
     text-decoration: none;
 }

 .breadcrumb i {
     font-size: 8px;
 }

 /* ══ SECTION COMMONS ══ */
 .section {
     padding: 90px 32px;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
 }

 .section-header {
     text-align: center;
     margin-bottom: 64px;
 }

 .section-header .tag {
     display: inline-block;
     font-size: 10px;
     letter-spacing: 0.45em;
     text-transform: uppercase;
     color: var(--saffron);
     background: rgba(212, 101, 42, 0.08);
     border: 1px solid var(--border);
     padding: 6px 18px;
     border-radius: 30px;
     margin-bottom: 18px;
 }

 .section-header h2 {
     font-family: 'Rozha One', serif;
     font-size: clamp(30px, 4vw, 48px);
     color: var(--dark);
     line-height: 1.1;
     margin-bottom: 16px;
 }

 .section-header h2 span {
     color: var(--saffron);
 }

 .section-header p {
     font-size: 15px;
     color: var(--muted);
     max-width: 580px;
     margin: 0 auto;
     line-height: 1.9;
 }

 /* Decorative divider */
 .divider {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     margin: 20px 0 0;
 }

 .divider::before,
 .divider::after {
     content: '';
     flex: 1;
     max-width: 60px;
     height: 1px;
     background: var(--border);
 }

 .divider-dot {
     width: 8px;
     height: 8px;
     background: var(--saffron);
     border-radius: 50%;
 }

 /* ══ ABOUT STORY SECTION ══ */
 .about-story {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .story-img-wrap {
     position: relative;
 }

 .story-main-img {
     width: 100%;
     aspect-ratio: 4/3;
     object-fit: cover;
     border-radius: 4px;
     display: block;
 }

 /* Placeholder if no image */
 .story-img-placeholder {
     width: 100%;
     aspect-ratio: 4/3;
     background: linear-gradient(135deg, var(--saffron-pale), #f5e8d8);
     border-radius: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: 'Rozha One', serif;
     font-size: 28px;
     color: var(--saffron);
     letter-spacing: 0.05em;
     border: 2px solid var(--border);
 }

 .story-badge {
     position: absolute;
     bottom: -24px;
     left: 32px;
     background: var(--saffron);
     color: white;
     padding: 16px 28px;
     border-radius: 3px;
     box-shadow: 0 8px 30px rgba(212, 101, 42, 0.4);
 }

 .story-badge .num {
     font-family: 'Rozha One', serif;
     font-size: 32px;
     line-height: 1;
 }

 .story-badge .lbl {
     font-size: 11px;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     opacity: 0.85;
 }

 .story-accent {
     position: absolute;
     top: -16px;
     right: -16px;
     width: 100px;
     height: 100px;
     border: 2px solid var(--gold);
     border-radius: 3px;
     z-index: -1;
     opacity: 0.35;
 }

 .story-text .tag {
     font-size: 10px;
     letter-spacing: 0.45em;
     text-transform: uppercase;
     color: var(--saffron);
     margin-bottom: 16px;
     display: block;
 }

 .story-text h2 {
     font-family: 'Rozha One', serif;
     font-size: clamp(28px, 3vw, 40px);
     color: var(--dark);
     line-height: 1.15;
     margin-bottom: 24px;
 }

 .story-text h2 span {
     color: var(--saffron);
 }

 .story-text p {
     font-size: 14px;
     line-height: 2;
     color: var(--muted);
     margin-bottom: 18px;
 }

 .story-quote {
     border-left: 3px solid var(--saffron);
     padding: 16px 24px;
     background: var(--saffron-pale);
     margin: 24px 0;
     border-radius: 0 4px 4px 0;
 }

 .story-quote p {
     font-size: 14px;
     font-style: italic;
     color: var(--text);
     margin: 0;
     line-height: 1.8;
 }

 .story-quote cite {
     font-size: 12px;
     color: var(--saffron);
     font-style: normal;
     display: block;
     margin-top: 8px;
     font-weight: 500;
     letter-spacing: 0.05em;
 }

 /* ══ STATS ROW ══ */
 .stats-section {
     background: var(--dark);
     padding: 70px 32px;
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
 }

 .stat-item {
     text-align: center;
     padding: 40px 20px;
     border-right: 1px solid rgba(255, 255, 255, 0.07);
     position: relative;
     transition: background 0.3s;
 }

 .stat-item:last-child {
     border-right: none;
 }

 .stat-item:hover {
     background: rgba(212, 101, 42, 0.08);
 }

 .stat-item::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 20%;
     right: 20%;
     height: 2px;
     background: var(--saffron);
     transform: scaleX(0);
     transition: transform 0.4s;
 }

 .stat-item:hover::after {
     transform: scaleX(1);
 }

 .stat-icon {
     font-size: 28px;
     color: var(--gold-light);
     margin-bottom: 16px;
 }

 .stat-num {
     font-family: 'Rozha One', serif;
     font-size: 44px;
     color: var(--white);
     line-height: 1;
     margin-bottom: 8px;
 }

 .stat-num span {
     color: var(--saffron-light);
 }

 .stat-label {
     font-size: 11px;
     letter-spacing: 0.25em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, 0.4);
 }

 /* ══ MISSION VISION ══ */
 .mv-section {
     background: var(--saffron-pale);
 }

 .mv-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 32px;
 }

 .mv-card {
     background: var(--white);
     padding: 48px 40px;
     border-radius: 4px;
     border-bottom: 3px solid transparent;
     box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
     transition: all 0.35s;
     position: relative;
     overflow: hidden;
 }

 .mv-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--saffron);
     transform: scaleX(0);
     transition: transform 0.4s;
     transform-origin: left;
 }

 .mv-card:hover::before {
     transform: scaleX(1);
 }

 .mv-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
 }

 .mv-icon {
     width: 56px;
     height: 56px;
     background: rgba(212, 101, 42, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     color: var(--saffron);
     margin-bottom: 24px;
     transition: all 0.3s;
 }

 .mv-card:hover .mv-icon {
     background: var(--saffron);
     color: white;
 }

 .mv-card h3 {
     font-family: 'Rozha One', serif;
     font-size: 26px;
     color: var(--dark);
     margin-bottom: 14px;
 }

 .mv-card p {
     font-size: 14px;
     line-height: 1.9;
     color: var(--muted);
 }

 /* ══ DIRECTORS / TEAM ══ */
 .directors-section {
     background: var(--white);
 }

 /* Special banner above directors */
 .directors-intro {
     text-align: center;
     padding: 40px;
     background: linear-gradient(135deg, rgba(212, 101, 42, 0.06), rgba(200, 150, 28, 0.06));
     border: 1px solid var(--border);
     border-radius: 4px;
     margin-bottom: 64px;
 }

 .directors-intro p {
     font-size: 15px;
     color: var(--muted);
     line-height: 1.9;
     max-width: 680px;
     margin: 0 auto;
     font-style: italic;
 }

 .directors-intro cite {
     display: block;
     margin-top: 12px;
     font-size: 13px;
     color: var(--saffron);
     font-style: normal;
     font-weight: 500;
 }

 /* Directors grid */
 .directors-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 48px;
     max-width: 900px;
     margin: 0 auto;
 }

 /* ════════════════════════════
           DIRECTOR CARD — IMAGE CONTAINER
        ════════════════════════════ */
 .director-card {
     background: var(--white);
     border-radius: 6px;
     overflow: hidden;
     box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
     transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
     position: relative;
     border: 1px solid rgba(212, 101, 42, 0.12);
 }

 .director-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 24px 60px rgba(212, 101, 42, 0.18);
 }

 /* ── IMAGE CONTAINER ── */
 .director-img-container {
     position: relative;
     overflow: hidden;
     aspect-ratio: 3 / 3.6;
     background: linear-gradient(160deg, #f5e8d8 0%, #ede0cc 100%);
 }

 .director-img-container img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: top center;
     display: block;
     transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
     filter: brightness(1.02) contrast(1.03);
 }

 .director-card:hover .director-img-container img {
     transform: scale(1.06);
 }

 /* Gradient overlay on image */
 .director-img-container .img-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom,
             transparent 45%,
             rgba(28, 22, 18, 0.65) 100%);
     z-index: 2;
     transition: opacity 0.4s;
 }

 /* Gold corner accents on image */
 .director-img-container::before {
     content: '';
     position: absolute;
     top: 16px;
     left: 16px;
     width: 44px;
     height: 44px;
     border-top: 2px solid var(--gold);
     border-left: 2px solid var(--gold);
     z-index: 5;
     opacity: 0;
     transform: translate(-8px, -8px);
     transition: all 0.4s 0.05s;
 }

 .director-img-container::after {
     content: '';
     position: absolute;
     bottom: 16px;
     right: 16px;
     width: 44px;
     height: 44px;
     border-bottom: 2px solid var(--gold);
     border-right: 2px solid var(--gold);
     z-index: 5;
     opacity: 0;
     transform: translate(8px, 8px);
     transition: all 0.4s 0.05s;
 }

 .director-card:hover .director-img-container::before,
 .director-card:hover .director-img-container::after {
     opacity: 1;
     transform: translate(0);
 }

 /* Designation badge on image */
 .director-badge {
     position: absolute;
     top: 18px;
     right: 18px;
     background: var(--saffron);
     color: white;
     font-size: 9px;
     letter-spacing: 0.25em;
     text-transform: uppercase;
     padding: 6px 14px;
     font-weight: 600;
     z-index: 10;
     border-radius: 2px;
 }

 /* Name tag overlay at bottom of image */
 .img-name-tag {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 10;
     padding: 24px 24px 20px;
     transform: translateY(10px);
     opacity: 0;
     transition: all 0.4s;
 }

 .director-card:hover .img-name-tag {
     transform: translateY(0);
     opacity: 1;
 }

 .img-name-tag .hover-name {
     font-family: 'Rozha One', serif;
     font-size: 22px;
     color: white;
     line-height: 1;
     margin-bottom: 4px;
 }

 .img-name-tag .hover-role {
     font-size: 11px;
     color: var(--gold-light);
     letter-spacing: 0.2em;
     text-transform: uppercase;
 }

 /* Social floating buttons on image */
 .img-socials {
     position: absolute;
     bottom: 20px;
     right: 20px;
     z-index: 15;
     display: flex;
     flex-direction: column;
     gap: 8px;
     opacity: 0;
     transform: translateX(14px);
     transition: all 0.4s 0.1s;
 }

 .director-card:hover .img-socials {
     opacity: 1;
     transform: translateX(0);
 }

 .img-social-btn {
     width: 34px;
     height: 34px;
     background: rgba(255, 255, 255, 0.15);
     backdrop-filter: blur(8px);
     border: 1px solid rgba(255, 255, 255, 0.3);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 12px;
     text-decoration: none;
     transition: all 0.3s;
     cursor: pointer;
 }

 .img-social-btn:hover {
     background: var(--saffron);
     border-color: var(--saffron);
 }

 /* ── CARD BODY (below image) ── */
 .director-body {
     padding: 28px 28px 32px;
 }

 .director-body .d-role {
     font-size: 10px;
     letter-spacing: 0.4em;
     text-transform: uppercase;
     color: var(--saffron);
     margin-bottom: 8px;
 }

 .director-body h3 {
     font-family: 'Rozha One', serif;
     font-size: 26px;
     color: var(--dark);
     margin-bottom: 4px;
     line-height: 1.15;
     transition: color 0.3s;
 }

 .director-card:hover .director-body h3 {
     color: var(--saffron);
 }

 .director-body .d-exp {
     font-size: 12px;
     color: var(--muted);
     margin-bottom: 16px;
     font-weight: 400;
 }

 /* Gold divider line */
 .d-divider {
     width: 40px;
     height: 2px;
     background: linear-gradient(to right, var(--saffron), var(--gold));
     margin-bottom: 16px;
     border-radius: 2px;
     transition: width 0.4s;
 }

 .director-card:hover .d-divider {
     width: 70px;
 }

 .director-body p.d-bio {
     font-size: 13px;
     line-height: 1.9;
     color: var(--muted);
     margin-bottom: 22px;
 }

 /* Specialties */
 .d-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-bottom: 22px;
 }

 .d-tag {
     padding: 4px 12px;
     background: var(--saffron-pale);
     border: 1px solid var(--border);
     border-radius: 20px;
     font-size: 10px;
     letter-spacing: 0.1em;
     color: var(--saffron);
     font-weight: 500;
     transition: all 0.3s;
 }

 .director-card:hover .d-tag {
     background: rgba(212, 101, 42, 0.12);
 }

 /* Contact link */
 .d-contact {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 12px;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     font-weight: 500;
     color: var(--saffron);
     text-decoration: none;
     border-bottom: 1px solid var(--border);
     padding-bottom: 4px;
     transition: all 0.3s;
 }

 .d-contact:hover {
     border-color: var(--saffron);
     letter-spacing: 0.22em;
 }

 .d-contact i {
     font-size: 10px;
     transition: transform 0.3s;
 }

 .d-contact:hover i {
     transform: translateX(4px);
 }

 /* ══ WHY CHOOSE US ══ */
 .why-section {
     background: var(--cream);
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 24px;
 }

 .feature-card {
     background: var(--white);
     padding: 40px 28px;
     text-align: center;
     border-radius: 4px;
     border-bottom: 3px solid transparent;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
     transition: all 0.35s;
     position: relative;
     overflow: hidden;
 }

 .feature-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(to right, var(--saffron), var(--gold));
     transform: scaleX(0);
     transition: transform 0.4s;
 }

 .feature-card:hover::after {
     transform: scaleX(1);
 }

 .feature-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
 }

 .feature-icon-wrap {
     width: 70px;
     height: 70px;
     background: rgba(212, 101, 42, 0.08);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 24px;
     font-size: 26px;
     color: var(--saffron);
     transition: all 0.35s;
 }

 .feature-card:hover .feature-icon-wrap {
     background: var(--saffron);
     color: white;
     transform: rotate(8deg) scale(1.1);
 }

 .feature-card h4 {
     font-family: 'Rozha One', serif;
     font-size: 18px;
     color: var(--dark);
     margin-bottom: 10px;
 }

 .feature-card p {
     font-size: 13px;
     color: var(--muted);
     line-height: 1.8;
 }

 /* ══ TIMELINE ══ */
 .timeline-section {
     background: var(--saffron-pale);
 }

 .timeline {
     position: relative;
     max-width: 800px;
     margin: 0 auto;
 }

 .timeline::before {
     content: '';
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 1px;
     background: linear-gradient(to bottom, var(--saffron), var(--gold));
     transform: translateX(-50%);
 }

 .tl-item {
     display: flex;
     align-items: flex-start;
     gap: 40px;
     margin-bottom: 56px;
 }

 .tl-item:nth-child(even) {
     flex-direction: row-reverse;
 }

 .tl-content {
     flex: 1;
     background: var(--white);
     padding: 28px 32px;
     border-radius: 4px;
     box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
     border-left: 3px solid var(--saffron);
     transition: transform 0.3s;
 }

 .tl-item:nth-child(even) .tl-content {
     border-left: none;
     border-right: 3px solid var(--gold);
 }

 .tl-content:hover {
     transform: translateY(-3px);
 }

 .tl-year {
     font-family: 'Rozha One', serif;
     font-size: 32px;
     color: var(--saffron);
     line-height: 1;
     margin-bottom: 8px;
 }

 .tl-content h4 {
     font-size: 16px;
     font-weight: 600;
     color: var(--dark);
     margin-bottom: 8px;
 }

 .tl-content p {
     font-size: 13px;
     color: var(--muted);
     line-height: 1.8;
 }

 .tl-dot {
     flex-shrink: 0;
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: var(--saffron);
     color: white;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     box-shadow: 0 0 0 6px rgba(212, 101, 42, 0.15);
     position: relative;
     z-index: 2;
     margin-top: 16px;
 }

 /* ══ CTA SECTION ══ */
 .cta-section {
     background: linear-gradient(135deg, var(--dark) 0%, #2d1f14 100%);
     padding: 100px 32px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-section::before {
     content: '';
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 700px;
     height: 700px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(212, 101, 42, 0.08) 0%, transparent 70%);
 }

 .cta-section h2 {
     font-family: 'Rozha One', serif;
     font-size: clamp(34px, 5vw, 56px);
     color: white;
     margin-bottom: 20px;
     position: relative;
 }

 .cta-section h2 span {
     color: var(--gold-light);
 }

 .cta-section p {
     font-size: 15px;
     color: rgba(255, 255, 255, 0.5);
     max-width: 480px;
     margin: 0 auto 44px;
     line-height: 1.9;
     position: relative;
 }

 .cta-buttons-wrap {
     display: flex;
     gap: 18px;
     justify-content: center;
     flex-wrap: wrap;
     position: relative;
 }

 .btn-saffron {
     padding: 16px 44px;
     background: var(--saffron);
     color: white;
     font-size: 13px;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     border: none;
     border-radius: 3px;
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
     font-family: 'Poppins', sans-serif;
 }

 .btn-saffron:hover {
     background: var(--saffron-light);
     transform: translateY(-2px);
     box-shadow: 0 12px 30px rgba(212, 101, 42, 0.4);
 }

 .btn-outline-w {
     padding: 16px 44px;
     background: transparent;
     border: 1px solid rgba(255, 255, 255, 0.25);
     color: white;
     font-size: 13px;
     font-weight: 500;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     border-radius: 3px;
     cursor: pointer;
     transition: all 0.3s;
     text-decoration: none;
     font-family: 'Poppins', sans-serif;
 }

 .btn-outline-w:hover {
     border-color: var(--gold-light);
     color: var(--gold-light);
 }

 /* ══ FOOTER ══ */
 footer {
     background: #111;
     padding: 36px 32px;
     text-align: center;
     border-top: 1px solid rgba(212, 101, 42, 0.15);
 }

 footer p {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.35);
     margin-bottom: 16px;
 }

 .social-icons {
     display: flex;
     gap: 16px;
     justify-content: center;
 }

 .social-icons a {
     width: 38px;
     height: 38px;
     border: 1px solid rgba(255, 255, 255, 0.15);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.5);
     font-size: 14px;
     text-decoration: none;
     transition: all 0.3s;
 }

 .social-icons a:hover {
     border-color: var(--saffron);
     color: var(--saffron);
 }

 /* WhatsApp */
 .btn-whatsapp-pulse {
     position: fixed;
     bottom: 28px;
     right: 28px;
     width: 58px;
     height: 58px;
     background: #25D366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 26px;
     text-decoration: none;
     z-index: 500;
     box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
     animation: waPulse 2.5s infinite;
 }

 @keyframes waPulse {

     0%,
     100% {
         box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
     }

     50% {
         box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
     }
 }

 /* ══ REVEAL ANIMATIONS ══ */
 .reveal {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity 0.75s ease, transform 0.75s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .reveal-left {
     opacity: 0;
     transform: translateX(-40px);
     transition: opacity 0.75s ease, transform 0.75s ease;
 }

 .reveal-left.visible {
     opacity: 1;
     transform: translateX(0);
 }

 .reveal-right {
     opacity: 0;
     transform: translateX(40px);
     transition: opacity 0.75s ease, transform 0.75s ease;
 }

 .reveal-right.visible {
     opacity: 1;
     transform: translateX(0);
 }

 /* ══ RESPONSIVE ══ */
 @media (max-width: 1024px) {
     .about-story {
         grid-template-columns: 1fr;
         gap: 60px;
     }

     .features-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .stats-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .stat-item {
         border-bottom: 1px solid rgba(255, 255, 255, 0.07);
     }

     .mv-grid {
         grid-template-columns: 1fr;
     }

     .directors-grid {
         grid-template-columns: 1fr;
         max-width: 500px;
     }

     nav .nav-links {
         display: none;
     }

     .hamburger {
         display: flex;
     }
 }

 @media (max-width: 768px) {
     .section {
         padding: 64px 20px;
     }

     .features-grid {
         grid-template-columns: 1fr 1fr;
     }

     .stats-grid {
         grid-template-columns: 1fr 1fr;
     }

     .timeline::before {
         left: 20px;
     }

     .tl-item,
     .tl-item:nth-child(even) {
         flex-direction: column;
         padding-left: 60px;
     }

     .tl-dot {
         position: absolute;
         left: 0;
     }

     .timeline {
         position: relative;
     }

     .cta-buttons-wrap {
         flex-direction: column;
         align-items: center;
     }

     footer {
         padding: 28px 20px;
     }
 }

 @media (max-width: 480px) {
     .features-grid {
         grid-template-columns: 1fr;
     }

     .stats-grid {
         grid-template-columns: 1fr;
     }

     .page-hero {
         padding: 60px 20px 50px;
     }

     .director-img-container {
         aspect-ratio: 1 / 1.1;
     }
 }