@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

nav {
    background-color: #fff;
    color: #fff;
    padding: 1em 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center; /* Added for vertical alignment */
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 1em;
}

nav ul li.logo {
    margin-right: auto; /* Pushes logo to the left */
}

nav ul li.logo img {
    height: 50px; /* Adjust as needed */
}

nav ul li a {
    color: #000;
    text-decoration: none;
}

header {
    background-image: url('bg2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5em 0;
    text-align: center;
}

header .header-content {
    background-color: rgba(0, 0, 0, 0);
    display: cover;
    padding: 2em;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 2em 0;
    flex-wrap: wrap;
}

.feature-box {
    width: 30%;
    text-align: center;
    margin-bottom: 1em;
}

.image-gallery {
    display: flex;
    justify-content: space-around;
    padding: 2em 0;
    flex-wrap: wrap;
}

.image-gallery img {
    width: 30%;
    height: auto;
    margin-bottom: 1em;
}

.icon-boxes {
    display: flex;
    justify-content: space-around;
    padding: 2em 0;
    flex-wrap: wrap;
}

.icon-box {
    width: 30%;
    text-align: center;
    margin-bottom: 1em;
}


.icon-box img {
    height: 60px;
}

.stats {
    display: flex;
    justify-content: space-around;
    background-color: #3498db;
    padding: 2em 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: white;
}

.stat img {
    height: 60px;
}

.content-pr-t {
    padding-left: 25px;
    padding-right: 25px;
}

.content-pr-t p {
    font-size: 14px;
}

.about-us {
    display: flex;
    padding: 2em;
    background-color: #eee;
    flex-wrap: wrap;
}

.about-us img {
    width: 50%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1em;
}

.about-content {
    padding: 2em;
    width: 70%;
}

.about-content p {
    font-size: 35px;
}

.about-content h2 {
    font-size: 40px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0.5em 0;
    }

    .features, .image-gallery, .icon-boxes, .stats, .about-us {
        flex-direction: column;
        align-items: center;
    }

    .feature-box, .icon-box, .stat, .about-content, .about-us img {
        width: 80%;
    }

    header {
        padding: 3em 0;
    }

    .header-content {
        padding: 1em;
    }
}

@media (max-width: 480px) {
    nav ul li.logo img {
        height: 40px; /* Smaller logo for smaller screens */
    }

    header {
        padding: 2em 0;
    }

    .header-content {
        padding: 0.5em;
    }

    .feature-box, .icon-box, .stat, .about-content, .about-us img {
        width: 90%;
    }
}
