/* General Styles */
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.9);
    z-index: 1000;
    animation: fadeInDown 1s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 2em;
    font-weight: 700;
    color: #bb86fc;
}

.nav-toggle {
    display: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 5px;
    transition: all 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #bb86fc;
}

/* Header */
header {
    height: 100vh;
    background-image: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.header-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s;
}

.header-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    animation: neonGlow 2s infinite alternate;
}

.header-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
    animation: fadeInUp 1s;
}

.cta-button {
    background-color: #bb86fc;
    color: #121212;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: bounceIn 1s;
}

.cta-button:hover {
    box-shadow: 0 0 10px #bb86fc;
    transform: translateY(-5px);
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down a .material-icons {
    font-size: 3em;
    color: #bb86fc;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 60px;
    color: #bb86fc;
    position: relative;
    animation: fadeInDown 1s;
}

section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #bb86fc;
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}

section p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #b0b0b0;
    animation: fadeInUp 1s;
}

/* Our Mission Section */
.mission-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.mission-text {
    flex: 1 1 60%;
    animation: fadeInLeft 1s;
}

.mission-image {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s;
}

.image-frame {
    width: 250px;
    height: 250px;
    border: 5px solid #bb86fc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame .material-icons {
    font-size: 5em;
    color: #bb86fc;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Our Approach Section */
.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.approach-item {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    flex: 1 1 calc(30% - 40px);
    text-align: center;
    color: #e0e0e0;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.approach-item:hover {
    transform: translateY(-10px);
}

.approach-icon {
    font-size: 3em;
    color: #bb86fc;
    margin-bottom: 20px;
}

.approach-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffffff;
}

.approach-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Solutions Grid */
.solutions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.solution-item {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    flex: 1 1 calc(30% - 40px);
    text-align: center;
    color: #e0e0e0;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.solution-item:hover {
    transform: translateY(-10px);
}

.solution-icon {
    font-size: 3em;
    color: #bb86fc;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffffff;
}

.solution-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Expertise Grid */
.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.expertise-item {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 30px;
    flex: 1 1 calc(45% - 40px);
    text-align: center;
    color: #e0e0e0;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.expertise-item:hover {
    transform: translateY(-10px);
}

.expertise-icon {
    font-size: 3em;
    color: #bb86fc;
    margin-bottom: 20px;
}

.expertise-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffffff;
}

.expertise-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #b0b0b0;
}

/* Contact Form */
#contact form {
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s;
}

#contact form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #e0e0e0;
}

#contact form input,
#contact form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #121212;
    border: 1px solid #bb86fc;
    border-radius: 5px;
    font-size: 1em;
    color: #e0e0e0;
}

#contact form button {
    background-color: #bb86fc;
    color: #121212;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2em;
    transition: box-shadow 0.3s, transform 0.3s;
}

#contact form button:hover {
    box-shadow: 0 0 10px #bb86fc;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #1e1e1e;
    padding: 30px 0;
    text-align: center;
    color: #b0b0b0;
}

.footer-links {
    list-style: none;
    margin: 20px 0;
}

.footer-links li {
    display: inline-block;
    margin: 0 15px;
}

.footer-links a {
    color: #b0b0b0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #bb86fc;
}

footer p {
    color: #b0b0b0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes neonGlow {
    from {
        text-shadow: 0 0 10px #bb86fc, 0 0 20px #bb86fc, 0 0 30px #bb86fc;
    }

    to {
        text-shadow: 0 0 20px #bb86fc, 0 0 30px #bb86fc, 0 0 40px #bb86fc;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .approach-item,
    .solution-item,
    .expertise-item {
        flex: 1 1 calc(45% - 40px);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        background-color: rgba(18, 18, 18, 0.95);
        height: 100vh;
        width: 100%;
        top: 0;
        left: -100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease-in-out;
    }

    .nav-links li {
        margin: 20px 0;
    }

    /* Toggle Menu Open */
    .nav-toggle:checked+.burger+.nav-links {
        left: 0;
    }

    /* Burger Animation */
    .nav-toggle:checked+.burger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle:checked+.burger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked+.burger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .burger {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .burger span {
        background-color: #e0e0e0;
    }

    .header-content h1 {
        font-size: 2.5em;
    }

    .header-content p {
        font-size: 1.2em;
    }

    .mission-content {
        flex-direction: column;
    }

    .mission-text,
    .mission-image {
        flex: 1 1 100%;
    }

    .approach-item,
    .solution-item,
    .expertise-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2em;
    }

    .header-content p {
        font-size: 1em;
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

ul {
    list-style: none
}