@import url('https://fonts.googleapis.com/css2?family=Mona+Sans:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

/* Default body font - SF Pro Display */
body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
}

/* Header styling - same as other pages */
.header-floating {
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-20px);
  animation: slideInHeader 1s ease-out 0.3s forwards;
}

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

/* Course Carousel Styles */
#courseCarousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 auto;
  transition: all 0.3s ease;
}

/* Hide overflow to create carousel effect */
.carousel-container {
  overflow: hidden;
}

/* Ensure proper carousel container */
.relative.overflow-hidden {
  overflow: hidden;
}

/* Titles and headers - Mona Sans */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.card-title,
.footer-title {
    font-family: 'Mona Sans', sans-serif;
}

.hero-bg {
    background: linear-gradient(180deg,
    rgba(173, 216, 230, 0.4) 0%,
    rgba(221, 160, 221, 0.3) 20%,
    rgba(255, 182, 193, 0.3) 40%,
    rgba(255, 218, 185, 0.2) 60%,
    rgba(240, 248, 255, 0.1) 80%,
    transparent 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(ellipse at 30% 20%, rgba(173, 216, 230, 0.21) 0%, transparent 70%),
            radial-gradient(ellipse at 70% 10%, rgba(221, 160, 221, 0.13) 0%, transparent 70%),
            radial-gradient(ellipse at 20% 40%, rgba(255, 182, 193, 0.12) 0%, transparent 60%),
            radial-gradient(ellipse at 80% 30%, rgba(255, 218, 185, 0.16) 0%, transparent 60%);
}

.grid-pattern {
    background-image:
            linear-gradient(rgba(230, 215, 225, 0.53) 1px, transparent 1px),
            linear-gradient(90deg, rgba(168, 159, 165, 0.18) 1px, transparent 1px);
    background-size: 60px 60px;
    mask: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 60%, rgba(0,0,0,0) 100%);
}

.pattern-1-1 { top: 120px; left: 180px; background: rgba(200, 235, 246, 0.27); }
.pattern-1-2 { top: 120px; left: 300px; background: rgba(200, 235, 246, 0.33); }
.pattern-1-3 { top: 240px; left: 180px; background: rgba(200, 235, 246, 0.34); }
.pattern-3-1 { top: 540px; left: 300px; background: rgba(255, 235, 220, 0.37); }
.pattern-5-2 { top: 600px; left: 480px; background: rgba(255, 240, 245, 0.37); }
.pattern-7-1 { top: 540px; right: 180px; background: rgba(250, 245, 230, 0.5); }
.pattern-9-1 { top: 240px; right: 120px; background: rgba(250, 235, 255, 0.37); }
.pattern-9-2 { top: 240px; right: 240px; background: rgba(250, 235, 255, 0.29); }
.pattern-10-1 { top: 480px; left: 420px; background: rgba(245, 255, 235, 0.5); }

@media (max-width: 768px) {
    .pattern-1-1, .pattern-1-2, .pattern-1-3, .pattern-3-1, .pattern-5-2,
    .pattern-7-1, .pattern-9-1, .pattern-9-2, .pattern-10-1 {
        display: none;
    }
}

@keyframes float-shapes {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, -15px) rotate(1deg); }
    50% { transform: translate(15px, -10px) rotate(-1deg); }
    75% { transform: translate(-5px, 10px) rotate(0.5deg); }
}

/* Hero background with gradient only on top portion */
.footer-bg {
    rotate: 180deg;
    background: linear-gradient(180deg,
    rgba(173, 216, 230, 0.4) 0%,
    rgba(221, 160, 221, 0.2) 20%,
    rgba(255, 182, 193, 0.15) 40%,
    rgba(255, 218, 185, 0.12) 60%,
    rgba(240, 248, 255, 0.07) 80%,
    transparent 100%);
    position: relative;
    overflow: hidden;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(ellipse at 30% 20%, rgba(173, 216, 230, 0.21) 0%, transparent 70%),
            radial-gradient(ellipse at 70% 10%, rgba(221, 160, 221, 0.13) 0%, transparent 70%),
            radial-gradient(ellipse at 20% 40%, rgba(255, 182, 193, 0.12) 0%, transparent 60%),
            radial-gradient(ellipse at 80% 30%, rgba(255, 218, 185, 0.16) 0%, transparent 60%);
}

.footer-link {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #374151;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-link:hover {
    color: #374151;
    transform: translateY(-2px);
}

.nav-link {
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #000000;
    font-size: 16px;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 8px 16px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: -1;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: #6B7280;
    transform: translateY(-1px);
}

.nav-link.active {
    background: #0A0A0D;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.text-gradient {
    background: linear-gradient(135deg, #92eaf6, #7adfed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInText 1.2s ease-out 1s forwards;
}

.text-gradient-light {
    background: linear-gradient(135deg, #65c7d5, #46c2d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInText 1.2s ease-out 1.3s forwards;
}

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

.get-started-btn {
    background: linear-gradient(135deg, #5fecff, #31b4c6, #2cb1c3);
    box-shadow:
            0 10px 40px rgba(255, 0, 0, 0.07),
            15px 0 40px rgba(255, 127, 0, 0.1),
            0 -15px 40px rgba(255, 255, 0, 0.07),
            -20px 0 40px rgba(0, 255, 0, 0.07),
            0 20px 50px rgba(0, 0, 255, 0.14),
            25px 15px 45px rgba(128, 0, 128, 0.09),
            -15px 20px 35px rgba(255, 20, 147, 0.07),
            20px -10px 35px rgba(0, 255, 255, 0.05);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInButton 1.2s ease-out 1.6s forwards;
}

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

.get-started-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
            0 20px 60px rgba(255, 0, 0, 0.09),
            25px 0 60px rgba(255, 127, 0, 0.04),
            0 -25px 60px rgba(255, 255, 0, 0.06),
            -30px 0 60px rgba(0, 255, 0, 0.06),
            0 35px 80px rgba(0, 0, 255, 0.04),
            40px 25px 70px rgba(128, 0, 128, 0.07),
            -25px 35px 55px rgba(255, 20, 147, 0.07),
            35px -20px 55px rgba(0, 255, 255, 0.06),
            15px 40px 45px rgba(255, 105, 180, 0.06),
            -35px -15px 50px rgba(50, 205, 50, 0.07);
}

.get-started-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
            0 15px 50px rgba(255, 0, 0, 0.11),
            20px 0 50px rgba(255, 127, 0, 0.06),
            0 -20px 50px rgba(255, 255, 0, 0.08),
            -25px 0 50px rgba(0, 255, 0, 0.04),
            0 30px 70px rgba(0, 0, 255, 0.06),
            35px 20px 60px rgba(128, 0, 128, 0.1),
            -20px 30px 45px rgba(255, 20, 147, 0.05),
            30px -15px 45px rgba(0, 255, 255, 0.07);
}

.graph {
    box-shadow:
            0 10px 40px rgba(255, 0, 0, 0.02),
            15px 0 40px rgba(255, 127, 0, 0.06),
            0 -15px 40px rgba(255, 255, 0, 0.03),
            -20px 0 40px rgba(0, 255, 0, 0.03),
            0 20px 50px rgba(0, 0, 255, 0.04),
            25px 15px 45px rgba(128, 0, 128, 0.09),
            -15px 20px 35px rgba(255, 20, 147, 0.04),
            20px -10px 35px rgba(0, 255, 255, 0.03);
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(5deg); opacity: 0.8; }
}

.courses-gradient {
    background: linear-gradient(180deg, #5fecff, #31b4c6, #2cb1c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Infinite Carousel Styles */
.infinite-carousel {
    animation: infiniteScroll 20s linear infinite;
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.infinite-carousel:hover {
    animation-play-state: paused;
}

.resource-card {
    background: rgba(174, 210, 255, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
}

.resource-card h3 {
    font-family: 'Mona Sans', sans-serif;
}

.youtube-card {
    background: rgba(174, 210, 255, 0.02);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none !important;
}

.youtube-card h3 {
    font-family: 'Mona Sans', sans-serif;
}

/* Simple Get Started Button (without box shadows) */
.simple-get-started-btn {
    background: linear-gradient(135deg, #5fecff, #31b4c6, #2cb1c3);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.simple-get-started-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.simple-get-started-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Carousel with full height and edge gradients */
.carousel-full-height {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Top fade gradient */
.carousel-full-height::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, #0F0F0F 0%, rgba(15, 15, 15, 0.7) 70%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Bottom fade gradient */
.carousel-full-height::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #0F0F0F 0%, rgba(15, 15, 15, 0.7) 70%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

/* Infinite scroll animation - full height */
.contributor-carousel-up-left,
.contributor-carousel-up-right {
    animation: contributorScrollUpInfinite 30s linear infinite;
    height: 300%; /* Triple height for seamless loop */
}

/* Offset right column by half a card height for staggered effect */
.contributor-carousel-up-right {
    transform: translateY(-68px); /* Offset by half card height + margin */
}

@keyframes contributorScrollUpInfinite {
    from { transform: translateY(0); }
    to { transform: translateY(-66.666%); }
}

/* Keep offset during animation for right column */
@keyframes contributorScrollUpInfiniteOffset {
    from { transform: translateY(-68px); }
    to { transform: translateY(calc(-66.666% - 68px)); }
}

.contributor-carousel-up-right {
    animation: contributorScrollUpInfiniteOffset 30s linear infinite;
}

.contributor-carousel-up-left:hover,
.contributor-carousel-up-right:hover {
    animation-play-state: paused;
}

/* Full height cards */
.contributor-card-full {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 200px; /* Reduced height for more cards to fit */
    margin-bottom: 16px;
}

.contributor-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contributor-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.contributor-name-full {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 12px 8px;
    color: white;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.5px;
    line-height: 1.2;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Course Carousel Styles */
.carousel-slide {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.carousel-slide {
    opacity: 1;
    transform: translateY(0);
}

.carousel-slide:hover {
    transform: translateY(-10px) scale(1.02);
}

@media (min-width: 1800px) {
    .carousel-slide {
        width: 25%;
    }
}

@media (max-width: 1799px) and (min-width: 1024px) {
    .carousel-slide {
        width: 25%;
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .carousel-slide {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .carousel-slide {
        width: 100%;
    }
}

/* Card titles use Mona Sans */
.carousel-slide h3 {
    font-family: 'Mona Sans', sans-serif;
}

/* Button text uses SF Pro Display */
.carousel-slide button {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.3s ease;
}

.carousel-slide button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* About section stats use Mona Sans for numbers */
.about-stats h3 {
    font-family: 'Mona Sans', sans-serif;
}

/* About section descriptions use SF Pro Display */
.about-stats p {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Input and button styling */
input, button {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Newsletter input animation */
.newsletter-input {
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.newsletter-button {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Social icons animation */
.social-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.2);
    color: #3B82F6 !important;
}

/* About section animation */
.about-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Page load animation */
.page-fade-in {
    opacity: 0;
    animation: pageLoad 1s ease-out forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

/* Section title animation */
.section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive improvements */
@media (max-width: 768px) {

    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }

    .text-gradient, .text-gradient-light {
        font-size: 3rem;
        line-height: 1.1;
    }

    .get-started-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

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

    .about-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .carousel-slide {
        width: 100%;
        margin-bottom: 20px;
    }

    .resource-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .youtube-card {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .text-gradient, .text-gradient-light {
        font-size: 2.5rem;
    }

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

    .about-card {
        height: auto;
        min-height: 200px;
    }
}

/* Header floating styles */
.header-floating {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    opacity: 0;
    animation: slideInHeader 1s ease-out 0.3s forwards;
    isolation: isolate;
    will-change: backdrop-filter;
}

/* Mobile menu styles - removed since we're using hidden class approach */

/* Indicator animation */
.indicator {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.indicator:hover {
    transform: scale(1.2);
}

.indicator.active {
    transform: scaleX(6);
    background: #2DB2C4 !important;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 0;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.7) rotateX(20deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1) rotateX(0deg);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1) rotate(90deg);
}

.modal-image-section {
    flex: 0 0 40%;
    background: black;
    position: relative;
    overflow: hidden;
}

.modal-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modal-overlay.active .modal-image-section img {
    transform: scale(1.05);
}

.modal-content-section {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-y: auto;
    min-height: 0;
}

.modal-description {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInContent 0.6s ease-out 0.3s forwards;
}

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

.classes-section {
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInClasses 0.6s ease-out 0.6s forwards;
}

@keyframes slideInClasses {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.class-item:hover img {
    transform: scale(1.2);
}

.class-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        rgba(232, 230, 230, 0.37) 0%,
        rgba(253, 253, 253, 0.7) 100%
    );
    color: #1b80ff;
    padding: 20px 5px 5px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    transition: all 0.3s ease;
}

.class-arrow {
    background: transparent;
    border-radius: 50%;
    border: 1px solid #0a0a0d;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
}

.class-arrow i {
    color: #0a0a0d;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.class-item:hover .class-arrow {
    background: #0a0a0d;
    transform: scale(1.2);
}

.class-item:hover .class-arrow i {
    color: white;
    transform: translateX(2px);
}

/* Responsive adjustments for modal */
@media (max-width: 768px) {
    .modal-content {
        flex-direction: column;
        width: 95%;
        max-height: 95vh;
    }

    .modal-image-section {
        flex: 0 0 300px;
    }

    .modal-content-section {
        padding: 30px;
    }

    .classes-section {
        justify-content: center;
        gap: 10px;
    }
}