:root {
    --primary-color: #00D9FF;
    --secondary-color: #0A0E27;
    --accent-color: #FF00E5;
    --gradient-1: linear-gradient(135deg, #00D9FF 0%, #0066FF 100%);
    --gradient-2: linear-gradient(135deg, #FF00E5 0%, #7000FF 100%);
    --dark-bg: #0A0E27;
    --light-bg: #F5F7FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    color: #1A1A2E;
    overflow-x: hidden;
    background: var(--light-bg);
}

.set img {
    height: 85px;
}

/* Navbar */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    /* padding: 1.2rem 0; */
    box-shadow: 0 4px 30px rgba(0, 217, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 14, 39, 0.98);
    box-shadow: 0 8px 40px rgba(0, 217, 255, 0.2);
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform: rotate(-15deg);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.dropdown-menu {
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    padding: 15px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
}

.dropdown-item {
    color: white;
    padding: 12px 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateX(10px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 229, 0.15) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 217, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 217, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-glow {
    background: var(--gradient-1);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

.btn-outline-glow {
    background: transparent;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-glow:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-bg);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 50px 35px;
    border-radius: 25px;
    border: 2px solid rgba(0, 217, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 217, 255, 0.2);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.feature-card h4 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* About Section */
.about-section {
    background: white;
}

.about-card {
    background: var(--dark-bg);
    padding: 60px;
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    opacity: 0.1;
    border-radius: 50%;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 5px;
}

/* Services Section */
.services-section {
    background: var(--dark-bg);
    color: white;
}

.services-section .section-title h2 {
    color: white;
}

.services-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.1);
    padding: 45px 35px;
    border-radius: 25px;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.2);
}

.service-card .feature-icon {
    background: var(--gradient-2);
}

.service-card h4 {
    color: white;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mission Vision */
.mv-box {
    background: white;
    padding: 50px;
    border-radius: 30px;
    border: 2px solid rgba(0, 217, 255, 0.1);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-1);
}

.mv-box:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
}

.mv-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.mv-box ul {
    padding-left: 0;
    list-style: none;
}

.mv-box li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.mv-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--gradient-1);
    border-radius: 50%;
}

/* Timeline */
.timeline-section {
    background: var(--light-bg);
    position: relative;
}

.timeline-container {
    position: relative;
    padding: 50px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-1);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid rgba(0, 217, 255, 0.1);
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    z-index: 2;
}

.timeline-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

/* Staff Cards */
.staff-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 217, 255, 0.1);
}

.staff-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: var(--primary-color);
}

.staff-image {
    width: 100%;
    height: 320px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.staff-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.staff-info {
    padding: 35px;
}

.staff-info h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.staff-role {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.staff-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.staff-social a {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.staff-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.4);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.15);
    border-color: var(--primary-color);
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
}

.author-info h5 {
    font-weight: 800;
    color: var(--dark-bg);
    margin: 0;
}

.author-info small {
    color: #888;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 217, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    border-color: var(--primary-color);
}

.blog-image {
    width: 100%;
    height: 25px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
}

.blog-content {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #888;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.blog-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 15px;
    /* color: var(--dark-bg); */
    color: #df9d10;
}

/* Events */
.event-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    gap: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    align-items: center;
}

.event-card:hover {
    transform: translateX(15px);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.15);
    border-color: var(--primary-color);
}

.event-date {
    min-width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.event-day {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.event-month {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-details h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 12px;
}

.event-details p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-location {
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    color: white;
}

.contact-section .section-title h2 {
    color: white;
}

.contact-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.1);
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.3);
}

.contact-item h5 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.1);
    padding: 50px;
    border-radius: 25px;
}

.form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.2);
    color: white;
    padding: 16px 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: var(--dark-bg);
    color: white;
}

/* Footer */
.footer {
    background: #050812;
    color: white;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.footer h5 {
    color: white;
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 217, 255, 0.4);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 217, 255, 0.2);
    padding: 14px 20px;
    border-radius: 15px;
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: var(--gradient-1);
    border: none;
    padding: 14px 30px;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
    z-index: 1000;
}

.scroll-top:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.6);
}

.scroll-top.show {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-year {
        left: 30px;
        transform: none;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        margin: 0 auto;
    }

    .contact-form {
        padding: 30px;
    }

    .mv-box {
        padding: 35px;
    }

    .about-card {
        padding: 40px 30px;
    }

    .about-stats {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-glow,
    .btn-outline-glow {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .feature-card,
    .service-card {
        padding: 35px 25px;
    }
}