* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: white;
    background-color: rgb(24, 4, 46);
    scroll-behavior: smooth;
}

/* -----------------------navigation bar--------------------------------- */
.navbar {
    background-color: rgb(35, 4, 63);
    height: 80px;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}


.nav-menu {
    display: flex;
    list-style: none;

}

.nav-item {
    margin: 0 5rem;
    margin-top: 0.4rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link.active {
    color: rgb(195, 48, 195);
}

.nav-link.active::after {
    content: "";
    width: 100%;
    height: 3px;
    background: rgb(195, 48, 195);
    position: absolute;
    bottom: 0;
    left: 0;
}

.nav-link:hover {
    color: rgb(195, 48, 195);
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    color: white;
    position: absolute;
    left: 15px;
    top:22px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* sections------------------------------ */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

#home {
    padding: 2rem;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 2rem;
}

.home-info {
    flex: 1;
    min-width: 300px;
    color: white;
}

.home-info h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-info p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.explore-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.explore-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.home-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-img img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.home-img img:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .home-content {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .home-info h1 {
        font-size: 3rem;
    }

    .home-info p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #home {
        padding: 1.5rem;
    }

    .home-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .home-info,
    .home-img {
        width: 100%;
    }

    .home-info h1 {
        font-size: 2.8rem;
    }

    .home-info p {
        font-size: 1.2rem;
    }

    .explore-button {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    #home {
        padding: 1rem;
    }

    .home-info h1 {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .home-info p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .explore-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .home-info h1 {
        font-size: 1.8rem;
    }

    .home-info p {
        font-size: 1rem;
    }

    .explore-button {
        width: 100%;
    }
}


/* Features Section */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    background: #6a11cb;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 3.5rem;
    color: rgb(233, 221, 221);
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature p {
    color: rgb(235, 222, 222);
    font-size: 1.1rem;
}

/* About Section */
.about-section {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    background: rgb(63, 5, 113);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h4 {
    color: rgb(227, 21, 227);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: white;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.6;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    min-width: 100px;
}

.number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(227, 21, 227);
}

.label {
    display: block;
    font-size: 0.9rem;
    color: white;
    margin-top: 0.3rem;
}

.about-cta {
    margin-top: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: rgb(227, 21, 227);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: rgb(63, 5, 113);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 21, 227, 0.3);
}

.about-image {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(227, 21, 227), rgb(63, 5, 113));
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid rgb(227, 21, 227);
}

.image-placeholder i {
    font-size: 5rem;
    color: white;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-image {
        margin-top: 1.5rem;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 1rem;
    }

    .about-container {
        padding: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat {
        width: 100%;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
    }

    .image-placeholder i {
        font-size: 4rem;
    }
}

/* Contact Section */
.contact-container {
    background: rgb(68, 7, 121);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid white;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form #type {
    background: transparent;
    color: white;
    font-size: 18px;
}

.contact-form button {
    background: linear-gradient(to right, #6a11cb, #68096a);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: rgb(30, 3, 57);
    color: white;
    text-align: center;
    padding: 2.5rem;
    margin-top: 3rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffdd40;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #6a11cb;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .home-info h1 {
        font-size: 2.2rem;
    }

    .home-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}