
:root {
    /* Primary Colors */
    --primary-color: #5c48c1 ;
    --primary-dark: #383a58;
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --secondary-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    --dark-gradient: linear-gradient(135deg, #291956 0%, #2d2f48 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Text Colors */
    --text-primary: #333;
    --text-secondary: #666;
    --text-muted: rgba(255, 255, 255, 0.9);
    --text-white: var(--white);
    
    /* Background Colors */
    --bg-white: var(--white);
    --bg-light: var(--gray-50);
    --bg-primary: var(--primary-gradient);
    
    /* Border & Shadows */
    --border-light: 2px solid var(--gray-100);
    --border-primary: 2px solid var(--primary-color);
    --border-radius-sm: 8px;
    --border-radius: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-full: 50px;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 25px;
    --spacing-2xl: 30px;
    --spacing-3xl: 40px;
    --spacing-4xl: 50px;
    --spacing-5xl: 60px;
    --spacing-6xl: 80px;
    --spacing-7xl: 100px;
    
    /* Font Sizes */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 2rem;
    --font-4xl: 2.5rem;
    --font-5xl: 3rem;
    --font-6xl: 3.5rem;
    
    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container Widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
    --container-2xl: 1320px;
    
    /* Component Specific */
    --contact-icon-size: 70px;
    --contact-icon-size-sm: 50px;
    --contact-icon-size-lg: 80px;
    --map-height: 450px;
    --form-padding: 40px;
    --form-padding-sm: 30px;
}

/* Global overflow fix */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Global Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

/* Modern Contact Page Styles */
.contact-hero {
    background: var(--bg-primary);
    padding: var(--spacing-7xl) 0 var(--spacing-6xl);
    position: relative;
    overflow: hidden;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-6xl);
    align-items: center;
    text-align: center;
}

.contact-hero-title {
    font-size: var(--font-6xl);
    font-weight: var(--font-bold);
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: var(--font-xl);
    color: var(--text-muted);
    margin-bottom: var(--spacing-5xl);
    line-height: 1.6;
}

/* Contact Info Cards */
.contact-info-section {
    padding: var(--spacing-6xl) 0;
    background: var(--bg-light);
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-3xl);
}

.info-card {
    background: var(--bg-white);
    padding: var(--spacing-5xl) var(--spacing-3xl);
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

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

.info-card-icon {
    width: var(--contact-icon-size);
    height: var(--contact-icon-size);
    background: var(--bg-primary);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-white);
    font-size: 1.8rem;
}

.info-card-content h3 {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.info-card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--font-base);
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--spacing-6xl) 0;
    background: var(--bg-white);
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-6xl);
    align-items: start;
}

.form-header h2 {
    font-size: var(--font-4xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.form-header p {
    color: var(--text-secondary);
    font-size: var(--font-lg);
    margin-bottom: var(--spacing-5xl);
    line-height: 1.6;
}

.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-3xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.success-message i {
    font-size: var(--font-lg);
}

.modern-contact-form {
    background: var(--bg-light);
    padding: var(--form-padding);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-3xl);
}

.form-group label {
    display: block;
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-lg);
    border: var(--border-light);
    border-radius: var(--border-radius);
    font-size: var(--font-base);
    transition: var(--transition-base);
    background: var(--bg-white);
}

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

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: var(--spacing-sm);
}

.submit-btn {
    background: var(--bg-primary);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-lg) var(--spacing-5xl);
    border-radius: var(--border-radius);
    font-size: var(--font-lg);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Additional Info Cards */
.info-card-modern {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.info-card-header i {
    width: var(--contact-icon-size-sm);
    height: var(--contact-icon-size-sm);
    background: var(--bg-primary);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: var(--font-xl);
}

.info-card-header h3 {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin: 0;
}

.info-card-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

.secondary-btn {
    background: var(--bg-light);
    color: var(--primary-color);
    border: var(--border-primary);
    padding: 12px var(--spacing-3xl);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
    display: inline-block;
}

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

/* Map Section Styles */
.map-section {
    padding: var(--spacing-6xl) 0;
    background: var(--bg-light);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.map-header {
    text-align: center;
    margin-bottom: var(--spacing-5xl);
}

.map-title {
    font-size: var(--font-4xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.map-subtitle {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-wrapper {
    position: relative;
}

.map-iframe-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-white);
    padding: 3px;
}

.map-iframe-container iframe {
    border-radius: 12px;
    display: block;
    width: 100% !important;
    height: var(--map-height) !important;
    border: none;
}

.fallback-map {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-6xl) var(--spacing-3xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.fallback-map-icon {
    width: var(--contact-icon-size-lg);
    height: var(--contact-icon-size-lg);
    background: var(--bg-primary);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-3xl);
    color: var(--text-white);
    font-size: 2.5rem;
}

.fallback-map-content h3 {
    font-size: var(--font-2xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.fallback-map-content p {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-5xl);
    line-height: 1.6;
}

.fallback-map-actions {
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
    flex-wrap: wrap;
}

.map-action-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-3xl);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-semibold);
    font-size: var(--font-base);
    transition: var(--transition-base);
}

.map-action-btn.primary {
    background: var(--bg-primary);
    color: var(--text-white);
}

.map-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.map-action-btn.secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    border: var(--border-primary);
}

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

/* ========================================
   MODERN TOP HEADER STYLES
   ======================================== */

.modern-top-header {
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1000;
    padding: 3px 0;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.08);
}

.modern-top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23header-pattern)"/></svg>');
    pointer-events: none;
}

.top-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.top-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    gap: var(--spacing-md);
    min-height: 32px;
}

/* Left Side - Contact Info */
.header-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    min-width: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 1px 4px;
    border-radius: var(--border-radius-sm);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Footer specific icon classes */
.footer-location-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-phone-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.footer-email-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    font-size: 0.6rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    transition: all var(--transition-base);
}


.contact-item:hover .contact-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.contact-item:hover span {
    color: white;
}

/* Right Side - Quick Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    flex: 0 0 auto;
    min-width: 0;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 1px 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-medium);
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-link i {
    color: white;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-link:hover i {
    transform: scale(1.1);
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-shrink: 0;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: var(--font-xl);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.social-link i {
    color: white;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Floating Action Buttons (Mobile) */
.floating-actions {
    position: fixed;
    bottom: var(--spacing-xl);
    right: var(--spacing-lg);
    display: none;
    flex-direction: column;
    gap: var(--spacing-sm);
    z-index: 1000;
}

.floating-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: var(--font-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-base);
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-btn i {
    transition: all var(--transition-base);
}

.floating-btn:hover i {
    transform: scale(1.1);
}

/* Header Buttons (if needed) */
.header-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    font-size: var(--font-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.header-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: var(--border-radius-sm);
    backdrop-filter: blur(10px);
}

.language-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-base);
}

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

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

.modern-footer {
    background: var(--dark-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 80px 0 40px;
}

/* Bootstrap Footer Grid Customization */
.footer-grid {
    margin-bottom: 60px;
}

/* Remove Bootstrap default gutters for footer */
.footer-grid .row {
    margin-left: 0;
    margin-right: 0;
}

/* Custom column spacing */
.footer-grid [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Contact text overflow handling */
.footer-contact .contact-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}

/* Contact list styling */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list .contact-item:last-child {
    margin-bottom: 0;
}

.contact-list .contact-icon {
    color: var(--bg-light);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-list .contact-text {
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}

.links-list {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer contact items inline layout */
.footer-links .links-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-links .links-list li:last-child {
    margin-bottom: 0;
}

.font-weight-bold {
    font-weight: var(--font-bold);
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .footer-grid {
        gap: 25px;
    }
    
    .footer-grid [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 767px) {
    .footer-grid {
        gap: 20px;
    }
    
    .footer-grid [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        gap: 15px;
    }
    
    .footer-grid [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }
}

.footer-company {
    grid-column: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    transition: var(--transition-base);
}

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

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

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: var(--bg-white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links ul,
.footer-courses ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

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

.footer-links a,
.footer-courses a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.footer-courses a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact .contact-item i {
    color: var(--bg-light);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0; /* Prevent icon from shrinking */
    width: 20px; /* Fixed width for icon alignment */
    text-align: center;
}

.footer-contact .contact-content {
    flex: 1; /* Allow content to take remaining space */
    min-width: 0; /* Enable text wrapping */
}

.footer-contact .contact-content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
    word-wrap: break-word; /* Allow long words to break */
    overflow-wrap: break-word; /* Modern property for word wrapping */
}

.footer-contact .contact-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    word-wrap: break-word; /* Allow long words to break */
    overflow-wrap: break-word; /* Modern property for word wrapping */
    line-height: 1.4; /* Better line height for readability */
    white-space: normal; /* Ensure normal text wrapping */
}

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

.footer-social-links .social-link {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-social-links .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-input {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-base);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

/* ========================================
   ABOUT SECTION STYLES
   ======================================== */

.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.about-image-container {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s ease;
}

.about-image-wrapper:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.3);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    pointer-events: none;
}

.about-accent-shape {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.55;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.about-accent-shape::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.6; 
        transform: scale(1.2);
    }
}

.about-floating-cards {
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.floating-card.card-1 {
    transform: translateY(-80px);
    opacity: 0;
}

.floating-card.card-2 {
    transform: translateY(0px);
    opacity: 0;
}

.floating-card.card-3 {
    transform: translateY(80px);
    opacity: 0;
}

.floating-card.card-4 {
    transform: translateY(160px);
    opacity: 0;
}

/* AOS will handle the animation - these are initial states */
.floating-card.aos-animate {
    opacity: 1 !important;
    transform: translateX(0) translateY(var(--position, 0px)) !important;
}

.floating-card {
    background: white;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 150px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card:hover {
    transform: translateX(15px) translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
}

.floating-card-icon,
.card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 10px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.floating-card-icon::before,
.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.floating-card:hover .floating-card-icon::before,
.floating-card:hover .card-icon::before {
    left: 100%;
}

.floating-card:hover .floating-card-icon,
.floating-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.floating-card-content,
.card-content {
    flex: 1;
}

.floating-card-content h5,
.card-content h4 {
    font-size: 0.9rem;
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.floating-card-content p,
.card-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-content-container {
    position: relative;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.2;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 40px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-about-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-about-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-about-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* ========================================
   PROCESS SECTION STYLES
   ======================================== */

.process-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(102, 126, 234, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23process-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}
.process-section .btn-primary {
    display: block;
    background: var(--primary-gradient);
    margin-top: 10px;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
}
.process-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

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

.process-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.process-wrapper {
    position: relative;
    margin-bottom: 80px;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for 5-column layout */
@media (max-width: 1200px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.process-step-item {
    position: relative;
    text-align: center;
    min-height: 300px;
    transition: transform 0.3s ease;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-white);
    position: absolute;
    top: -40px;
    left: 37%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}



.step-content {
    background: white;
    min-height: 27rem;
    padding: 60px 30px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step-item:hover .step-content {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.process-step-item:hover .step-content::before {
    transform: scaleX(1);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.process-step-item:hover .step-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.process-step-item:hover .feature-tag {
    background: #667eea;
    color: white;
}

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

.courses-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.divider-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.divider-icon {
    font-size: 1.5rem;
    color: #667eea;
    margin: 0 20px;
}

.course-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.course-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.course-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card-modern:hover .course-card-image img {
    transform: scale(1.05);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.course-level,
.course-duration {
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-level {
    align-self: flex-start;
}

.course-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

.course-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.course-card-footer {
    margin-top: auto;
    text-align: center;
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card-modern {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   NEWS SECTION STYLES
   ======================================== */
.news-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.section-header {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.divider-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.divider-icon {
    font-size: 1.5rem;
    color: #667eea;
    margin: 0 20px;
}

.news-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.news-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card-modern:hover .news-card-image img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

.news-date {
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

.news-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #667eea;
}

.news-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.news-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #6c757d;
}

.news-category i,
.news-read-time i {
    margin-right: 5px;
    color: #667eea;
}

.news-card-footer {
    margin-top: auto;
}

.news-section .btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
}

.news-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.news-section .btn-outline-primary {
    border: var(--border-primary);
    color: var(--primary-color);
    background: transparent;
    border-radius: 30px;
    padding: var(--spacing-md) var(--spacing-2xl);
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
}

.news-section .btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card-modern {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   COURSES SECTION BUTTON STYLES
   ======================================== */
.courses-section .btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
}

.courses-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.courses-section .btn-outline-primary {
    border: var(--border-primary);
    color: var(--primary-color);
    background: transparent;
    border-radius: 30px;
    padding: var(--spacing-md) var(--spacing-2xl);
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
}

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

/* ========================================
   COURSES SECTION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .courses-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .course-card-modern {
        margin-bottom: 25px;
    }
    
    .course-card-image {
        height: 180px;
    }
    
    .course-card-content {
        padding: 20px;
    }
    
    .course-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .course-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .course-level {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .course-category {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .courses-section .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .courses-section .btn-outline-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .courses-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 15px;
        padding: 0 20px;
    }
    
    .course-card-modern {
        margin-bottom: 20px;
    }
    
    .course-card-image {
        height: 160px;
    }
    
    .course-card-content {
        padding: 18px;
    }
    
    .course-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .course-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .course-level {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .course-category {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .course-card-footer {
        text-align: center;
    }
    
    .courses-section .btn-primary {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .courses-section .btn-outline-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .courses-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .section-divider {
        margin-bottom: 30px;
    }
    
    .course-card-modern {
        margin-bottom: 15px;
    }
    
    .course-card-image {
        height: 140px;
    }
    
    .course-card-content {
        padding: 15px;
    }
    
    .course-title {
        font-size: 1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .course-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .course-level {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .course-category {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
    
    .course-card-footer {
        margin-top: 12px;
    }
    
    .courses-section .btn-primary {
        padding: 6px 12px;
        font-size: 0.75rem;
        width: 100%;
    }
    
    .courses-section .btn-outline-primary {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 250px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .courses-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .course-card-image {
        height: 120px;
    }
    
    .course-card-content {
        padding: 12px;
    }
    
    .course-title {
        font-size: 0.95rem;
    }
    
    .course-description {
        font-size: 0.75rem;
    }
    
    .courses-section .btn-primary {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .courses-section .btn-outline-primary {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* ========================================
   SERVICES SECTION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .services-section {
        padding: 100px 0;
    }
    
    .services-container {
        max-width: 960px;
        padding: 0 15px;
    }
    
    .services-header {
        margin-bottom: 60px;
    }
    
    .services-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
        max-width: 700px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .btn-service {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .services-cta {
        padding: 50px 40px;
    }
    
    .cta-text h3 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }
    
    .services-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    
    .btn-service {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .services-cta {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-text h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .cta-text p {
        font-size: 0.95rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 15px;
    }
    
    .services-header {
        margin-bottom: 40px;
    }
    
    .services-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .services-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .service-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .btn-service {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
    
    .services-cta {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .cta-content {
        gap: 20px;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .cta-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .cta-actions {
        gap: 12px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 10px 16px;
        font-size: 0.75rem;
        max-width: 200px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 0.85rem;
    }
    
    .service-card {
        padding: 20px 12px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.75rem;
    }
    
    .btn-service {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .services-cta {
        padding: 25px 15px;
    }
    
    .cta-text h3 {
        font-size: 1.3rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 8px 12px;
        font-size: 0.7rem;
        max-width: 180px;
    }
}

/* ========================================
   TESTIMONIALS SECTION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 100px 0;
    }
    
    .testimonials-container {
        padding: 0 15px;
    }
    
    .testimonials-header {
        margin-bottom: 60px;
    }
    
    .testimonials-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
        max-width: 700px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .testimonial-message {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .author-avatar {
        width: 70px;
        height: 70px;
    }
    
    .author-name {
        font-size: 1.2rem;
    }
    
    .author-position {
        font-size: 0.9rem;
    }
    
    .testimonial-control {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .testimonial-indicators {
        bottom: 30px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-container {
        padding: 0 20px;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .testimonials-title {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .testimonial-card {
        padding: 35px 25px;
        max-width: 500px;
    }
    
    .testimonial-message {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .testimonial-rating {
        margin-bottom: 15px;
    }
    
    .testimonial-rating .fa-star {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-position {
        font-size: 0.85rem;
    }
    
    .testimonial-control {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .testimonial-indicators {
        bottom: 25px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 15px;
    }
    
    .testimonials-header {
        margin-bottom: 40px;
    }
    
    .testimonials-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .testimonials-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.5;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .testimonial-message {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .testimonial-rating {
        margin-bottom: 12px;
    }
    
    .testimonial-rating .fa-star {
        font-size: 0.9rem;
    }
    
    .quote-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .testimonial-author {
        align-items: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .author-name {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .author-position {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .testimonial-controls {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 30px;
        gap: 20px;
    }
    
    .testimonial-control {
        position: static;
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .testimonial-indicators {
        position: static;
        bottom: auto;
        margin-top: 20px;
        justify-content: center;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        margin: 0 5px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonials-subtitle {
        font-size: 0.85rem;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-message {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .testimonial-rating .fa-star {
        font-size: 0.85rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-position {
        font-size: 0.75rem;
    }
    
    .testimonial-control {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
}

/* ========================================
   NEWS SECTION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .news-section {
        padding: 100px 0;
    }
    
    .news-container {
        padding: 0 15px;
    }
    
    .news-title {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .news-subtitle {
        font-size: 1.1rem;
        max-width: 700px;
    }
    
    .news-card {
        margin-bottom: 25px;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .news-excerpt {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .news-meta {
        font-size: 0.8rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .news-section {
        padding: 80px 0;
    }
    
    .news-container {
        padding: 0 20px;
    }
    
    .news-title {
        font-size: 2.4rem;
        margin-bottom: 12px;
    }
    
    .news-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .news-card {
        margin-bottom: 20px;
    }
    
    .news-image {
        height: 160px;
    }
    
    .news-content {
        padding: 18px;
    }
    
    .news-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .news-meta {
        font-size: 0.75rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-container {
        padding: 0 15px;
    }
    
    .news-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .news-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .news-card {
        margin-bottom: 15px;
    }
    
    .news-image {
        height: 140px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .news-excerpt {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .news-meta {
        font-size: 0.7rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .news-section {
        padding: 50px 0;
    }
    
    .news-title {
        font-size: 1.8rem;
    }
    
    .news-subtitle {
        font-size: 0.85rem;
    }
    
    .news-image {
        height: 120px;
    }
    
    .news-content {
        padding: 12px;
    }
    
    .news-title {
        font-size: 1rem;
    }
    
    .news-excerpt {
        font-size: 0.75rem;
    }
}

/* ========================================
   PROCESS SECTION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .process-section {
        padding: 100px 0;
    }
    
    .process-title {
        font-size: 2.8rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .step-content {
        padding: 50px 25px 30px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-title {
        font-size: 2.4rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step-content {
        padding: 40px 20px 25px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-title {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-content {
        padding: 30px 15px 20px;
        min-height: auto;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 0.95rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
}

/* ========================================
   CTA SECTION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .cta-section {
        padding: 100px 0;
    }
    
    .cta-content {
        padding: 60px 40px;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        gap: 20px;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 50px 30px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.4rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-cta {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* ========================================
   AFFILIATION SECTION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .affiliation-section {
        padding: 100px 0;
    }
    
    .affiliation-title {
        font-size: 2.8rem;
    }
    
    .affiliation-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .affiliation-logo {
        height: 80px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .affiliation-section {
        padding: 80px 0;
    }
    
    .affiliation-title {
        font-size: 2.4rem;
    }
    
    .affiliation-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .affiliation-logo {
        height: 70px;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .affiliation-section {
        padding: 60px 0;
    }
    
    .affiliation-title {
        font-size: 2rem;
    }
    
    .affiliation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .affiliation-logo {
        height: 60px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .affiliation-section {
        padding: 50px 0;
    }
    
    .affiliation-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .affiliation-logo {
        height: 50px;
    }
}

/* ========================================
   FOOTER RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .footer {
        padding: 80px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-links {
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-links {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 25px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links {
        font-size: 0.8rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 0.8rem;
    }
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */

.modern-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    z-index: 999;
    transition: var(--transition-base);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modern-navigation.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.modern-navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
}

.navigation-placeholder {
    display: none;
}

.navigation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.navigation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 40px;
}

/* Modern Logo Section */
.modern-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: none;
}

.logo-icon-modern {
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}

.logo-icon-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Modern Navigation Menu */
.navigation-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.nav-item-modern {
    position: relative;
}

.nav-link-modern {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link-modern:hover::before {
    left: 0;
}

.nav-link-modern:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link-modern.active {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: translateY(-2px);
}

/* Navigation Actions */
.navigation-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-button-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.cta-button-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.mobile-toggle:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block !important;
    left: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.mobile-menu-close:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-content {
    padding: var(--spacing-lg);
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-item {
    display: block;
    margin-bottom: 4px;
}

.mobile-submenu {
    list-style: none;
    margin-left: 20px;
    margin-top: 8px;
}

.mobile-submenu-item {
    display: block;
    margin-bottom: 4px;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-base);
}

.mobile-submenu-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ========================================
   NEW RESPONSIVE NAVIGATION
   ======================================== */

.nav-placeholder {
    display: none;
    height: 0;
    transition: height 0.3s ease;
}

.nav-placeholder.visible {
    display: block;
}

.responsive-nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.responsive-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 120px;
    height: 40px;
    object-fit: cover;
    filter: brightness(1);
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-placeholder {
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 6px;
    filter: brightness(1);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Logo styles when navigation is sticky */
.responsive-nav.sticky .logo-img {
    filter: brightness(1.1) contrast(1.05);
    opacity: 1;
}

.responsive-nav.sticky .logo-placeholder {
    filter: brightness(1.1) contrast(1.05);
    opacity: 1;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu-item {
    position: relative;
}

.desktop-menu-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.desktop-menu-link:hover,
.desktop-menu-link.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 8px 0;
    margin: 8px 0 0 0;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========================================
   CLEAN NAVIGATION STYLES
   ======================================== */

/* Navigation Placeholder */
.nav-placeholder {
    height: 0;
    transition: height 0.3s ease;
}

/* Main Navigation */
.main-navigation {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-navigation.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    width: 120px;
    height: 40px;
    object-fit: cover;
    filter: brightness(1);
    opacity: 1;
    transition: all 0.3s ease;
}

.logo-placeholder {
    width: 120px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 6px;
    filter: brightness(1);
    opacity: 1;
    transition: all 0.3s ease;
}

.main-navigation.sticky .logo-image,
.main-navigation.sticky .logo-placeholder {
    filter: brightness(1.1) contrast(1.05);
    opacity: 1;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.nav-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Submenu */
.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 8px 0;
    margin: 8px 0 0 0;
}

.has-submenu:hover .nav-submenu,
.has-submenu.open .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-submenu:hover .nav-arrow,
.has-submenu.open .nav-arrow {
    transform: rotate(180deg);
}

.nav-sublink {
    display: block;
    padding: 10px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-sublink:hover,
.nav-sublink.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* Language Selector */
.nav-lang {
    position: relative;
}

.nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #2c3e50;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-lang-btn:hover,
.nav-lang-btn.open {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.nav-lang-btn.open .nav-arrow {
    transform: rotate(180deg);
}

/* Language dropdown specific styles */
.nav-lang .nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 140px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    list-style: none;
    padding: 8px 0;
    margin: 8px 0 0 0;
}

.nav-lang:hover .nav-submenu,
.nav-lang.open .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-lang:hover .nav-arrow,
.nav-lang.open .nav-arrow {
    transform: rotate(180deg);
}

/* Mobile Button */
.nav-mobile-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-mobile-btn.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-mobile-btn.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.nav-mobile.open {
    left: 0;
}

.nav-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.nav-mobile-logo .logo-image {
    width: 100px;
    height: 35px;
}

.nav-mobile-logo .logo-placeholder {
    width: 100px;
    height: 35px;
}

.nav-mobile-close {
    width: 36px;
    height: 36px;
    background: rgba(102, 126, 234, 0.1);
    border: none;
    border-radius: 8px;
    color: #2c3e50;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-mobile-close:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.nav-mobile-content {
    padding: 20px;
}

.nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile-item {
    margin-bottom: 4px;
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.nav-mobile-submenu {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 0 0 0 16px;
    display: none;
}

.nav-mobile-dropdown.open .nav-mobile-submenu {
    display: block;
}

.nav-mobile-subitem {
    margin-bottom: 2px;
}

.nav-mobile-sublink {
    display: block;
    padding: 12px 16px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-mobile-sublink:hover,
.nav-mobile-sublink.active {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-mobile-btn {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: #2c3e50;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    left: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-logo .logo-img {
    width: 100px;
    height: 35px;
}

.mobile-menu-logo .logo-placeholder {
    width: 100px;
    height: 35px;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: rgba(102, 126, 234, 0.1);
    border: none;
    border-radius: 8px;
    color: #2c3e50;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    margin-bottom: 4px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.mobile-submenu {
    list-style: none;
    margin: 8px 0 0 0;
    padding: 0 0 0 16px;
    display: none;
}

.mobile-dropdown.open .mobile-submenu {
    display: block;
}

.mobile-submenu-item {
    margin-bottom: 2px;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 16px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover,
.mobile-submenu-link.active {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}

.mobile-submenu-link.active {
    background: var(--primary-gradient);
    color: var(--text-white);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: var(--text-primary);
    font-weight: var(--font-medium);
    border-radius: var(--border-radius);
    transition: var(--transition-base);
    text-decoration: none;
    margin-bottom: 8px;
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-nav-link.active {
    background: var(--primary-gradient);
    color: var(--text-white);
}

/* ========================================
   PREMIUM HERO SLIDER STYLES
   ======================================== */

.premium-hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    opacity: 1;
}

.slide.active .slide-image {
    animation: multiZoom 12s ease-in-out forwards;
    filter: brightness(1.1) contrast(1.05);
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    padding-left: 10%;
}

.content-wrapper {
    text-align: left;
    color: white;
    max-width: 600px;
    padding: 0 20px;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    animation: slideInUp 1s ease-out 0.5s both;
}

.slide-actions {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.7s both;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.slide-btn.primary {
    background: linear-gradient(135deg, #f56a19 0%, #b04714 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.slide-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.slide-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slide-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.slide-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.slide-btn:hover i {
    transform: translateX(4px);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 3;
    pointer-events: none;
}

.control-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

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

/* Animations */
@keyframes multiZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.1) translate(-2%, -1%);
    }
    50% {
        transform: scale(1.2) translate(1%, -2%);
    }
    75% {
        transform: scale(1.25) translate(-1%, 1%);
    }
    100% {
        transform: scale(1.3) translate(0, 0);
    }
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0) translateY(0);
    }
    25% {
        opacity: 0.5;
        transform: translateX(10%) translateY(-5%);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-5%) translateY(10%);
    }
    75% {
        opacity: 0.4;
        transform: translateX(5%) translateY(-10%);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content {
        padding-left: 5%;
    }
    
    .content-wrapper {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .slide-btn {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .control-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 30px;
        gap: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Additional Hero Slider Responsive Fixes */
@media (max-width: 576px) {
    .premium-hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding-left: 0;
        padding: 0 15px;
    }
    
    .content-wrapper {
        padding: 0 10px;
        text-align: center;
    }
    
    .slide-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .slide-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
        padding: 0 15px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .premium-hero-slider {
        height: 60vh;
        min-height: 450px;
    }
    
    .slide-title {
        font-size: clamp(1.5rem, 10vw, 2rem);
    }
    
    .slide-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-btn {
        max-width: 200px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .premium-hero-slider {
        height: 90vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: 0 10%;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
    
    .slide-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    
    .slide-description {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        max-width: 80%;
    }
    
    .slide-actions {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .slide-btn {
        width: auto;
        max-width: 200px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Image Container with Zoom Effect */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-in-out;
    opacity: 1;
}

/* Content Overlay */
.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-btn i {
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(3px);
}

/* Navigation Controls */
.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    pointer-events: none;
}

.hero-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.hero-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Progress Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

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

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-indicator.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-controls {
        padding: 0 15px;
    }
    
    .hero-control {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .hero-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-indicator {
        width: 8px;
        height: 8px;
    }
}

.modern-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modern-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.hero-slide-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

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

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-in-out;
}

.hero-slide-item.active .hero-bg-image {
    transform: scale(1);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.7) 0%, 
        rgba(118, 75, 162, 0.7) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* Content Layer */
.hero-content-layer {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content-container {
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.hero-content-inner {
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Hero Buttons */
.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #667eea;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: translateX(3px);
}

.btn-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-btn:hover .btn-bg-effect {
    transform: translateX(100%);
}

/* Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 8%;
    animation: float 10s ease-in-out infinite;
}

/* Navigation Controls */
.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
    pointer-events: none;
}

.hero-nav-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-btn-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-btn-text {
    display: none;
}

.hero-nav-btn:hover .nav-btn-text {
    display: block;
}

.nav-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-nav-btn:hover .nav-btn-bg {
    opacity: 1;
}

/* Progress Indicators */
.hero-progress {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.progress-dot {
    position: relative;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.progress-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.progress-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.dot-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-dot.active .dot-inner {
    opacity: 1;
}

.dot-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.progress-dot:hover .dot-label {
    opacity: 1;
}

.progress-bar-container {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 0%;
    transition: width 5s linear;
    border-radius: 3px;
}

.hero-slide-item.active .progress-bar-fill {
    width: 100%;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-wheel {
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
    animation: scroll-wheel 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-10px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-5px); 
    }
}

@keyframes scroll-wheel {
    0% { 
        transform: translateY(0px); 
        opacity: 1;
    }
    50% { 
        transform: translateY(15px); 
        opacity: 0;
    }
    100% { 
        transform: translateY(0px); 
        opacity: 1;
    }
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.hero-slider-wrapper {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.hero-content {
    color: white;
    text-align: left;
    max-width: 1000px;
    position: relative;
    transition: transform 0.3s ease-out;
}

.hero-content::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary i {
    transition: transform 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

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

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 4;
    text-decoration: none;
}

.carousel-control-prev {
    left: 3rem;
}

.carousel-control-next {
    right: 3rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.carousel-indicators button {
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-base);
}

.carousel-indicators button.active {
    background: white;
    width: 80px;
}

/* ========================================
   PAGE HEADER STYLES
   ======================================== */

.modern-page-header {
    position: relative;
    padding: 120px 0 80px;
    background: var(--primary-gradient);
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23header-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.page-header-title {
    font-size: var(--font-5xl);
    font-weight: var(--font-bold);
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.page-header-subtitle {
    font-size: var(--font-xl);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin: -60px auto 0;
    max-width: 900px;
    position: relative;
    z-index: 3;
}

.content-card-body {
    padding: 60px 50px;
}

.page-content-text {
    font-size: var(--font-lg);
    line-height: 1.8;
    color: var(--text-primary);
}

.page-content-text h1,
.page-content-text h2,
.page-content-text h3,
.page-content-text h4,
.page-content-text h5,
.page-content-text h6 {
    color: var(--text-primary);
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-semibold);
}

.page-content-text h1 { font-size: var(--font-4xl); }
.page-content-text h2 { font-size: var(--font-3xl); }
.page-content-text h3 { font-size: var(--font-2xl); }
.page-content-text h4 { font-size: var(--font-xl); }

.page-content-text p {
    margin-bottom: var(--spacing-lg);
}

.page-content-text ul,
.page-content-text ol {
    margin-bottom: var(--spacing-lg);
    padding-left: 30px;
}

.page-content-text li {
    margin-bottom: var(--spacing-sm);
}

.page-content-text blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: var(--spacing-3xl) 0;
    border-radius: var(--border-radius);
    font-style: italic;
}

.page-content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-3xl) 0;
}

.page-content-text th,
.page-content-text td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.page-content-text th {
    background: var(--bg-light);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-3xl);
    margin: var(--spacing-4xl) 0;
}

.service-card {
    background: var(--bg-white);
    padding: var(--spacing-4xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--gray-100);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-white);
    font-size: 2rem;
}

.service-title {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-section {
    background: var(--primary-gradient);
    padding: var(--spacing-6xl) var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: var(--spacing-6xl) 0;
    color: var(--text-white);
}

.cta-title {
    font-size: var(--font-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-lg);
}

.cta-description {
    font-size: var(--font-lg);
    margin-bottom: var(--spacing-4xl);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
}

.cta-btn {
    padding: var(--spacing-lg) var(--spacing-3xl);
    border-radius: var(--border-radius);
    font-size: var(--font-base);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

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

/* ========================================
   HIERARCHICAL NAVIGATION STYLES
   ======================================== */

/* Desktop Dropdown Navigation */
.nav-item-modern.dropdown {
    position: relative;
}

.nav-item-modern.dropdown .nav-link-modern.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Hide Bootstrap dropdown arrows */
.nav-link-modern.custom-dropdown::after,
.dropdown-toggle-modern::after {
    display: none !important;
}

.nav-item-modern.dropdown .dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition-base);
}

.nav-item-modern.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu-modern {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-white);
    border: var(--border-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-base);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.nav-item-modern.dropdown:hover .dropdown-menu-modern {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-modern {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
    font-weight: var(--font-medium);
    border-left: 3px solid transparent;
}

.dropdown-item-modern:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: calc(var(--spacing-md) + 3px);
}

.dropdown-item-modern.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-left-color: var(--white);
}

/* Mobile Navigation Dropdowns */
.mobile-nav-dropdown {
    position: relative;
}

.mobile-nav-dropdown .mobile-dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition-base);
    margin-left: auto;
}

.mobile-nav-dropdown.expanded .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base) ease-in-out;
}

.mobile-nav-dropdown.expanded .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-item {
    border-left: 2px solid var(--gray-300);
    margin-left: var(--spacing-md);
}

.mobile-submenu-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.mobile-submenu-link:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.mobile-submenu-link.active {
    color: var(--primary-color);
    font-weight: var(--font-medium);
}

/* ========================================
   LANGUAGE DROPDOWN STYLES
   ======================================== */

.nav-dropdown-modern {
    position: relative;
}

.dropdown-toggle-modern {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: none;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    font-weight: var(--font-medium);
    font-size: var(--font-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    border-radius: var(--border-radius);
}

.dropdown-toggle-modern:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.dropdown-toggle-modern .dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition-base);
}

.nav-dropdown-modern:hover .dropdown-toggle-modern .dropdown-arrow {
    transform: rotate(180deg);
}

/* Language Dropdown Menu */
.nav-dropdown-modern .dropdown-menu-modern {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

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

.nav-dropdown-modern .dropdown-item-modern {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}

.nav-dropdown-modern .dropdown-item-modern:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: calc(var(--spacing-md) + 3px);
}

.nav-dropdown-modern .dropdown-item-modern.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-left-color: var(--white);
}

/* ========================================
   HAMBURGER MENU STYLES
   ======================================== */

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-toggle:hover .hamburger-line {
    background: var(--primary-color);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   NAVIGATION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .navigation-menu {
        gap: 4px;
    }
    
    .nav-link-modern {
        padding: 10px 14px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .modern-logo {
        font-size: var(--font-lg);
    }
    
    .logo-icon-modern {
        width: 100px;
        height: 35px;
        font-size: var(--font-base);
    }
    
    .dropdown-toggle-modern {
        font-size: 0.85rem;
    }
}

/* Tablet and below */
@media (max-width: 992px) {
    .navigation-menu {
        gap: 3px;
    }
    
    .nav-link-modern {
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .modern-logo {
        font-size: var(--font-base);
    }
    
    .logo-icon-modern {
        width: 90px;
        height: 32px;
        font-size: var(--font-sm);
    }
    
    .dropdown-toggle-modern {
        font-size: 0.8rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        padding: 8px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        border-radius: var(--border-radius);
        background: rgba(102, 126, 234, 0.1);
        border: 2px solid rgba(102, 126, 234, 0.3);
    }
    
    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #2c3e50 !important;
        margin: 3px 0;
        border-radius: 2px;
        display: block !important;
    }
    
    .navigation-menu {
        display: none !important;
    }
    
    /* Keep navigation-actions visible to show mobile-toggle */
    .navigation-actions {
        display: flex !important;
    }
    
    .modern-navigation {
        padding: 10px 0;
    }
    
    .navigation-container {
        padding: 0 15px;
    }
    
    .modern-logo {
        font-size: var(--font-base);
    }
    
    .logo-icon-modern {
        width: 80px;
        height: 30px;
        font-size: 0.875rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .mobile-toggle {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
}

/* Ultra small mobile devices (425px and down) */
@media (max-width: 425px) {
    .mobile-toggle {
        width: 30px;
        height: 30px;
        padding: 5px;
    }
    
    .hamburger-line {
        width: 18px;
        height: 2px;
    }
    
    .modern-navigation {
        padding: 8px 0;
    }
    
    .navigation-container {
        padding: 0 10px;
    }
    
    .modern-logo {
        font-size: var(--font-sm);
    }
    
    .logo-icon-modern {
        width: 60px;
        height: 25px;
        font-size: 0.75rem;
    }
    
    .mobile-menu {
        max-width: 280px;
    }
    
    .mobile-menu-header {
        padding: var(--spacing-md);
    }
    
    .mobile-menu-content {
        padding: 10px;
    }
    
    .mobile-nav-link {
        font-size: var(--font-sm);
        padding: 8px 10px;
    }
    
    .mobile-submenu-link {
        font-size: var(--font-xs);
        padding: 6px 10px;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-menu {
        max-width: 350px;
    }
    
    .mobile-menu-content {
        padding: var(--spacing-md);
    }
    
    .mobile-nav-link {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

/* ========================================
   ABOUT SECTION RESPONSIVE STYLES
   ======================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        max-width: 960px;
        padding: 0 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .about-image-container {
        position: relative;
        display: flex;
        justify-content: center;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 450px;
    }
    
    .about-image {
        height: 350px;
    }
    
    .about-floating-cards {
        position: absolute;
        top: 50%;
        left: -40px;
        transform: translateY(-50%);
        z-index: 3;
    }
    
    .floating-card {
        width: 100px;
        height: 100px;
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .floating-card.card-1 {
        transform: translateY(-60px);
    }
    
    .floating-card.card-2 {
        transform: translateY(-20px);
    }
    
    .floating-card.card-3 {
        transform: translateY(20px);
    }
    
    .floating-card.card-4 {
        transform: translateY(60px);
    }
    
    .about-content {
        padding-left: 20px;
    }
    
    .about-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .about-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .about-badge span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .floating-card h4 {
        font-size: 1.3rem;
    }
    
    .floating-card p {
        font-size: 0.75rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Medium tablets - transition layout */
@media (max-width: 950px) {
    .about-container {
        max-width: 900px;
        padding: 0 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-image-container {
        order: 2;
        display: flex;
        justify-content: center;
    }
    
    .about-content-container {
        order: 1;
    }
    
    .about-image-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image {
        height: 320px;
    }
    
    .about-floating-cards {
        position: static;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
        transform: none;
    }
    
    .floating-card {
        position: static;
        transform: none !important;
        width: 110px;
        height: 110px;
        padding: 15px;
        margin: 0;
    }
    
    .floating-card.card-1,
    .floating-card.card-2,
    .floating-card.card-3,
    .floating-card.card-4 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .about-content {
        padding-left: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .about-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Tablet and below */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-image-container {
        order: 2;
    }
    
    .about-content-container {
        order: 1;
    }
    
    .about-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .about-description {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .about-image {
        height: 350px;
    }
    
    .about-floating-cards {
        position: static;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 30px;
    }
    
    .floating-card {
        position: static;
        transform: none;
        width: 100px;
        height: 100px;
        margin: 0;
    }
    
    .floating-card.card-1,
    .floating-card.card-2,
    .floating-card.card-3,
    .floating-card.card-4 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .about-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

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

.modern-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: var(--font-bold);
    font-size: var(--font-xl);
    transition: all var(--transition-base);
}

.modern-logo:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.logo-icon-modern {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: white;
    border-radius: 6px;
    font-size: var(--font-lg);
    margin-right: var(--spacing-sm);
    transition: all var(--transition-base);
}

.modern-logo:hover .logo-icon-modern {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.logo-icon-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* ========================================
   NAVIGATION ACTIONS STYLES
   ======================================== */

.navigation-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* ========================================
   MOBILE NAVIGATION ENHANCEMENTS
   ======================================== */

.mobile-nav-item {
    margin-bottom: var(--spacing-sm);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: all var(--transition-base);
    border-radius: var(--border-radius);
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mobile-nav-link i {
    font-size: var(--font-sm);
    width: 20px;
    text-align: center;
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   ======================================== */

.testimonials-section {
    padding: 120px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonials-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-pattern)"/></svg>');
    pointer-events: none;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
}

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

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.testimonials-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 100px;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.testimonial-rating i {
    font-size: 1.25rem;
    color: #ddd;
    transition: all 0.3s ease;
}

.testimonial-rating i.active {
    color: #ffd700;
    transform: scale(1.1);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 40px;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 3rem;
    color: rgba(102, 126, 234, 0.2);
    opacity: 0.5;
}

.testimonial-message {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #2c3e50;
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    z-index: -1;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.author-position {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
}

.testimonial-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0.1;
}

.circle-1 {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 40px;
    height: 40px;
    top: 70px;
    right: 30px;
    animation: float 6s ease-in-out infinite 2s;
}

.circle-3 {
    width: 20px;
    height: 20px;
    top: 30px;
    right: 80px;
    animation: float 6s ease-in-out infinite 4s;
}

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

.testimonial-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
}

.testimonial-control {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.testimonial-control:hover {
    background: white;
    border-color: #667eea;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.testimonial-control.prev {
    left: -30px;
}

.testimonial-control.next {
    right: -30px;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Note: All responsive styles have been moved to responsive.css */

/* Universities Page Styles */
.page-header {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: var(--spacing-6xl) 0;
}

.page-title {
    font-size: var(--font-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-lg);
}

.page-subtitle {
    font-size: var(--font-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.universities-section {
    background: var(--bg-light);
    min-height: 60vh;
}

.university-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.university-card-header {
    padding: var(--spacing-2xl);
    background: var(--secondary-gradient);
    text-align: center;
}

.university-logo {
    width: var(--spacing-7xl);
    height: var(--spacing-7xl);
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--border-radius-full);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.university-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.university-logo-placeholder {
    width: var(--spacing-7xl);
    height: var(--spacing-7xl);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: var(--font-3xl);
}

.university-card-body {
    padding: var(--spacing-2xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.university-name {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.university-location {
    display: flex;
    align-items: center;
    color: var(--gray-600);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-sm);
}

.university-location i {
    margin-right: var(--spacing-sm);
}

.university-description {
    flex: 1;
    margin-bottom: var(--spacing-2xl);
}

.university-description p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.university-meta {
    margin-bottom: var(--spacing-2xl);
}

.partner-badge {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-full);
    font-size: var(--font-xs);
    font-weight: var(--font-medium);
    display: inline-flex;
    align-items: center;
}

.university-card-footer {
    padding: var(--spacing-2xl) var(--spacing-3xl);
    background: var(--bg-light);
    text-align: center;
}

.btn-university {
    background: var(--secondary-gradient);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--border-radius-full);
    font-weight: var(--font-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.btn-university:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    color: var(--text-white);
    text-decoration: none;
}

.no-universities {
    padding: var(--spacing-6xl);
}

/* Universities Show Page Styles */
.university-detail-section {
    background: var(--bg-light);
    min-height: 60vh;
}

.university-detail-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.university-detail-header {
    padding: var(--spacing-2xl);
    background: var(--primary-gradient);
    color: var(--text-white);
}

.university-detail-header h2 {
    margin: 0;
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
}

.university-detail-body {
    padding: var(--spacing-2xl);
}

.description-section {
    margin-bottom: var(--spacing-2xl);
}

.description-section h3 {
    color: var(--text-primary);
    font-size: var(--font-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--spacing-lg);
}

.description-content {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: var(--font-base);
}

.partner-section {
    margin-top: var(--spacing-2xl);
}

.partner-section h3 {
    color: var(--primary-color);
    font-size: var(--font-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--spacing-lg);
}

.partner-info {
    background: #f0f9ff;
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.partner-badge-large {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--border-radius-full);
    font-size: var(--font-base);
    font-weight: var(--font-semibold);
    display: inline-flex;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.university-sidebar {
    position: sticky;
    top: var(--spacing-2xl);
}

.sidebar-logo {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.sidebar-logo img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.sidebar-logo-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: var(--font-5xl);
}

.sidebar-info {
    background: var(--bg-white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-2xl);
}

.sidebar-info h3 {
    color: var(--text-primary);
    font-size: var(--font-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--spacing-2xl);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-2xl);
}

.info-item i {
    width: 20px;
    margin-right: var(--spacing-lg);
    margin-top: 2px;
    color: var(--primary-color);
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-sm);
}

.info-value {
    color: var(--gray-600);
    font-size: var(--font-base);
}

.status-badge {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: var(--font-xs);
    font-weight: var(--font-medium);
}

.status-badge.partner {
    background: var(--primary-color);
    color: var(--text-white);
}

.status-badge.regular {
    background: var(--gray-600);
    color: var(--text-white);
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Universities Show Page Action Buttons */
.sidebar-actions .btn-primary {
    background: var(--secondary-gradient);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--border-radius-full);
    font-weight: var(--font-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.sidebar-actions .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    color: var(--text-white);
    text-decoration: none;
}

.sidebar-actions .btn-outline-secondary {
    background: transparent;
    color: var(--gray-600);
    border: 2px solid var(--gray-300);
    padding: var(--spacing-md) var(--spacing-2xl);
    border-radius: var(--border-radius-full);
    font-weight: var(--font-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.sidebar-actions .btn-outline-secondary:hover {
    background: var(--gray-600);
    color: var(--text-white);
    border-color: var(--gray-600);
    text-decoration: none;
    transform: scale(1.05);
}

/* Albums Page Styles */
.page-header {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: var(--spacing-6xl) 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: var(--font-5xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: var(--font-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
}

.page-header-icon {
    font-size: var(--font-5xl);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

.albums-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
    min-height: 60vh;
}

.album-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.album-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.album-cover {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--primary-gradient);
}

.album-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.album-card:hover .album-cover-image {
    transform: scale(1.1);
}

.album-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-2xl);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-cover-overlay {
    opacity: 1;
}

.album-cover-content {
    color: var(--text-white);
    text-align: center;
}

.album-cover-content i {
    font-size: var(--font-2xl);
    margin-bottom: var(--spacing-sm);
}

.album-cover-content span {
    font-size: var(--font-sm);
    font-weight: var(--font-medium);
}

.album-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    background: var(--primary-gradient);
}

.album-cover-placeholder i {
    font-size: var(--font-5xl);
    margin-bottom: var(--spacing-lg);
    opacity: 0.8;
}

.album-cover-placeholder span {
    font-size: var(--font-base);
    font-weight: var(--font-medium);
}

.album-content {
    padding: var(--spacing-2xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.album-title {
    font-size: var(--font-xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.album-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-2xl);
    flex: 1;
}

.album-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.album-date, .album-count {
    display: flex;
    align-items: center;
    color: var(--gray-600);
    font-size: var(--font-sm);
}

.album-date i, .album-count i {
    margin-right: var(--spacing-sm);
    color: var(--primary-color);
}

.album-action {
    text-align: center;
}

.btn-album {
    background: var(--primary-gradient);
    color: var(--text-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-3xl);
    border-radius: var(--border-radius-full);
    font-weight: var(--font-medium);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-album::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    transition: left 0.3s ease;
}


.btn-album:hover {
    color: var(--text-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-album i, .btn-album span {
    position: relative;
    z-index: 1;
}

.no-albums {
    padding: var(--spacing-6xl) var(--spacing-2xl);
}

.no-albums-icon {
    font-size: var(--font-6xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.6;
}

.no-albums-title {
    font-size: var(--font-3xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.no-albums-description {
    color: var(--gray-600);
    font-size: var(--font-lg);
    max-width: 500px;
    margin: 0 auto;
}

/* Note: All responsive styles have been moved to responsive.css */

/* Custom CSS for Frontend - Non-Responsive Styles Only */

/* ========================================
   CSS VARIABLES
   ======================================== */

/* ========================================
   NEWS SECTION STYLES
   ======================================== */
.news-section {
    background-color: #f8f9fa;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.news-excerpt {
    color: #666;
    margin-bottom: 15px;
    min-height: 60px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-date {
    font-size: 0.9rem;
    color: #999;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* ========================================
   ALBUMS SHOW PAGE STYLES
   ======================================== */

/* Page Header Styles */
.page-header {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: var(--spacing-4xl) 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: var(--font-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: var(--font-lg);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
}

.page-header-meta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
}

.page-header-stat {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-sm);
    opacity: 0.8;
}

.page-header-stat i {
    font-size: var(--font-lg);
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--bg-light);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--gray-100);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: var(--gray-600);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
}

.breadcrumb-item.active {
    color: var(--gray-900);
    font-weight: var(--font-medium);
}

/* Album Cover Section */
.album-cover-section {
    padding: var(--spacing-3xl) 0;
}

.album-cover-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 400px;
}

.album-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.album-cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: var(--spacing-3xl) var(--spacing-2xl) var(--spacing-2xl);
    color: var(--text-white);
}

.album-cover-content h2 {
    font-size: var(--font-3xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--spacing-md);
}

.album-cover-content p {
    font-size: var(--font-lg);
    opacity: 0.9;
    margin: 0;
}

/* Photo Gallery Section */
.photo-gallery-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 50%, var(--bg-light) 100%);
}

.gallery-header {
    margin-bottom: var(--spacing-3xl);
}

.gallery-title {
    font-size: var(--font-3xl);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.gallery-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-base);
}

/* Photo Gallery */
.photo-gallery {
    margin: 0 calc(-1 * var(--spacing-md));
}

.photo-item {
    margin-bottom: var(--spacing-2xl);
}

.photo-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
    background: var(--bg-light);
}

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

.photo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-base);
}

.photo-wrapper:hover .photo-image {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none; /* Allow clicks to pass through */
}

.photo-wrapper:hover .photo-overlay {
    opacity: 1;
}

.photo-overlay-content {
    color: var(--text-white);
    text-align: center;
}

.photo-overlay-content i {
    font-size: var(--font-3xl);
    margin-bottom: var(--spacing-sm);
}

.photo-overlay-content span {
    font-size: var(--font-sm);
    font-weight: var(--font-medium);
}

.photo-caption {
    padding: var(--spacing-md);
    background: var(--bg-white);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    text-align: center;
}

.photo-caption p {
    margin: 0;
    color: var(--gray-600);
    font-size: var(--font-sm);
    font-style: italic;
}

/* Photo Modal */
.modal-photo-container {
    margin-bottom: var(--spacing-md);
}

.modal-photo {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.modal-photo-caption {
    margin-top: var(--spacing-md);
}

.modal-photo-caption p {
    color: var(--gray-600);
    font-style: italic;
    margin: 0;
}

.modal-photo-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    pointer-events: none;
}

.btn-nav {
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    pointer-events: all;
}

.btn-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

/* No Photos State */
.no-photos {
    padding: var(--spacing-4xl) var(--spacing-2xl);
}

.no-photos-icon {
    font-size: var(--font-5xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.6;
}

.no-photos-title {
    font-size: var(--font-3xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.no-photos-description {
    color: var(--text-secondary);
    font-size: var(--font-lg);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   ULTRA SMALL DEVICES (425px and down)
   ======================================== */

@media (max-width: 425px) {
    /* General Container Fixes */
    .container,
    .container-fluid,
    .section-container {
        padding: 0 10px;
    }
    
    /* Typography Fixes */
    h1, h2, h3, h4, h5, h6 {
        font-size: 0.9em;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    /* Button Fixes */
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    /* Card Fixes */
    .card,
    .card-modern,
    .course-card-modern,
    .service-card,
    .testimonial-card {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .card-title,
    .course-title,
    .service-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .card-text,
    .service-description,
    .testimonial-message {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Grid Layout Fixes */
    .grid,
    .services-grid,
    .courses-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Image Fixes */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .card-image,
    .course-card-image,
    .news-card-image {
        height: 120px;
    }
    
    /* Form Fixes */
    .form-control,
    .form-select,
    .form-textarea {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    /* Spacing Fixes */
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    /* Navigation Fixes */
    .modern-navigation {
        padding: 8px 0;
    }
    
    /* Footer Fixes */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-links {
        font-size: 0.75rem;
    }
    
    /* Hero Section Fixes */
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* About Section Fixes */
    .about-section {
        padding: 40px 0;
    }
    
    .about-image {
        height: 200px;
    }
    
    /* Testimonials Fixes */
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    /* News Section Fixes */
    .news-section {
        padding: 40px 0;
    }
    
    .news-card {
        margin-bottom: 15px;
    }
    
    /* Process Section Fixes */
    .process-section {
        padding: 40px 0;
    }
    
    .step-content {
        padding: 20px 15px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* CTA Section Fixes */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content {
        padding: 30px 15px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    /* Affiliation Section Fixes */
    .affiliation-section {
        padding: 40px 0;
    }
    
    .affiliation-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 150px;
        margin: 0 auto;
    }
    
    .affiliation-logo {
        height: 40px;
    }
}
