* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body { 
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(13, 36, 96, 1));
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}


.navigation {
    display: flex;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 6px 18px rgba(22, 56, 205, 0.61);
    z-index: 1000;
    padding: 15px 40px;
    backdrop-filter: blur(10px);
}

.navigation li {
    margin-left: 20px;
}

.navigation a {
    text-decoration: none;
    padding: 10px 20px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.navigation a:hover{
    color: #5169ff;
    
}


.intro-section {
    margin-top: 80px;
    padding: 60px 20px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, rgba(81, 105, 255, 0.1), rgba(13, 36, 96, 0.3));
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #5169ff;
    filter: blur(150px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.intro-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: #5169ff;
    filter: blur(150px);
    opacity: 0.2;
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.intro-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #5169ff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.container {
    text-align: left;
    margin: 60px auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}


.box1, .box2, .box3, .box4, .box5, .box6 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    width: 300px;
    color: #FFFFFF;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(49, 84, 237, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.box1::before, .box2::before, .box3::before, 
.box4::before, .box5::before, .box6::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5169ff, #8a9aff);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.box1:hover::before, .box2:hover::before, .box3:hover::before,
.box4:hover::before, .box5:hover::before, .box6:hover::before {
    transform: scaleX(1);
}

.box1:hover, .box2:hover, .box3:hover,
.box4:hover, .box5:hover, .box6:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(81, 105, 255, 0.3);
    border-color: #5169ff;
}

.box1 h2, .box2 h2, .box3 h2,
.box4 h2, .box5 h2, .box6 h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.box1 p, .box2 p, .box3 p,
.box4 p, .box5 p, .box6 p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.start-btn {
    text-align: center;
    border-radius: 8px;
    background: rgba(81, 105, 255, 0.2);
    border: 2px solid #5169ff;
    text-decoration: none;
    display: inline-block;
    padding: 12px 24px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.start-btn:hover {
    background: #5169ff;
    transform: translateX(5px);
}


.contact-section {
    margin-top: 100px;
}

.footer-container {
    background: rgba(0, 0, 0, 0.9);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(81, 105, 255, 0.3);
}

.footer h1 {
    color: #efe4e4;
    margin-bottom: 30px;
    font-size: 32px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.fa {
    color: aliceblue;
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.fa:hover {
    color: white;
    background: #5169ff;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media all and (max-width: 800px) {
    .navigation {
        justify-content: center;
        padding: 15px 20px;
    }
    
    .navigation li {
        margin: 0 10px;
    }
    
    .stats {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .intro-content h1 {
        font-size: 36px;
    }
}

@media all and (max-width: 600px) {
    .navigation {
        flex-flow: column wrap;
        padding: 0;
        position: relative;
    }
    
    .navigation li {
        margin: 0;
        width: 100%;
    }
    
    .navigation a {
        text-align: center;
        padding: 15px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }
    
    .intro-section {
        margin-top: 0;
        padding: 40px 15px;
    }
    
    .intro-content h1 {
        font-size: 28px;
    }
    
    .intro-content p {
        font-size: 16px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .container {
        margin: 30px auto;
    }
    
    .box1, .box2, .box3, .box4, .box5, .box6 {
        width: 100%;
        max-width: 350px;
        padding: 30px 20px;
    }
    
    .footer h1 {
        font-size: 28px;
    }
}

/* Remove duplicate/conflicting styles */
.header, .intro, .container b, .text-module {
    display: none;
}