/* ==========================================================================
   SUNRISING CINE VISION - CINEMATIC DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-cinema: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  --bg-dark: #07080d;
  --bg-secondary: #0d0f17;
  --bg-card: rgba(18, 22, 34, 0.68);
  --bg-card-hover: rgba(26, 32, 48, 0.88);

  --accent-gold: #f59e0b;
  --accent-gold-light: #fde047;
  --accent-gold-glow: rgba(245, 158, 11, 0.28);
  --accent-gold-gradient: linear-gradient(135deg, #fef08a 0%, #f59e0b 50%, #d97706 100%);

  --accent-red: #ea580c;
  --accent-red-glow: rgba(234, 88, 12, 0.28);
  --accent-red-gradient: linear-gradient(135deg, #f97316 0%, #c2410c 100%);

  --accent-copper: #b84a1a;

  --cyan-glow: #00f2fe;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --border-glass: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.35);
  --border-red: rgba(234, 88, 12, 0.35);

  --shadow-luxe: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 10px 30px rgba(245, 158, 11, 0.25);
  --shadow-red: 0 10px 30px rgba(234, 88, 12, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography Utilities */
.font-cinema { font-family: var(--font-cinema); }
.font-heading { font-family: var(--font-heading); }
.text-gold { color: var(--accent-gold); }
.text-red { color: var(--accent-red); }
.text-gradient-gold {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-red {
  background: var(--accent-red-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  user-select: none;
}

.btn-primary {
  background: var(--accent-red-gradient);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(230, 50, 75, 0.4);
}

.btn-gold {
  background: var(--accent-gold-gradient);
  color: #0d0f17;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(243, 183, 56, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(243, 183, 56, 0.12);
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
}

.badge-red {
  background: rgba(230, 50, 75, 0.12);
  color: var(--accent-red);
  border: 1px solid var(--border-red);
}

/* Header & Navbar */
.top-announcement-bar {
  background: var(--accent-red-gradient);
  padding: 0.35rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 0 0.8rem 0;
  transition: all 0.4s ease;
  background: rgba(7, 8, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
}

.navbar .nav-container {
  padding-top: 0.8rem;
}

.navbar.scrolled {
  background: rgba(7, 8, 13, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(245, 158, 11, 0.3));
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

.footer-logo-img {
  height: 64px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 20% 30%, rgba(230, 50, 75, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(243, 183, 56, 0.12) 0%, transparent 50%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: contrast(1.1) brightness(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,8,13,0.7) 0%, rgba(7,8,13,0.95) 100%);
}

.hero-content-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text-box h2 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 1rem 0 1.2rem;
}

.hero-text-box h2 span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.hero-feature-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Hero Lead Form Box */
.lead-form-card {
  background: rgba(18, 22, 34, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-luxe), 0 0 30px rgba(243, 183, 56, 0.15);
  position: relative;
  overflow: hidden;
}

.lead-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gold-gradient);
}

.lead-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.lead-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.lead-form-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(7, 8, 13, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
  background: rgba(7, 8, 13, 0.9);
}

select.form-control option {
  background: #0d0f17;
  color: #fff;
}

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

/* Stats Counter Section */
.stats-section {
  padding: 2.5rem 0;
  background: var(--bg-secondary);
  border-y: 1px solid var(--border-glass);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0.8rem 0 1rem;
  line-height: 1.25;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Section Padding */
.section {
  padding: 6rem 0;
  position: relative;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  border: 1px solid var(--border-glass);
}

.about-image-stack img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-badge-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(13, 15, 23, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.025rem;
}

/* Why Choose Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
}

.why-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(243, 183, 56, 0.1);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(243, 183, 56, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Courses Explorer Section */
.course-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.7rem 1.6rem;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
  background: var(--accent-red-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

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

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s ease;
}

.course-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 25px rgba(243, 183, 56, 0.12);
}

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

.course-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.course-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  min-height: 2.7em;
}

.course-topics-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.course-topics-list li {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-topics-list li::before {
  content: '✓';
  color: var(--accent-gold);
  font-weight: bold;
}

.course-durations-tags {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.duration-pill {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  color: var(--text-muted);
  border: 1px solid var(--border-glass);
}

/* Durations Comparison Section */
.duration-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.duration-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.duration-card.featured {
  border-color: var(--accent-gold);
  background: rgba(243, 183, 56, 0.05);
  transform: scale(1.03);
}

.duration-card h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.duration-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
}

.duration-card p {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

/* Online Learning Box */
.online-banner {
  background: linear-gradient(135deg, rgba(13,15,23,0.95) 0%, rgba(26,32,48,0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.online-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.online-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}

/* Campus Life & 4-Star Resort Dining */
.campus-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.campus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.campus-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.campus-card-content {
  padding: 2rem;
}

.campus-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: #fff;
}

/* Campus & Studio Gallery */
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.2rem !important;
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-luxe);
  transition: all 0.35s ease;
  height: 230px;
  width: 100%;
}

.gallery-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.2);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

/* Placement & Recruiters */
.recruiters-marquee {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  align-items: center;
  margin-top: 2rem;
}

.recruiter-card {
  background: rgba(18, 22, 34, 0.7);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
  min-height: 72px;
  width: 100%;
}

.recruiter-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-4px);
  background: rgba(26, 32, 48, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(243, 183, 56, 0.15);
}

.recruiter-card img {
  height: 38px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1) contrast(1);
  transition: filter 0.3s ease;
}

/* Who Can Join & Careers */
.roles-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.role-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.role-chip:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-2px);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #0d0f17;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-luxe);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Action Bar for Mobile */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(7, 8, 13, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 0.5rem 0.8rem;
  display: none;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.6);
}

.floating-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.floating-bar .btn {
  flex: 1 1 0%;
  white-space: nowrap !important;
  font-size: 0.825rem !important;
  padding: 0.6rem 0.3rem !important;
  gap: 0.35rem !important;
  min-width: 0;
  width: 100%;
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-gold);
  color: #fff;
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-luxe);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Footer */
.footer {
  background: #040508;
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-col p, .footer-col li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.footer-col ul {
  list-style: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-glass);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(13, 15, 23, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.mobile-menu-drawer.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-drawer a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-drawer a:hover {
  color: var(--accent-gold);
}

/* Hide webkit scrollbars for smooth tab scrolling */
.course-tabs::-webkit-scrollbar {
  display: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content-grid, .about-grid, .online-banner, .campus-showcase-grid {
    grid-template-columns: 1fr;
  }
  .hero-content-grid {
    gap: 2.5rem;
  }
  .courses-grid, .why-grid, .duration-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }
  .navbar {
    padding: 0.75rem 0;
  }
  .brand-logo-img {
    height: 42px;
  }
  .nav-links, .nav-actions {
    display: none;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 1.4rem;
  }
  .hero {
    padding: 7.8rem 0 2.5rem;
    min-height: auto;
  }
  .hero-text-box h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0.8rem 0 1rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .hero-features-list {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .hero-feature-item {
    font-size: 0.825rem;
    padding: 0.6rem 0.8rem;
  }
  .lead-form-card {
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-lg);
  }
  .lead-form-header h3 {
    font-size: 1.3rem;
  }
  .lead-form-header p {
    font-size: 0.8rem;
  }
  .section {
    padding: 3.5rem 0;
  }
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.75rem;
    margin: 0.6rem 0 0.8rem;
  }
  .section-header p {
    font-size: 0.925rem;
  }
  .stats-section {
    padding: 2rem 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .stat-item h3 {
    font-size: 1.8rem;
  }
  .stat-item p {
    font-size: 0.8rem;
  }
  .about-grid {
    gap: 2.5rem;
  }
  .about-image-stack img {
    height: 260px;
  }
  .about-badge-card {
    position: relative;
    inset: auto;
    margin-top: 1rem;
    border-radius: var(--radius-md);
    padding: 1rem;
  }
  .about-content h3 {
    font-size: 1.5rem;
  }
  .about-content p {
    font-size: 0.925rem;
  }
  /* Horizontal Touch Sliders for Mobile */
  .courses-grid, .why-grid, .duration-cards-grid, .campus-showcase-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 1.2rem !important;
    padding-bottom: 1.2rem !important;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    scrollbar-width: none;
  }

  .courses-grid::-webkit-scrollbar,
  .why-grid::-webkit-scrollbar,
  .duration-cards-grid::-webkit-scrollbar,
  .campus-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .course-card, .why-card, .duration-card, .campus-card {
    flex: 0 0 86% !important;
    max-width: 86% !important;
    scroll-snap-align: center !important;
  }
  .why-card {
    padding: 1.4rem;
  }
  .course-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.6rem;
    margin-bottom: 2rem;
    scrollbar-width: none;
  }
  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
  }
  .course-card {
    padding: 1.4rem;
  }
  .course-card h3 {
    font-size: 1.25rem;
  }
  .course-tagline {
    font-size: 0.85rem;
    min-height: auto;
    margin-bottom: 1rem;
  }
  .duration-card {
    padding: 1.8rem 1.2rem;
  }
  .duration-card.featured {
    transform: none;
  }
  .duration-card h3 {
    font-size: 1.8rem;
  }
  .online-banner {
    grid-template-columns: 1fr;
    padding: 2rem 1.2rem;
    margin-top: 2.5rem;
    gap: 1.8rem;
    border-radius: var(--radius-lg);
  }
  .online-banner h3 {
    font-size: 1.5rem !important;
  }
  .online-list {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .online-list li {
    font-size: 0.875rem;
  }
  .campus-card img {
    height: 200px;
  }
  .campus-card-content {
    padding: 1.4rem;
  }
  .campus-card-content h3 {
    font-size: 1.3rem;
  }
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.6rem !important;
    margin-top: 1.2rem;
  }
  .gallery-card {
    height: 120px !important;
    border-radius: var(--radius-sm) !important;
  }

  .recruiters-marquee {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 0.8rem !important;
    padding-bottom: 0.6rem !important;
    scrollbar-width: none;
  }
  .recruiters-marquee::-webkit-scrollbar {
    display: none;
  }
  .recruiter-card {
    flex: 0 0 170px !important;
    max-width: 170px !important;
    padding: 0.6rem 0.8rem !important;
    min-height: 60px !important;
    scroll-snap-align: center !important;
  }
  .recruiter-card img {
    height: 30px;
    max-width: 100%;
  }
  .roles-tags {
    gap: 0.5rem;
  }
  .role-chip {
    padding: 0.45rem 0.85rem;
    font-size: 0.8rem;
  }
  .footer {
    padding: 3rem 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
  .modal-overlay {
    padding: 1rem;
  }
  .modal-box {
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-lg);
    max-height: 85vh;
  }
  .modal-box h3 {
    font-size: 1.4rem !important;
  }
  .toast-msg {
    left: 1rem;
    right: 1rem;
    bottom: 80px;
    font-size: 0.85rem;
    padding: 0.9rem 1.2rem;
    justify-content: center;
    text-align: center;
  }
  .floating-bar {
    display: block;
  }
  body {
    padding-bottom: 75px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  .hero {
    padding: 7.2rem 0 2rem;
  }
  .brand-logo .brand-text span.brand-tagline {
    display: none;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-text-box h2 {
    font-size: 1.65rem;
  }
  .hero-features-list {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.925rem;
  }
}

