

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-item {
    position: absolute;
    opacity: 0.06;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue-primary);
    animation: float 20s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: -3s;
    color: var(--green-primary);
}

.float-item:nth-child(3) {
    top: 40%;
    left: 15%;
    animation-delay: -6s;
}

.float-item:nth-child(4) {
    top: 60%;
    right: 5%;
    animation-delay: -9s;
    color: var(--green-primary);
}

.float-item:nth-child(5) {
    top: 80%;
    left: 8%;
    animation-delay: -12s;
}

.float-item:nth-child(6) {
    top: 30%;
    right: 20%;
    animation-delay: -15s;
    color: var(--green-primary);
}

.float-item:nth-child(7) {
    top: 70%;
    right: 15%;
    animation-delay: -18s;
}

.float-item:nth-child(8) {
    top: 50%;
    left: 3%;
    animation-delay: -2s;
    color: var(--green-primary);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(30px) rotate(-5deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-hero);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--navy);
}

.logo-text span {
    color: var(--blue-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--blue-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-hero);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong) !important;
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 2rem 0rem;
    overflow: hidden;
    margin-bottom: -10px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: var(--gradient-hero);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--blue-primary);
    top: -100px;
    left: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--green-primary);
    bottom: 10%;
    left: 30%;
    animation: pulse 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border: 3px solid var(--white);
    top: 20%;
    right: 20%;
    z-index: 3;
    animation: rotate 20s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-light);
    color: var(--blue-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    color: var(--green-primary);
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-title .highlight {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 200, 83, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
}

.btn-secondary:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.stat {
    text-align: left;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue-primary);
}

.stat-number span {
    color: var(--green-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.hero-image-main {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.students-illustration {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.student-group {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.student-avatar {
    width: 80px;
    height: 100px;
    background: var(--gradient-hero);
    border-radius: 40px 40px 20px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
}

.student-avatar:nth-child(2) {
    height: 120px;
    width: 90px;
    background: var(--gradient-cta);
}

.student-avatar:nth-child(3) {
    height: 110px;
    width: 85px;
}

.student-head {
    width: 35px;
    height: 35px;
    background: #ffd5c8;
    border-radius: 50%;
    position: relative;
}

.student-head::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 5px;
    width: 25px;
    height: 15px;
    background: #333;
    border-radius: 15px 15px 0 0;
}

.student-body {
    width: 100%;
    flex: 1;
    margin-top: 5px;
}

.book-icon {
    position: absolute;
    bottom: 20px;
    width: 25px;
    height: 30px;
    background: var(--white);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
    z-index: 5;
}

.floating-card.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: -2s;
}

.card-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.card-icon.blue {
    background: var(--gradient-blue);
}

.card-icon.green {
    background: var(--gradient-cta);
}

.card-text {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.card-subtext {
    font-size: 0.8rem;
    color: var(--gray-400);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Quick Info Strip */
.quick-info {
    background: var(--navy);
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 10;
}

.quick-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green-primary);
}

.info-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
}

.info-text span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Key Offerings Section */
.offerings {
    padding: 6rem 2rem;
    background: var(--off-white);
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.offering-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.offering-card:hover::before {
    transform: scaleX(1);
}

.offering-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.offering-card:hover .offering-icon {
    transform: scale(1.1) rotate(5deg);
}

.offering-icon.blue {
    background: var(--blue-light);
    color: var(--blue-primary);
}

.offering-icon.green {
    background: var(--green-light);
    color: var(--green-primary);
}

.offering-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.offering-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Achievements Section */
.achievements {
    padding: 6rem 2rem;
    background: var(--white);
    position: relative;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.achievement-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.achievement-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-family: serif;
    color: var(--blue-light);
    line-height: 1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--blue-primary);
}

.student-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.student-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.student-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50% !important;
    object-fit: cover;
    border: 3px solid var(--blue-primary);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}
.student-details
{
    /* height: 80px; */
}

.student-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.student-details p {
    font-size: 0.9rem;
    color: var(--green-primary);
    font-weight: 600;
}

.achievement-badge {
    position: absolute;
    background: var(--gradient-cta);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.achievement-quote {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.achievement-rank {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-light);
    color: var(--blue-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Subjects Section */
.subjects {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.subjects-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.subjects-content h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.subjects-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.class-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.class-tag {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.class-tag:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
    transform: translateY(-2px);
}

.class-tag.active {
    background: var(--gradient-hero);
    color: var(--white);
    border-color: transparent;
}

.subjects-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.subject-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.subject-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-hero);
    transition: height 0.4s ease;
    z-index: 0;
}

.subject-card:hover::before {
    height: 100%;
}

.subject-card:hover {
    transform: translateY(-10px);
}

.subject-card>* {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.subject-card:hover .subject-icon,
.subject-card:hover .subject-name,
.subject-card:hover .subject-topics {
    color: var(--white);
}

.subject-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.math-icon {
    color: var(--blue-primary);
}

.physics-icon {
    color: var(--green-primary);
}

.chemistry-icon {
    color: #ff6b6b;
}

.subject-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.subject-topics {
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-white {
    background: var(--white);
    color: var(--blue-primary);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue-primary);
    transform: translateY(-3px);
}



/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-bg {
        width: 100%;
        clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
        opacity: 0.1;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .subjects-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .subjects-cards {
        grid-template-columns: 1fr;
    }

    .quick-info-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .class-tags {
        justify-content: center;
    }
}
