/* University Labor Education Website Styles - Backup */
/* Color Variables */
:root {
    --primary-red: #d32f2f;
    --secondary-blue: #1976d2;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #666666;
    --text-dark: #333333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    margin: 5px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Authentication Buttons */
.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-right: 15px;
}

.btn-register {
    background-color: #87CEEB !important; /* Sky blue color */
    color: white !important;
}

.btn-register:hover {
    background-color: #5F9EA0 !important; /* Slightly darker shade on hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-login {
    background-color: var(--secondary-blue) !important;
    color: white !important;
}

.btn-login:hover {
    background-color: #0d47a1 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 78px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo h2 {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Carousel Section - Card Style Implementation */
.carousel-section {
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper Styles - Card Layout */
.swiper {
    width: 90%;
    max-width: 100%;
    height: 70%;
    z-index: 1;
    padding: 20px 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    user-select: none;
    overflow: visible;
    width: 80%;
    max-width: 800px;
}

/* Card styling for slides */
.swiper-slide {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.9) translateY(20px);
    opacity: 0.7;
    height: 90%;
    display: flex;
    flex-direction: column;
}

.swiper-slide-active {
    transform: scale(1) translateY(0);
    opacity: 1;
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.3);
}

.swiper-slide-prev,
.swiper-slide-next {
    transform: scale(0.95) translateY(10px);
    opacity: 0.85;
}

/* Slide image styling - Card format */
.slide-image {
    position: relative;
    width: 100%;
    height: 60%;
    overflow: hidden;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.swiper-slide-active .slide-image img {
    transform: scale(1.05);
}

/* Content area for card */
.slide-content {
    padding: 30px;
    position: relative;
    z-index: 3;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.slide-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-shadow: none;
    margin-top: 0;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    text-shadow: none;
    line-height: 1.6;
}

.carousel-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Swiper Navigation Buttons - Enhanced */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-red) !important;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-red);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-red);
    color: white !important;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.4);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem !important;
    font-weight: bold;
}

/* Swiper Pagination - Card Style */
.swiper-pagination {
    bottom: 20px !important;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    width: 14px !important;
    height: 14px !important;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: scale(1.2);
}

.swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
    transform: scale(1.4);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
}

/* Section Styling */
.section-title {
    color: var(--text-dark);
}

/* Simplified Login Section - Text-sized Buttons */
.login-section {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
    /*background: #f8f9fa;*/
}

.login-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #1976d2;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
    border: none;
    min-width: 120px;
}

.login-btn:nth-child(1) {
    background: #d32f2f; /* Red for admin */
}

.login-btn:nth-child(2) {
    background: #1976d2; /* Blue for teacher */
    margin: 0 auto; /* Center the middle button */
}

.login-btn:nth-child(3) {
    background: #388e3c; /* Green for student */
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.login-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Responsive styles for text-sized buttons */
@media screen and (max-width: 768px) {
    .login-buttons {
        flex-direction: column;
        gap: 12px;
        max-width: 300px;
        padding: 0 15px;
    }
    
    .login-btn {
        width: 100%;
        justify-content: center;
    }
    
    .login-btn:nth-child(2) {
        margin: 0; /* Remove auto margin on mobile */
    }
}

@media screen and (max-width: 480px) {
    .login-section {
        padding: 1rem 0;
    }
    
    .login-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 0;
    }
    
    .login-btn i {
        font-size: 1rem;
        margin-right: 6px;
    }
}
/* Policy Section */
.policy-section {
    padding: 1rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    position: relative;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red), #ef5350, #ff7043);
}

.policy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.policy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.policy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.policy-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Goals Section - Enhanced Square Grid Styling */
.goals-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff9f0 0%, #fff2e8 100%);
    position: relative;
}

.goals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue), #2e7d32, #f57c00);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.goal-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(211, 47, 47, 0.03) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.goal-card:hover::before {
    transform: translateX(100%);
}

.goal-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(211, 47, 47, 0.3);
}

/* Custom colors for each goal card */
.goal-card:nth-child(1) {
    border-top: 4px solid var(--primary-red);
}

.goal-card:nth-child(2) {
    border-top: 4px solid var(--secondary-blue);
}

.goal-card:nth-child(3) {
    border-top: 4px solid #2e7d32;
}

.goal-card:nth-child(4) {
    border-top: 4px solid #f57c00;
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.goal-card:nth-child(1) .goal-icon {
    color: var(--primary-red);
}

.goal-card:nth-child(2) .goal-icon {
    color: var(--secondary-blue);
}

.goal-card:nth-child(3) .goal-icon {
    color: #2e7d32;
}

.goal-card:nth-child(4) .goal-icon {
    color: #f57c00;
}

.goal-card:hover .goal-icon {
    transform: scale(1.2) rotate(5deg);
}

.goal-card h3 {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.goal-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    border-radius: 2px;
}

.goal-card:nth-child(1) h3::after {
    background: var(--primary-red);
}

.goal-card:nth-child(2) h3::after {
    background: var(--secondary-blue);
}

.goal-card:nth-child(3) h3::after {
    background: #2e7d32;
}

.goal-card:nth-child(4) h3::after {
    background: #f57c00;
}

.goal-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Responsive for goals section */
@media screen and (max-width: 768px) {
    .goals-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 2rem;
        max-width: 500px;
    }
    
    .goal-card {
        padding: 2rem;
    }
    
    .goal-icon {
        font-size: 2.5rem;
    }
    
    .goal-card h3 {
        font-size: 1.3rem;
    }
}

/* Content Section - Enhanced Styling */
.content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue), #2e7d32, #f57c00, #512da8);
    background-size: 500% 500%;
    animation: gradientAnimation 6s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.content-tabs {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.content-tabs input[type="radio"] {
    display: none;
}

.content-tabs label {
    display: inline-block;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    border-radius: 12px 12px 0 0;
    margin: 0 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    color: #444;
}

.content-tabs label:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--primary-red);
}

.content-tabs input[type="radio"]:checked + label {
    background: linear-gradient(135deg, var(--primary-red), #c62828);
    color: white;
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(211, 47, 47, 0.4);
}

.content-tabs input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.content-tab-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0 15px 15px 15px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.content-tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue));
}

.tab-panel {
    display: none;
    animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel.active {
    display: block;
}

.content-card {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(233, 236, 239, 0.7));
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(211, 47, 47, 0.05) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.content-card:hover::before {
    transform: translateX(100%);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.8));
}

.card-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.card-image img:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-red);
}

.card-details {
    flex: 2;
    min-width: 350px;
}

.card-details h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.card-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
}

.card-details ul {
    margin: 1.8rem 0;
    padding-left: 1.2rem;
}

.card-details li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.card-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.card-details p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    padding: 1.5rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 12px;
    border-left: 5px solid var(--primary-red);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Courses Section */
.courses-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue), #2e7d32, #f57c00);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

/* Practice Courses Section - Simplified Style */
.practice-courses-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fff8f0 0%, #ffecb3 100%);
    position: relative;
}
.practice-courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff9800, #f57c00, #ef6c00);
}
.practice-courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}
.practice-course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 152, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.practice-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.4);
}
.practice-course-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}
.practice-course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.practice-course-card:hover .practice-course-image img {
    transform: scale(1.05);
}
.practice-course-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.practice-course-content h3 {
    color: #e65100;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}
.practice-course-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}
/* Responsive for practice courses section */
@media screen and (max-width: 1024px) {
    .practice-courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}
@media screen and (max-width: 768px) {
    .practice-courses-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .practice-course-content {
        padding: 1.2rem;
    }
    .practice-course-content h3 {
        font-size: 1.2rem;
    }
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* 波浪式高度差效果 */
.course-card:nth-child(1) {
    transform: translateY(0);
}

.course-card:nth-child(2) {
    transform: translateY(30px);
}

.course-card:nth-child(3) {
    transform: translateY(0);
}

.course-card:nth-child(4) {
    transform: translateY(30px);
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 悬停时恢复统一高度 */
.course-card:nth-child(1):hover,
.course-card:nth-child(2):hover,
.course-card:nth-child(3):hover,
.course-card:nth-child(4):hover {
    transform: translateY(-10px) scale(1.02);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-blue));
}

.course-icon {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.course-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.course-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.course-description {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.course-type, .course-hours, .course-level {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-type {
    background: linear-gradient(135deg, var(--primary-red), #c62828);
    color: white;
}

.course-hours {
    background: linear-gradient(135deg, var(--secondary-blue), #1565c0);
    color: white;
}

.course-level {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: white;
}

.course-objectives {
    list-style: none;
    padding: 0;
}

.course-objectives li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.course-objectives li:last-child {
    border-bottom: none;
}

.course-objectives li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-size: 0.8rem;
    top: 0.8rem;
}

/* Responsive for courses section */
@media screen and (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .course-card:nth-child(1),
    .course-card:nth-child(2) {
        transform: translateY(0);
    }
    
    .course-card:nth-child(3),
    .course-card:nth-child(4) {
        transform: translateY(30px);
    }
}

@media screen and (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-card {
        transform: translateY(0) !important;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .course-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: -15px;
        right: 15px;
    }
    
    .course-details {
        gap: 0.5rem;
    }
    
    .course-type, .course-hours, .course-level {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}
.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f4f4f5 100%);
    position: relative;
}
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #94a3b8, #64748b, #475569);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-red);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 20px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 20px);
    text-align: left;
}

.timeline-icon {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    border: 4px solid var(--white);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -20px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -20px;
}

.timeline-content {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 80%;
}

.timeline-content h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

/* Projects Section - Red Political Theme */
.projects-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    position: relative;
}
.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-red), #c53030, #e53e3e);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-red);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.student-quote {
    font-style: italic;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-left: 3px solid var(--primary-red);
    border-radius: 0 4px 4px 0;
    color: #742a2a;
}

/* Evaluation Section - Blue Theme */
.evaluation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}
.evaluation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-blue), #1e88e5, #42a5f5);
}

.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.evaluation-card {
    background: linear-gradient(135deg, var(--secondary-blue), #1e88e5);
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid #0d47a1;
}

.evaluation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.evaluation-card .card-icon {
    color: var(--white);
}

.evaluation-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.evaluation-note {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e3f2fd 100%);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-blue);
    color: #0d47a1;
}

/* Banner Section */
.banner-section {
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.banner-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-overlay p {
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Course Detail Section */
.course-detail-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.course-detail-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.course-detail-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-red), #c62828);
    color: white;
    text-align: center;
}

.course-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.course-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.course-type, .course-hours, .course-level {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.course-type {
    background: rgba(255, 255, 255, 0.2);
}

.course-hours {
    background: rgba(255, 255, 255, 0.2);
}

.course-level {
    background: rgba(255, 255, 255, 0.2);
}

.course-detail-body {
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.course-image-large {
    flex: 1;
    min-width: 300px;
}

.course-image-large img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.course-description {
    /* flex: 2;
    min-width: 300px; */
}

.course-description h3 {
    color: var(--primary-red);
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.course-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.course-objectives {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.course-objectives li {
    padding: 0.8rem 0 0.8rem 1.8rem;
    position: relative;
    font-size: 1rem;
    color: #555;
    border-bottom: 1px dashed #eee;
}

.course-objectives li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.course-curriculum h4 {
    color: var(--secondary-blue);
    margin: 1.2rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.course-curriculum p {
    margin-left: 1rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.related-courses {
    margin-top: 3rem;
}

.related-courses .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.learning-path {
    margin: 4rem 0;
}

.path-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.path-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.path-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-blue));
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.path-step h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.course-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-red), #c62828);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.resource-link:hover {
    background: linear-gradient(135deg, #c62828, var(--primary-red));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.resource-link i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbbbbb;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #bbbbbb;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .carousel-section {
        height: auto;
        min-height: 500px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 8px;
        right: auto;
    }
    
    .content-card {
        flex-direction: column;
    }
    
    .card-image {
        width: 100%;
    }
    
    /* Adjust container padding for mobile */
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    /* Improve card spacing on mobile */
    .policy-cards,
    .goals-grid,
    .evaluation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Adjust section padding */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .carousel-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* Adjust footer for small screens */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Reduce padding on small screens */
    .policy-section,
    .goals-section,
    .content-section,
    .timeline-section,
    .projects-section,
    .evaluation-section {
        padding: 3rem 0;
    }
}

/* Extra small devices (phones, 320px and up) */
@media screen and (max-width: 320px) {
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .slide-content h1 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Animation classes */
.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Policy Card Styles */
.policy-card {
    border-top: 4px solid var(--primary-red);
    position: relative;
    overflow: hidden;
}
.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(211, 47, 47, 0.05) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.policy-card:hover::before {
    transform: translateX(100%);
}
.policy-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top-color: #c62828;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus {
}

/* === ALTERNATIVE CAROUSEL STYLES === */

/* 1. Fade Transition Carousel */
.fade-carousel .swiper {
    width: 100%;
    height: 100%;
}

.fade-carousel .swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-carousel .swiper-slide-active {
    opacity: 1;
}

.fade-carousel .slide-image img {
    transition: transform 0.5s ease;
}

.fade-carousel .swiper-slide-active .slide-image img {
    transform: scale(1.02);
}

/* 2. Vertical Parallax Carousel */
.vertical-carousel .swiper {
    height: 100vh;
}

.vertical-carousel .swiper-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.vertical-carousel .slide-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* 3. Thumbnail Navigation Carousel */
.thumbnail-carousel .swiper {
    width: 100%;
    height: 80%;
}

.thumbnail-carousel .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.thumbnail-carousel .swiper-pagination {
    width: 80%;
    left: 10%;
    bottom: 10px !important;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thumbnail-carousel .swiper-pagination-bullet {
    width: 60px !important;
    height: 40px !important;
    border-radius: 8px;
    background-size: cover !important;
    background-position: center !important;
    opacity: 0.6 !important;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-carousel .swiper-pagination-bullet-active {
    opacity: 1 !important;
    transform: scale(1.1);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
}

/* 4. Coverflow Style Carousel - Wider Slides */
.coverflow-carousel .carousel-section {
    height: 85vh;
    min-height: 650px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    padding: 40px 0;
}

.coverflow-carousel .swiper {
    width: 100%;
    height: 100%;
    padding: 120px 0;
}

.coverflow-carousel .swiper-slide {
    width: 800px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.coverflow-carousel .swiper-slide-active {
    transform: scale(1.1);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.coverflow-carousel .slide-image {
    width: 100%;
    height: 100%;
}

.coverflow-carousel .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.coverflow-carousel .swiper-slide-active .slide-image img {
    transform: scale(1.05);
}

/* Enhanced navigation for coverflow */
.coverflow-carousel .swiper-button-next,
.coverflow-carousel .swiper-button-prev {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.coverflow-carousel .swiper-button-next:hover,
.coverflow-carousel .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.2) rotate(15deg);
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.coverflow-carousel .swiper-button-next::after,
.coverflow-carousel .swiper-button-prev::after {
    font-size: 2rem !important;
    font-weight: bold;
}

/* Enhanced pagination for coverflow */
.coverflow-carousel .swiper-pagination {
    bottom: 30px !important;
    z-index: 10;
}

.coverflow-carousel .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    width: 16px !important;
    height: 16px !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.coverflow-carousel .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.3);
}

.coverflow-carousel .swiper-pagination-bullet-active {
    background: white !important;
    transform: scale(1.5);
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments for alternative styles */
@media screen and (max-width: 1200px) {
    .coverflow-carousel .swiper-slide {
        width: 700px;
        height: 420px;
    }
}

@media screen and (max-width: 992px) {
    .coverflow-carousel .swiper-slide {
        width: 600px;
        height: 340px;
    }
    
    .coverflow-carousel .swiper-button-next,
    .coverflow-carousel .swiper-button-prev {
        width: 60px;
        height: 60px;
    }
    
    .coverflow-carousel .swiper-button-next::after,
    .coverflow-carousel .swiper-button-prev::after {
        font-size: 1.5rem !important;
    }
}

@media screen and (max-width: 768px) {
    .coverflow-carousel .swiper-slide {
        width: 500px;
        height: 260px;
    }
    
    .coverflow-carousel .swiper {
        padding: 30px 0;
    }
    
    .thumbnail-carousel .swiper-pagination-bullet {
        width: 40px !important;
        height: 30px !important;
    }
    
    .vertical-carousel .slide-content {
        padding: 20px;
        margin: 0 20px;
    }
}

@media screen and (max-width: 480px) {
    .coverflow-carousel .swiper-slide {
        width: 350px;
        height: 220px;
    }
    
    .coverflow-carousel .carousel-section {
        height: 70vh;
        min-height: 500px;
    }
}


