/* CSS Custom Properties for Better Maintainability */
:root {
    --primary-color: #5a5c82;
    --primary-dark: #4a4c72;
    --primary-light: #7c7fa3;
    --accent-color: #ffd700;
    --accent-dark: #e6c200;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #374151;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved Body Styles */
body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    scroll-behavior: smooth;
}

/* Alert Styles - Improved */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1.5rem;
    border: 2px solid;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-color: var(--success-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border-color: var(--danger-color);
}

.alert strong {
    font-weight: 600;
}


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

/* Header Styles - Enhanced */
.header {
    background: var(--primary-color);
    box-shadow: var(--shadow-lg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.navbar {
    padding: 0.5rem 0;
}

.navbar .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo {
    height: 35px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    justify-content: flex-end;
    margin-right: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.nav-cta {
    display: flex;
    justify-content: flex-end;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section - Enhanced */
.hero {
    position: relative;
    color: #fff;
    padding: 140px 0 100px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(90, 92, 130, 0.95) 0%, rgba(74, 76, 114, 0.95) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90, 92, 130, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.5;
    max-width: 600px;
}

.hero-subtitle .highlight {
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.company-name {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--accent-color);
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
    letter-spacing: -0.01em;
    background: linear-gradient(45deg, var(--accent-color) 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.btn-play {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-play:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-play i {
    font-size: 1.2rem;
    margin-left: 2px;
}

.hero-navigation {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
}

.bg-dots {
    display: flex;
    gap: 15px;
}

.bg-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.bg-dot.active {
    background: #fff;
    transform: scale(1.2);
    border-color: #fff;
}


/* Button Styles - Enhanced */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    font-family: var(--font-family-primary);
}

/* Ensure no underline in any state */
.btn:hover,
.btn:focus,
.btn:active {
    text-decoration: none !important;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: #5a5c82;
    color: white;
    border: 2px solid #5a5c82;
}

.btn-secondary:hover {
    background: #4a4c72;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 92, 130, 0.3);
}

/* White button for header/CTAs */
.btn-white {
    background: #ffffff;
    color: #5a5c82;
    border: 2px solid #ffffff;
}

.btn-white:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.25);
}

/* Smaller Apply Now button only in header navbar */
.navbar .btn-white {
    padding: 10px 18px;
    font-size: 0.9rem;
    border-radius: 10px;
}

/* Outline button in footer color for CTAs */
.btn-outline-footer {
    background: transparent;
    color: #5a5c82;
    border: 2px solid #5a5c82;
}

.btn-outline-footer:hover {
    background: #5a5c82;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 92, 130, 0.3);
}

/* Focus state for accessibility */
.btn:focus-visible {
    outline: 3px solid rgba(90, 92, 130, 0.4);
    outline-offset: 2px;
}

/* Fallback spacing when flex gap is not supported */
@supports not (gap: 1rem) {
    .hero-buttons .btn + .btn,
    .cta-buttons .btn + .btn {
        margin-left: 1rem;
    }
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8fafc;
}

.animate-process-title {
    text-align: center;
}

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

.process-item {
    position: relative;
    text-align: left;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5a5c82 0%, #7c7fa3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5a5c82;
    margin-bottom: 0.5rem;
}

.process-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.process-item p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    color: #5a5c82;
    font-size: 1rem;
    opacity: 0.7;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.content-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.content-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Video Section */
.video-section {
    text-align: center;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8fafc;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #5a5c82;
}

.service-card p {
    margin-bottom: 1rem;
    color: #6b7280;
}

.service-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: #6b7280;
}

/* Consultation Section */
.consultation-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.consultation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.consultation-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.eligibility-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.eligibility-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #5a5c82;
}

.eligibility-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.eligibility-item ul {
    list-style: none;
    padding: 0;
}

.eligibility-item li {
    color: #6b7280;
}

.additional-info {
    text-align: center;
    font-style: italic;
    color: #6b7280;
    margin-bottom: 2rem;
}

.animate-consultation-btn {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Consultation Section Layout */
.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    min-height: 600px;
    padding: 2rem 0;
}

.consultation-content {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.consultation-image {
    order: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assistance-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.assistance-img:hover {
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    font-weight: 600;
    color: #5a5c82;
    text-align: center;
    margin-bottom: 1rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-top: 1rem;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #5a5c82;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4a4c72;
    transform: translateY(-2px);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a5c82;
}

.consent-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #5a5c82 0%, #4a4c72 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #5a5c82 50%, #ffd700 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-info p {
    margin-bottom: 1rem;
    color: #d1d5db;
    line-height: 1.6;
}

.contact-details {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffd700;
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.8rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 2.5rem;
}

.contact-details i {
    color: #ffd700;
    font-size: 1.2rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Special styling for address line to keep icon and text aligned */
.contact-details p:last-child {
    align-items: flex-start;
    min-height: auto;
}

.contact-details p:last-child i {
    margin-top: 0.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    border-radius: 4px;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
    background: rgba(0,0,0,0.1);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-bottom .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-bottom .social-links a {
    color: white;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
}

.footer-bottom .social-links a:hover {
    color: #ffd700;
    background: rgba(255,215,0,0.2);
    transform: translateY(-2px) scale(1.1);
}

.footer-disclaimer {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 4px solid #ff6b6b;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.footer-disclaimer strong {
    color: #ff6b6b;
}

/* Footer animations and enhancements */
@keyframes footerSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-brand,
.footer-info,
.footer-links,
.footer-disclaimer {
    animation: footerSlideUp 0.6s ease-out;
}

.footer-brand {
    animation-delay: 0.1s;
}

.footer-info {
    animation-delay: 0.2s;
}

.footer-links {
    animation-delay: 0.3s;
}

.footer-disclaimer {
    animation-delay: 0.4s;
}

/* Enhanced contact details styling */
.contact-details p:last-child {
    margin-bottom: 0;
}

/* Quick action buttons for footer (optional enhancement) */
.footer-quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-quick-actions .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
}

/* Responsive quick actions */
@media (max-width: 768px) {
    .footer-quick-actions {
        gap: 0.5rem;
    }

    .footer-quick-actions .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-cta-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-normal);
    text-decoration: none;
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.floating-cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(90, 92, 130, 0.4);
    border-color: var(--accent-color);
    animation: none;
}

.floating-cta-tooltip {
    position: absolute;
    bottom: 70px;
    right: 50%;
    transform: translateX(50%);
    background: var(--text-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.floating-cta-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
}

.floating-cta:hover .floating-cta-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: var(--shadow-xl), 0 0 0 0 rgba(90, 92, 130, 0.7);
    }
    70% {
        box-shadow: var(--shadow-xl), 0 0 0 10px rgba(90, 92, 130, 0);
    }
    100% {
        box-shadow: var(--shadow-xl), 0 0 0 0 rgba(90, 92, 130, 0);
    }
}

/* Enhanced animations */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust signals enhancement */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius-lg);
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.trust-badge i {
    color: var(--success-color);
}

/* Enhanced focus states for accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
.floating-cta-btn:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    z-index: 1001;
    transition: top var(--transition-normal);
}

.skip-to-content:focus {
    top: 6px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #5a5c82 0%, #7c7fa3 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.mission-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-image:hover {
    transform: translateY(-5px);
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    color: #5a5c82;
    font-size: 1.1rem;
}

.image-description {
    text-align: center;
    margin-top: 15px;
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.image-placeholder {
    background: #f8fafc;
    border: 2px dashed #d1d5db;
    border-radius: 15px;
    padding: 3rem;
    color: #6b7280;
}

.image-placeholder i {
    font-size: 4rem;
    color: #5a5c82;
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: #5a5c82;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.team-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #5a5c82;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.member-title {
    color: #5a5c82;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.reason-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-number {
    font-size: 2rem;
    font-weight: 700;
    color: #5a5c82;
    margin-bottom: 1rem;
}

.reason-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.reason-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
    background: #5a5c82;
    color: white;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Removed CTA Section - content moved to footer */

/* Service Page Styles */
.main-services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-overview h2 {
    text-align: center;
}

.main-services h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1f2937;
    position: relative;
}

.main-services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5a5c82 0%, #6b6e94 100%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.service-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(90, 92, 130, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5a5c82 0%, #6b6e94 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: #5a5c82;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: linear-gradient(145deg, #f0f2f5 0%, #e8ecf0 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(145deg, #5a5c82 0%, #4a4c72 100%);
    color: white;
}

.service-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1f2937;
    position: relative;
    z-index: 2;
}

.service-item p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    margin-top: auto;
}

.service-item li {
    color: #4b5563;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.service-item li:before {
    content: "✓";
    color: #5a5c82;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(90, 92, 130, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
}

.service-item h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Responsive design for services */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item {
        padding: 2rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .main-services h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .main-services h2::after {
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .service-item p,
    .service-item li {
        font-size: 0.9rem;
    }
}


/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5a5c82;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Eligibility Categories */
.eligibility-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
}

.category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category h3 i {
    color: #2563eb;
}

.category ul {
    list-style: none;
    padding: 0;
}

.category li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.category li:before {
    content: "•";
    color: #5a5c82;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #5a5c82;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Application Page Styles */
.application-guide {
    padding: 80px 0;
    background: #f8fafc;
}

.application-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.guide-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-5px);
}

.guide-icon {
    font-size: 2.5rem;
    color: #5a5c82;
    margin-bottom: 1rem;
}

.guide-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.guide-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Application Form */
.application-form-section {
    padding: 80px 0;
}

.application-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.application-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: #2563eb;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1f2937;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a5c82;
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #1f2937;
}

.radio-label input,
.checkbox-label input {
    width: auto;
    margin: 0;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Next Steps */
.next-steps {
    padding: 80px 0;
    background: #f8fafc;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-item .step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #5a5c82;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: #5a5c82;
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #5a5c82;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    /* Prevent overflow for long strings like email addresses on desktop */
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.contact-note {
    font-size: 0.875rem;
    color: #5a5c82;
    font-style: italic;
}

/* Contact Form Enhanced */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #5a5c82;
    width: 30px;
}

.contact-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.social-links h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

/* Office Hours */
.office-hours {
    padding: 80px 0;
    background: #f8fafc;
}

.office-hours h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.hours-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-5px);
}

.hours-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.hours-item p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.hours-item.emergency {
    background: #2563eb;
    color: white;
}

.hours-item.emergency h3,
.hours-item.emergency p {
    color: white;
}

.emergency-note {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
}

.service-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.area-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
}

.area-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.area-item ul {
    list-style: none;
    padding: 0;
}

.area-item li {
    color: #6b7280;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.area-item li:before {
    content: "•";
    color: #5a5c82;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 28px;
        max-width: 100px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #5a5c82;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: #fff;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #ffd700;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .company-name {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
    }

    .btn-primary {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .btn-play {
        width: 55px;
        height: 55px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .btn-play i {
        font-size: 1.2rem;
        margin-left: 2px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Stack eligibility and testimonials to 1 column on tablets; keep process grid separate */
    .eligibility-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Process section: 2 columns on mobile/tablet */
    .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
        align-items: stretch;
        padding: 0 15px;
    }

    .process-item {
        text-align: center;
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .process-number {
        font-size: 2rem;
    }

    .process-item h3 {
        font-size: 1.1rem;
    }

    .process-item p {
        font-size: 0.85rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
        min-height: auto;
    }

    .content-text h2 {
        font-size: 2rem;
    }

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

    .video-container iframe {
        height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .mission-image {
        max-width: 350px;
    }

    /* Enhanced mobile footer layout */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-brand img {
        width: 70px;
        height: 70px;
    }

    .footer-info {
        text-align: center;
        order: 1;
    }

    .footer-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-details {
        background: rgba(255,255,255,0.08);
        margin: 1rem auto;
        max-width: 400px;
        text-align: left;
    }

    .contact-details p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        justify-content: flex-start;
    }

    .footer-links {
        align-items: center;
        text-align: center;
        order: 2;
    }

    .footer-links h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        margin: 1.5rem auto;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 25px;
        max-width: 90px;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-content {
        gap: 1.5rem;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

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

    .company-name {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        gap: 0.6rem;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .btn-play {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .btn-play i {
        font-size: 1.1rem;
        margin-left: 1px;
    }

    .video-container iframe {
        height: 220px;
    }

    /* Process section: keep 2 columns even on small phones but adjust sizing */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        justify-items: center;
        align-items: stretch;
        padding: 0 10px;
    }

    .process-item {
        text-align: center;
        max-width: 260px;
        width: 100%;
        margin: 0 auto;
        padding: 1.2rem;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .process-number {
        font-size: 1.8rem;
    }

    .process-item h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .process-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .process-item .process-arrow {
        display: none;
    }

    /* Consultation section mobile responsive */
    .consultation-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 10px;
        min-height: auto;
    }

    .consultation-content {
        order: 2;
    }

    .consultation-image {
        order: 1;
    }

    .assistance-img {
        max-width: 300px;
    }

    /* Enhanced small screen footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 10px;
    }

    .footer-brand img {
        width: 60px;
        height: 60px;
    }

    .footer-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-details {
        padding: 1.2rem;
        max-width: 350px;
    }

    .contact-details p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .contact-details i {
        font-size: 1.1rem;
        width: 18px;
    }

    .footer-links {
        gap: 0.4rem;
    }

    .footer-links h4 {
        font-size: 1.1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .footer-bottom {
        padding: 1.2rem 10px;
    }

    .footer-bottom .social-links {
        gap: 1rem;
    }

    .footer-bottom .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .footer-disclaimer {
        padding: 1.2rem;
        margin-top: 1rem;
    }

    .footer-disclaimer p {
        font-size: 0.8rem;
    }
}

/* Steps Section Enhanced Styles */
.steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.steps-badge {
    display: inline-block;
    background: linear-gradient(135deg, #5a5c82 0%, #7c7fa3 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(90, 92, 130, 0.3);
}

.steps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.steps-subtitle {
    font-size: 1.2rem;
    color: #5a5c82;
    font-weight: 500;
    margin-bottom: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.steps-text-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.steps-description {
    margin-bottom: 30px;
}

.steps-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.steps-description strong {
    color: #2c3e50;
    font-weight: 700;
}

.steps-description em {
    color: #5a5c82;
    font-style: italic;
    font-weight: 500;
}

.steps-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature-item i {
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

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

        .team-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: block;
            margin: 0 auto;
        }

.team-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Steps Section */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-title {
        font-size: 2rem;
    }
    
    .steps-text-wrapper {
        padding: 30px;
    }
    
    .steps-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 60px 0;
    }
    
    .steps-title {
        font-size: 1.8rem;
    }
    
    .steps-subtitle {
        font-size: 1rem;
    }
    
    .steps-text-wrapper {
        padding: 25px;
    }
    
    .steps-description p {
        font-size: 0.95rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
} 

/* Mobile overflow fix */
html, body {
    overflow-x: hidden;
}

/* Ensure proper scrolling on mobile */
body {
    -webkit-overflow-scrolling: touch;
}

/* --- Mobile nav visibility and layering fixes --- */
@media (max-width: 768px) {
    .hamburger {
        z-index: 1001;
    }
    .nav-menu {
        z-index: 1000;
        box-sizing: border-box;
        background-color: #5a5c82; /* dark background so white links are visible */
        width: 100%;
    }
    .nav-menu .nav-link {
        color: #fff;
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: #ffd700;
    }
} 

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    .footer-brand img {
        width: 75px;
        height: 75px;
    }
    .footer-info {
        text-align: center;
        order: 1;
    }
    .footer-links {
        align-items: center;
        text-align: center;
        order: 2;
    }
    .contact-details {
        margin: 1rem auto;
        max-width: 450px;
    }
}

/* Swap hero background images on mobile to use mobile-optimized assets */
@media (max-width: 768px) {
    .hero-background .bg-slide:nth-child(1) {
        background-image: url('../images/mobile/1.png') !important;
    }
    .hero-background .bg-slide:nth-child(2) {
        background-image: url('../images/mobile/2.png') !important;
    }
    .hero-background .bg-slide:nth-child(3) {
        background-image: url('../images/mobile/3.png') !important;
    }
    /* Fallback: reuse the third image for the 4th slide on mobile */
    .hero-background .bg-slide:nth-child(4) {
        background-image: url('../images/mobile/3.png') !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    .footer-brand img {
        width: 60px;
        height: 60px;
    }
    .footer-content {
        gap: 1rem;
    }
} 

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
    .contact-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.25rem;
    }
    .contact-card h3 {
        font-size: 1.1rem;
    }
    .contact-card p {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
} 