
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


body {
    background-image: url('Umair.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}





header {
    background: rgba(42, 157, 143, 0.7);
    color: white;
    padding: 5px;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.four-copy{

    height: auto;
    max-width: 400px;
}

header .logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 200px;
    height: auto;
}

.un-logo {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 80px;
    max-width: 150px;
    filter: drop-shadow(3px 3px 5px white);
}




.hero {
    background: rgba(0, 0, 0, 0.314);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 80px;
    border: 2px solid white;
}

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.btn {
    background: rgba(255, 157, 0, 0.398);
    color: white;
    padding: 1px 3px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    margin-top: 20px;
}


main {
    padding: 50px 20px;
    color: white;
    text-align: left;
}

main h3 {
    font-size: 2.5em;
    background-color: rgba(0, 119, 255, 0.275);
    margin-bottom: 20px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

main p {
    font-size: 1.2em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
    background-color: rgba(21, 255, 0, 0.3);
    display: inline-block;
    padding: 12px;
    border-radius: 5px;
    line-height: 1.6;
}
.sdg-goals h4 {
    font-size: 1.8em; 
    margin-top: 10px;
    margin-bottom: 20px; 
    font-weight: bold; 
    text-align: center; 
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); 
    color: white; 
}


.sdg-goals ul {
    list-style-type: square;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 40px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.sdg-goals li {
    font-size: 1.2em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);;
    margin-bottom: 15px;
}

.content-section {
    text-align: center;
    margin-bottom: 100px; 
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    padding: 50px 20px;
    color: white;
}


.video, .map-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px; 
    margin-bottom: 50px;
}


.map-section iframe {
    padding-top: 20px; 
    width: 100%;
    max-width: 560px;
    height: 400px;
    border-radius: 10px;
}



footer {
    background: rgba(42, 157, 143, 0.7);
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

.gallery {
    text-align: center;
    margin-top: 50px;
}

.gallery h3 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: white;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.faq {
    text-align: center;
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
}

.faq h3 {
    font-size: 2.5em;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #ffffff;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.faq-item h4 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #8afffd;
    text-shadow:1px 1px 5px rgba(0, 0, 0, 0.7) ;
}

.faq-item p {
    font-size: 1.2em;
    line-height: 1.6;
    color: white;
}

@media (min-width: 768px) {
    .faq-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

.feedback-form {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.feedback-form h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.feedback-form textarea {
    width: 80%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #333;
}

.feedback-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.feedback-form input[type="submit"]:hover {
    background-color: #45a049;
}

.connect-with-us {
    text-align: center;
    margin: 50px 0;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.connect-with-us h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.1);
}





