* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.loader-container {
    text-align: center;
    position: relative;
}

.network-animation {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0066ff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.8);
    animation: pulse 2s infinite;
}

.node:nth-child(1) { top: 20%; left: 50%; animation-delay: 0s; }
.node:nth-child(2) { top: 50%; left: 20%; animation-delay: 0.4s; }
.node:nth-child(3) { top: 50%; right: 20%; animation-delay: 0.8s; }
.node:nth-child(4) { bottom: 20%; left: 30%; animation-delay: 1.2s; }
.node:nth-child(5) { bottom: 20%; right: 30%; animation-delay: 1.6s; }

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0066ff, transparent);
    animation: flow 3s infinite;
}

.connection:nth-child(6) {
    top: 50%;
    left: 20%;
    width: 60%;
    transform: rotate(0deg);
}

.connection:nth-child(7) {
    top: 30%;
    left: 30%;
    width: 40%;
    transform: rotate(45deg);
}

.connection:nth-child(8) {
    top: 30%;
    right: 30%;
    width: 40%;
    transform: rotate(-45deg);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes flow {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

.logo-text h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    background: #0066ff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 25px;
    font-weight: 400;
}

.loading-bar {
    width: 250px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 20px auto;
}

.progress {
    height: 100%;
    background: #0066ff;
    border-radius: 2px;
    animation: load 3s ease-in-out;
}

@keyframes load {
    0% { width: 0%; }
    100% { width: 100%; }
}

.loading-text {
    font-size: 0.85rem;
    color: #0066ff;
    animation: blink 1.5s infinite;
    font-weight: 500;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
    padding: 0.75rem 2rem;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 600;
    background: #0066ff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
}

/* Dashboard Container */
.dashboard-container {
    min-height: 100vh;
    padding: 100px 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.dashboard-title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
    background: #0066ff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.dashboard-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #0066ff;
}

.dashboard-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.dashboard-card p {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.dashboard-card .btn {
    background: #0066ff;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.dashboard-card .btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* Section Styles */
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    background: #0066ff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: #000000;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.dashboard-subtitle {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn, .login-btn {
    background: #0066ff;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    font-size: 0.95rem;
}

.submit-btn:hover, .login-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* Card Styles */
.service-card, .course-card, .contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover, .course-card:hover, .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon, .course-icon {
    font-size: 2.8rem;
    color: #0066ff;
    margin-bottom: 1rem;
}

.service-title, .course-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.service-description, .course-description {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Button Styles */
.apply-btn, .directions-btn {
    background: #0066ff;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.apply-btn:hover, .directions-btn:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* Back Button */
.back-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0066ff;
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.back-btn:hover {
    background: #0052cc;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* Grid Layouts */
.services-grid, .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* About Content */
.about-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.about-content h3 {
    color: #0066ff;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.about-content p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content li {
    color: #ffffff;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.about-content li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #0066ff;
    font-size: 0.8rem;
}

/* Map Container */
.map-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.map-wrapper iframe {
    border: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: #000000;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.close {
    color: #888888;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #0066ff;
}

/* Login Cards */
.login-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2.5rem;
    width: 350px;
    text-align: center;
    transition: all 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.login-card i {
    font-size: 2.8rem;
    color: #0066ff;
    margin-bottom: 1.5rem;
}

.login-card h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Course Details */
.course-details {
    margin-bottom: 1.5rem;
}

.course-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #888888;
    font-size: 0.9rem;
}

.course-detail span:first-child {
    color: #0066ff;
    font-weight: 500;
}

.course-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.course-features li {
    color: #888888;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066ff;
}

/* Student Dashboard */
.student-dashboard {
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.dashboard-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dashboard-nav button {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: #0066ff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.dashboard-nav button:hover,
.dashboard-nav button.active {
    background: rgba(0, 102, 255, 0.2);
    border-color: #0066ff;
}

.dashboard-content {
    display: none;
}

.dashboard-content.active {
    display: block;
}

/* Team Section */
.team-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: #0066ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
}

.member-name {
    font-size: 1.2rem;
    color: #0066ff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-role {
    color: #888888;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    color: #0066ff;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.member-social a:hover {
    color: #0052cc;
    transform: scale(1.2);
}

/* Hero Sales Section */
.hero-sales {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #0066ff, #00aaff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #cccccc;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Animations */
@keyframes heroAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes textSlide {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(0, 102, 255, 0.5); }
    100% { text-shadow: 0 0 40px rgba(0, 102, 255, 0.8); }
}

/* Animated Background Shapes */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background: radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.8) 0%, transparent 70%);
    animation: floatCircle 8s infinite ease-in-out;
}

body::after {
    background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.8) 0%, transparent 70%);
    animation: floatCircle 10s infinite ease-in-out reverse;
}

body::before {
    content: '';
    position: fixed;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    top: 15%;
    left: 10%;
    animation: rotateSquare 12s linear infinite;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    width: 40px;
    height: 40px;
    background: rgba(236, 72, 153, 0.8);
    clip-path: polygon(50% 0%, 100% 50%, 0% 100%, 0% 50%);
    top: 60%;
    right: 15%;
    animation: rotateTriangle 15s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Additional floating elements */
.floating-shape-1 {
    position: fixed;
    width: 30px;
    height: 30px;
    background: rgba(255, 99, 132, 0.8);
    border-radius: 50%;
    top: 25%;
    left: 5%;
    animation: floatShape1 20s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.floating-shape-2 {
    position: fixed;
    width: 25px;
    height: 25px;
    background: rgba(255, 195, 0, 0.8);
    border-radius: 50%;
    top: 70%;
    right: 8%;
    animation: floatShape2 25s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.floating-shape-3 {
    position: fixed;
    width: 35px;
    height: 35px;
    background: rgba(0, 123, 255, 0.8);
    border-radius: 50%;
    bottom: 20%;
    left: 12%;
    animation: floatShape3 18s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.1); }
    50% { transform: translate(0, -40px) scale(0.9); }
    75% { transform: translate(-30px, -20px) scale(1.1); }
}

@keyframes rotateSquare {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes rotateTriangle {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.3); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes floatShape1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    50% { transform: translateX(15px) translateY(-10px) rotate(90deg); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
    50% { transform: translateY(15px) translateX(-10px) rotate(45deg) scale(0.8); }
}

/* Add floating shapes to body */
body::before {
    content: '';
    position: fixed;
    width: 30px;
    height: 30px;
    background: rgba(255, 99, 132, 0.8);
    border-radius: 50%;
    top: 25%;
    left: 5%;
    animation: floatShape1 20s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    width: 25px;
    height: 25px;
    background: rgba(255, 195, 0, 0.8);
    border-radius: 50%;
    top: 70%;
    right: 8%;
    animation: floatShape2 25s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

/* Additional floating elements */
.floating-shape-1 {
    position: fixed;
    width: 30px;
    height: 30px;
    background: rgba(59, 130, 246, 0.8);
    border-radius: 50%;
    top: 25%;
    left: 5%;
    animation: floatShape1 20s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.floating-shape-2 {
    position: fixed;
    width: 25px;
    height: 25px;
    background: rgba(255, 195, 0, 0.8);
    border-radius: 50%;
    top: 70%;
    right: 8%;
    animation: floatShape2 25s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

.floating-shape-3 {
    position: fixed;
    width: 35px;
    height: 35px;
    background: rgba(0, 123, 255, 0.8);
    border-radius: 50%;
    bottom: 20%;
    left: 12%;
    animation: floatShape3 18s infinite ease-in-out;
    pointer-events: none;
    z-index: 0;
}

/* Logo Styles */
.main-logo {
    max-width: 200px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 102, 255, 0.3));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(0, 102, 255, 0.5));
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dashboard-title {
        font-size: 2rem;
    }
    
    .dashboard-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logo-text h1 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid, .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-sales {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .main-logo {
        max-width: 150px;
        max-height: 60px;
    }
    
    .floating-shape-1, .floating-shape-2, .floating-shape-3 {
        display: none;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #0066ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0066ff;
}

.footer-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.footer-team-member {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.footer-team-member h5 {
    color: #0066ff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-team-member p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #0066ff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00ffcc;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-team {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
