/* Home Page Styles */

/* CSS Variables */
:root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #0d6efd;
    --primary-dark: #0b5ed7;
    --dark-color: #212529;
    --transition: all 0.3s ease;
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
}

/* Modern Hero Section */
.hero-section-modern {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

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

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    z-index: 3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 4;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content-modern {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: white;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: #333;
}

.hero-btn-secondary {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #ffd700;
}

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

.hero-visual {
    position: relative;
    z-index: 3;
}

.hero-image-container {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 1rem;
    color: white;
    text-align: center;
    animation: float-card 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

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

/* Tuition & JAMB Prep Section */
.tuition-jamb-section-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.tuition-jamb-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

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

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

.hero-pattern-tuition {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 3;
}

.tuition-jamb-section-modern .container {
    position: relative;
    z-index: 4;
}

.tuition-jamb-section-modern .section-header {
    position: relative;
    z-index: 4;
}

.tuition-jamb-section-modern .section-badge {
    position: relative;
    z-index: 4;
}

.badge-text {
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tuition-jamb-section-modern .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.tuition-jamb-section-modern .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.tuition-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tuition-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tuition-card-modern.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.featured-badge-modern {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.card-gradient-header {
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.card-gradient-header::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tuition-card-modern:hover .card-gradient-header::before {
    opacity: 0.15;
}

.card-gradient-header.tuition-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-gradient-header.jamb-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa07a 50%, #ffb347 100%);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.header-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.header-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.card-body-modern {
    padding: 2rem;
    background: white;
}

.program-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-item-modern:hover {
    background: #e3f2fd;
    transform: translateX(8px);
    border-color: #2196f3;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.feature-icon i {
    font-size: 1rem;
    color: white;
}

.feature-item-modern span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
}

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-modern:hover {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.4);
    color: white;
    text-decoration: none;
}

.program-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8f9fa;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 600;
}

.stat-item i {
    color: #2196f3;
    font-size: 0.8rem;
}

/* Animation for tuition cards */
.tuition-card-modern {
    animation: slideInUp 0.6s ease forwards;
}

.tuition-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.tuition-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

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

/* Features Section - Modern Grid */
.features-section-modern {
    background: white;
    position: relative;
}

.features-section-modern .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.features-section-modern .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.features-section-modern .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.feature-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.feature-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card-modern p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-link {
    margin-top: auto;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.learn-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Main Services Showcase */
.services-section {
    background: #f8f9fa;
    position: relative;
}

.services-section .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.services-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-section .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card-modern:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.4;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Trendy Badge Styles */
.trendy-badge {
    position: absolute;
    top: 8px;
  left: 261px;
  z-index: 10;
  background: linear-gradient(135deg, #c2a226 0%, #a27c4b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: 2px solid white;
}

.trendy-badge span {
    color: white;
    font-weight: 600;
}

/* Responsive styles for trendy badge */
@media (max-width: 768px) {
    .trendy-badge {
        top: -8px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

.feature-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #bbdefb;
}

.service-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Multi Campus Summer School Programs */
.summer-programs-section {
    background: white;
    position: relative;
}

.summer-programs-section .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.summer-programs-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.summer-programs-section .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.summer-program-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.summer-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa07a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.summer-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.program-header i {
    font-size: 2rem;
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.program-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.program-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    background: #fff3e0;
    color: #f57c00;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #ffe0b2;
}

/* University Preparation Programs */
.university-programs-section {
    background: #f8f9fa;
    position: relative;
}

.university-programs-section .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.university-programs-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.university-programs-section .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.university-program-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.university-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.university-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.detail-item i {
    color: #4caf50;
    font-size: 1rem;
}

.detail-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* English Language Programs */
.english-programs-section {
    background: white;
    position: relative;
}

.english-programs-section .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.english-programs-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.english-programs-section .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.english-program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.english-program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.english-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2196f3 0%, #03a9f4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.3);
    transition: all 0.3s ease;
}

.english-program-card:hover .program-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(33, 150, 243, 0.4);
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.english-program-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.english-program-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

/* Accommodation & Work Placement */
.accommodation-work-section {
    background: #f8f9fa;
    position: relative;
}

.accommodation-work-section .section-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.accommodation-work-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.accommodation-work-section .section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.accommodation-card,
.work-placement-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.accommodation-card::before,
.work-placement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.accommodation-card:hover::before,
.work-placement-card:hover::before {
    transform: scaleX(1);
}

.accommodation-card:hover,
.work-placement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.card-header i {
    font-size: 2rem;
    color: #9c27b0;
    background: rgba(156, 39, 176, 0.1);
    padding: 1rem;
    border-radius: 50%;
}

.card-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.card-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.accommodation-option {
    margin-bottom: 2rem;
}

.accommodation-option h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.accommodation-option p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.accommodation-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.accommodation-features li i {
    color: #4caf50;
    font-size: 0.8rem;
}

.placement-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.feature-item i {
    color: #9c27b0;
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.placement-benefits {
    margin-bottom: 1.5rem;
}

.placement-benefits h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

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

.placement-benefits li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.placement-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Testimonials Section - Elegant Design */
.testimonials-section-elegant {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.testimonials-section-elegant .container {
    position: relative;
    z-index: 3;
}

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

.section-badge {
    position: relative;
    z-index: 3;
}

.map-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

.testimonials-grid {
    position: relative;
    z-index: 3;
}

.testimonial-card-featured {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s ease;
}

.testimonial-card-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.quote-decoration {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.quote-decoration i {
    font-size: 1.5rem;
    color: white;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-text-elegant {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
}

.testimonial-footer {
    margin-top: auto;
}

.author-info-elegant {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar-elegant {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

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

.author-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.author-role,
.author-achievement {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.testimonial-card-elegant {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    flex: 1;
}

.testimonial-card-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content-elegant {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-content-elegant .rating-stars {
    margin-bottom: 1rem;
}

.testimonial-content-elegant .testimonial-text-elegant {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-content-elegant .author-info-elegant {
    margin-top: auto;
}

.testimonial-content-elegant .author-avatar-elegant {
    width: 50px;
    height: 50px;
}

.testimonial-content-elegant .author-details h6 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.testimonial-content-elegant .author-role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Carousel */
.testimonials-carousel-section {
    position: relative;
    z-index: 3;
}

.section-subtitle-elegant {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-card-carousel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.4s ease;
}

.testimonial-card-carousel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content-carousel {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quote-icon-carousel {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.quote-icon-carousel i {
    font-size: 1.2rem;
    color: white;
}

.testimonial-text-carousel {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    flex: 1;
}

.author-info-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar-carousel {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-details-carousel h6 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.author-details-carousel span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.carousel-control-prev-elegant,
.carousel-control-next-elegant {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 4;
}

.carousel-control-prev-elegant {
    left: -25px;
}

.carousel-control-next-elegant {
    right: -25px;
}

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

/* Testimonials CTA */
.testimonials-cta {
    position: relative;
    z-index: 3;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

.cta-btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Statistics Section - Elegant Design */
.stats-section-elegant {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 40px;
}

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

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.stats-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 3;
}

.stats-section-elegant .container {
    position: relative;
    z-index: 4;
}

.stats-header {
    position: relative;
    z-index: 4;
}

.stats-badge {
    position: relative;
    z-index: 4;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

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

.stats-grid {
    position: relative;
    z-index: 4;
}

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

.stat-card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.stat-icon-elegant {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-card-elegant:hover .stat-icon-elegant {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.stat-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.stat-icon-elegant i {
    font-size: 2rem;
    color: #333;
}

.stat-number-elegant {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label-elegant {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-description-elegant {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.stat-progress {
    margin-top: 1rem;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-elegant {
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
    transition: width 2s ease;
}

/* Additional Statistics */
.additional-stats {
    position: relative;
    z-index: 4;
}

.stat-highlight-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s ease;
}

.stat-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.stat-highlight-icon i {
    font-size: 1.5rem;
    color: #333;
}

.stat-highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-highlight-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Statistics CTA */
.stats-cta {
    position: relative;
    z-index: 4;
}

.stats-cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.stats-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.stats-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.stats-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stats-cta-btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.stats-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    color: #333;
}

.stats-cta-btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.stats-cta-btn-secondary:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
}

/* Call to Action - Modern Design */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.cta-card .btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cta-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-modern {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .hero-content-wrapper {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .tuition-jamb-section-modern .section-title {
        font-size: 2rem;
    }
    
    .tuition-jamb-section-modern .section-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }
    
    .program-stats {
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .feature-item-modern {
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 0.9rem;
    }
    
    .feature-item-modern span {
        font-size: 0.85rem;
    }
    
    /* Features Section Responsive */
    .features-section-modern .section-title {
        font-size: 2rem;
    }
    
    .features-section-modern .section-description {
        font-size: 1rem;
    }
    
    .feature-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    /* Services Section Responsive */
    .services-section .section-title {
        font-size: 2rem;
    }
    
    .services-section .section-description {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h4 {
        font-size: 1.1rem;
    }
    
    /* Summer Programs Responsive */
    .summer-programs-section .section-title {
        font-size: 2rem;
    }
    
    .summer-programs-section .section-description {
        font-size: 1rem;
    }
    
    .summer-program-card {
        padding: 2rem 1.5rem;
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .program-header i {
        font-size: 1.5rem;
        padding: 0.75rem;
    }
    
    /* University Programs Responsive */
    .university-programs-section .section-title {
        font-size: 2rem;
    }
    
    .university-programs-section .section-description {
        font-size: 1rem;
    }
    
    .university-program-card {
        padding: 2rem 1.5rem;
    }
    
    .placement-features {
        grid-template-columns: 1fr;
    }
    
    /* English Programs Responsive */
    .english-programs-section .section-title {
        font-size: 2rem;
    }
    
    .english-programs-section .section-description {
        font-size: 1rem;
    }
    
    .english-program-card {
        padding: 1.5rem;
    }
    
    .program-icon {
        width: 60px;
        height: 60px;
    }
    
    .program-icon i {
        font-size: 1.5rem;
    }
    
    /* Accommodation Work Responsive */
    .accommodation-work-section .section-title {
        font-size: 2rem;
    }
    
    .accommodation-work-section .section-description {
        font-size: 1rem;
    }
    
    .accommodation-card,
    .work-placement-card {
        padding: 2rem 1.5rem;
    }
    
    .placement-features {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Responsive */
    .map-title {
        font-size: 2rem;
    }
    
    .map-description {
        font-size: 1rem;
    }
    
    .testimonial-card-featured {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card-elegant {
        padding: 1.5rem;
    }
    
    .testimonial-card-carousel {
        padding: 1.5rem;
    }
    
    .testimonial-text-elegant {
        font-size: 1rem;
    }
    
    .testimonial-text-carousel {
        font-size: 0.9rem;
    }
    
    .author-avatar-elegant {
        width: 50px;
        height: 50px;
    }
    
    .author-avatar-carousel {
        width: 40px;
        height: 40px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Statistics Responsive */
    .stats-title {
        font-size: 2rem;
    }
    
    .stats-description {
        font-size: 1rem;
    }
    
    .stat-card-elegant {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon-elegant {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon-elegant i {
        font-size: 1.5rem;
    }
    
    .stat-number-elegant {
        font-size: 2.5rem;
    }
    
    .stat-highlight-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-highlight-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-highlight-icon i {
        font-size: 1.2rem;
    }
    
    .stat-highlight-number {
        font-size: 2rem;
    }
    
    .stats-cta-content {
        padding: 2rem 1.5rem;
    }
    
    .stats-cta-title {
        font-size: 1.5rem;
    }
    
    .stats-cta-description {
        font-size: 1rem;
    }
    
    .stats-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* CTA Responsive */
    .cta-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Carousel Controls Responsive */
    .carousel-control-prev-elegant,
    .carousel-control-next-elegant {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-control-prev-elegant {
        left: -20px;
    }
    
    .carousel-control-next-elegant {
        right: -20px;
    }
}

@media (max-width: 576px) {
    .hero-section-modern {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .hero-content-wrapper {
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .tuition-jamb-section-modern .section-title {
        font-size: 1.8rem;
    }
    
    .tuition-jamb-section-modern .section-description {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item-modern {
        padding: 0.75rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 0.9rem;
    }
    
    .feature-item-modern span {
        font-size: 0.85rem;
    }
    
    .btn-primary-modern {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .card-gradient-header {
        padding: 1.5rem;
    }
    
    .card-body-modern {
        padding: 1.5rem;
    }
    
    .header-content h4 {
        font-size: 1.3rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
    
    /* Features Section Small Screen */
    .features-section-modern .section-title {
        font-size: 1.8rem;
    }
    
    .features-section-modern .section-description {
        font-size: 0.95rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .feature-card-modern h4 {
        font-size: 1.1rem;
    }
    
    /* Services Section Small Screen */
    .services-section .section-title {
        font-size: 1.8rem;
    }
    
    .services-section .section-description {
        font-size: 0.95rem;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-content h4 {
        font-size: 1rem;
    }
    
    .service-features {
        gap: 0.25rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Summer Programs Small Screen */
    .summer-programs-section .section-title {
        font-size: 1.8rem;
    }
    
    .summer-programs-section .section-description {
        font-size: 0.95rem;
    }
    
    .summer-program-card {
        padding: 1.5rem 1rem;
    }
    
    .program-header h4 {
        font-size: 1.1rem;
    }
    
    .program-content h5 {
        font-size: 1rem;
    }
    
    .highlight-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* University Programs Small Screen */
    .university-programs-section .section-title {
        font-size: 1.8rem;
    }
    
    .university-programs-section .section-description {
        font-size: 0.95rem;
    }
    
    .university-program-card {
        padding: 1.5rem 1rem;
    }
    
    .detail-item {
        padding: 0.5rem;
    }
    
    .detail-item span {
        font-size: 0.8rem;
    }
    
    /* English Programs Small Screen */
    .english-programs-section .section-title {
        font-size: 1.8rem;
    }
    
    .english-programs-section .section-description {
        font-size: 0.95rem;
    }
    
    .english-program-card {
        padding: 1rem;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
    }
    
    .program-icon i {
        font-size: 1.2rem;
    }
    
    .english-program-card h4 {
        font-size: 1rem;
    }
    
    /* Accommodation Work Small Screen */
    .accommodation-work-section .section-title {
        font-size: 1.8rem;
    }
    
    .accommodation-work-section .section-description {
        font-size: 0.95rem;
    }
    
    .accommodation-card,
    .work-placement-card {
        padding: 1.5rem 1rem;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
    }
    
    .card-content h5 {
        font-size: 1rem;
    }
    
    .accommodation-features li {
        font-size: 0.8rem;
    }
    
    .placement-benefits li {
        font-size: 0.8rem;
    }
    
    /* Testimonials Small Screen */
    .map-title {
        font-size: 1.8rem;
    }
    
    .map-description {
        font-size: 0.95rem;
    }
    
    .testimonial-card-featured {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-card-elegant {
        padding: 1rem;
    }
    
    .testimonial-card-carousel {
        padding: 1rem;
    }
    
    .testimonial-text-elegant {
        font-size: 0.9rem;
    }
    
    .testimonial-text-carousel {
        font-size: 0.8rem;
    }
    
    .author-avatar-elegant {
        width: 40px;
        height: 40px;
    }
    
    .author-avatar-carousel {
        width: 35px;
        height: 35px;
    }
    
    .author-details h5,
    .author-details h6 {
        font-size: 0.9rem;
    }
    
    .author-role,
    .author-achievement {
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Statistics Small Screen */
    .stats-title {
        font-size: 1.8rem;
    }
    
    .stats-description {
        font-size: 0.95rem;
    }
    
    .stat-card-elegant {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon-elegant {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon-elegant i {
        font-size: 1.2rem;
    }
    
    .stat-number-elegant {
        font-size: 2rem;
    }
    
    .stat-label-elegant {
        font-size: 1rem;
    }
    
    .stat-description-elegant {
        font-size: 0.8rem;
    }
    
    .stat-highlight-card {
        padding: 1rem;
    }
    
    .stat-highlight-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-highlight-icon i {
        font-size: 1rem;
    }
    
    .stat-highlight-number {
        font-size: 1.5rem;
    }
    
    .stat-highlight-label {
        font-size: 0.9rem;
    }
    
    .stats-cta-content {
        padding: 1.5rem 1rem;
    }
    
    .stats-cta-title {
        font-size: 1.3rem;
    }
    
    .stats-cta-description {
        font-size: 0.9rem;
    }
    
    .stats-cta-btn-primary,
    .stats-cta-btn-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* CTA Small Screen */
    .cta-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Carousel Controls Small Screen */
    .carousel-control-prev-elegant,
    .carousel-control-next-elegant {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-control-prev-elegant {
        left: -17px;
    }
    
    .carousel-control-next-elegant {
        right: -17px;
    }
    
    /* Quote Decoration Small Screen */
    .quote-decoration {
        width: 50px;
        height: 50px;
    }
    
    .quote-decoration i {
        font-size: 1.2rem;
    }
    
    .quote-icon-carousel {
        width: 40px;
        height: 40px;
    }
    
    .quote-icon-carousel i {
        font-size: 1rem;
    }
}


