/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #0051FF;
    color: #FFFFFF;
    border-color: #0051FF;
}

.btn-primary:hover {
    background-color: transparent;
    color: #0051FF;
    border-color: #0051FF;
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #0051FF;
}

.btn-secondary:hover {
    background-color: #0051FF;
    color: #FFFFFF;
}

.btn-dark {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.btn-dark:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}





/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 0.5rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 81, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 81, 255, 0.1) 0%, transparent 50%);
    animation: particlesMove 20s infinite linear;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 81, 255, 0.05) 0%, transparent 50%, rgba(0, 81, 255, 0.03) 100%);
    animation: gradientShift 15s infinite alternate;
}

@keyframes particlesMove {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-20px) translateY(-10px); }
    50% { transform: translateX(20px) translateY(-20px); }
    75% { transform: translateX(-10px) translateY(10px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes gradientShift {
    0% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease forwards 0.5s;
}

.hero-logo {
    max-width: 350px;
    height: auto;
    margin-top: -5rem;
    margin-bottom: 0rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #B3B3B3;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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


/* Services Section */
.services {
    padding: 0.5rem 0 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #1A1A1A;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    border: 1px solid rgba(0, 81, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 81, 255, 0.1);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 81, 255, 0.5);
    box-shadow: 0 15px 40px rgba(0, 81, 255, 0.2);
}



.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    margin-top: 0;
}

.service-description {
    color: #B3B3B3;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* About Section */
.about {
    padding: 2rem 0 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.about-image {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.about-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.2s;
}

.about-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    color: #B3B3B3;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}




/* CTA Section */
.cta {
    padding: 6rem 0;
    background-color: #0051FF;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #0A0A0A;
    padding: 4rem 0 2rem;
    border-top: 1px solid #1A1A1A;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: #B3B3B3;
    font-size: 0.9rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B3B3B3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0051FF;
}

.footer-contact p {
    color: #B3B3B3;
    margin-bottom: 0.5rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    color: #0051FF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1A1A1A;
    color: #B3B3B3;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .side-menu-content {
        width: 280px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }


    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text .section-title {
        text-align: center;
    }


    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .side-menu-content {
        width: 250px;
    }

    .side-nav-link {
        font-size: 1.1rem;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

}

/* Animation delays for service cards */
.service-card[data-delay="1"] { animation-delay: 0.2s; }
.service-card[data-delay="2"] { animation-delay: 0.4s; }
.service-card[data-delay="3"] { animation-delay: 0.6s; }
.service-card[data-delay="4"] { animation-delay: 0.8s; }
.service-card[data-delay="5"] { animation-delay: 1s; }

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #0051FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0080FF;
}
