/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navigation Bar */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #6a0dad;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #6a0dad;
}

.btn-primary {
    background: #6a0dad;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #540c9c;
}

/* Prevent content from being hidden under navbar */
body {
    padding-top: 80px;
}

/* About Hero Section */
.about-hero {
    text-align: center;
    padding: 80px 10%;
    background: #f9f9f9;
}

.about-hero h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
}

/* About Page Layout */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    max-width: 900px;
    margin: auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 50px;
}

.about-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-right: 40px;
}

.about-content {
    max-width: 500px;
}

.about-content h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.btn {
    display: inline-block;
    background: purple;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.btn:hover {
    background: #6a0dad;
}

/* Footer */
footer {
    text-align: center;
    background: #343a40;
    color: white;
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        padding-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    .about-hero {
        padding: 60px 5%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        margin: 0 auto 20px;
    }
}
