/* Grow In Cyber - Global Styles */

:root {
    --primary: #0A0E27;
    --secondary: #1A1F3A;
    --accent: #00F5FF;
    --accent-2: #FF2E97;
    --accent-gradient: linear-gradient(135deg, #00F5FF 0%, #FF2E97 100%);
    --glass: rgba(255, 255, 255, 0.05);
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
    overflow: hidden;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 245, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-2);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: #7B2FFF;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -30px); }
    66% { transform: translate(-20px, 20px); }
}

/* Animated Background - Tablet */
@media (max-width: 992px) {
    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 220px;
        height: 220px;
    }

    .orb-3 {
        width: 180px;
        height: 180px;
    }

    .floating-orb {
        filter: blur(60px);
    }
}

/* Animated Background - Mobile */
@media (max-width: 768px) {
    .animated-bg {
        opacity: 0.3;
    }

    .grid-overlay {
        background-size: 30px 30px;
    }

    .orb-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        left: 0;
    }

    .orb-2 {
        width: 150px;
        height: 150px;
        bottom: 10%;
        right: 0;
    }

    .orb-3 {
        width: 120px;
        height: 120px;
        top: 40%;
        left: 30%;
    }

    .floating-orb {
        filter: blur(50px);
    }

    @keyframes float {
        0%, 100% { transform: translate(0, 0); }
        33% { transform: translate(15px, -15px); }
        66% { transform: translate(-10px, 10px); }
    }
}

/* Animated Background - Small Mobile */
@media (max-width: 576px) {
    .animated-bg {
        opacity: 0.25;
    }

    .grid-overlay {
        background-size: 25px 25px;
        opacity: 0.5;
    }

    .orb-1 {
        width: 150px;
        height: 150px;
    }

    .orb-2 {
        width: 100px;
        height: 100px;
    }

    .orb-3 {
        width: 80px;
        height: 80px;
    }

    .floating-orb {
        filter: blur(40px);
    }
}

/* Glass Navbar */
.navbar {
    background: rgba(10, 14, 39, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass);
    padding: 1.2rem 0;
    transition: background 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: 1px solid var(--glass);
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Page Headers */
.page-header {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 0px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn-primary-custom {
    background: var(--accent-gradient);
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    color: white;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 245, 255, 0.4);
    color: white;
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-prev {
    background: transparent;
    border: 1px solid var(--glass);
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* Section Styling */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

/* Glass Cards */
.glass-card {
    background: rgba(26, 31, 58, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass);
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
}

/* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
        }
        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 5.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        .gradient-text {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto 3rem;
        }
  /* Stats Counter */
        .stats-section {
            position: relative;
            z-index: 2;
            margin-top: -80px;
        }
        .stats-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass);
            border-radius: 30px;
            padding: 50px 30px;
            transition: all 0.4s;
        }
        .stats-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
        }
        .countdown-item {
            text-align: center;
        }
        .countdown-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1;
        }
        .countdown-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 8px;
        }

        /* Section Styling */
        section { position: relative; z-index: 1; padding: 100px 0; }
        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .section-subtitle {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        /* Service Cards */
        .service-card {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px 30px;
            transition: all 0.4s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-gradient);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .service-card:hover::before { opacity: 0.1; }
        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
        }

        .service-icon {
            font-size: 3rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        .service-card h5 {
            font-weight: 700;
            margin-bottom: 15px;
        }
        .service-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        /* Course Filter */
        .course-filter {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 30px;
            margin-bottom: 50px;
        }
        .filter-btn {
            background: transparent;
            border: 1px solid var(--glass);
            color: rgba(255, 255, 255, 0.7);
            padding: 10px 24px;
            border-radius: 50px;
            margin: 5px;
            transition: all 0.3s;
            font-weight: 500;
        }
        .filter-btn:hover, .filter-btn.active {
            background: var(--accent-gradient);
            border-color: transparent;
            color: white;
            transform: translateY(-2px);
        }
        .search-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 50px;
            padding: 12px 24px;
            color: white;
            width: 100%;
        }
        .search-box:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.1);
        }
        .search-box::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
               /* Course Cards */
        .course-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
            position: relative;
        }
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 245, 255, 0.2);
        }
        .course-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        .course-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .course-card:hover .course-img img { transform: scale(1.1); }
        .course-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            border: 1px solid var(--accent);
        }
        .course-content {
            padding: 30px;
        }
        .course-price {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .course-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .course-duration {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 500;
        }
        .course-level {
            background: rgba(255, 255, 255, 0.1);
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* Instructor Cards */
        .instructor-card {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s;
            height: 100%;
        }
        .instructor-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
        }
        .instructor-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 3px solid var(--accent);
        }
        .instructor-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .instructor-credentials {
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Curriculum Accordion */
        .curriculum-accordion .accordion-item {
            background: rgba(26, 31, 58, 0.4);
            border: 1px solid var(--glass);
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .curriculum-accordion .accordion-button {
            background: transparent;
            color: white;
            font-weight: 600;
            border: none;
            box-shadow: none;
        }
        .curriculum-accordion .accordion-button:not(.collapsed) {
            background: rgba(0, 245, 255, 0.1);
            color: var(--accent);
        }
        .curriculum-accordion .accordion-body {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Schedule Table */
        .schedule-table {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
        }
        .schedule-table th {
            background: rgba(0, 245, 255, 0.1);
            color: var(--accent);
            font-weight: 600;
            border: none;
            padding: 20px;
        }
        .schedule-table td {
            color: rgba(255, 255, 255, 0.8);
            border: none;
            padding: 20px;
            border-top: 1px solid var(--glass);
        }
        .schedule-table .badge {
            background: var(--accent-gradient);
            color: white;
            padding: 8px 12px;
            border-radius: 12px;
            font-weight: 600;
        }

/* Contact Info Cards */
        .contact-info-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s;
            height: 100%;
        }
        .contact-info-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
        }
        .contact-icon {
            font-size: 3rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }
        .contact-method {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
        }
        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 12px;
            padding: 15px 20px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.1);
        }
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .form-label {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            margin-bottom: 8px;
        }

        /* Office Locations */
        .office-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
        }
        .office-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
        }
        .office-map {
            height: 200px;
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 46, 151, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--accent);
        }
        .office-info {
            padding: 30px;
        }
        .office-hours {
            background: rgba(0, 245, 255, 0.1);
            border-radius: 12px;
            padding: 15px;
            margin-top: 15px;
        }

        /* FAQ Accordion */
        .faq-accordion .accordion-item {
            background: rgba(26, 31, 58, 0.4);
            border: 1px solid var(--glass);
            border-radius: 12px;
            margin-bottom: 15px;
        }
        .faq-accordion .accordion-button {
            background: transparent;
            color: white;
            font-weight: 600;
            border: none;
            box-shadow: none;
            padding: 20px;
        }
        .faq-accordion .accordion-button:not(.collapsed) {
            background: rgba(0, 245, 255, 0.1);
            color: var(--accent);
        }
        .faq-accordion .accordion-body {
            color: rgba(255, 255, 255, 0.7);
            padding: 0 20px 20px;
        }
        .faq-accordion .accordion-button::after {
            filter: invert(1);
        }


        /* Enrollment Form */
        .enrollment-form {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
        }
        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 12px;
            padding: 15px 20px;
            color: white;
            font-size: 1rem;
        }
        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.1);
        }
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        /* Event Cards */
        .event-card {
            background: rgba(26, 31, 58, 0.4);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .event-card:hover {
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(255, 46, 151, 0.2);
        }
        .event-img {
            height: 250px;
            overflow: hidden;
        }
        .event-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .event-card:hover .event-img img { transform: scale(1.05); }

        /* Blog Cards */
        .blog-card {
            background: transparent;
            border: none;
            transition: all 0.3s;
        }
        .blog-card:hover { transform: translateY(-5px); }
        .blog-img {
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        .blog-img img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .blog-card:hover .blog-img img { transform: scale(1.05); }

        /* Newsletter */
        .newsletter-section {
            background: rgba(26, 31, 58, 0.4);
            border: 1px solid var(--glass);
            border-radius: 40px;
            padding: 80px 40px;
        }
        .newsletter-input {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 50px;
            padding: 18px 30px;
            color: white;
            font-size: 1.1rem;
        }
        .newsletter-input:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.1);
        }

/* Section Styling */
        section { position: relative; z-index: 1; padding: 100px 0; }
        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .section-subtitle {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        /* Service Detail Cards */
        .service-detail-card {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.4s;
            height: 100%;
            position: relative;
            overflow: hidden;
        }
        .service-detail-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
        }
        .service-icon-large {
            font-size: 4rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 25px;
        }

        /* Case Study Cards */
        .case-study-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
        }
        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(255, 46, 151, 0.2);
        }
        .case-study-img {
            height: 200px;
            overflow: hidden;
        }
        .case-study-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .case-study-card:hover .case-study-img img { transform: scale(1.05); }

        /* Pricing Cards */
        .pricing-card {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
        }
        .pricing-card.featured {
            border-color: var(--accent);
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
        }
        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
        }
        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }
        .price {
            font-size: 3rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        .pricing-features li {
            padding: 10px 0;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            padding-left: 25px;
        }
        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        /* Testimonial Cards */
        .testimonial-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s;
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-2);
        }
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
        }
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .stars {
            color: #FFD700;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }


 /* Event Calendar */
        .calendar-container {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 50px;
        }
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        .calendar-nav {
            background: transparent;
            border: 1px solid var(--glass);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .calendar-nav:hover {
            background: var(--accent-gradient);
            border-color: transparent;
        }
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 1px;
            background: var(--glass);
            border-radius: 12px;
            overflow: hidden;
        }
        .calendar-day {
            background: rgba(26, 31, 58, 0.6);
            padding: 15px 10px;
            text-align: center;
            min-height: 80px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s;
        }
        .calendar-day:hover {
            background: rgba(0, 245, 255, 0.1);
        }
        .calendar-day.has-event {
            background: rgba(0, 245, 255, 0.2);
            border: 1px solid var(--accent);
        }
        .calendar-day-number {
            font-weight: 600;
            margin-bottom: 5px;
        }
        .calendar-event-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            margin: 2px auto;
        }
        .calendar-day-header {
            background: rgba(0, 245, 255, 0.1);
            color: var(--accent);
            font-weight: 600;
            padding: 15px 10px;
            text-align: center;
        }

        /* Event Cards */
        .event-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
        }
        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(255, 46, 151, 0.2);
        }
        .event-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .event-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .event-card:hover .event-img img { transform: scale(1.05); }
        .event-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            min-width: 70px;
        }
        .event-date-day {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--accent);
            line-height: 1;
        }
        .event-date-month {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .event-content {
            padding: 30px;
        }
        .event-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        .event-meta-item {
            display: flex;
            align-items: center;
            color: var(--accent);
            font-size: 0.9rem;
        }
        .event-meta-item i {
            margin-right: 5px;
        }
        .event-badge {
            background: rgba(0, 245, 255, 0.2);
            color: var(--accent);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: inline-block;
        }

        /* Event Registration Form */
        .registration-form {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
        }
        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 12px;
            padding: 15px 20px;
            color: white;
            font-size: 1rem;
        }
        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.1);
        }
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Photo Gallery */
        .photo-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 200px;
            cursor: pointer;
            transition: all 0.4s;
        }
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 245, 255, 0.3);
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
            display: flex;
            align-items: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        .gallery-caption {
            color: white;
            font-weight: 600;
        }

        /* Past Events Timeline */
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent-gradient);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 80px;
        }
        .timeline-marker {
            position: absolute;
            left: 20px;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
            border: 4px solid var(--primary);
        }
        .timeline-content {
            background: rgba(26, 31, 58, 0.4);
            border: 1px solid var(--glass);
            border-radius: 16px;
            padding: 25px;
            transition: all 0.3s;
        }
        .timeline-content:hover {
            border-color: var(--accent);
            transform: translateX(5px);
        }

         /* Blog Filter */
        .blog-filter {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 30px;
            margin-bottom: 50px;
        }
        .search-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 50px;
            padding: 12px 24px;
            color: white;
            width: 100%;
        }
        .search-box:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.1);
        }
        .search-box::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .category-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .category-tag {
            background: transparent;
            border: 1px solid var(--glass);
            color: rgba(255, 255, 255, 0.7);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        .category-tag:hover, .category-tag.active {
            background: var(--accent-gradient);
            border-color: transparent;
            color: white;
        }

        /* Blog Cards */
        .blog-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
            position: relative;
        }
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
            border-color: var(--accent);
        }
        .blog-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        .blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .blog-card:hover .blog-img img { transform: scale(1.1); }
        .blog-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            border: 1px solid var(--accent);
        }
        .blog-content {
            padding: 30px;
        }
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .blog-author {
            display: flex;
            align-items: center;
        }
        .blog-author img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 8px;
        }
        .blog-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .blog-excerpt {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        .blog-tag {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.8);
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
        }
        .read-more {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        .read-more:hover {
            color: var(--accent-2);
            transform: translateX(5px);
        }
        .read-more i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        .read-more:hover i {
            transform: translateX(3px);
        }

        /* Featured Post */
        .featured-post {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 50px;
            transition: all 0.4s;
        }
        .featured-post:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 70px rgba(0, 245, 255, 0.2);
            border-color: var(--accent);
        }
        .featured-img {
            height: 400px;
            overflow: hidden;
            position: relative;
        }
        .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .featured-post:hover .featured-img img { transform: scale(1.05); }
        .featured-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: var(--accent-gradient);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .featured-content {
            padding: 40px;
        }
        .featured-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        /* Author Profile Cards */
        .author-card {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s;
            height: 100%;
        }
        .author-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
        }
        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 3px solid var(--accent);
        }
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .author-credentials {
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        .author-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        .author-social a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        .author-social a:hover {
            color: var(--accent);
        }
   /* Pagination */
        .pagination {
            justify-content: center;
            margin-top: 50px;
        }
        .page-link {
            background: rgba(26, 31, 58, 0.4);
            border: 1px solid var(--glass);
            color: white;
            margin: 0 5px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        .page-link:hover {
            background: var(--accent-gradient);
            border-color: transparent;
            color: white;
        }
        .page-item.active .page-link {
            background: var(--accent-gradient);
            border-color: transparent;
        }


         /* Company Story Timeline */
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent-gradient);
            transform: translateX(-50%);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
        }
        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 50%;
            padding-right: 40px;
            text-align: right;
        }
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 50%;
            padding-left: 40px;
        }
        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 20px;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
            border: 4px solid var(--primary);
            transform: translateX(-50%);
            z-index: 2;
        }
        .timeline-content {
            background: rgba(26, 31, 58, 0.4);
            border: 1px solid var(--glass);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s;
        }
        .timeline-content:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }
        .timeline-year {
            color: var(--accent);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* Mission & Vision Cards */
        .mission-vision-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
            height: 100%;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        .mission-vision-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
        }
        .mission-vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-gradient);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .mission-vision-card:hover::before { opacity: 0.1; }
        .mission-icon {
            font-size: 3rem;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        /* Team Member Cards */
        .team-card {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
        }
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 245, 255, 0.2);
            border-color: var(--accent);
        }
        .team-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        .team-card:hover .team-img img { transform: scale(1.1); }
        .team-content {
            padding: 30px;
            text-align: center;
        }
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        .team-social a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        .team-social a:hover {
            color: var(--accent);
        }

        /* Accreditation Cards */
        .accreditation-card {
            background: rgba(26, 31, 58, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s;
            height: 100%;
        }
        .accreditation-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-2);
            box-shadow: 0 20px 60px rgba(255, 46, 151, 0.2);
        }
        .accreditation-logo {
            height: 80px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .accreditation-logo img {
            max-height: 60px;
            max-width: 120px;
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }
        .accreditation-badge {
            background: var(--accent-gradient);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-top: 15px;
        }

        /* Partner Cards */
        .partner-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .partner-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            transform: translateY(-3px);
        }
        .partner-logo {
            height: 60px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .partner-logo img {
            max-height: 50px;
            max-width: 120px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
        }

        /* Statistics Section */
        .stats-card {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s;
        }
        .stats-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 15px 50px rgba(0, 245, 255, 0.2);
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            line-height: 1;
        }
        .stats-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 10px;
        }
 
           /* Progress Bar */
        .progress-container {
            background: rgba(26, 31, 58, 0.4);
            border: 1px solid var(--glass);
            border-radius: 50px;
            padding: 30px;
            margin-bottom: 40px;
        }
        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            position: relative;
        }
        .progress-step::after {
            content: '';
            position: absolute;
            top: 25px;
            left: 60%;
            width: 80%;
            height: 2px;
            background: var(--glass);
            z-index: 1;
        }
        .progress-step:last-child::after {
            display: none;
        }
        .progress-step.completed::after {
            background: var(--accent-gradient);
        }
        .step-circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--glass);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }
        .progress-step.active .step-circle {
            background: var(--accent-gradient);
            color: white;
        }
        .progress-step.completed .step-circle {
            background: var(--accent);
            color: var(--primary);
        }
        .step-label {
            font-size: 0.9rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        .progress-step.active .step-label {
            color: var(--accent);
            font-weight: 600;
        }
        .progress-bar-custom {
            background: var(--glass);
            height: 8px;
            border-radius: 4px;
            overflow: hidden;
        }
        .progress-fill {
            height: 100%;
            background: var(--accent-gradient);
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        /* Form Sections */
        .form-section {
            background: rgba(26, 31, 58, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 30px;
        }
        .form-section.hidden {
            display: none;
        }
        .form-control {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 12px;
            padding: 15px 20px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
        }
        .form-control:focus {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.1);
        }
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        .form-label {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            margin-bottom: 8px;
        }

        /* Course Selection */
        .course-option {
            background: rgba(26, 31, 58, 0.6);
            border: 1px solid var(--glass);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }
        .course-option:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
        }
        .course-option.selected {
            border-color: var(--accent);
            background: rgba(0, 245, 255, 0.1);
        }
        .course-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }
        .course-price {
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .course-duration {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* File Upload */
        .file-upload-area {
            border: 2px dashed var(--glass);
            border-radius: 16px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }
        .file-upload-area:hover {
            border-color: var(--accent);
            background: rgba(0, 245, 255, 0.05);
        }
        .file-upload-area.dragover {
            border-color: var(--accent);
            background: rgba(0, 245, 255, 0.1);
        }
        .upload-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        .file-input {
            display: none;
        }
        .uploaded-files {
            margin-top: 20px;
        }
        .uploaded-file {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--glass);
            border-radius: 8px;
            padding: 10px 15px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .file-remove {
            color: var(--accent-2);
            cursor: pointer;
            font-size: 1.2rem;
        }

        /* Payment Section */
        .payment-method {
            background: rgba(26, 31, 58, 0.6);
            border: 1px solid var(--glass);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .payment-method:hover {
            border-color: var(--accent);
        }
        .payment-method.selected {
            border-color: var(--accent);
            background: rgba(0, 245, 255, 0.1);
        }
        .payment-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 10px;
        }

        /* Review Section */
        .review-item {
            background: rgba(26, 31, 58, 0.6);
            border: 1px solid var(--glass);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
        }
        .review-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        .review-value {
            color: white;
            font-weight: 500;
        }

        /* Confirmation Section */
        .confirmation-card {
            background: rgba(26, 31, 58, 0.6);
            border: 1px solid var(--glass);
            border-radius: 24px;
            padding: 40px;
            text-align: center;
        }
        .confirmation-icon {
            font-size: 4rem;
            color: #28a745;
            margin-bottom: 20px;
        }

        /* Button Navigation */
        .form-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
        }
        .btn-prev {
            background: transparent;
            border: 1px solid var(--glass);
            color: rgba(255, 255, 255, 0.7);
            padding: 12px 30px;
            border-radius: 50px;
            transition: all 0.3s;
        }
        .btn-prev:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Error Messages */
        .error-message {
            color: var(--accent-2);
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }
        .form-control.error {
            border-color: var(--accent-2);
        }

        /* Page Header */
        .page-header {
            position: relative;
            min-height: 60vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
        }
        .page-header h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        .gradient-text {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-header p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        /* Section Styling */
        section { position: relative; z-index: 1; padding: 100px 0; }
        .section-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .section-subtitle {
            color: var(--accent);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }


/* Form Controls */
.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-check-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

/* Error Messages */
.error-message {
    color: var(--accent-2);
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.form-control.error {
    border-color: var(--accent-2);
}

/* Alerts */
.alert {
    background: transparent;
    border: 1px solid;
    border-radius: 12px;
    padding: 15px 20px;
}

.alert-info {
    border-color: var(--accent);
    color: var(--accent);
}

.alert-success {
    border-color: var(--success);
    color: var(--success);
}

.alert-warning {
    border-color: var(--warning);
    color: var(--warning);
}

.alert-danger {
    border-color: var(--danger);
    color: var(--danger);
}

/* Progress Bar */
.progress-bar-custom {
    background: var(--glass);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Progress Steps */
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: var(--glass);
    z-index: 1;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.completed::after {
    background: var(--accent-gradient);
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-circle {
    background: var(--accent-gradient);
    color: white;
}

.progress-step.completed .step-circle {
    background: var(--accent);
    color: var(--primary);
}

.step-label {
    font-size: 0.9rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.progress-step.active .step-label {
    color: var(--accent);
    font-weight: 600;
}

/* Cards */
.card {
    background: rgba(26, 31, 58, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
}

.card-header {
    background: rgba(0, 245, 255, 0.1);
    border-bottom: 1px solid var(--glass);
    color: var(--accent);
}

/* Gradient Text */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass);
    padding: 80px 0 30px;
    background: rgba(10, 14, 39, 0.8);
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Utility Classes */
.z-index-2 {
    position: relative;
    z-index: 2;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-accent {
    color: var(--accent);
}

.bg-glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
}

.border-glass {
    border: 1px solid var(--glass);
}

.rounded-glass {
    border-radius: 24px;
}

.shadow-glass {
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .glass-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-2);
}

/* Selection */
::selection {
    background: var(--accent);
    color: var(--primary);
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--glass);
    border-top: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .animated-bg,
    .floating-orb,
    .chat-widget,
    .chat-modal {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}