/* ==========================================================================
   EN-VISION ACADEMY Premium Stylesheet
   ========================================================================== */

/* Custom Variables & Theme Setup */
:root {
    --primary: #0F172A;          /* Deep Slate Navy */
    --primary-light: #1E293B;    /* Slate Blue */
    --secondary: #2563EB;        /* Electric Blue */
    --secondary-light: #EFF6FF;  /* Light Blue Background */
    --accent: #F97316;           /* Vivid Orange */
    --accent-hover: #EA580C;     /* Darker Orange */
    --success: #10B981;          /* Emerald Green */
    --text-dark: #0F172A;        /* Dark Charcoal */
    --text-light: #F8FAFC;       /* Off-White */
    --text-muted: #64748B;       /* Cool Grey */
    --bg-main: #F8FAFC;          /* Soft Slate Background */
    --bg-card: #FFFFFF;          /* Pure White */
    --border-color: #E2E8F0;     /* Light Divider Grey */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.03);
    --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

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

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--text-muted); }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-bg {
    background-color: var(--bg-card);
}

.section-title-wrap {
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.section-title-wrap h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title-wrap h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.75rem auto 0 auto;
    border-radius: 2px;
}

.section-title-wrap p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--btn-bg, var(--secondary));
    color: white;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgba(15, 23, 42, 0.4);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover {
    background-color: var(--accent-hover) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgba(234, 88, 12, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--btn-color, var(--secondary)) !important;
    color: white !important;
    border-color: var(--btn-color, var(--secondary)) !important;
    transform: translateY(-2px);
}

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

.btn-outline-white {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Header & Navigation Styles */
.top-bar {
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 1.5rem;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-socials {
    display: flex;
    gap: 1rem;
}

.top-bar-socials a:hover {
    color: var(--accent);
}

.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

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

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-top: -2px;
}

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

.nav-actions-mobile {
    display: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-light);
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
}

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

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

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

.nav-link.active {
    color: var(--secondary);
}

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

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    color: var(--secondary);
    outline: none;
    box-shadow: none;
}

/* Hero Section Styles */
.hero {
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
                var(--bg-card);
    padding: 7rem 0 5rem 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.hero-img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-xl);
    background-color: var(--secondary-light);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Stats Counter Section */
.stats {
    background-color: var(--primary);
    color: white;
    padding: 3.5rem 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-heading);
    font-weight: 500;
}

/* General Grid layout */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

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

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

/* Highlights Cards (Why Choose Us) */
.highlights-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.highlight-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.34rem);
    min-width: 300px;
    background-color: var(--bg-card);
    border: 1px solid #F1F5F9;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: auto;
}

.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: #E2E8F0;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background-color: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
    line-height: 1.3;
}

.highlight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .highlight-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .highlight-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
}

/* Course Cards */
.course-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

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

.course-header {
    padding: 2rem 2rem 1.5rem 2rem;
    position: relative;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
}

.course-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.course-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.course-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.course-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-body p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.course-subjects {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    padding: 0.75rem;
    background-color: var(--bg-main);
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--secondary);
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.course-features li {
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-light);
}

.course-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
}

.course-footer {
    padding: 0 2rem 2rem 2rem;
}

.course-footer .btn {
    width: 100%;
}

/* Faculty Section Styles */
.faculty-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.faculty-img-container {
    background: linear-gradient(135deg, var(--secondary-light), #DBEAFE);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.faculty-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 3.5rem;
}

.faculty-badge {
    position: absolute;
    bottom: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.faculty-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.faculty-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.faculty-designation {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.faculty-qualification {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.faculty-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-grow: 1;
}

/* Results / Success Showcase */
.toppers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.topper-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.34rem);
    min-width: 300px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    height: auto;
}

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

.topper-badge {
    position: absolute;
    top: 1.5rem;
    background-color: var(--accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
}

.topper-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background-color: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 2.5rem;
    border: 4px solid var(--border-color);
}

.topper-score {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0.5rem 0;
}

.topper-college {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}

.topper-quote {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    background-color: var(--bg-main);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .topper-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .topper-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
}

/* Call To Action Box */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--border-radius-md);
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* Contact Page Form & details */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-detail-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

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

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-light);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-main);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 3.5rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-fast) ease-out, padding var(--transition-fast) ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px; /* Arbitrary high value for transition */
}

/* Footer Section Styles */
.main-footer {
    background-color: var(--primary);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem 0;
    font-size: 0.95rem;
    border-top: 4px solid var(--secondary);
    margin-top: auto;
}

.main-footer h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

.footer-about-logo {
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-about-logo span {
    color: var(--accent);
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-2px);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--accent);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

/* Floating WhatsApp Badge */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.about-feature-item i {
    color: var(--success);
    font-size: 1.25rem;
}

.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

.vision-card, .mission-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    position: relative;
}

.vision-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--secondary);
    border-radius: 4px 0 0 4px;
}

.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    border-radius: 4px 0 0 4px;
}

.vision-card h3, .mission-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    html { font-size: 15px; }
    .hero-grid { gap: 2rem; }
    .hero-content h1 { font-size: 2.75rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .logo {
        padding-left: 0.5rem;
    }
    
    .mobile-menu-toggle {
        padding-right: 0.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-card);
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 1.5rem;
        align-items: stretch;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        z-index: 998;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .nav-actions {
        display: none;
    }

    .nav-actions-mobile {
        display: block;
    }

    .hero {
        padding: 4rem 0 2rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .grid-3 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-vision-mission { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-form-panel { padding: 2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-banner { padding: 3rem 1.5rem; }
    .cta-banner h2 { font-size: 2rem; }
}

/* Step Card and News Card Utilities */
.step-card {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: calc(25% - 1.34rem);
    min-width: 250px;
}

.news-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.34rem);
    min-width: 300px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .step-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    .news-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 640px) {
    .step-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    .news-card {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 2rem 1.5rem;
    }
    .highlight-card, .topper-card, .news-card, .step-card {
        min-width: 0 !important;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Hero SVG Animations */
.svg-dash-circle {
    transform-origin: 250px 250px;
    animation: rotateDash 25s linear infinite;
}

.svg-cap-group {
    transform-origin: 250px 240px;
    animation: hoverCap 4s ease-in-out infinite;
}

.svg-star {
    transform-origin: 250px 40px;
    animation: shineStar 3s ease-in-out infinite;
}

.svg-floating-card {
    transform-origin: 360px 315px;
    animation: hoverCard 4s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes rotateDash {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes hoverCap {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes hoverCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes shineStar {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}
