/* MDFA Admissions Page Styles */
/* Based on Brand Kit: Cinematic Black, Electric Blue, Sunset Orange */

:root {
  /* Brand Colors */
  --cinematic-black: #1a1a1a;
  --electric-blue: #0066ff;
  --sunset-orange: #ff6600;
  --silver-grey: #cccccc;
  --pure-white: #ffffff;
  --dark-bg: #0a0a1a;
  
  /* Functional Colors */
  --primary-color: var(--electric-blue);
  --secondary-color: var(--sunset-orange);
  --text-color: var(--cinematic-black);
  --background-color: var(--pure-white);
  
  /* Typography */
  --font-primary: 'Open Sans', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-tagline {
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-color);
  margin-bottom: var(--space-sm);
  font-weight: 600;
  font-family: var(--font-secondary);
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: var(--space-md);
  color: var(--cinematic-black);
  font-family: var(--font-secondary);
  font-weight: 800;
}

.title-gradient {
  background: linear-gradient(90deg, var(--electric-blue), var(--sunset-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--cinematic-black);
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: var(--space-xs);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--pure-white);
}

.btn-primary:hover {
  background-color: #0052cc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--pure-white);
}

.btn-secondary:hover {
  background-color: #e05a00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--pure-white);
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md) 0;
  background-color: var(--pure-white);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.main-header.scrolled {
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-md);
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.main-header.scrolled .logo img {
  height: 40px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: var(--space-md);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  text-transform: uppercase;
  transition: var(--transition);
  color: var(--cinematic-black);
  font-weight: 700;
  font-family: var(--font-secondary);
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.dropdown-icon {
  transition: transform 0.3s;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 300px;
  max-width: 800px;
  background: var(--pure-white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 8px 8px;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-slow);
  z-index: 1100;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.dropdown-heading {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-sublist {
  list-style: none;
}

.dropdown-sublist a {
  display: block;
  padding: var(--space-xs) 0;
  color: var(--cinematic-black);
  transition: var(--transition);
}

.dropdown-sublist a:hover {
  color: var(--primary-color);
  padding-left: var(--space-xs);
}

.nav-actions {
  margin-left: var(--space-md);
}

.btn-apply {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  background-color: var(--secondary-color);
  color: var(--pure-white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-apply:hover {
  background-color: #e05a00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--cinematic-black);
  margin: 5px 0;
  transition: var(--transition);
}

/* Secondary Navigation */
.secondary-nav {
  position: sticky;
  top: 80px;
  width: 100%;
  background-color: var(--cinematic-black);
  padding: 0.75rem 0;
  z-index: 999;
}

.secondary-nav-list {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  list-style: none;
  overflow-x: auto;
  padding: var(--space-xs) 0;
  scrollbar-width: none;
}

.secondary-nav-list::-webkit-scrollbar {
  display: none;
}

.secondary-nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem 1rem;
  color: var(--pure-white);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
}

.secondary-nav-link:hover,
.secondary-nav-link.active {
  color: var(--secondary-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-badge {
  font-size: 0.7rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--pure-white);
  padding: 2px 6px;
  border-radius: 12px;
  margin-left: 6px;
  line-height: 1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Hero Section */
.admissions-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  overflow: hidden;
  background: linear-gradient(rgba(10, 10, 26, 0.9), rgba(10, 10, 26, 0.9)), url('https://images.unsplash.com/photo-1519996529937-47d2f4fecd6f?ixlib=rb-4.0.3') center/cover;
}

.hero-content {
  color: var(--pure-white);
  max-width: 800px;
  text-align: left;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--pure-white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--silver-grey);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.hero-badges {
  display: flex;
  justify-content: flex-start;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 30px;
  font-size: 0.9rem;
  color: var(--pure-white);
}

.feature-icon {
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight {
  color: var(--secondary-color);
  font-weight: 800;
  display: inline-block;
}

.underline {
  position: relative;
  display: inline-block;
}

.underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
}

 /* Programs Section */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Section Header Styling */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 40px;
        }
        
        .section-tagline {
            display: inline-block;
            font-size: 1.1rem;
            color: #FF6600; /* Sunset Orange */
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #1d3557;
        }
        
        .title-gradient {
            background: linear-gradient(135deg, #FF6600 0%, #0066FF 100%); /* Sunset Orange to Electric Blue */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #0066FF; /* Electric Blue */
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Programs Grid */
        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .program-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .program-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 102, 255, 0.15);
        }
        
        .program-header {
            padding: 25px 25px 15px;
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
            position: relative;
        }
        
        .program-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .program-icon svg {
            width: 30px;
            height: 30px;
        }
        
        .program-type {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            background: rgba(255, 102, 0, 0.1);
            color: #FF6600;
        }
        
        .program-title {
            font-size: 1.4rem;
            color: #0066FF;
            margin-bottom: 8px;
        }
        
        .program-duration {
            font-size: 0.9rem;
            color: #457b9d;
            display: block;
            margin-bottom: 10px;
        }
        
        .program-location {
            display: inline-block;
            font-size: 0.85rem;
            background: rgba(0, 102, 255, 0.1);
            color: #0066FF;
            padding: 4px 10px;
            border-radius: 4px;
            margin-top: 5px;
        }
        
        .program-details {
            padding: 20px 25px;
            flex-grow: 1;
        }
        
        .program-features {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .program-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .program-features i {
            color: #FF6600;
            margin-right: 10px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        
        .program-eligibility {
            background: rgba(0, 102, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .program-eligibility h4 {
            font-size: 0.9rem;
            color: #0066FF;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .program-eligibility h4 i {
            margin-right: 8px;
        }
        
        .program-eligibility p {
            font-size: 0.9rem;
            color: #457b9d;
            margin: 0;
        }
        
        .program-footer {
            padding: 0 25px 25px;
            margin-top: auto;
        }
        
        .program-cta {
            display: block;
            text-align: center;
            padding: 12px 20px;
            background: linear-gradient(135deg, #FF6600 0%, #0066FF 100%);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .program-cta:hover {
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
            transform: translateY(-2px);
        }
        
        /* Fee Structure Section */
        .fee-section {
            background: linear-gradient(135deg, rgba(255, 102, 0, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
            padding: 80px 0;
            margin: 60px 0;
        }
        
        .fee-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .fee-tab {
            padding: 12px 24px;
            background: white;
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .fee-tab:hover, .fee-tab.active {
            background: linear-gradient(135deg, #FF6600 0%, #0066FF 100%);
            color: white;
            border-color: transparent;
        }
        
        .fee-content {
            display: none;
        }
        
        .fee-content.active {
            display: block;
        }
        
        .fee-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
            margin-bottom: 30px;
        }
        
        .fee-table th {
            background: linear-gradient(135deg, #FF6600 0%, #0066FF 100%);
            color: white;
            padding: 15px 20px;
            text-align: left;
        }
        
        .fee-table td {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
        }
        
        .fee-table tr:last-child td {
            border-bottom: none;
        }
        
        .fee-table tr:nth-child(even) {
            background-color: rgba(0, 102, 255, 0.03);
        }
        
        .course-name {
            font-weight: 600;
            color: #0066FF;
        }
        
        .fee-amount {
            font-weight: 700;
            color: #FF6600;
        }
        
        .payment-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .payment-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
        }
        
        .payment-card h3 {
            color: #0066FF;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .payment-card h3 i {
            margin-right: 10px;
            color: #FF6600;
        }
        
        .payment-features {
            list-style: none;
        }
        
        .payment-features li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .payment-features i {
            color: #FF6600;
            margin-right: 10px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        
        .scholarship-info {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
            margin-top: 40px;
        }
        
        .scholarship-info h3 {
            color: #0066FF;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .scholarship-info h3 i {
            margin-right: 10px;
            color: #FF6600;
        }
        
        .scholarship-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .scholarship-category {
            background: rgba(0, 102, 255, 0.05);
            padding: 20px;
            border-radius: 8px;
        }
        
        .scholarship-category h4 {
            color: #0066FF;
            margin-bottom: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .fee-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 768px) {
            .programs-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .payment-options {
                grid-template-columns: 1fr;
            }
        }
        
        /* Program category filters */
        .program-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .filter-btn {
            padding: 10px 20px;
            background: white;
            border: 1px solid rgba(0, 102, 255, 0.2);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, #FF6600 0%, #0066FF 100%);
            color: white;
            border-color: transparent;
        }
        
        /* Duration badges */
        .duration-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }
        
        .duration-badge {
            font-size: 0.75rem;
            padding: 4px 8px;
            background: rgba(29, 53, 87, 0.1);
            border-radius: 4px;
            color: #1d3557;
        }
/* Scoped CSS for documents section only */
        .admission-documents-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .admission-documents-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #2c3e50;
            line-height: 1.6;
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            width: 100%;
        }
        
        .documents-container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }
        
        .documents-header {
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: white;
            padding: 35px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .documents-header h2 {
            font-size: 2.2rem;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .documents-header .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 8px;
            font-weight: 300;
        }
        
        .documents-content {
            padding: 35px;
        }
        
        .documents-intro {
            text-align: center;
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: #7f8c8d;
        }
        
        .document-checklist {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .document-checklist li {
            padding: 15px 20px;
            margin-bottom: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border-left: 4px solid #3498db;
        }
        
        .document-checklist li:hover {
            background: #e3f2fd;
            transform: translateX(5px);
        }
        
        .document-checklist li::before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: rgba(39, 174, 96, 0.1);
            border-radius: 50%;
        }
        
        .download-section {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e0e6ed;
        }
        
        .btn-download {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            padding: 16px 35px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.4s ease;
            text-align: center;
            margin: 20px 0;
        }
        
        .btn-download:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.35);
        }
        
        .btn-download i {
            margin-right: 10px;
        }
        
        .note {
            background: #fff8e1;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            border-left: 4px solid #ffc107;
        }
        
        .note h3 {
            color: #ff9800;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .document-categories {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .category {
            flex: 0 0 48%;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .category h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
        }
        
        .category ul {
            list-style: none;
            padding: 0;
        }
        
        .category li {
            padding: 8px 0;
            display: flex;
            align-items: center;
        }
        
        .category li::before {
            content: "•";
            color: #3498db;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        @media (max-width: 768px) {
            .document-categories {
                flex-direction: column;
            }
            
            .category {
                flex: 0 0 100%;
            }
            
            .documents-header h2 {
                font-size: 1.8rem;
            }
            
            .documents-content {
                padding: 25px;
            }
        }

/* Admission Process */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Section Header Styling */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            padding-top: 40px;
        }
        
        .section-tagline {
            display: inline-block;
            font-size: 1.1rem;
            color: #FF6600; /* Sunset Orange */
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #1d3557;
        }
        
        .title-gradient {
            background: linear-gradient(135deg, #FF6600 0%, #0066FF 100%); /* Sunset Orange to Electric Blue */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #0066FF; /* Electric Blue */
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Process Steps Styling */
        .process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .process-step {
            background: white;
            border-radius: 12px;
            padding: 30px 25px;
            width: 100%;
            max-width: 270px;
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.12); /* Electric Blue shadow */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 4px solid #0066FF; /* Electric Blue */
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 102, 255, 0.2); /* Electric Blue shadow */
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #FF6600, #0066FF); /* Sunset Orange to Electric Blue */
        }
        
        .step-number {
            font-size: 3rem;
            font-weight: 800;
            color: rgba(0, 102, 255, 0.1); /* Electric Blue with opacity */
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1;
        }
        
        .step-title {
            font-size: 1.5rem;
            color: #0066FF; /* Electric Blue */
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .process-step p {
            color: #457b9d;
            position: relative;
            z-index: 2;
        }
        
        /* Timeline Styling */
        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 60px 0;
            padding: 0 20px;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #FF6600, #0066FF); /* Sunset Orange to Electric Blue */
            border-radius: 2px;
        }
        
        .timeline-step {
            text-align: center;
            position: relative;
            width: 20%;
            z-index: 2;
        }
        
        .timeline-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #FF6600 0%, #0066FF 100%); /* Sunset Orange to Electric Blue */
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
            position: relative;
            z-index: 3;
        }
        
        .timeline-title {
            font-weight: 600;
            color: #0066FF; /* Electric Blue */
            margin-bottom: 8px;
        }
        
        .timeline-desc {
            font-size: 0.9rem;
            color: #457b9d;
            padding: 0 10px;
        }
        
        /* CTA Button - Fixed Centering */
        .cta-container {
            display: flex;
            justify-content: center;
            margin: 40px auto 60px;
            width: 100%;
        }
        
        .cta-button {
            padding: 16px 40px;
            background: linear-gradient(135deg, #FF6600 0%, #0066FF 100%); /* Sunset Orange to Electric Blue */
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 255, 0.4);
        }
        
        .cta-button i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover i {
            transform: translateX(5px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .process-steps {
                gap: 20px;
            }
            
            .process-step {
                max-width: 230px;
            }
        }
        
        @media (max-width: 768px) {
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-step {
                max-width: 100%;
                margin-bottom: 20px;
            }
            
            .process-timeline {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 40px;
            }
            
            .process-timeline::before {
                top: 0;
                left: 30px;
                width: 4px;
                height: 100%;
            }
            
            .timeline-step {
                display: flex;
                align-items: center;
                width: 100%;
                margin-bottom: 30px;
                text-align: left;
            }
            
            .timeline-icon {
                margin: 0 20px 0 0;
                flex-shrink: 0;
            }
            
            .timeline-content {
                flex: 1;
            }
            
            .cta-button {
                padding: 14px 30px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
        }


        /* Scoped CSS for admissions form only */
        #admissions-form-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        #admissions-form-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
            color: #2c3e50;
            line-height: 1.6;
            padding: 30px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            width: 100%;
        }
        
        #admissions-form-section .admissions-container {
            width: 100%;
            max-width: 850px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            overflow: hidden;
        }
        
        #admissions-form-section .form-header {
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: white;
            padding: 35px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        #admissions-form-section .form-header h1 {
            font-size: 2.4rem;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        #admissions-form-section .form-header .subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 8px;
            font-weight: 300;
        }
        
        #admissions-form-section .form-header .instruction {
            font-size: 1.05rem;
            margin-top: 18px;
            opacity: 0.85;
            font-weight: 300;
        }
        
        #admissions-form-section .form-container {
            padding: 35px;
        }
        
        #admissions-form-section .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e6ed, transparent);
            margin: 30px 0;
        }
        
        #admissions-form-section .section-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 3px solid #3498db;
            display: inline-block;
        }
        
        #admissions-form-section .form-group {
            margin-bottom: 24px;
            position: relative;
        }
        
        #admissions-form-section label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.05rem;
        }       
        
        #admissions-form-section input, 
        #admissions-form-section select, 
        #admissions-form-section textarea {
            width: 100%;
            padding: 16px 18px;
            border: 2px solid #e0e6ed;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafcfc;
        }
        
        #admissions-form-section input:focus, 
        #admissions-form-section select:focus, 
        #admissions-form-section textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.15);
            background: white;
        }
        
        #admissions-form-section textarea {
            min-height: 140px;
            resize: vertical;
            line-height: 1.5;
        }
        
        #admissions-form-section .submit-btn {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border: none;
            padding: 18px 35px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            display: block;
            width: 100%;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-top: 20px;
        }
        
        #admissions-form-section .submit-btn:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.35);
        }
        
        #admissions-form-section .form-row {
            display: flex;
            gap: 25px;
            margin-bottom: 25px;
        }
        
        #admissions-form-section .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }
        
        #admissions-form-section .input-icon {
            position: absolute;
            right: 18px;
            top: 44px;
            color: #7f8c8d;
            font-size: 18px;
        }
        
        #admissions-form-section .required-text {
            text-align: right;
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-top: 10px;
        }
        
        #admissions-form-section .required-text span {
            color: #e74c3c;
        }
        
        #admissions-form-section .success-message {
            display: none;
            background: #d4edda;
            color: #155724;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin-top: 25px;
            font-weight: 500;
            font-size: 1.1rem;
            border-left: 5px solid #28a745;
        }
        
        #admissions-form-section .success-message i {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
            color: #28a745;
        }
        
        #admissions-form-section .error-message {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }
        
        #admissions-form-section .error {
            border-color: #e74c3c !important;
        }
        
        #admissions-form-section .select-arrow {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 16px;
        }
        
        #admissions-form-section .mode-info {
            background: #e3f2fd;
            padding: 15px;
            border-radius: 8px;
            margin-top: 10px;
            font-size: 0.9rem;
            border-left: 4px solid #2196f3;
            display: none;
        }
        
        #admissions-form-section .mode-info.online {
            background: #e8f5e9;
            border-left: 4px solid #4caf50;
        }
        
        #admissions-form-section .mode-info.offline {
            background: #ffecb3;
            border-left: 4px solid #ffc107;
        }
        
        @media (max-width: 768px) {
            #admissions-form-section .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            #admissions-form-section .form-header h1 {
                font-size: 2rem;
            }
            
            #admissions-form-section .form-header .subtitle {
                font-size: 1.15rem;
            }
            
            #admissions-form-section .form-container {
                padding: 25px;
            }
        }

        /* Additional CSS styles for the form */
.required {
    color: #ff6600;
}

.error-message {
    color: #ff3333;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.mode-info {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    border-left: 3px solid #0066ff;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.form-group {
    position: relative;
}

.select-arrow {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.divider {
    height: 1px;
    background-color: #ddd;
    margin: 25px 0;
}

.submit-btn {
    background-color: #0066ff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0052cc;
}

.required-text {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

#student-declaration {
    margin: 25px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

#student-declaration fieldset {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
}

#student-declaration legend {
    font-weight: bold;
    padding: 0 10px;
}

#student-declaration ul {
    margin: 10px 0;
    padding-left: 20px;
}

#student-declaration a {
    color: #0066ff;
    text-decoration: none;
}

#student-declaration a:hover {
    text-decoration: underline;
}
    /* Signature Section Styles */
.signature-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--electric-blue);
}

.signature-instruction {
    font-size: 0.9rem;
    color: #666;
    margin: 5px 0 15px;
    font-style: italic;
}

.signature-pad-container {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 15px;
    background-color: white;
    position: relative;
}

#signatureCanvas {
    border: 1px solid #eee;
    background-color: #fff;
    cursor: crosshair;
    display: block;
    margin: 0 auto;
    touch-action: none;
}

.signature-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.signature-btn {
    padding: 8px 15px;
    background-color: var(--silver-grey);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.signature-btn:hover {
    background-color: #b0b0b0;
}

.clear-btn {
    background-color: #ffcccc;
}

.clear-btn:hover {
    background-color: #ffaaaa;
}

.signature-status {
    font-size: 0.9rem;
    color: #666;
}

.signature-status.signed {
    color: green;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #signatureCanvas {
        width: 100% !important;
        height: 120px !important;
    }
    
    .signature-actions {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

        /* Scoped CSS for download section only */
        #download-form-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        #download-form-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: #2c3e50;
            line-height: 1.6;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            width: 100%;
        }
        
        #download-form-section .download-container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            overflow: hidden;
        }
        
        #download-form-section .download-header {
            background: linear-gradient(135deg, #2c3e50, #1a2530);
            color: white;
            padding: 35px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        #download-form-section .download-header h1 {
            font-size: 2.4rem;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        #download-form-section .download-header .subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 8px;
            font-weight: 300;
        }
        
        #download-form-section .download-header .instruction {
            font-size: 1.05rem;
            margin-top: 18px;
            opacity: 0.85;
            font-weight: 300;
        }
        
        #download-form-section .download-content {
            padding: 35px;
        }
        
        #download-form-section .divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e6ed, transparent);
            margin: 30px 0;
        }
        
        #download-form-section .section-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 3px solid #3498db;
            display: inline-block;
        }
        
        #download-form-section .steps-container {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        
        #download-form-section .step {
            flex: 0 0 30%;
            text-align: center;
            padding: 25px 20px;
            border-radius: 12px;
            background: #f8f9fa;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        #download-form-section .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        #download-form-section .step-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 20px;
        }
        
        #download-form-section .step-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #2c3e50;
        }
        
        #download-form-section .step-description {
            font-size: 0.95rem;
            color: #7f8c8d;
        }
        
        #download-form-section .download-btn {
            display: inline-block;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            padding: 16px 35px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.4s ease;
            text-align: center;
            margin: 20px 0;
            cursor: pointer;
            border: none;
        }
        
        #download-form-section .download-btn:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(52, 152, 219, 0.35);
        }
        
        #download-form-section .download-btn i {
            margin-right: 10px;
        }
        
        #download-form-section .instructions {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 5px solid #3498db;
        }
        
        #download-form-section .instructions-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        #download-form-section .instructions-list {
            padding-left: 20px;
        }
        
        #download-form-section .instructions-list li {
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        #download-form-section .submit-info {
            background: #e8f5e9;
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            border-left: 5px solid #4caf50;
        }
        
        #download-form-section .submit-info-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }
        
        #download-form-section .email-btn {
            display: inline-block;
            background: linear-gradient(135deg, #4caf50, #45a049);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-top: 15px;
        }
        
        #download-form-section .email-btn:hover {
            background: linear-gradient(135deg, #45a049, #4caf50);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }
        
        #download-form-section .contact-info {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e0e6ed;
        }
        
        #download-form-section .download-complete {
            display: none;
            background: #e3f2fd;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
            border-left: 5px solid #2196f3;
        }
        
        #download-form-section .download-complete i {
            color: #2196f3;
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            #download-form-section .steps-container {
                flex-direction: column;
                gap: 20px;
            }
            
            #download-form-section .step {
                flex: 0 0 100%;
            }
            
            #download-form-section .download-header h1 {
                font-size: 2rem;
            }
            
            #download-form-section .download-header .subtitle {
                font-size: 1.15rem;
            }
            
            #download-form-section .download-content {
                padding: 25px;
            }
        }
     
/* FAQ Section Styles */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--cinematic-black);
            background-color: var(--pure-white);
            line-height: 1.6;
            padding: 20px;
        }
        
        .faq-section {
            max-width: 800px;
            margin: 40px auto;
            padding: 40px 20px;
            background-color: var(--light-bg);
            border-radius: 12px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-tagline {
            display: block;
            color: var(--electric-blue);
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            color: var(--cinematic-black);
            margin-bottom: 15px;
        }
        
        .title-gradient {
            background: linear-gradient(90deg, var(--electric-blue), var(--sunset-orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .faq-list {
            margin-bottom: 30px;
        }
        
        .faq-item {
            border-bottom: 1px solid var(--silver-grey);
            margin-bottom: 10px;
        }
        
        .faq-question {
            width: 100%;
            text-align: left;
            padding: 20px 0;
            background: none;
            border: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            color: var(--cinematic-black);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .faq-question:hover {
            color: var(--electric-blue);
        }
        
        .faq-icon {
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 15px;
        }
        
        .faq-question[aria-expanded="true"] .faq-icon {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-answer[aria-hidden="false"] {
            max-height: 200px;
            padding: 0 0 20px 0;
        }
        
        .faq-answer p {
            margin-bottom: 0;
            color: #444;
            line-height: 1.6;
        }
        
        .full-faq-link {
            text-align: center;
            margin-top: 30px;
        }
        
        .full-faq-link a {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--electric-blue);
            color: var(--pure-white);
            text-decoration: none;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .full-faq-link a:hover {
            background-color: #0055dd;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            
            .faq-question {
                font-size: 1rem;
                padding: 15px 0;
            }
        }
/* Clapperboard Decoration */
.faq-section::after {
    content: "";
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6600' opacity='0.1'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V5h14v14z'/%3E%3Cpath d='M7 12v-1h10v1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    .form-group.full-width {
        grid-column: 1;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem;
    }
    
    .btn-submit {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .admission-form-section,
    .faq-section {
        padding: 3rem 0;
    }
    
    .form-container {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
    }
}

/* Why Choose Us? */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--cinematic-black);
            background-color: var(--pure-white);
            line-height: 1.6;
            padding: 20px;
        }
        
        .why-choose-us {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--cinematic-black);
            text-align: center;
        }
        
        .section-intro {
            font-size: 1.2rem;
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .feature-card {
            background: var(--pure-white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--electric-blue);
        }
        
        .equipment-list {
            list-style-type: none;
            margin-top: 15px;
        }
        
        .equipment-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
        }
        
        .equipment-list li:before {
            content: "🎬";
            position: absolute;
            left: 0;
        }
        
        .testimonials-container {
            background-color: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 50px;
        }
        
        .testimonials-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 30px;
            color: var(--cinematic-black);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .testimonial-card {
            background: var(--pure-white);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            position: relative;
        }
        
        .testimonial-card:before {
            content: """;
            font-size: 5rem;
            color: var(--silver-grey);
            position: absolute;
            top: -15px;
            left: 10px;
            font-family: Arial, sans-serif;
            opacity: 0.3;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--electric-blue);
        }
        
        .testimonial-role {
            font-size: 0.9rem;
            color: #666;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .stat-item {
            padding: 20px;
            min-width: 200px;
        }
        
        .stat-number {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: var(--sunset-orange);
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
        }
        
        .cta-container {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, var(--electric-blue) 0%, #0044cc 100%);
            color: var(--pure-white);
            border-radius: 8px;
        }
        
        .cta-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--sunset-orange);
            color: var(--pure-white);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background-color: #e55a00;
            transform: translateY(-3px);
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .stats-container {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-item {
                margin-bottom: 20px;
            }
            
            .feature-card, .testimonial-card {
                padding: 20px;
            }
        }

/* Footer */
.main-footer {
  background: var(--cinematic-black);
  padding: 60px 0 30px;
  margin-top: 80px;
  color: var(--pure-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--pure-white);
}

.footer-brand p {
  color: var(--silver-grey);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--pure-white);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
  position: relative;
  padding-bottom: 10px;
  color: var(--pure-white);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--silver-grey);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-links i {
  color: var(--primary-color);
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--silver-grey);
  font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: var(--space-md) 0;
  background: rgba(0, 0, 0, 0.03);
}

.breadcrumbs a {
  color: var(--cinematic-black);
}

.breadcrumbs span {
  color: var(--secondary-color);
}

.breadcrumbs span[aria-hidden="true"] {
  margin: 0 var(--space-xs);
}

/* Responsive Design */
@media (max-width: 992px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--pure-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s;
    z-index: 999;
    overflow-y: auto;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav-link {
    padding: 1rem;
    border-radius: 4px;
  }
  
  .nav-link:hover {
    background-color: rgba(0, 102, 255, 0.1);
  }
  
  .dropdown-menu {
    position: static;
    max-width: 100%;
    box-shadow: none;
    padding: 0.5rem 0 0 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .form-container {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .form-footer {
    grid-column: span 1;
  }
  
  .admissions-hero {
    justify-content: center;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-cta, .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .process-step {
    margin-bottom: 40px;
  }
  
  .secondary-nav {
    position: static;
    top: auto;
  }
  
  .secondary-nav-list {
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  
  .secondary-nav-list::-webkit-scrollbar {
    height: 4px;
  }
  
  .nav-badge {
    position: absolute;
    top: -8px;
    right: -8px;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeIn 0.6s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nowrap {
  white-space: nowrap;
}

/* Print Styles */
@media print {
  .main-header,
  .secondary-nav,
  .mobile-menu-toggle,
  .hero-cta,
  .social-links,
  .scroll-to-top,
  .whatsapp-chat {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
  
  .section {
    padding: 1rem 0;
    break-inside: avoid;
  }
  
  a::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: 400;
  }
  
  .program-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}