 /* Navbar Styles */
 .navbar {
    background-color: black;
    padding: 15px;
    text-align: center;
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
}

.navbar img {
    position: relative;
    height: 100px;
    float: left;
    right: 12px;
    margin-top: -28px;
}

/* General Container */
.container {
    margin-top: 50px;
}

/* About Us Container */
.about-container {
    position: relative;
    top: 80px;
    right: 100px;
    background: #ffffff;
    padding: 140px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 130%;
}

/* Developers Container */
.developer-container {
    position: relative;
    top: 80px;
    left: 120px;
    background: #ffffff;
    padding: 70px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 120%;
}

/* Positioning About Us & Developers Titles */
.about-container h2,
.developer-container h3 {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    top: 10px;
    left: 20px;
}

/* Developer Box */
.developer {
    position: relative;
    background: rgb(214, 223, 231);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 50px;
    left: 130px;
    top: 50px;
    text-align: center;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    width: 400px;
}

/* Indented paragraph style */
.about-container p {
    font-family: 'Poppins', sans-serif;
    text-indent: 30px;
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 100%;
    white-space: normal;
}


.developer {
    display: flex;
    align-items: center;
    text-align: justify;
    gap: 15px;
    /* Adds space between image and text */
}

.developer-img {
    width: 50px;
    /* Adjust size as needed */
    height: 50px;
    border-radius: 50%;
    /* Makes image circular */
    object-fit: cover;
    /* Ensures proper cropping */
}