/* ============================================================
   MAHADEV SIR AMIN TRAINING CENTER - MAIN STYLESHEET
   Professional Education Website - Responsive Design
   ============================================================ */

/* Root Variables - Light Mode (Default) */
:root {
    --primary-color: #0066cc;
    --primary-dark: #0052a3;
    --secondary-color: #00b84d;
    --secondary-dark: #008c3a;
    --accent-color: #ff6b35;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
    --border-color: #e9ecef;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #4da6ff;
    --primary-dark: #3399ff;
    --secondary-color: #2ecc71;
    --secondary-dark: #27ae60;
    --accent-color: #ff8c5a;
    --bg-light: #1a1a2e;
    --bg-white: #16213e;
    --text-dark: #e8e8e8;
    --text-gray: #b0b0b0;
    --border-color: #2d3748;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Dark Mode specific overrides */
[data-theme="dark"] body {
    background-color: var(--bg-light);
}

[data-theme="dark"] .navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

[data-theme="dark"] .gallery-item,
[data-theme="dark"] .course-card,
[data-theme="dark"] .fee-card,
[data-theme="dark"] .news-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .legal-section {
    background: var(--bg-white);
}

[data-theme="dark"] .section-header h2 {
    color: var(--text-dark);
}

[data-theme="dark"] .section-header p {
    color: var(--text-gray);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-dark);
}

[data-theme="dark"] .footer {
    background: #0f0f1a;
}

/* Dark Mode - Additional Section Overrides */
[data-theme="dark"] .why-choose-section,
[data-theme="dark"] .success-section,
[data-theme="dark"] .news-section,
[data-theme="dark"] .about-section,
[data-theme="dark"] .courses-section,
[data-theme="dark"] .fees-section,
[data-theme="dark"] .qr-section,
[data-theme="dark"] .cta-section,
[data-theme="dark"] .legal-content,
[data-theme="dark"] .content-section {
    background: var(--bg-light);
}

[data-theme="dark"] .why-choose-card,
[data-theme="dark"] .about-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .scholarship-card,
[data-theme="dark"] .certificate-card,
[data-theme="dark"] .job-card,
[data-theme="dark"] .benefit-card,
[data-theme="dark"] .qr-box,
[data-theme="dark"] .payment-option,
[data-theme="dark"] .carousel-slide .gallery-item,
[data-theme="dark"] .legal-intro {
    background: var(--bg-white);
}

/* Dark Mode - Links */
[data-theme="dark"] a {
    color: var(--primary-color);
}

[data-theme="dark"] a:hover {
    color: var(--secondary-color);
}

[data-theme="dark"] .nav-link {
    color: var(--text-dark);
}

[data-theme="dark"] .nav-link:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .quick-links a,
[data-theme="dark"] .footer a {
    color: var(--text-gray);
}

[data-theme="dark"] .quick-links a:hover,
[data-theme="dark"] .footer a:hover {
    color: var(--secondary-color);
}

[data-theme="dark"] .news-link {
    color: var(--secondary-color);
}

/* Dark Mode - Text Colors */
[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] h4, 
[data-theme="dark"] h5, 
[data-theme="dark"] h6 {
    color: var(--text-dark);
}

[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] span {
    color: var(--text-gray);
}

[data-theme="dark"] .why-choose-card h3,
[data-theme="dark"] .course-card h3,
[data-theme="dark"] .fee-card h3,
[data-theme="dark"] .news-card h3,
[data-theme="dark"] .gallery-item h4 {
    color: var(--text-dark);
}

[data-theme="dark"] .why-choose-card p,
[data-theme="dark"] .course-card p,
[data-theme="dark"] .fee-card p,
[data-theme="dark"] .news-card p,
[data-theme="dark"] .gallery-item p {
    color: var(--text-gray);
}

/* Dark Mode - Buttons */
[data-theme="dark"] .btn-secondary {
    background: transparent;
    border-color: var(--text-dark);
    color: var(--text-dark);
}

[data-theme="dark"] .btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* Dark Mode - QR & Payment Section */
[data-theme="dark"] .qr-info,
[data-theme="dark"] .payment-grid {
    background: transparent;
}

[data-theme="dark"] .qr-box {
    border-color: var(--border-color);
}

/* Dark Mode - About Section */
[data-theme="dark"] .about-text,
[data-theme="dark"] .about-features {
    background: transparent;
}

[data-theme="dark"] .about-feature {
    background: var(--bg-white);
}

/* Dark Mode - Page Hero */
[data-theme="dark"] .page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Dark Mode - CTA Section */
[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
}

/* Dark Mode - Legal Pages */
[data-theme="dark"] .legal-intro {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}

[data-theme="dark"] .legal-footer {
    background: var(--bg-white);
    border-color: var(--primary-color);
}

[data-theme="dark"] .contact-info-box {
    background: var(--bg-light);
}

/* Dark Mode - Carousel */
[data-theme="dark"] .carousel-btn {
    background: var(--primary-color);
}

[data-theme="dark"] .carousel-btn:hover {
    background: var(--secondary-color);
}

[data-theme="dark"] .carousel-dot {
    background: var(--border-color);
}

[data-theme="dark"] .carousel-dot.active {
    background: var(--primary-color);
}

/* Dark Mode - Payment Section */
[data-theme="dark"] .payment-section {
    background: var(--bg-light);
}

[data-theme="dark"] .payment-option {
    background: var(--bg-white);
}

[data-theme="dark"] .payment-option h3 {
    color: var(--text-dark);
}

[data-theme="dark"] .payment-desc,
[data-theme="dark"] .payment-benefits li {
    color: var(--text-gray);
}

/* Dark Mode - QR Payment Section */
[data-theme="dark"] .qr-payment-section {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
}

/* Dark Mode - Top Bar */
[data-theme="dark"] .top-bar {
    background: linear-gradient(135deg, #0f0f1a 0%, #16213e 100%);
}

/* Dark Mode - Success/Gallery Section */
[data-theme="dark"] .success-section {
    background: var(--bg-light);
}

/* Dark Mode - News Section */
[data-theme="dark"] .news-section {
    background: var(--bg-light);
}

/* Dark Mode - Social Links */
[data-theme="dark"] .social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-dark);
}

[data-theme="dark"] .social-links a:hover {
    background: var(--primary-color);
    color: white;
}

/* Dark Mode - Contact Info */
[data-theme="dark"] .contact-info li {
    color: var(--text-gray);
}

/* Dark Mode - Footer Bottom */
[data-theme="dark"] .footer-bottom {
    background: #0a0a12;
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer-bottom p {
    color: var(--text-gray);
}

/* Dark Mode - Map Container */
[data-theme="dark"] .map-container {
    border: 2px solid var(--border-color);
}

/* Dark Mode - Scrollbar */
[data-theme="dark"]::-webkit-scrollbar {
    width: 10px;
}

[data-theme="dark"]::-webkit-scrollbar-track {
    background: var(--bg-light);
}

[data-theme="dark"]::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

[data-theme="dark"]::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Dark Mode - Section Gradient Backgrounds */
[data-theme="dark"] .courses-section {
    background: linear-gradient(135deg, rgba(77, 166, 255, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
}

[data-theme="dark"] .news-section {
    background: linear-gradient(135deg, rgba(255, 140, 90, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
}

/* Dark Mode - Form Containers */
[data-theme="dark"] .form-container,
[data-theme="dark"] .verification-form-container {
    background: var(--bg-white);
}

/* Dark Mode - Labels */
[data-theme="dark"] label {
    color: var(--text-dark);
}

/* Dark Mode - Admission Form */
[data-theme="dark"] .form-section {
    background: var(--bg-light);
}

/* Dark Mode - Feature Cards */
[data-theme="dark"] .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Dark Mode - Course Cards */
[data-theme="dark"] .course-card {
    background: var(--bg-white);
}

[data-theme="dark"] .course-card h3,
[data-theme="dark"] .course-card h4 {
    color: var(--text-dark);
}

/* Dark Mode - Fee Cards */
[data-theme="dark"] .fee-card {
    background: var(--bg-white);
}

[data-theme="dark"] .fee-card h3,
[data-theme="dark"] .fee-amount {
    color: var(--text-dark);
}

/* Dark Mode - Stat Numbers */
[data-theme="dark"] .stat-number,
[data-theme="dark"] .about-stat-number {
    color: var(--primary-color);
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition);
    color: white;
    font-size: 1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(15deg);
}

[data-theme="dark"] .theme-toggle {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 215, 0, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* ============================================================
   TOP BAR & NAVIGATION
   ============================================================ */

.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--secondary-color);
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Navigation Bar */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.navbar-logo a {
    text-decoration: none;
    color: var(--text-dark);
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-content i {
    font-size: 2rem;
    color: var(--primary-color);
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-apply {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
}

.btn-apply:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-apply::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
    border: none;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-small:hover {
    background: var(--primary-dark);
}

/* ============================================================
   HERO SECTION - Flex Layout with Image Left, Content Right
   ============================================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(200px, -200px);
}

/* Hero Wrapper - Flex Container */
.hero-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Hero Wrapper - Centered (no images) */
.hero-wrapper.hero-centered {
    justify-content: center;
}

.hero-wrapper.hero-centered .hero-content {
    max-width: 800px;
    text-align: center;
}

/* Hero Image - Right Side */
.hero-image {
    flex: 0 0 450px;
    position: relative;
    min-height: 500px;
    max-width: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.hero-image-right {
    order: 2;
}

/* Fade in from right animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
    animation-delay: var(--delay, 0.2s);
}

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

.hero-image:hover .hero-img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(0, 184, 77, 0.2));
    pointer-events: none;
}

/* Hero Content - Left Side */
.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 2;
    text-align: left;
    order: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.title-line {
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ============================================================
   CUSTOM CURSOR STYLES
   ============================================================ */

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(0, 184, 77, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

/* Cursor hover state for interactive elements */
.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 102, 204, 0.7);
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

/* ============================================================
   MOTION TYPOGRAPHY ANIMATIONS
   ============================================================ */

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

/* Fade In from Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Reveal Animation - Scale and Letter Spacing */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        letter-spacing: 5px;
    }
    50% {
        opacity: 0.8;
        letter-spacing: 2px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: -1px;
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.animate-fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease forwards;
    animation-delay: var(--delay, 0s);
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

.animate-text-reveal {
    opacity: 0;
    animation: textReveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: var(--delay, 0s);
}

/* Hover effect for animated elements */
.hero-title:hover .title-line {
    animation: titlePulse 0.5s ease;
}

@keyframes titlePulse {
    0%, 100% {
        letter-spacing: -1px;
    }
    50% {
        letter-spacing: 2px;
    }
}

/* ============================================================
   MAIN CONTENT & SECTIONS
   ============================================================ */

.main-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

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

/* Sections */
section {
    padding: 80px 20px;
    border-bottom: 1px solid var(--border-color);
}

section:last-child {
    border-bottom: none;
}

/* ============================================================
   COURSES SECTION
   ============================================================ */

.courses-section {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 184, 77, 0.05) 100%);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.course-card.featured {
    border-top-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.course-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.course-info {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.course-features {
    list-style: none;
    margin-bottom: 25px;
}

.course-features li {
    padding: 10px 0;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-color);
}

.course-features i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.course-fee {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.success-section {
    background: var(--bg-light);
}

/* ============================================================
   SUCCESS STORIES CAROUSEL
   ============================================================ */

/* Carousel Container - Centers the carousel with margins */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px; /* Space for navigation arrows */
}

/* Carousel Wrapper - Hides overflow */
.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

/* Carousel Track - Holds all slides, moves horizontally */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Individual Slide - Always show 1 at a time */
.carousel-slide {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Center the gallery item in single-slide mode */
.carousel-slide .gallery-item {
    max-width: 500px;
    margin: 0 auto;
}

/* Gallery Item inside carousel */
.carousel-slide .gallery-item {
    height: 100%;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 5px;
}

.carousel-btn-next {
    right: 5px;
}

/* Dots Navigation */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Carousel Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 45px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .carousel-btn-prev {
        left: 5px;
    }

    .carousel-btn-next {
        right: 5px;
    }

    .carousel-dots {
        margin-top: 20px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 35px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}

/* Keep existing gallery-grid for backward compatibility */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--border-color);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-item h4 {
    padding: 15px 20px 5px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.gallery-item p {
    padding: 0 20px 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */

.news-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(0, 184, 77, 0.05) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.news-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px;
    border-radius: 8px;
    width: 60px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.news-date span {
    font-size: 1.8rem;
    display: block;
}

.news-date p {
    font-size: 0.75rem;
    margin-top: 5px;
}

.news-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.news-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.7;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link:hover {
    color: var(--secondary-color);
}

.news-link i {
    transition: var(--transition);
}

.news-link:hover i {
    transform: translateX(5px);
}

/* ============================================================
   PAYMENT SECTION
   ============================================================ */

.payment-section {
    background: var(--bg-light);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.payment-option {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.payment-option:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.payment-option.featured {
    border-top-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.payment-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.payment-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.payment-option h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.payment-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.payment-benefits {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.payment-benefits li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.payment-benefits li:before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: 700;
    margin-right: 8px;
}

/* ============================================================
   QR PAYMENT SECTION
   ============================================================ */

.qr-payment-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 20px;
}

.qr-container {
    max-width: 900px;
    margin: 0 auto;
}

.qr-content h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.qr-content > p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.qr-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.qr-code {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.qr-code img {
    max-width: 250px;
    width: 100%;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.qr-code p {
    margin-top: 15px;
    font-size: 0.95rem;
}

.qr-details h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-label {
    font-weight: 600;
}

.detail-value {
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

.centers-list {
    list-style: none;
}

.centers-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.quick-links {
    list-style: none;
}

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

.quick-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.quick-links a:hover {
    color: var(--secondary-color);
    margin-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   ADMISSION PAGE STYLES
   ============================================================ */

.admission-page {
    padding-bottom: 0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Form Section */
.admission-form-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.form-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.admission-form {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-section {
    margin-bottom: 40px;
}

.form-section h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.section-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* File Upload */
.file-upload {
    position: relative;
    display: block;
}

.file-upload input[type="file"] {
    display: block;
    cursor: pointer;
    padding: 12px 15px;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    background: rgba(0, 102, 204, 0.05);
}

.file-info {
    display: block;
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 6px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label {
    cursor: pointer;
    font-weight: normal;
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.form-actions .btn {
    flex: 1;
}

.form-note {
    text-align: center;
    color: var(--text-gray);
    margin-top: 20px;
    font-size: 0.9rem;
}

.form-note i {
    color: var(--secondary-color);
    margin-right: 6px;
}

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--primary-color);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card li:before {
    content: '▸ ';
    color: var(--secondary-color);
    margin-right: 8px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.fee-item:last-child {
    border-bottom: none;
}

.fee-amount {
    font-weight: 700;
    color: var(--primary-color);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: var(--transition);
}

.contact-link:hover {
    gap: 15px;
}

/* Info Boxes */
.admission-info {
    background: var(--bg-light);
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    text-align: center;
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero Section - Mobile: Stack vertically */
    .hero {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .hero-image {
        max-width: 100%;
        min-height: 300px;
        flex: 0 0 auto;
        order: 1;
    }

    .hero-content {
        order: 2;
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 30px;
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* QR Section */
    .qr-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Payment Options */
    .payment-options {
        grid-template-columns: 1fr;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 1.8rem;
    }

    /* Form */
    .form-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .admission-form {
        padding: 25px;
    }

    .form-actions {
        flex-direction: column;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-right,
    .top-bar-left {
        width: 100%;
        text-align: center;
    }

    .navbar-container {
        height: auto;
        padding: 15px 20px;
    }

    .logo-content {
        gap: 8px;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .qr-code img {
        max-width: 200px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .form-section h2 {
        font-size: 1.1rem;
    }
}

/* ============================================================
   LOGO IMAGE STYLES
   ============================================================ */

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* ============================================================
   ABOUT US SECTION
   ============================================================ */

.about-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--primary-color);
    color: white;
}

.about-feature:hover i {
    color: white;
}

.about-feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.about-feature span {
    font-weight: 500;
    font-size: 0.9rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stat-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-stat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.about-stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */

.why-choose-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-choose-card {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-choose-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

/* ============================================================
   FAQ PAGE STYLES
   ============================================================ */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category h2 i {
    font-size: 1.2rem;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] {
    background: var(--primary-color);
    color: white;
}

.faq-question[aria-expanded="true"] i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p,
.faq-answer li {
    color: var(--text-gray);
    line-height: 1.7;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-cta {
    text-align: center;
    padding: 50px;
    background: var(--bg-white);
    border-radius: 15px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-cta p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.faq-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ============================================================
   SOCIAL MEDIA LINKS
   ============================================================ */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

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

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

.social-links a[aria-label="Facebook"]:hover {
    background: #1877f2;
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-links a[aria-label="YouTube"]:hover {
    background: #ff0000;
}

.social-links a[aria-label="LinkedIn"]:hover {
    background: #0077b5;
}

/* ============================================================
   RESPONSIVE - NEW SECTIONS
   ============================================================ */

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
}

/* ============================================================
   GOOGLE MAP - RESPONSIVE EMBED
   ============================================================ */

.footer-map {
    flex: 1;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* ============================================================
   CONTENT SECTION - GENERIC PAGE STYLES
   ============================================================ */

.content-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.intro-text p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================================
   CAREER PAGE STYLES
   ============================================================ */

.careers-section,
.benefits-section,
.career-contact {
    margin-bottom: 60px;
}

.careers-section h3,
.benefits-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.job-listings {
    display: grid;
    gap: 25px;
}

.job-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.job-header h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.job-type {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-details p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.job-details i {
    color: var(--primary-color);
    margin-right: 5px;
}

.job-description {
    margin-bottom: 15px;
}

.job-description p {
    color: var(--text-gray);
    line-height: 1.6;
}

.job-requirements {
    list-style: none;
    margin-bottom: 20px;
}

.job-requirements li {
    color: var(--text-gray);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-card:hover {
    background: var(--primary-color);
    color: white;
}

.benefit-card:hover i {
    color: white;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 15px;
}

.contact-info-box p {
    margin: 8px 0;
    color: var(--text-dark);
}

.contact-info-box i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.career-contact,
.scholarship-contact,
.certificate-contact {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--bg-light), #e9ecef);
    border-radius: 15px;
}

.career-contact h3,
.scholarship-contact h3,
.certificate-contact h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* ============================================================
   SCHOLARSHIP PAGE STYLES
   ============================================================ */

.scholarship-types,
.apply-process,
.documents-required {
    margin-bottom: 60px;
}

.scholarship-types h3,
.apply-process h3,
.documents-required h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.scholarship-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.scholarship-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scholarship-card.featured {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f0fff4, #e6ffed);
}

.scholarship-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.scholarship-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scholarship-icon i {
    font-size: 1.8rem;
    color: white;
}

.scholarship-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.scholarship-discount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.scholarship-card > p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.scholarship-criteria {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.scholarship-criteria li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.scholarship-criteria i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    text-align: center;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Documents List */
.documents-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.document-item:hover {
    background: var(--primary-color);
    color: white;
}

.document-item:hover i {
    color: white;
}

.document-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* ============================================================
   CERTIFICATION PAGE STYLES
   ============================================================ */

.certificate-types,
.certificate-features-section,
.verification-section,
.recognition-section,
.sample-certificate {
    margin-bottom: 60px;
}

.certificate-types h3,
.certificate-features-section h3,
.verification-section h3,
.recognition-section h3,
.sample-certificate h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.certificate-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.certificate-card.featured {
    border: 2px solid var(--secondary-color);
}

.certificate-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.certificate-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-icon i {
    font-size: 1.8rem;
    color: white;
}

.certificate-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.certificate-card > p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.certificate-features {
    list-style: none;
    text-align: left;
}

.certificate-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.certificate-features i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--primary-color);
    color: white;
}

.feature-item:hover i {
    color: white;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Verification Form */
.verification-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.verification-form .form-group {
    margin-bottom: 20px;
}

.verification-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.verification-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.verification-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.verification-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-gray);
}

.verification-note a {
    color: var(--primary-color);
}

/* Recognition Badges */
.recognition-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.recognition-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.recognition-badge:hover {
    background: var(--primary-color);
    color: white;
}

.recognition-badge:hover i {
    color: white;
}

.recognition-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.recognition-badge span {
    font-weight: 500;
}

/* Sample Certificate */
.sample-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.sample-image {
    text-align: center;
}

.sample-image img {
    max-width: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.sample-image p {
    margin-top: 10px;
    color: var(--text-gray);
}

/* ============================================================
   FOOTER RESPONSIVE IMPROVEMENTS
   ============================================================ */

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* ============================================================
   RESPONSIVE - NEW PAGES
   ============================================================ */

@media (max-width: 1024px) {
    .benefits-grid,
    .features-grid,
    .recognition-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .scholarship-grid,
    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .features-grid,
    .recognition-badges,
    .scholarship-grid,
    .certificate-grid,
    .process-steps,
    .documents-list {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-container {
        padding-bottom: 100%; /* Taller on mobile */
    }

    .verification-form-container {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 15px;
    }

    .intro-text p {
        font-size: 1rem;
    }

    .careers-section h3,
    .benefits-section h3,
    .scholarship-types h3,
    .apply-process h3,
    .certificate-types h3,
    .verification-section h3 {
        font-size: 1.2rem;
    }

    .job-card {
        padding: 20px;
    }

    .scholarship-card,
    .certificate-card {
        padding: 25px;
    }

    .contact-info-box {
        padding: 20px;
        display: block;
    }
}

/* ============================================================
   LEGAL PAGES STYLES (Terms & Conditions, Privacy Policy, etc.)
   ============================================================ */

.legal-content {
    background: var(--bg-light);
}

.legal-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.legal-intro p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-section {
    background: white;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.legal-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.legal-section h2 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-number {
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.legal-section > p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-section ul li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: var(--text-gray);
    line-height: 1.7;
    border-bottom: 1px solid var(--bg-light);
}

.legal-section ul li:last-child {
    border-bottom: none;
}

.legal-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--secondary-color);
    font-weight: 700;
}

.contact-info-box {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-info-box p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
    color: var(--text-dark);
}

.contact-info-box p i {
    color: var(--primary-color);
    width: 20px;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-box a:hover {
    color: var(--secondary-color);
}

.legal-footer {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
    border: 2px dashed var(--primary-color);
}

.footer-whatsapp {
    margin-top: 15px;
    text-align: center;
}

.footer-whatsapp a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.footer-whatsapp a:hover {
    background-color: #1ebe5d;
}

/* Mobile friendly */
@media (max-width: 600px) {
    .footer-whatsapp a {
        font-size: 13px;
        padding: 8px 14px;
    }
}

.legal-footer p {
    color: var(--text-gray);
    margin: 5px 0;
}

.legal-footer p strong {
    color: var(--text-dark);
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .legal-intro {
        padding: 25px;
    }

    .legal-intro p {
        font-size: 1rem;
    }

    .legal-section {
        padding: 25px;
    }

    .legal-section h2 {
        font-size: 1.2rem;
    }

    .section-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .legal-section ul li {
        padding: 10px 0 10px 25px;
        font-size: 0.95rem;
    }

    .contact-info-box {
        padding: 20px;
    }

    .contact-info-box p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .legal-intro {
        padding: 20px;
    }

    .legal-section {
        padding: 20px;
        border-left-width: 3px;
    }

    .legal-section:hover {
        transform: none;
    }

    .legal-section h2 {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }

    .legal-footer {
        padding: 20px;
    }
}

