/* Global Reset and Variables */
:root {
    /* Color System */
    --background: #0f172a;
    --foreground: #f8fafc;
    --primary: #ff7e5f;
    --secondary: #feb47b;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;

    /* Breakpoints */
    --mobile: 320px;
    --mobile-max: 767px;
    --tablet: 768px;
    --tablet-max: 1023px;
    --desktop: 1024px;

    /* Touch Targets */
    --touch-target-min: 44px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Touch Action Support */
* {
    touch-action: manipulation;
}

button,
input,
select,
textarea,
a,
.clickable {
    touch-action: manipulation;
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
}

/* Mobile-first Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

body {
    background-color: var(--background);
    color: var(--foreground);
    line-height: var(--line-height);
    font-size: var(--font-size-base);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    height: 70vh;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-slider {
    position: relative;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero-slide-content {
    max-width: 600px;
    color: white;
    animation: slideInLeft 0.8s ease-out;
}

.hero-slide-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-slide-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.hero-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.hero-slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-nav.prev {
    left: 20px;
}

.hero-slider-nav.next {
    right: 20px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Slider Responsive */
@media (max-width: 768px) {
    .hero-slider-section {
        height: 50vh;
        max-height: 400px;
        margin-bottom: 30px;
    }

    .hero-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-slider-nav.prev {
        left: 10px;
    }

    .hero-slider-nav.next {
        right: 10px;
    }

    .hero-slide-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 15px;
    }

    .hero-slide-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-slide-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: 40vh;
        max-height: 300px;
    }

    .hero-slide-content {
        max-width: 90%;
    }

    .hero-slide-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-slide-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-slider-dots {
        bottom: 10px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

/* Beautiful Hero Slider Styles */
.hero {
    position: relative;
    min-height: 70vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
}

.hero-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

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

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out;
}

.slide-content p {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6);
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

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

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

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

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

/* Search Section */
.search-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 40px 0;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
}

.search-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.search-tabs {
    display: flex;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 5px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #666;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.search-form {
    display: block;
}

.search-row {
    display: flex;
    gap: 15px;
    align-items: end;
    flex-wrap: nowrap;
}

.search-group {
    flex: 1;
    min-width: 180px;
}

.search-group.search-input-group {
    flex: 2;
    min-width: 250px;
}

.search-btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.search-input, .search-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus, .search-select:focus {
    outline: none;
    border-color: #ff7e5f;
    box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.1);
}

.search-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
}

.search-cta {
    text-align: center;
    margin-top: 20px;
}

/* Simple Hero Section */
.simple-hero {
    position: relative;
    min-height: 50vh;
    max-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Enhanced Search Section */
.enhanced-search-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.search-header {
    text-align: center;
    margin-bottom: 50px;
}

.search-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.search-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.search-tab {
    padding: 12px 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
}

.search-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.search-tab.active {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-color: #ff7e5f;
    color: white;
}

.search-tab i {
    font-size: 1.1rem;
}

.search-content {
    position: relative;
}

.search-panel {
    display: none;
}

.search-panel.active {
    display: block;
}

.advanced-search-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
    margin-bottom: 30px;
}

.search-field {
    position: relative;
}

.search-field.search-field-main {
    grid-column: span 1;
}

.search-input-main,
.search-select-main {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.search-input-main::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-select-main option {
    background: #2c3e50;
    color: white;
}

.search-input-main:focus,
.search-select-main:focus {
    outline: none;
    border-color: #ff7e5f;
    background: rgba(255, 255, 255, 0.15);
}

.search-submit-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    white-space: nowrap;
}

.search-submit-btn:hover {
    transform: translateY(-2px);
}

.quick-filters {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: #2c3e50;
}

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-chip:hover,
.filter-chip.active {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    color: white;
    border-color: #ff7e5f;
}

.search-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-item i {
    color: #ff7e5f;
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }

    .slide {
        height: 100%;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .slider-control {
        padding: 12px 16px;
        font-size: 1.2rem;
    }

    .slider-control.prev {
        left: 15px;
    }

    .slider-control.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

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

    /* Enhanced search section mobile responsiveness */
    .enhanced-search-section {
        padding: 60px 0;
    }

    .search-header {
        margin-bottom: 30px;
    }

    .search-tabs {
        max-width: 300px;
    }

    .search-tab {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .search-tab i {
        font-size: 1rem;
    }

    .advanced-search-form {
        padding: 25px;
    }

    .search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .search-field {
        min-width: 100%;
    }

    .search-field.search-field-main {
        min-width: 100%;
    }

    .search-input-main,
    .search-select-main {
        padding: 15px 20px 15px 45px;
    }

    .search-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }

    .quick-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .filter-chips {
        width: 100%;
        justify-content: flex-start;
    }

    .search-stats {
        gap: 20px;
    }

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

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

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

    .slider-control {
        padding: 10px 14px;
        font-size: 1rem;
    }
}

body {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: #fff;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
}

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

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff7e5f;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ff7e5f;
    transition: width 0.3s ease;
}

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

.nav-menu a.active {
    color: #ff7e5f;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Alert Styles */
.alert {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 1001;
    max-width: 300px;
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.alert-error {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Search Section */
.search-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 35px;
    margin: 40px 0;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #ff7e5f;
    border-bottom-color: #ff7e5f;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.search-btn {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: fit-content;
    align-self: end;
    white-space: nowrap;
}

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

.search-group {
    display: flex;
    flex-direction: column;
}

.search-input,
.search-select {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus,
.search-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #ff7e5f;
}

.search-select option {
    background: #2c3e50;
    color: #fff;
}

/* Slider Section */
.slider-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000;
}

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

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

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff7e5f;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    padding: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #ff7e5f;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.dot.active,
.dot:hover {
    background: #ff7e5f;
}

/* Online Courses Section */
.online-courses-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.8), rgba(178, 31, 31, 0.8));
    position: relative;
}

.online-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.online-course-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.online-course-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff7e5f;
    box-shadow: 0 20px 40px rgba(255, 126, 95, 0.3);
}

.online-course-header {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    padding: 20px;
    text-align: center;
    position: relative;
}

.online-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff7e5f;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-icon {
    font-size: 3rem;
    color: white;
    margin-top: 10px;
}

.online-course-content {
    padding: 30px;
}

.online-course-content .course-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff7e5f;
}

.online-course-content .course-duration {
    opacity: 0.8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-course-content .course-description {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    text-align: center;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 126, 95, 0.2);
    transform: translateY(-2px);
}

.feature i {
    display: block;
    font-size: 1.5rem;
    color: #ff7e5f;
    margin-bottom: 8px;
}

.feature span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.online-course-content .course-fee {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff7e5f;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .online-courses-grid {
        grid-template-columns: 1fr;
    }

    .course-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        text-align: left;
        padding: 10px 15px;
    }

    .feature i {
        display: inline;
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .feature span {
        display: inline;
        font-size: 0.9rem;
    }
}

.hero-content {
    max-width: 800px;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-button {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Country Slider */
.countries-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countries Slider Container */
.country-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.country-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
    transition: transform 0.3s ease;
}

.country-item {
    flex: 0 0 calc(25% - 22.5px);
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Mobile responsive for countries slider */
@media (max-width: 768px) {
    .country-item {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }
}

@media (max-width: 480px) {
    .country-item {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
        padding: 20px 15px;
    }
}

.country-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Country Slider Controls */
.country-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-slider-control:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
}

.country-slider-control.prev {
    left: 0;
}

.country-slider-control.next {
    right: 0;
}

/* Slick Slider Arrows */
.country-slider .slick-prev,
.country-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 126, 95, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.country-slider .slick-prev {
    left: -20px;
}

.country-slider .slick-next {
    right: -20px;
}

.country-slider .slick-prev:hover,
.country-slider .slick-next:hover {
    background: rgba(255, 126, 95, 1);
    transform: translateY(-50%) scale(1.1);
}

.country-slider .slick-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.country-slider .slick-dots li {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-slider .slick-dots li.slick-active {
    background: #ff7e5f;
    transform: scale(1.2);
}

.country-slider .slick-dots li button {
    display: none;
}

/* Simple CSS Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 126, 95, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1rem;
}

.slider-nav.prev {
    left: -20px;
}

.slider-nav.next {
    right: -20px;
}

.slider-nav:hover {
    background: rgba(255, 126, 95, 1);
    transform: translateY(-50%) scale(1.1);
}

/* When simple slider is initialized */
.country-slider.css-slider-initialized {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.country-slider.css-slider-initialized::-webkit-scrollbar {
    display: none;
}

.country-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #ff7e5f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.country-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.3);
}

.country-circle img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.country-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.country-courses {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Education Categories */
.categories-section {
    padding: 80px 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff7e5f;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff7e5f;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-description {
    opacity: 0.8;
    line-height: 1.6;
}

/* Featured Colleges */
.colleges-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

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

.college-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.college-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.college-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a2a6c;
}

.college-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.college-location {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Featured Courses */
.courses-section {
    padding: 80px 20px;
}

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

.course-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.course-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

.course-content {
    padding: 25px;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-duration {
    opacity: 0.8;
    margin-bottom: 15px;
}

.course-description {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-fee {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff7e5f;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 20px 20px;
    margin-top: 80px;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff7e5f;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #ff7e5f;
}

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

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

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

/* Compact Contact Info for Footer */
.compact-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-item i {
    color: #ff7e5f;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-text strong {
    color: #ff7e5f;
    font-weight: 600;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .categories-grid,
    .colleges-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .country-circle {
        width: 100px;
        height: 100px;
    }

    .country-circle img {
        width: 60px;
        height: 60px;
    }

    .country-item {
        min-width: 150px;
    }

    .hero {
        min-height: 60vh;
    }

    .modal-content {
        width: 95%;
        margin: 10px auto;
        padding: 20px;
        max-height: calc(100vh - 20px);
    }

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

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

    /* Search Section Responsive */
    .search-container {
        padding: 20px;
        margin: 20px 0;
    }

    .search-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .tab-btn.active,
    .tab-btn:hover {
        border-bottom: none;
        border-left-color: #ff7e5f;
    }

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

    .search-input,
    .search-select,
    .search-btn {
        width: 100%;
    }

    /* Slider Responsive */
    .slider-section {
        height: 400px;
    }

    .slide-content {
        padding: 20px;
        max-width: 90%;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

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

    .slider-btn {
        padding: 15px;
        font-size: 1.2rem;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }
}

/* Floating animation */
.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-1000px) rotate(720deg); }
}

/* Individual Page Styles */
.page-header {
    margin-top: 80px;
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.page-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: #ff7e5f;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Country Detail Styles */
.country-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.country-info h2 {
    color: #ff7e5f;
    margin-bottom: 20px;
    font-size: 2rem;
}

.country-flag {
    text-align: center;
}

.country-flag img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #ff7e5f;
    margin-bottom: 20px;
}

/* Course Filter */
.course-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 126, 95, 0.3);
    border-color: #ff7e5f;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ff7e5f;
}

/* Dropdown option styling */
.form-group select option {
    background: #2c3e50;
    color: #fff;
    padding: 10px;
}

.form-group select option:hover {
    background: #34495e;
    color: #ff7e5f;
}

.form-group select option:checked {
    background: #ff7e5f;
    color: #fff;
}

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

.submit-btn {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* About Section */
.about-content {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.team-section {
    margin-top: 60px;
}

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

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #ff7e5f;
}

/* Admin Panel Styles */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Admin dropdown styling */
.admin-content select option {
    background: #2c3e50;
    color: #fff;
    padding: 8px;
}

.admin-content select option:hover {
    background: #34495e;
    color: #ff7e5f;
}

.admin-content select option:checked {
    background: #ff7e5f;
    color: #fff;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.admin-menu {
    display: flex;
    gap: 20px;
}

.admin-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.admin-menu a:hover,
.admin-menu a.active {
    background: rgba(255, 126, 95, 0.3);
}

.admin-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-table th {
    background: rgba(255, 126, 95, 0.3);
    font-weight: 600;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #ff7e5f;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

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

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
}

.modal-content {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    margin: 20px auto;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    min-height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
}

.close:hover {
    color: #ff7e5f;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.9), rgba(178, 31, 31, 0.9));
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff7e5f;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(178, 31, 31, 0.8), rgba(253, 187, 45, 0.8));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid #ff7e5f;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #fff;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff7e5f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    margin: 0;
    color: #ff7e5f;
}

.testimonial-info p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Events Section */
.events-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.8), rgba(253, 187, 45, 0.8));
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.event-date {
    background: #ff7e5f;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.event-date .day {
    font-size: 1.5rem;
    display: block;
}

.event-content {
    padding: 25px;
}

.event-title {
    color: #ff7e5f;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.event-description {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-location {
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
}

.event-location i {
    margin-right: 5px;
    color: #ff7e5f;
}

/* Quick Contact Section */
.quick-contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(178, 31, 31, 0.9), rgba(26, 42, 108, 0.9));
}

.quick-contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
}

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

.contact-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-item i {
    font-size: 2rem;
    color: #ff7e5f;
    margin-bottom: 15px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #ff7e5f;
}

.contact-item p {
    color: #fff;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.8), rgba(178, 31, 31, 0.8));
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: bold;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: #ff7e5f;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #ff7e5f;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #fff;
    line-height: 1.6;
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Enhanced UI/UX Improvements */

/* Enhanced Search Section */
.search-tabs {
    display: flex;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 5px;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    flex: 1;
    text-align: center;
}

.tab-btn.active,
.tab-btn:hover {
    color: #fff;
    background: rgba(255, 126, 95, 0.8);
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

.search-input,
.search-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus,
.search-select:focus {
    outline: none;
    border-color: #ff7e5f;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 126, 95, 0.3);
}

.search-btn {
    background: linear-gradient(45deg, #ff7e5f, #ff6b9d);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
}

/* Enhanced Cards */
.college-card,
.course-card,
.online-course-card,
.category-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.college-card:hover,
.course-card:hover,
.online-course-card:hover,
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* Enhanced Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff7e5f, #ff6b9d);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced CTA Buttons */
.cta-button {
    background: linear-gradient(45deg, #ff7e5f, #ff6b9d);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 126, 95, 0.4);
    color: white;
    text-decoration: none;
}

/* Enhanced Countries Section */
.countries-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.3), rgba(178, 31, 31, 0.3));
    position: relative;
}

.countries-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

.countries-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 0 20px;
}

.country-slide {
    flex: 0 0 calc(25% - 22.5px);
    text-align: center;
    padding: 20px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ff7e5f;
    color: #ff7e5f;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: #ff7e5f;
    color: white;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.countries-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.country-slide:hover {
    transform: scale(1.05);
}

.country-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #ff7e5f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 126, 95, 0.2);
}

.country-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 126, 95, 0.4);
    border-color: #ff6b9d;
}

.country-circle img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.country-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.country-courses {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 126, 95, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 126, 95, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 126, 95, 0);
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    /* Countries Slider Tablet */
    .country-slide {
        flex: 0 0 calc(33.333% - 20px);
    }
}

/* Mobile responsiveness for new elements */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    /* Countries Slider Mobile */
    .country-slide {
        flex: 0 0 calc(50% - 15px);
    }

    /* Enhanced Search Section Mobile */
    .search-section {
        padding: 20px 15px 30px;
    }

    .search-container {
        padding: 15px;
        margin: 15px 0;
        border-radius: 15px;
        max-width: 100%;
    }

    .search-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        padding: 5px;
        justify-content: center;
    }

    .tab-btn {
        margin-right: 0;
        margin-bottom: 0;
        padding: 10px 15px;
        border-radius: 8px;
        font-size: 0.85rem;
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    .search-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .search-input,
    .search-select {
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .search-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
        width: 100%;
        margin-top: 10px;
    }

    .countries-section {
        padding: 60px 15px;
    }

    .country-circle {
        width: 100px;
        height: 100px;
    }

    .country-circle img {
        width: 60px;
        height: 60px;
    }

    .country-item {
        min-width: 150px;
    }

    /* Countries slider mobile fixes */
    .country-slider {
        padding: 20px 0;
        overflow: hidden;
    }

    .country-slider .slick-list {
        overflow: visible;
    }

    .country-slider .slick-track {
        display: flex;
        gap: 15px;
    }

    .country-slider .slick-slide {
        margin: 0 5px;
    }

    .country-circle {
        width: 80px;
        height: 80px;
    }

    .country-circle img {
        width: 50px;
        height: 50px;
    }

    .country-name {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .country-courses {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .search-section {
        padding: 20px 10px;
    }

    .search-container {
        padding: 15px;
        margin: 15px 0;
        border-radius: 12px;
    }

    .search-tabs {
        padding: 6px;
        gap: 6px;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        border-radius: 6px;
    }

    .search-input,
    .search-select {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .search-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .search-cta {
        margin-top: 15px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    /* Countries slider fixes for 480px */
    .country-slider {
        padding: 15px 0;
    }

    .country-slider .slick-track {
        gap: 10px;
    }

    .country-slider .slick-slide {
        margin: 0 3px;
    }

    .country-circle {
        width: 70px;
        height: 70px;
    }

    .country-circle img {
        width: 40px;
        height: 40px;
    }

    .country-name {
        font-size: 0.9rem;
    }

    .country-courses {
        font-size: 0.75rem;
    }
}

/* Enhanced Hero Slider */
.hero-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
    }
}

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

.slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    animation: slideZoom 20s ease-in-out infinite;
}

.slide.active {
    z-index: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 42, 108, 0.4), rgba(178, 31, 31, 0.4));
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.slide-content .container {
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.slide-content p {
    font-size: clamp(1rem, 3vw, 1.4rem);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff7e5f, #ff6b9d);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 126, 95, 0.4);
    color: white;
    text-decoration: none;
}

.hero-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-control:hover {
    background: rgba(255, 126, 95, 0.8);
    transform: translateY(-50%) scale(1.1);
    border-color: #ff7e5f;
}

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

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

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

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

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

.dot:hover {
    background: rgba(255, 126, 95, 0.8);
    border-color: white;
}

/* Mobile responsiveness for hero slider */
@media (max-width: 768px) {
    .slide {
        height: 70vh;
        background-position: center top;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .slider-control {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .slider-control.prev {
        left: 10px;
    }

    .slider-control.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .slide {
        animation: none;
    }

    .hero-cta {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .slide-content .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .slide {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-cta {
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    .slider-control {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .slider-control.prev {
        left: 5px;
    }

    .slider-control.next {
        right: 5px;
    }
}

/* Shadcn-Inspired Mobile-First Design System */

/* Global Reset and Variables */
:root {
    /* Color System */
    --background: #0f172a;
    --foreground: #f8fafc;
    --card: #1e293b;
    --card-foreground: #f8fafc;
    --popover: #1e293b;
    --popover-foreground: #f8fafc;
    --primary: #ff7e5f;
    --primary-foreground: #ffffff;
    --secondary: #334155;
    --secondary-foreground: #f8fafc;
    --muted: #334155;
    --muted-foreground: #94a3b8;
    --accent: #334155;
    --accent-foreground: #f8fafc;
    --destructive: #ef4444;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #334155;
    --ring: #ff7e5f;
    --radius: 0.5rem;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;

    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Breakpoints */
    --mobile: 320px;
    --mobile-large: 480px;
    --tablet: 768px;
    --tablet-large: 1024px;
    --desktop: 1280px;
}

/* Global Mobile Reset */
* {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Enhanced Mobile Menu */
@media (max-width: 768px) {
    /* Fix header mobile */
    .header {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        margin: 0;
        list-style: none;
    }

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

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        position: relative;
    }

    .nav-menu a:hover {
        background: rgba(255, 126, 95, 0.3);
        border-color: #ff7e5f;
        transform: none;
        color: #ff7e5f;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-menu {
        display: block;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1001;
        padding: 5px;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .mobile-menu:hover {
        color: #ff7e5f;
    }

    .mobile-menu.active {
        color: #ff7e5f;
    }

    /* Fix page layouts */
    .page-header {
        margin-top: 80px;
        padding: 40px 15px;
    }

    .page-content {
        padding: 40px 15px;
        max-width: 100%;
    }

    /* Fix container widths */
    .container,
    .search-container,
    .contact-form,
    .countries-section,
    .colleges-section,
    .courses-section {
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    /* Fix grid layouts */
    .countries-grid,
    .colleges-grid,
    .courses-grid,
    .team-grid,
    .testimonials-grid,
    .events-grid,
    .stats-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    /* Fix search section */
    .search-section {
        padding: 30px 15px;
    }

    .search-container {
        padding: 20px;
        border-radius: 15px;
    }

    .search-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px;
    }

    .tab-btn {
        flex: 1;
        min-width: 100px;
        padding: 12px 15px;
        font-size: 0.9rem;
        margin: 0;
    }

    .search-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Fix cards and responsive elements */
    .college-card,
    .course-card,
    .online-course-card,
    .testimonial-card,
    .event-card,
    .stat-item,
    .contact-item,
    .team-member {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    /* Fix forms */
    .form-group input,
    .form-group textarea,
    .form-group select,
    .search-input,
    .search-select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 15px;
        font-size: 16px;
        border-radius: 10px;
    }

    /* Fix buttons */
    .btn,
    .cta-button,
    .submit-btn,
    .search-btn {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 25px;
        box-sizing: border-box;
        margin: 10px 0;
    }

    /* Fix tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -15px;
        padding: 0 15px;
    }

    .admin-table,
    .slider-table {
        min-width: 600px;
        font-size: 0.9rem;
    }

    /* Fix modals */
    .modal {
        padding: 10px;
        overflow-y: auto;
    }

    .modal-content,
    .modal-dialog {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        margin: 10px auto;
        box-sizing: border-box;
    }

    .modal-body {
        padding: 20px;
    }

    /* Fix images and media */
    img {
        max-width: 100%;
        height: auto;
        box-sizing: border-box;
    }

    .country-circle,
    .team-member img,
    .testimonial-avatar {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }

    .country-circle img {
        width: 50px;
        height: 50px;
    }

    /* Fix text */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.3rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Fix spacing */
    .section {
        padding: 60px 0;
    }

    /* Fix floating elements */
    .floating-elements {
        display: none;
    }

    /* Fix hero slider */
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* Fix countries slider */
    .countries-slider-container {
        overflow: hidden;
    }

    .country-slide {
        flex: 0 0 calc(50% - 15px);
        min-width: 150px;
    }

    /* Fix footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Ultra compact mobile */
    .header {
        padding: 8px 0;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .mobile-menu {
        font-size: 1.3rem;
    }

    .nav-menu {
        padding: 15px;
        gap: 8px;
    }

    .nav-menu a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .page-header,
    .page-content {
        padding: 30px 10px;
    }

    .container,
    .search-container,
    .contact-form {
        padding: 0 10px;
    }

    .search-section {
        padding: 20px 10px;
    }

    .search-container {
        padding: 15px;
    }

    .search-tabs {
        gap: 5px;
        padding: 5px;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 0.85rem;
        min-width: 80px;
    }

    .countries-grid,
    .colleges-grid,
    .courses-grid {
        gap: 15px;
        padding: 0 5px;
    }

    .country-slide {
        flex: 0 0 calc(100% - 10px);
    }

    .country-circle {
        width: 70px;
        height: 70px;
    }

    .country-circle img {
        width: 40px;
        height: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }

    .btn,
    .cta-button,
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 14px;
    }

    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }

    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    /* Fix alert boxes */
    .alert {
        right: 10px;
        top: 80px;
        max-width: calc(100% - 20px);
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container,
.row,
.col,
[class*="col-"] {
    max-width: 100%;
    overflow-x: hidden;
}

/* Touch-friendly controls */
input,
button,
select,
textarea {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="submit"],
button {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}

/* About Page Mobile-Enhanced Styles */

/* About Section Base */
.about-section {
    padding: 80px 0;
    margin-bottom: 40px;
}

/* Breadcrumb Enhancement */
.breadcrumb-link {
    color: #ff7e5f;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}

.breadcrumb-link:hover {
    background: rgba(255, 126, 95, 0.2);
    transform: translateY(-1px);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 5px;
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
}

/* Mission Section */
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 30px;
    padding: 60px 40px;
}

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

.story-content {
    padding: 20px;
}

.story-visual {
    text-align: center;
}

.story-icon-container {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.2), rgba(255, 107, 157, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 126, 95, 0.3);
    box-shadow: 0 15px 35px rgba(255, 126, 95, 0.2);
}

.story-icon-container:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 126, 95, 0.3);
}

.story-icon {
    font-size: 6rem;
    color: #ff7e5f;
    animation: float 3s ease-in-out infinite;
}

/* Values Section */
.values-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7e5f, #ff6b9d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff7e5f, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Features Section */
.why-choose-section {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.15), rgba(255, 107, 157, 0.15));
    border-radius: 30px;
    padding: 60px 40px;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent, rgba(255, 126, 95, 0.2));
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-item:hover::after {
    transform: translate(20px, -20px) scale(1.2);
}

.feature-icon {
    color: #ff7e5f;
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    color: #ff6b9d;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7e5f, #ff6b9d);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7e5f, #ff6b9d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.3);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 30px;
    padding: 60px 40px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(255, 126, 95, 0.3);
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7e5f, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.3), rgba(255, 107, 157, 0.3));
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-description {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(45deg, #ff7e5f, #ff6b9d);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 126, 95, 0.3);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 126, 95, 0.4);
    color: white;
    text-decoration: none;
}

.cta-button:hover::before {
    left: 100%;
}

/* Mobile Responsiveness for About Page */

/* Tablet Styles */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .story-content {
        order: 2;
    }

    .story-visual {
        order: 1;
    }

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

    .services-grid,
    .testimonials-slider {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .about-section {
        padding: 60px 0;
    }

    .story-section,
    .values-section,
    .why-choose-section,
    .services-section,
    .testimonials-section,
    .cta-section {
        padding: 40px 25px;
    }

    .story-icon-container {
        width: 200px;
        height: 200px;
    }

    .story-icon {
        font-size: 5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .mission-content {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .story-section,
    .values-section,
    .why-choose-section,
    .services-section,
    .testimonials-section,
    .cta-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .story-grid {
        gap: 30px;
    }

    .values-grid,
    .features-grid,
    .services-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .story-icon-container {
        width: 150px;
        height: 150px;
    }

    .story-icon {
        font-size: 4rem;
    }

    .value-card,
    .feature-item,
    .service-card,
    .testimonial-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .value-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .value-title,
    .feature-title,
    .service-title {
        font-size: 1.2rem;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }

    /* Touch-friendly adjustments */
    .value-card,
    .feature-item,
    .service-card,
    .testimonial-card {
        min-height: auto;
        margin-bottom: 5px;
    }

    /* Enhanced mobile touch targets */
    .value-card:active,
    .feature-item:active,
    .service-card:active,
    .testimonial-card:active {
        transform: scale(0.98);
    }
}

/* Ultra Compact Mobile */
@media (max-width: 480px) {
    .about-section {
        padding: 30px 0;
        margin-bottom: 20px;
    }

    .mission-content {
        padding: 20px 15px;
    }

    .story-section,
    .values-section,
    .why-choose-section,
    .services-section,
    .testimonials-section,
    .cta-section {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .story-icon-container {
        width: 120px;
        height: 120px;
    }

    .story-icon {
        font-size: 3rem;
    }

    .value-card,
    .feature-item,
    .service-card,
    .testimonial-card {
        padding: 20px 15px;
    }

    .value-icon,
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .value-title,
    .feature-title,
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .value-description,
    .feature-description,
    .service-description,
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Compact spacing */
    .values-grid,
    .features-grid,
    .services-grid,
    .testimonials-slider {
        gap: 15px;
    }

    .story-grid {
        gap: 25px;
    }
}

/* Mobile animations and performance */
@media (max-width: 768px) {
    /* Disable complex animations on mobile for performance */
    .story-icon-container,
    .value-card,
    .feature-item,
    .service-card,
    .testimonial-card {
        transition: transform 0.2s ease, background 0.2s ease;
    }

    /* Optimize hover states for touch */
    .value-card:hover,
    .feature-item:hover,
    .service-card:hover,
    .testimonial-card:hover {
        transform: translateY(-3px);
    }

    /* Reduce blur effects on mobile */
    .mission-content,
    .value-card,
    .feature-item,
    .service-card,
    .testimonial-card,
    .cta-section {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.15);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .value-card,
    .feature-item,
    .service-card,
    .testimonial-card {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .value-icon,
    .service-icon,
    .testimonial-avatar {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .value-card,
    .feature-item,
    .service-card,
    .testimonial-card,
    .story-icon-container,
    .cta-button {
        transition: none;
        animation: none;
    }

    .story-icon {
        animation: none;
    }
}

/* Accessibility enhancements */
.value-card:focus-within,
.feature-item:focus-within,
.service-card:focus-within,
.testimonial-card:focus-within {
    outline: 3px solid #ff7e5f;
    outline-offset: 2px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Countries Page Mobile-Enhanced Styles */

/* Countries Section Base */
.countries-section {
    padding: 80px 0;
    margin-bottom: 40px;
    position: relative;
}

/* Country Detail View */
.country-detail-section {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.1), rgba(255, 107, 157, 0.1));
    border-radius: 30px;
    padding: 60px 40px;
    margin-bottom: 40px;
}

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

.country-name {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.country-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff7e5f, #ff6b9d);
    border-radius: 2px;
}

.country-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.country-highlights {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.highlight-title {
    color: #ff7e5f;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.highlight-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 126, 95, 0.2);
    transform: translateX(10px);
}

.benefit-icon {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.country-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff7e5f, #ff6b9d);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ff7e5f;
    color: #ff7e5f;
}

.cta-button.secondary:hover {
    background: rgba(255, 126, 95, 0.2);
    color: white;
}

.flag-container {
    text-align: center;
    position: relative;
}

.flag-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 5px solid #ff7e5f;
    box-shadow: 0 15px 35px rgba(255, 126, 95, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.flag-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(255, 126, 95, 0.4);
}

/* Countries Grid */
.countries-grid-section {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.3), rgba(178, 31, 31, 0.3));
    border-radius: 30px;
    padding: 60px 40px;
    margin-bottom: 40px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.country-card.enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.country-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 126, 95, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country-card.enhanced:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.country-card.enhanced:hover::before {
    opacity: 1;
}

.country-flag-container {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.country-flag-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff7e5f;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.2);
}

.country-card.enhanced:hover .country-flag-image {
    transform: scale(1.1) rotate(5deg);
    border-color: #ff6b9d;
}

.country-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

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

/* Benefits Section */
.benefits-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
    margin-bottom: 40px;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 126, 95, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover::after {
    transform: scale(1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff7e5f, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.3);
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.2), rgba(255, 107, 157, 0.2));
    border-radius: 30px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7e5f, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 126, 95, 0.4);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Enhanced College Cards */
.college-card.enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.college-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff7e5f, #ff6b9d);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.college-card.enhanced:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.college-card.enhanced:hover::before {
    transform: translateY(0);
}

.college-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.college-ranking {
    color: #ff7e5f;
    font-weight: 600;
    margin: 15px 0;
    font-size: 0.95rem;
}

.college-actions {
    margin-top: 20px;
}

.cta-button.small {
    padding: 12px 25px;
    font-size: 0.9rem;
    border-radius: 25px;
}

/* Mobile Responsiveness for Countries Page */

/* Tablet Styles */
@media (max-width: 1024px) {
    .country-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .country-info {
        order: 2;
    }

    .country-flag {
        order: 1;
    }

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

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }

    .country-detail-section,
    .countries-grid-section,
    .benefits-section,
    .process-section {
        padding: 40px 25px;
    }

    .flag-image {
        width: 250px;
        height: 250px;
    }

    .country-name {
        font-size: 2.5rem;
    }

    .country-actions {
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .countries-section {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .country-detail-section,
    .countries-grid-section,
    .benefits-section,
    .process-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .country-detail {
        gap: 30px;
    }

    .countries-grid,
    .benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flag-image {
        width: 200px;
        height: 200px;
    }

    .country-name {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .country-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .country-highlights {
        padding: 20px;
        margin-bottom: 20px;
    }

    .highlight-title {
        font-size: 1.3rem;
    }

    .benefit-item {
        padding: 12px;
        margin-bottom: 12px;
    }

    .country-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
    }

    .country-card.enhanced,
    .benefit-card,
    .process-step,
    .college-card.enhanced {
        padding: 25px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .benefit-icon,
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .country-flag-image {
        width: 100px;
        height: 100px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    /* Touch-friendly adjustments */
    .country-card.enhanced,
    .benefit-card,
    .process-step,
    .college-card.enhanced {
        min-height: auto;
        margin-bottom: 5px;
    }

    /* Enhanced mobile touch targets */
    .country-card.enhanced:active,
    .benefit-card:active,
    .process-step:active,
    .college-card.enhanced:active {
        transform: scale(0.98);
    }
}

/* Ultra Compact Mobile */
@media (max-width: 480px) {
    .countries-section {
        padding: 30px 0;
        margin-bottom: 20px;
    }

    .country-detail-section,
    .countries-grid-section,
    .benefits-section,
    .process-section {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .country-detail {
        gap: 25px;
    }

    .flag-image {
        width: 150px;
        height: 150px;
    }

    .country-name {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .country-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .country-highlights {
        padding: 15px;
    }

    .highlight-title {
        font-size: 1.2rem;
    }

    .benefit-item {
        padding: 10px;
        margin-bottom: 10px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 0;
    }

    .country-card.enhanced,
    .benefit-card,
    .process-step,
    .college-card.enhanced {
        padding: 20px 15px;
    }

    .country-flag-image {
        width: 80px;
        height: 80px;
    }

    .country-title {
        font-size: 1.3rem;
    }

    .benefit-title,
    .step-title {
        font-size: 1.2rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .benefit-description,
    .step-description,
    .country-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Compact spacing */
    .countries-grid,
    .benefits-grid,
    .process-grid {
        gap: 15px;
    }

    .country-detail {
        gap: 20px;
    }
}

/* Mobile animations and performance */
@media (max-width: 768px) {
    /* Disable complex animations on mobile for performance */
    .country-card.enhanced,
    .benefit-card,
    .process-step,
    .college-card.enhanced {
        transition: transform 0.2s ease, background 0.2s ease;
    }

    /* Optimize hover states for touch */
    .country-card.enhanced:hover,
    .benefit-card:hover,
    .process-step:hover,
    .college-card.enhanced:hover {
        transform: translateY(-3px);
    }

    /* Reduce blur effects on mobile */
    .country-highlights,
    .country-card.enhanced,
    .benefit-card,
    .process-step,
    .college-card.enhanced {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.15);
    }

    .country-detail-section,
    .process-section {
        backdrop-filter: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .country-card.enhanced,
    .benefit-card,
    .process-step,
    .college-card.enhanced {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .country-flag-image,
    .benefit-icon,
    .step-number {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .country-card.enhanced,
    .benefit-card,
    .process-step,
    .college-card.enhanced,
    .flag-image,
    .country-flag-image,
    .benefit-icon,
    .step-number {
        transition: none;
        animation: none;
    }
}

/* Accessibility enhancements */
.country-card.enhanced:focus-within,
.benefit-card:focus-within,
.process-step:focus-within,
.college-card.enhanced:focus-within {
    outline: 3px solid #ff7e5f;
    outline-offset: 2px;
}

/* Colleges Page - Enhanced Mobile Styles */
.colleges-section {
    padding: 60px 20px;
    position: relative;
}

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

/* Filter Section */
.filter-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.filter-btn.active {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-color: #ff7e5f;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

.filter-btn .flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

/* Enhanced Colleges Grid */
.colleges-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.college-card.enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.college-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.college-card.enhanced:hover::before {
    transform: scaleX(1);
}

.college-card.enhanced:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.college-card.enhanced .college-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.college-card.enhanced .college-logo i {
    font-size: 2rem;
    color: #ff7e5f;
}

.college-card.enhanced .college-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.college-card.enhanced:hover .college-logo {
    transform: scale(1.1);
    background: rgba(255, 126, 95, 0.2);
}

.college-card.enhanced .college-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.college-card.enhanced .college-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff7e5f;
    margin: 0;
}

.college-card.enhanced .college-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0.9;
    font-size: 0.95rem;
}

.college-card.enhanced .college-country {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0.8;
    font-size: 0.9rem;
}

.college-card.enhanced .country-flag {
    width: 16px;
    height: 12px;
    border-radius: 1px;
    object-fit: cover;
}

.college-card.enhanced .college-ranking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ff7e5f;
    font-weight: bold;
    font-size: 0.95rem;
}

.college-card.enhanced .college-description {
    color: #fff;
    opacity: 0.8;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
    flex-grow: 1;
}

.college-card.enhanced .college-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    color: #ff7e5f;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.feature-description {
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
}

/* Requirements Section */
.requirements-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
}

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

.requirement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.requirement-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.requirement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.requirement-card:hover .requirement-icon {
    transform: scale(1.1) rotate(5deg);
}

.requirement-title {
    color: #ff7e5f;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

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

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0.9;
    line-height: 1.5;
}

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

.requirement-check {
    color: #28a745;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Support Section */
.support-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    text-align: center;
}

.support-header {
    margin-bottom: 40px;
}

.support-subtitle {
    color: #fff;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.support-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
}

.support-title {
    color: #ff7e5f;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.support-description {
    color: #fff;
    opacity: 0.9;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Colleges Page Mobile Responsiveness */
@media (max-width: 768px) {
    .colleges-section {
        padding: 40px 15px;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .colleges-grid.enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .college-card.enhanced {
        padding: 25px 20px;
    }

    .college-card.enhanced .college-name {
        font-size: 1.2rem;
    }

    .features-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .feature-card,
    .requirement-card,
    .support-card {
        padding: 25px 20px;
    }

    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .colleges-section {
        padding: 30px 10px;
    }

    .filter-btn {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .college-card.enhanced {
        padding: 20px 15px;
    }

    .college-card.enhanced .college-name {
        font-size: 1.1rem;
    }

    .college-actions {
        flex-direction: column;
        gap: 8px;
    }

    .cta-button.small {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .support-card {
        padding: 20px 15px;
    }

    .support-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Performance optimization for mobile */
@media (max-width: 768px) {
    .college-card.enhanced,
    .feature-card,
    .requirement-card,
    .support-card {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.15);
    }

    .filter-section,
    .features-section,
    .requirements-section,
    .support-section {
        backdrop-filter: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .college-card.enhanced,
    .feature-card,
    .requirement-card,
    .support-card {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .filter-btn {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .feature-icon,
    .requirement-icon,
    .support-icon {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .college-card.enhanced,
    .feature-card,
    .requirement-card,
    .support-card,
    .filter-btn,
    .college-logo,
    .feature-icon,
    .requirement-icon,
    .support-icon {
        transition: none;
        animation: none;
    }
}

/* Accessibility enhancements */
.college-card.enhanced:focus-within,
.feature-card:focus-within,
.requirement-card:focus-within,
.support-card:focus-within,
.filter-btn:focus-within {
    outline: 3px solid #ff7e5f;
    outline-offset: 2px;
}

/* Courses Page - Enhanced Mobile Styles */
.courses-section {
    padding: 60px 20px;
    position: relative;
}

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

/* Filter Section */
.courses-section .filter-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
}

.courses-section .filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.courses-section .filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.courses-section .filter-btn.active {
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-color: #ff7e5f;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 126, 95, 0.4);
}

/* Enhanced Courses Grid */
.courses-grid.enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.course-card.enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.course-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card.enhanced:hover::before {
    transform: scaleX(1);
}

.course-card.enhanced:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.course-card.enhanced .course-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff7e5f;
    transition: all 0.3s ease;
}

.course-card.enhanced:hover .course-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 126, 95, 0.2);
}

.course-card.enhanced .course-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.course-card.enhanced .course-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ff7e5f;
    margin: 0;
}

.course-card.enhanced .course-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.course-card.enhanced .course-duration,
.course-card.enhanced .course-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    opacity: 0.9;
    font-size: 0.9rem;
}

.course-card.enhanced .course-description {
    color: #fff;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
    flex-grow: 1;
}

.course-card.enhanced .course-fee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff7e5f;
    font-weight: bold;
    font-size: 1rem;
}

.course-card.enhanced .course-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Categories Section */
.courses-section .categories-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 40px;
}

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

.courses-section .category-card.enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.courses-section .category-card.enhanced:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.courses-section .category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.3s ease;
}

.courses-section .category-card.enhanced:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.courses-section .category-title {
    color: #ff7e5f;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.courses-section .category-description {
    color: #fff;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.courses-section .category-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.courses-section .highlight-tag {
    background: rgba(255, 126, 95, 0.2);
    border: 1px solid rgba(255, 126, 95, 0.3);
    color: #ff7e5f;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Process Section */
.courses-section .process-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
}

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

.courses-section .process-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.courses-section .process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.courses-section .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.courses-section .process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.courses-section .step-title {
    color: #ff7e5f;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.courses-section .step-description {
    color: #fff;
    opacity: 0.9;
    line-height: 1.5;
}

/* Courses Page Mobile Responsiveness */
@media (max-width: 768px) {
    .courses-section {
        padding: 40px 15px;
    }

    .courses-section .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .courses-section .filter-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .courses-grid.enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-card.enhanced {
        padding: 25px 20px;
    }

    .course-card.enhanced .course-title {
        font-size: 1.2rem;
    }

    .course-card.enhanced .course-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .courses-section .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .courses-section .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .courses-section .process-step {
        padding: 25px 15px;
    }

    .courses-section .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .courses-section {
        padding: 30px 10px;
    }

    .courses-section .filter-btn {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .course-card.enhanced {
        padding: 20px 15px;
    }

    .course-card.enhanced .course-title {
        font-size: 1.1rem;
    }

    .course-actions {
        flex-direction: column;
        gap: 8px;
    }

    .cta-button.small {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .courses-section .category-highlights {
        flex-direction: column;
        align-items: center;
    }

    .courses-section .highlight-tag {
        width: 100%;
        justify-content: center;
    }

    .courses-section .process-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .courses-section .process-step {
        padding: 20px 15px;
    }

    .courses-section .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Performance optimization for mobile */
@media (max-width: 768px) {
    .course-card.enhanced,
    .courses-section .category-card.enhanced,
    .courses-section .process-step {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.15);
    }

    .courses-section .filter-section,
    .courses-section .categories-section,
    .courses-section .process-section {
        backdrop-filter: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .course-card.enhanced,
    .courses-section .category-card.enhanced,
    .courses-section .process-step {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .courses-section .filter-btn {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .courses-section .category-icon,
    .courses-section .step-number {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .course-card.enhanced,
    .courses-section .category-card.enhanced,
    .courses-section .process-step,
    .courses-section .filter-btn,
    .course-icon,
    .courses-section .category-icon,
    .courses-section .step-number {
        transition: none;
        animation: none;
    }
}

/* Accessibility enhancements */
.course-card.enhanced:focus-within,
.courses-section .category-card.enhanced:focus-within,
.courses-section .process-step:focus-within,
.courses-section .filter-btn:focus-within {
    outline: 3px solid #ff7e5f;
    outline-offset: 2px;
}

/* Contact Page Mobile-Enhanced Styles */

/* Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInDown 0.5s ease;
}

.alert-success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #86efac;
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}

/* Contact Section Base */
.contact-section {
    padding: 80px 0;
    margin-bottom: 40px;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Container */
.contact-form-container {
    width: 100%;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-align: center;
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff7e5f;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.2);
}

.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background: #1a1a2e;
    color: #fff;
}

/* Form Submit Button */
.form-submit {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Contact Information Container */
.contact-info-container {
    width: 100%;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.contact-info-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #fff;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.contact-info-text strong {
    color: #ff7e5f;
    font-weight: 600;
}

/* Social Media Links */
.contact-social {
    margin-top: 40px;
}

.contact-social-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 126, 95, 0.3);
}

/* Map Section */
.contact-map-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.map-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-placeholder {
    height: 400px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.map-placeholder i {
    font-size: 4rem;
    color: #ff7e5f;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    opacity: 0.8;
}

/* FAQ Section */
.contact-faq-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    background: rgba(255, 126, 95, 0.2);
    border-color: rgba(255, 126, 95, 0.5);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #ff7e5f;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    display: block;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Section */
.contact-newsletter-section {
    padding: 80px 0;
    margin-bottom: 40px;
}

.newsletter-container {
    background: linear-gradient(135deg, rgba(255, 126, 95, 0.3), rgba(254, 180, 123, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

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

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.3);
}

.newsletter-button {
    border-radius: 25px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Responsive Styles */

/* Mobile: 320px - 767px */
@media (max-width: 767px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-card {
        padding: 30px 25px;
    }

    .contact-form-title {
        font-size: 1.75rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .contact-info-grid {
        gap: 15px;
    }

    .contact-info-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .contact-map-section {
        padding: 40px 0;
    }

    .map-container {
        padding: 20px;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-placeholder i {
        font-size: 3rem;
    }

    .contact-faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 20px 25px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .contact-newsletter-section {
        padding: 60px 0;
    }

    .newsletter-container {
        padding: 40px 25px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }

    .newsletter-input,
    .newsletter-button {
        width: 100%;
        border-radius: 12px;
    }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-form-card {
        padding: 35px 30px;
    }

    .contact-info-card {
        padding: 20px;
        gap: 15px;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .newsletter-form {
        max-width: 350px;
    }
}

/* Large Mobile: 480px - 767px */
@media (min-width: 480px) and (max-width: 767px) {
    .contact-form-card {
        padding: 35px 30px;
    }

    .newsletter-form {
        max-width: 350px;
        flex-direction: row;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 767px) {
    .contact-form-card,
    .contact-info-card,
    .map-container,
    .faq-item,
    .newsletter-container {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.15);
    }

    .form-input,
    .form-select,
    .form-textarea,
    .newsletter-input {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.2);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-form-card,
    .contact-info-card,
    .map-container,
    .faq-item,
    .newsletter-container {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .form-input,
    .form-select,
    .form-textarea,
    .newsletter-input {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .social-link {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .contact-form-card,
    .contact-info-card,
    .social-link,
    .faq-item,
    .form-input,
    .form-select,
    .form-textarea,
    .newsletter-input {
        transition: none;
        animation: none;
    }
}

/* Accessibility enhancements */
.contact-form-card:focus-within,
.contact-info-card:focus-within,
.faq-item:focus-within,
.social-link:focus-within {
    outline: 3px solid #ff7e5f;
    outline-offset: 2px;
}

/* Loading states */
.form-submit:disabled,
.newsletter-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Touch-friendly targets */
.social-link,
.faq-question {
    min-height: 44px;
    min-width: 44px;
}

/* Form validation styles */
.form-input:invalid,
.form-select:invalid,
.form-textarea:invalid {
    border-color: rgba(239, 68, 68, 0.5);
}

.form-input:valid,
.form-select:valid,
.form-textarea:valid {
    border-color: rgba(34, 197, 94, 0.5);
}

/* Course Details Page Styles */
.course-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    position: relative;
    overflow: hidden;
}

.course-hero-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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

.course-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.course-hero-text .breadcrumb {
    margin-bottom: 20px;
    opacity: 0.9;
}

.course-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 15px;
    line-height: 1.2;
}

.course-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.course-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--foreground);
    font-weight: 500;
    transition: all 0.3s ease;
}

.course-meta-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.course-meta-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.course-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-icon-container {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

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

.course-hero-icon {
    font-size: 4rem;
    color: var(--primary);
    animation: pulse 3s ease-in-out infinite;
}

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

.course-details-section {
    padding: 80px 0;
    background: var(--background);
}

.course-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.course-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.course-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    transition: all 0.3s ease;
}

.course-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.course-header-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.course-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 126, 95, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.course-icon-large i {
    font-size: 2.5rem;
    color: var(--primary);
}

.course-title-section {
    flex: 1;
}

.course-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 10px;
    line-height: 1.2;
}

.course-detail-category {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.course-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #feb47b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.course-key-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2px;
}

.info-content h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--foreground);
    line-height: 1.6;
    margin: 0;
}

.course-description h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.course-description p {
    color: var(--foreground);
    line-height: 1.8;
    white-space: pre-line;
    margin: 0;
}

.course-colleges-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.colleges-section-title {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.college-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.college-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #feb47b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.college-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.college-card:hover::before {
    transform: scaleX(1);
}

.college-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.college-name {
    color: var(--foreground);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.college-ranking {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.college-ranking i {
    font-size: 0.9rem;
}

.college-info {
    margin-bottom: 20px;
}

.college-location,
.college-country {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.college-location i,
.college-country i {
    color: var(--primary);
    font-size: 0.9rem;
}

.country-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.college-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.college-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.no-colleges-message {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.no-colleges-message i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.no-colleges-message p {
    margin: 0;
    font-size: 1.1rem;
}

.course-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sidebar-title {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 54px;
    border: none;
    cursor: pointer;
    width: 100%;
    justify-content: flex-start;
}

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

.quick-action-btn.success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.quick-action-btn.warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1f2937;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.course-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-list-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.info-list-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.info-list-item span {
    color: var(--foreground);
    font-weight: 500;
}

.help-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.contact-item span {
    color: var(--foreground);
    font-weight: 500;
}

.similar-courses {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-course-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.similar-course-item:hover {
    background: rgba(255, 255, 255, 0.03);
    margin: 0 -15px;
    padding: 15px;
    border-radius: 10px;
}

.similar-course-link {
    color: var(--foreground);
    text-decoration: none;
    display: block;
}

.similar-course-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.similar-course-link:hover .similar-course-name {
    color: var(--primary);
}

.similar-course-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.course-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #feb47b);
    position: relative;
    overflow: hidden;
}

.course-cta-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="cta-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.3;
}

.course-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

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

/* Mobile Responsive Design */
@media (max-width: 1024px) {
    .course-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .course-hero-meta {
        justify-content: center;
    }

    .course-key-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .course-header-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .course-hero-section {
        padding: 60px 0;
    }

    .course-details-section {
        padding: 60px 0;
    }

    .course-cta-section {
        padding: 60px 0;
    }

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

    .course-hero-subtitle {
        font-size: 1.1rem;
    }

    .course-info-card,
    .course-colleges-card,
    .sidebar-card {
        padding: 25px;
    }

    .course-icon-large {
        width: 60px;
        height: 60px;
    }

    .course-icon-large i {
        font-size: 2rem;
    }

    .course-detail-title {
        font-size: 1.5rem;
    }

    .course-icon-container {
        width: 120px;
        height: 120px;
    }

    .course-hero-icon {
        font-size: 3rem;
    }

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

    .cta-description {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .course-hero-section {
        padding: 40px 0;
    }

    .course-details-section {
        padding: 40px 0;
    }

    .course-cta-section {
        padding: 40px 0;
    }

    .course-hero-title {
        font-size: 1.8rem;
    }

    .course-hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .course-meta-item {
        width: 100%;
        justify-content: center;
    }

    .course-info-card,
    .course-colleges-card,
    .sidebar-card {
        padding: 20px;
    }

    .info-item,
    .info-list-item,
    .contact-item {
        padding: 12px;
        gap: 12px;
    }

    .sidebar-title,
    .colleges-section-title {
        font-size: 1.1rem;
    }

    .course-detail-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

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

    .college-actions,
    .quick-actions {
        gap: 10px;
    }

    .college-btn,
    .quick-action-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Accessibility enhancements */
.course-info-card:focus-within,
.course-colleges-card:focus-within,
.sidebar-card:focus-within,
.college-card:focus-within {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .course-icon-container,
    .course-hero-icon,
    .course-info-card,
    .course-colleges-card,
    .sidebar-card,
    .college-card,
    .info-item,
    .info-list-item,
    .contact-item,
    .quick-action-btn,
    .cta-btn {
        animation: none;
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .course-info-card,
    .course-colleges-card,
    .sidebar-card,
    .college-card {
        border: 2px solid var(--foreground);
    }

    .course-hero-section,
    .course-cta-section {
        border-bottom: 3px solid var(--foreground);
    }
}

/* Touch-friendly enhancements */
@media (hover: none) {
    .college-card,
    .sidebar-card,
    .info-item,
    .info-list-item,
    .contact-item,
    .quick-action-btn,
    .cta-btn {
        transform: none;
    }

    .college-card:active,
    .sidebar-card:active,
    .info-item:active,
    .info-list-item:active,
    .contact-item:active,
    .quick-action-btn:active,
    .cta-btn:active {
        background: rgba(255, 255, 255, 0.15);
    }
}

/* College Details Page Styles */
.college-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    position: relative;
    overflow: hidden;
}

.college-hero-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="college-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="white" opacity="0.08"/><circle cx="70" cy="70" r="1" fill="white" opacity="0.06"/><circle cx="50" cy="20" r="0.8" fill="white" opacity="0.07"/></pattern></defs><rect width="100" height="100" fill="url(%23college-grain)"/></svg>');
    opacity: 0.4;
    animation: collegeBackgroundMove 25s ease-in-out infinite;
}

@keyframes collegeBackgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(-15px) translateY(-8px); }
    66% { transform: translateX(10px) translateY(-12px); }
}

.college-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.college-hero-text .breadcrumb {
    margin-bottom: 20px;
    opacity: 0.9;
}

.college-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 15px;
    line-height: 1.2;
}

.college-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.college-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.college-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--foreground);
    font-weight: 500;
    transition: all 0.3s ease;
}

.college-meta-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.college-ranking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.college-ranking-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.college-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.college-icon-container {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: collegeFloat 7s ease-in-out infinite;
}

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

.college-hero-icon {
    font-size: 4rem;
    color: var(--primary);
    animation: collegeIconPulse 4s ease-in-out infinite;
}

@keyframes collegeIconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
}

.college-details-section {
    padding: 80px 0;
    background: var(--background);
}

.college-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.college-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.college-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    transition: all 0.3s ease;
}

.college-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.college-header-info {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.college-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 126, 95, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.college-icon-large i {
    font-size: 2.5rem;
    color: var(--primary);
}

.college-title-section {
    flex: 1;
}

.college-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 10px;
    line-height: 1.2;
}

.college-detail-location {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.college-country-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.college-country-info .country-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

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

.college-description h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.college-description p {
    color: var(--foreground);
    line-height: 1.8;
    white-space: pre-line;
    margin: 0;
}

.college-website {
    margin-top: 20px;
}

.website-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #feb47b);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.website-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 126, 95, 0.3);
}

.college-courses-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.courses-section-title {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.course-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #feb47b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.course-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card-header {
    margin-bottom: 20px;
}

.course-name {
    color: var(--foreground);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.course-info {
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.course-meta-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.course-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.course-actions {
    display: flex;
    justify-content: flex-start;
}

.course-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.no-courses-message {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255, 255, 255, 0.7);
}

.no-courses-message i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.no-courses-message p {
    margin: 0;
    font-size: 1.1rem;
}

.college-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Reusing sidebar styles from course-details page */
.sidebar-card,
.sidebar-title,
.quick-actions,
.quick-action-btn,
.help-text,
.contact-info-list,
.contact-item {
    /* These styles are inherited from course-details page */
}

.similar-colleges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-college-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.similar-college-item:hover {
    background: rgba(255, 255, 255, 0.03);
    margin: 0 -15px;
    padding: 15px;
    border-radius: 10px;
}

.similar-college-link {
    color: var(--foreground);
    text-decoration: none;
    display: block;
}

.similar-college-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.similar-college-link:hover .similar-college-name {
    color: var(--primary);
}

.similar-college-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.college-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #feb47b);
    position: relative;
    overflow: hidden;
}

.college-cta-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="college-cta-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1.2" fill="white" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23college-cta-pattern)"/></svg>');
    opacity: 0.3;
}

.college-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Reusing CTA styles from course-details page */
.cta-title,
.cta-description,
.cta-actions,
.cta-btn {
    /* These styles are inherited from course-details page */
}

/* Mobile Responsive Design for College Details */
@media (max-width: 1024px) {
    .college-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .college-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .college-hero-meta {
        justify-content: center;
    }

    .college-header-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .college-hero-section {
        padding: 60px 0;
    }

    .college-details-section {
        padding: 60px 0;
    }

    .college-cta-section {
        padding: 60px 0;
    }

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

    .college-hero-subtitle {
        font-size: 1.1rem;
    }

    .college-info-card,
    .college-courses-card,
    .sidebar-card {
        padding: 25px;
    }

    .college-icon-large {
        width: 60px;
        height: 60px;
    }

    .college-icon-large i {
        font-size: 2rem;
    }

    .college-detail-title {
        font-size: 1.5rem;
    }

    .college-icon-container {
        width: 120px;
        height: 120px;
    }

    .college-hero-icon {
        font-size: 3rem;
    }

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

    .cta-description {
        font-size: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .college-hero-section {
        padding: 40px 0;
    }

    .college-details-section {
        padding: 40px 0;
    }

    .college-cta-section {
        padding: 40px 0;
    }

    .college-hero-title {
        font-size: 1.8rem;
    }

    .college-hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .college-meta-item,
    .college-ranking-badge {
        width: 100%;
        justify-content: center;
    }

    .college-info-card,
    .college-courses-card,
    .sidebar-card {
        padding: 20px;
    }

    .course-card {
        padding: 20px;
    }

    .sidebar-title,
    .courses-section-title {
        font-size: 1.1rem;
    }

    .college-detail-title {
        font-size: 1.3rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

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

    .course-actions,
    .quick-actions {
        gap: 10px;
    }

    .course-btn,
    .quick-action-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* Accessibility enhancements for college details */
.college-info-card:focus-within,
.college-courses-card:focus-within,
.course-card:focus-within {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion support for college details */
@media (prefers-reduced-motion: reduce) {
    .college-icon-container,
    .college-hero-icon,
    .college-info-card,
    .college-courses-card,
    .course-card,
    .website-link {
        animation: none;
        transition: none;
    }
}

/* High contrast mode support for college details */
@media (prefers-contrast: high) {
    .college-info-card,
    .college-courses-card,
    .course-card {
        border: 2px solid var(--foreground);
    }

    .college-hero-section,
    .college-cta-section {
        border-bottom: 3px solid var(--foreground);
    }
}

/* Touch-friendly enhancements for college details */
@media (hover: none) {
    .course-card,
    .website-link,
    .similar-college-item {
        transform: none;
    }

    .course-card:active,
    .website-link:active,
    .similar-college-item:active {
        background: rgba(255, 255, 255, 0.15);
    }
}

/* Enhanced Contact Section Styles */
.quick-contact-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    color: var(--foreground);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-label {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--foreground);
    font-size: 1rem;
    line-height: 1.4;
    word-break: break-word;
}

.contact-cta {
    text-align: center;
    margin-top: 50px;
}

.contact-btn {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #ff6b47;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.4);
}

/* Enhanced Country Slider Styles */
.country-slide {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.country-slide:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.country-flag-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.country-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-info {
    padding: 0 10px;
}

.country-name {
    color: var(--foreground);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.country-courses {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .country-name {
        font-size: 0.85rem;
    }

    .country-courses {
        font-size: 0.75rem;
    }

    .country-flag-container {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .quick-contact-section {
        padding: 60px 15px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Courses Category Section Styles */
.courses-category-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.1);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 126, 95, 0.3);
}

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

.category-content {
    position: relative;
}

.category-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.category-section.active {
    display: block;
}

.category-title {
    color: var(--foreground);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.category-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
}

.no-courses {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.no-courses i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.no-courses h4 {
    color: var(--foreground);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-courses p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.course-card.enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.course-card.enhanced:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.course-duration, .course-fee {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.course-actions {
    margin-top: 20px;
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
}

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

/* Mobile Responsive Styles for Category Section */
@media (max-width: 768px) {
    .courses-category-section {
        padding: 60px 15px;
    }

    .category-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }

    .category-tab {
        padding: 12px 20px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .category-tab i {
        font-size: 1rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .category-title i {
        font-size: 1.5rem;
    }

    .category-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .course-meta {
        flex-direction: column;
        gap: 8px;
    }

    .course-card.enhanced {
        padding: 20px;
    }

    .course-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        justify-content: center;
    }

    .category-tab {
        padding: 10px 15px;
        font-size: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .category-tab span {
        display: block;
    }

    .category-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Online Courses Section Styles */
.online-courses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.online-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='%23ff7e5f' 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");
    pointer-events: none;
}

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

.online-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.online-course-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.online-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.online-course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.online-course-content {
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.online-course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.online-course-details {
    flex: 1;
}

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

.online-course-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #64748b;
}

.meta-item i {
    width: 16px;
    color: #ff7e5f;
}

.online-course-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.online-course-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #059669;
}

.feature-item i {
    font-size: 0.9rem;
}

.online-course-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ff7e5f;
    color: #ff7e5f;
}

.cta-button.secondary:hover {
    background: #ff7e5f;
    color: white;
}

.no-online-courses {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-courses-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.no-online-courses h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.no-online-courses p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.coming-soon-features .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 1rem;
    color: #64748b;
}

.coming-soon-features .feature-item i {
    font-size: 2rem;
    color: #ff7e5f;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .online-courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .online-course-content {
        padding: 25px;
        gap: 15px;
    }

    .online-course-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .online-course-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .online-courses-section {
        padding: 80px 0;
    }

    .online-courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .online-course-card {
        margin: 0 10px;
    }

    .online-course-content {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .online-course-icon {
        margin: 0 auto;
    }

    .online-course-meta {
        align-items: center;
    }

    .online-course-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .online-course-actions {
        justify-content: center;
    }

    .coming-soon-features {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .no-online-courses {
        padding: 60px 20px;
    }

    .no-courses-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .no-online-courses h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .online-courses-section {
        padding: 60px 0;
    }

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

    .online-course-content {
        padding: 20px 15px;
    }

    .online-course-badge {
        top: 15px;
        right: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .online-course-title {
        font-size: 1.1rem;
    }

    .online-course-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button.small {
        width: 100%;
        max-width: 200px;
    }
}

/* Course Category Section Styles */
.courses-category-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f172a 0%, #1a2332 100%);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 126, 95, 0.3);
}

.category-tab i {
    font-size: 1.1rem;
}

.category-content {
    margin-top: 40px;
}

.category-section {
    display: none;
}

.category-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header .category-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.category-header .category-title i {
    color: #ff7e5f;
}

.category-header .category-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Course Slider Container */
.course-slider-container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 20px;
}

.course-slider {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
    padding: 10px;
}

.course-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 300px;
}

.course-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.course-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.course-slider-btn.prev-btn {
    left: 15px;
}

.course-slider-btn.next-btn {
    right: 15px;
}

.course-slider-btn i {
    font-size: 1.2rem;
}

.category-cta {
    text-align: center;
    margin-top: 30px;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

.no-courses {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.no-courses i {
    font-size: 3rem;
    color: #ff7e5f;
    margin-bottom: 20px;
}

.no-courses h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-courses p {
    color: rgba(255, 255, 255, 0.7);
}

/* Course Card Enhanced Styles */
.course-card.enhanced {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.course-card.enhanced:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 126, 95, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.course-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.course-icon i {
    font-size: 1.5rem;
    color: white;
}

.course-content h4.course-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.course-duration, .course-fee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.course-duration i, .course-fee i {
    color: #ff7e5f;
    font-size: 1rem;
}

.course-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-actions {
    text-align: center;
}

/* Mobile Responsive for Course Sliders */
@media (max-width: 1024px) {
    .course-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .courses-category-section {
        padding: 80px 0;
    }

    .category-tabs {
        gap: 10px;
        margin: 30px 0;
    }

    .category-tab {
        padding: 10px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .category-tab i {
        font-size: 1rem;
    }

    .category-header .category-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 8px;
    }

    .category-header .category-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .course-slider-container {
        margin: 0 10px;
    }

    .course-slide {
        flex: 0 0 calc(100% - 20px);
        min-width: 280px;
    }

    .course-slider-btn {
        width: 40px;
        height: 40px;
    }

    .course-slider-btn.prev-btn {
        left: 5px;
    }

    .course-slider-btn.next-btn {
        right: 5px;
    }

    .course-card.enhanced {
        padding: 20px;
    }

    .course-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .course-icon i {
        font-size: 1.3rem;
    }

    .course-content h4.course-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .course-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    .courses-category-section {
        padding: 60px 0;
    }

    .category-tabs {
        justify-content: center;
        gap: 8px;
    }

    .category-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .category-tab i {
        font-size: 0.9rem;
    }

    .category-header .category-title {
        font-size: 1.4rem;
    }

    .course-slide {
        flex: 0 0 calc(100% - 20px);
        min-width: 260px;
    }

    .course-card.enhanced {
        padding: 15px;
    }

    .course-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }

    .course-icon i {
        font-size: 1.2rem;
    }

    .course-content h4.course-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .course-meta {
        gap: 8px;
    }

    .course-duration, .course-fee {
        font-size: 0.85rem;
    }

    .course-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
}

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

/* Touch-optimized slider controls */
@media (hover: none) and (pointer: coarse) {
    .course-slider-btn {
        width: 50px;
        height: 50px;
    }

    .category-tab {
        padding: 14px 20px;
        min-height: 44px;
    }
}

/* Course Slider JavaScript functionality */
.course-slider {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for cleaner look */
.course-slider::-webkit-scrollbar {
    display: none;
}

.course-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Enhanced Online Courses Section */
.online-courses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.online-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='%23ffffff' fill-opacity='0.05'%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");
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.online-courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.online-course-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.online-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.online-course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4);
    z-index: 2;
}

.online-course-badge i {
    font-size: 0.9rem;
}

.online-course-content {
    padding: 0;
}

.online-course-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.online-course-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.online-course-icon i {
    font-size: 2rem;
    color: white;
}

.online-course-details {
    padding: 30px;
}

.online-course-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
}

.online-course-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateX(5px);
}

.meta-item i {
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.meta-item span {
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.online-course-description {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.online-course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.85rem;
}

.feature-item i {
    color: #48bb78;
    font-size: 0.9rem;
}

.online-course-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.no-online-courses {
    text-align: center;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.no-courses-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.no-courses-icon i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
}

.no-online-courses h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.no-online-courses p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.coming-soon-features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.coming-soon-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.coming-soon-features .feature-item i {
    font-size: 2rem;
    color: #ff7e5f;
    margin-bottom: 10px;
    display: block;
}

.coming-soon-features .feature-item span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive for Online Courses */
@media (max-width: 1024px) {
    .online-courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .online-courses-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

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

    .online-courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .online-course-card {
        margin: 0;
    }

    .online-course-header {
        padding: 25px;
    }

    .online-course-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .online-course-icon i {
        font-size: 1.8rem;
    }

    .online-course-details {
        padding: 25px;
    }

    .online-course-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .online-course-meta {
        gap: 12px;
        margin-bottom: 20px;
    }

    .meta-item {
        padding: 10px 12px;
    }

    .online-course-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .online-course-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 25px;
    }

    .online-course-actions {
        flex-direction: column;
        align-items: center;
    }

    .no-online-courses {
        padding: 60px 30px;
    }

    .no-courses-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .no-courses-icon i {
        font-size: 2.5rem;
    }

    .no-online-courses h3 {
        font-size: 1.8rem;
    }

    .no-online-courses p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .online-courses-section {
        padding: 60px 0;
    }

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

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

    .online-courses-grid {
        padding: 0 15px;
    }

    .online-course-header {
        padding: 20px;
    }

    .online-course-icon {
        width: 60px;
        height: 60px;
    }

    .online-course-icon i {
        font-size: 1.5rem;
    }

    .online-course-details {
        padding: 20px;
    }

    .online-course-title {
        font-size: 1.2rem;
    }

    .meta-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .online-course-actions {
        width: 100%;
    }

    .cta-button.small {
        width: 100%;
    }
}

/* Fix Section Visibility and Text Colors */
.section-title {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Section background fixes */
.countries-section,
.colleges-section,
.testimonials-section,
.statistics-section,
.events-section,
.faq-section {
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%) !important;
    position: relative !important;
}

.countries-section::before,
.colleges-section::before,
.testimonials-section::before,
.statistics-section::before,
.events-section::before,
.faq-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    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='%23ffffff' 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") !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.section-content {
    position: relative !important;
    z-index: 1 !important;
}

.container {
    position: relative !important;
    z-index: 1 !important;
}

/* Enhanced Testimonials Slider */
.testimonials-section {
    padding: 100px 0 !important;
    overflow: hidden !important;
}

.testimonials-slider-container {
    position: relative !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-radius: 20px !important;
}

.testimonials-slider {
    display: flex !important;
    transition: transform 0.3s ease !important;
    gap: 30px !important;
    padding: 20px !important;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 20px) !important;
    min-width: 300px !important;
}

.testimonial-slider-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
}

.testimonial-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.testimonial-slider-btn.prev-btn {
    left: 15px !important;
}

.testimonial-slider-btn.next-btn {
    right: 15px !important;
}

.testimonial-slider-btn i {
    font-size: 1.2rem !important;
}

/* Enhanced Statistics Section */
.statistics-section {
    padding: 80px 0 !important;
}

.stats-slider-container {
    position: relative !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
}

.stats-slider {
    display: flex !important;
    transition: transform 0.3s ease !important;
    gap: 30px !important;
    padding: 20px !important;
}

.stat-slide {
    flex: 0 0 calc(25% - 23px) !important;
    min-width: 200px !important;
    text-align: center !important;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #ff7e5f !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 10px rgba(255, 126, 95, 0.3) !important;
}

.stat-label {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
}

/* Enhanced Events Section */
.events-section {
    padding: 80px 0 !important;
}

.events-slider-container {
    position: relative !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
}

.events-slider {
    display: flex !important;
    transition: transform 0.3s ease !important;
    gap: 30px !important;
    padding: 20px !important;
}

.event-slide {
    flex: 0 0 calc(50% - 15px) !important;
    min-width: 300px !important;
}

/* Enhanced FAQ Section */
.faq-section {
    padding: 80px 0 !important;
}

.faq-container {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    margin-bottom: 15px !important;
    overflow: hidden !important;
}

.faq-question {
    width: 100% !important;
    padding: 20px !important;
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-align: left !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.faq-question::after {
    content: '\f107' !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    transition: transform 0.3s ease !important;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg) !important;
}

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

.faq-item.active .faq-answer {
    max-height: 200px !important;
}

.faq-answer p {
    padding: 0 20px 20px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
}

/* Mobile Responsive for Enhanced Sections */
@media (max-width: 1024px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 15px) !important;
    }

    .stat-slide {
        flex: 0 0 calc(50% - 15px) !important;
    }

    .event-slide {
        flex: 0 0 calc(100% - 20px) !important;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    .testimonial-slide {
        flex: 0 0 calc(100% - 20px) !important;
    }

    .stat-slide {
        flex: 0 0 calc(50% - 15px) !important;
    }

    .testimonial-slider-btn,
    .stats-slider-btn,
    .events-slider-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .testimonial-slider-btn.prev-btn,
    .stats-slider-btn.prev-btn,
    .events-slider-btn.prev-btn {
        left: 5px !important;
    }

    .testimonial-slider-btn.next-btn,
    .stats-slider-btn.next-btn,
    .events-slider-btn.next-btn {
        right: 5px !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem !important;
    }

    .stat-slide {
        flex: 0 0 calc(100% - 20px) !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    .stat-label {
        font-size: 1rem !important;
    }
}

/* Enhanced Horizontal Sliders */
.testimonials-slider, .events-slider, .online-courses-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.testimonials-container, .events-container, .online-courses-container {
    overflow: hidden;
    border-radius: 12px;
}

.testimonials-wrapper, .events-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.online-courses-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-slide, .event-slide {
    flex: 0 0 100%;
    padding: 20px;
}

.online-course-slide {
    flex: 0 0 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

/* Enhanced Testimonials Design */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.testimonial-content {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-content i {
    position: absolute;
    color: var(--primary);
    opacity: 0.6;
    font-size: 1.2rem;
}

.testimonial-content i:first-child {
    top: -10px;
    left: -10px;
}

.testimonial-content i:last-child {
    bottom: -10px;
    right: -10px;
}

.testimonial-content p {
    color: #ffffff !important;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 15px;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.testimonial-info h4 {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.testimonial-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Enhanced Events Slider */
.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.event-date {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.event-date .day {
    font-size: 2rem;
    display: block;
    line-height: 1;
}

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

.event-title {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.event-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 15px 0;
    flex: 1;
}

.event-location {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Enhanced Online Courses Slider */
.online-course-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.online-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.online-course-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.online-course-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.online-course-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #ffffff;
}

.online-course-title {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.online-course-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary);
    width: 16px;
}

.online-course-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.online-course-actions {
    margin-top: auto;
}

/* Enhanced Slider Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0 20px;
}

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

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
    background: var(--primary);
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Mobile Responsiveness for Sliders */
@media (max-width: 1024px) {
    .online-course-slide {
        flex: 0 0 50%;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-btn-prev {
        left: 15px;
    }

    .slider-btn-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .testimonial-slide, .event-slide {
        padding: 15px;
    }

    .online-course-slide {
        flex: 0 0 100%;
        padding: 10px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .event-content {
        padding: 20px;
    }

    .online-course-content {
        padding: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

    .testimonial-content p {
        font-size: 1rem;
        margin: 0 10px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .online-course-title {
        font-size: 1rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--background);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding: var(--spacing-lg);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
}

.mobile-menu-header {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.mobile-nav-links li {
    margin-bottom: var(--spacing-md);
}

.mobile-nav-link {
    color: var(--foreground);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: var(--spacing-sm) 0;
    transition: color 0.3s ease;
}

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

.mobile-menu-footer {
    margin-top: auto;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mobile-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--foreground);
}

.mobile-contact-info .contact-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.mobile-contact-info .contact-item a {
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-contact-info .contact-item a:hover {
    color: var(--primary);
}

/* Mobile Breakpoint (320px - 767px) */
@media screen and (max-width: 767px) {
    /* Mobile menu toggle visibility */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-toggle i.fa-times {
        display: none;
    }

    .nav-menu-container {
        display: none;
    }
    /* Base mobile styles */
    .container {
        width: 100%;
        padding: 0 var(--spacing-md);
        max-width: 100%;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    /* Touch-friendly buttons and links */
    button,
    .btn,
    .mobile-menu-toggle {
        min-height: var(--touch-target-min);
        min-width: var(--touch-target-min);
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
    }

    /* Mobile navigation */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: var(--radius-md);
        cursor: pointer;
        position: fixed;
        top: var(--spacing-md);
        right: var(--spacing-md);
        z-index: 1000;
        box-shadow: var(--shadow-lg);
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--background);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        padding: var(--spacing-lg);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: var(--spacing-md);
        right: var(--spacing-md);
        background: none;
        border: none;
        color: var(--foreground);
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Hero slider mobile */
    .hero-slider-section {
        height: 50vh;
        max-height: 400px;
    }

    .hero-slide-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-md);
    }

    .hero-slide-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }

    .hero-slide-btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.9rem;
    }

    /* Category tabs mobile */
    .category-tabs {
        display: flex;
        overflow-x: auto;
        gap: var(--spacing-sm);
        padding: var(--spacing-md) 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x pan-y;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .category-tab {
        flex: 0 0 auto;
        min-width: 100px;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
        white-space: nowrap;
    }

    /* Course cards mobile */
    .course-slider {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x pan-y;
        padding: var(--spacing-md) 0;
    }

    .course-slider::-webkit-scrollbar {
        display: none;
    }

    .course-card {
        flex: 0 0 calc(100% - var(--spacing-lg));
        margin-right: var(--spacing-md);
    }

    /* Country information mobile */
    .country-slider {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x pan-y;
        padding: var(--spacing-md) 0;
    }

    .country-slider::-webkit-scrollbar {
        display: none;
    }

    .country-card {
        flex: 0 0 calc(100% - var(--spacing-lg));
        margin-right: var(--spacing-md);
        text-align: center;
    }

    .country-flag {
        width: 60px;
        height: 40px;
        margin: 0 auto var(--spacing-sm);
    }

    .country-name {
        font-size: 1rem;
        font-weight: 600;
    }

    /* Testimonial slider mobile */
    .testimonial-slider {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x pan-y;
        padding: var(--spacing-md) 0;
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 calc(100% - var(--spacing-lg));
        margin-right: var(--spacing-md);
    }

    /* Contact form mobile */
    .contact-form {
        padding: var(--spacing-lg);
    }

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

    .form-control {
        width: 100%;
        padding: var(--spacing-md);
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: var(--radius-md);
    }

    /* Footer mobile */
    .footer {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }

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

    .compact-contact-info {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }

    .contact-text {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* Responsive images */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Responsive tables */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }

    /* Accessibility improvements */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* Focus styles for keyboard navigation */
    button:focus,
    a:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 2px solid var(--primary);
        outline-offset: 2px;
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Tablet Breakpoint (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 var(--spacing-lg);
    }

    .course-card {
        flex: 0 0 calc(50% - var(--spacing-lg));
    }

    .country-card {
        flex: 0 0 calc(50% - var(--spacing-lg));
    }

    .testimonial-card {
        flex: 0 0 calc(50% - var(--spacing-lg));
    }
}

/* Desktop Breakpoint (1024px and above) */
@media screen and (min-width: 1024px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--spacing-xl);
    }

    .course-card {
        flex: 0 0 calc(33.333% - var(--spacing-lg));
    }

    .country-card {
        flex: 0 0 calc(25% - var(--spacing-lg));
    }

    .testimonial-card {
        flex: 0 0 calc(33.333% - var(--spacing-lg));
    }
}
}