/* Reset and Basic Global Styles */
* {
*     margin: 0;
*         padding: 0;
*             box-sizing: border-box;
*                 font-family: 'Barlow', sans-serif;
*                 }
*
*/* Header and Navigation Styles */
header, nav {
    background-color: white;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 1.5);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo img {
    height: 100px;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
}

.nav-menu li a:hover {
    color: #007bff;
}

/* Dropdown Menu Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    z-index: 1;
    padding: 5px 0;
}

.dropdown-content li a {
    padding: 15px 16px;
    text-decoration: none;
    color: black;
    display: block;
}

.dropdown-content li a:hover {
    background-color: transparent;
    color: #007bff;
}

.dropdown:hover .dropdown-content {
    display: block;
}



/* Media query for tablets */
@media (max-width: 768px) {
    header, nav {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .logo img {
        height: 80px; /* Smaller logo on tablets */
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin: 10px 0; /* Add vertical space between menu items */
    }

    .dropdown-content {
        position: static; /* Dropdown content takes natural flow in DOM */
        box-shadow: none; /* Remove shadow for a cleaner look */
        background-color: white; /* Ensure readability */
        min-width: 100%; /* Dropdown width matches parent width */
        padding: 0; /* Reset padding */
    }

    .dropdown-content li a {
        padding: 10px; /* Adjust padding for better touch targets */
    }
}


/* Media query for mobile devices */
@media (max-width: 480px) {
    header, nav {
        padding: 5px; /* Reduced padding */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo img {
        height: 30px; /* Significantly smaller logo for mobile */
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .nav-menu li {
        margin: 5px 0; /* Reduced margin between items */
    }

    .nav-menu li a {
        text-decoration: none;
        color: #333;
        font-size: 16px; /* Smaller font size */
        padding: 8px 10px; /* Adjusted padding */
    }

    .dropdown-content {
        display: none;
        position: static; /* Align dropdown content in the natural flow */
        background-color: white;
        min-width: 100%; /* Full width */
        box-shadow: none; /* No shadow for cleaner look */
    }

    .dropdown-content li a {
        padding: 8px 10px; /* Adjusted padding for easier touch */
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Media query for landscape orientation */
@media (max-width: 480px) and (orientation: landscape) {
    .nav-menu li a {
        font-size: 14px; /* Even smaller font size for landscape mode */
    }
}



/* Main Content Styles */
main {
    padding-top: 100px;
    font-family: 'Barlow', sans-serif;
     text-align: centered;
}



/* Add or modify existing styles */

.intro-section h2 {
    font-size: larger; /* Adjust as necessary */
    text-align: centered;
    /* Additional styles for heading */
}

.intro-section p {
    font-size: large; /* Adjust as necessary */
    text-align: centered;
    /* Additional styles for paragraph */
}

/* You can retain other styles from your existing CSS */


/* Home Section Styles */
#home-section {
    width: 100%;
    overflow: hidden; /* This ensures no horizontal scrollbars */

   position: relative;
}

#home-section img {
    width: 100%;
    height: auto;
    display: block; /* Removes any extra space below the image */
}


/* Welcome Messages */
.welcome-message, .welcome-message-2 {
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
}

.welcome-message {
    font-size: 48px;
}

.welcome-message-2 {
    font-size: 40px;
}

/* Container for the first image */
#image1-container {
    position: absolute;
    top: 40%; /* Adjust as necessary */
    left: 10%; /* Adjust as necessary */
    /* Other styles as necessary */
}

/* Container for the second image */
#image2-container {
    position: absolute;
    top: 90%; /* Adjust as necessary */
    left: 60%; /* Adjust as necessary */
    transform: translate(-50%, -50%); /* Centering the second image */
    /* Other styles as necessary */
}

/* Styles for images */
.image {
    width: 300px; /* Adjust as necessary */
    height: auto;
    /* Other styles as necessary */
}





/* General Section Styles */
.section {
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content: space-around; /* Changed to space-around for more even distribution */
    margin: 20px 0;
    padding: 20px;
}

.section.alt {
    flex-direction: row-reverse;
}




.text-container {
    flex: 1;
    max-width: 50%;
    text-align: justify;
    padding: 0 10px;
}



/* Image and Text Container Styles */
.pics-container, .text-container {
    padding: 10px;
}

/* Specific Image Styles */
.pics-container-team1 img {
    width: 250px;
    height: 350px;
    object-fit: cover;
}

.pics-container-team2 img {
    width: 200px;
    height: 300px;
    object-fit: cover;
}

.pics-container-team3 img {
    width: 120px;
    height: 180px;
    object-fit: cover;
}




/* Style for the first image container */
.image-container1.image1 img {
    width: 500px; /* Adjust as necessary */
    height: auto;
    /* Other styles if necessary */
}

/* Style for the second image container */
.image-container2.image2 img {
    width: 400px; /* Adjust as necessary */
    height: auto;
    /* Other styles if necessary */
}

/* Style for the third image container */
.image-container3.image3 img {
    width: 500px; /* Adjust as necessary */
    height: auto;
    /* Other styles if necessary */
}

/* Style for the text containers */
.text-container {
    text-align: justify;
    /* Other styles if necessary */
}



/* Footer Styles */
footer {
    background-color: #f2f2f2;
    color: #333;
    text-align: center;
    padding: 20px;
    font-family: 'Barlow', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 10px;
}

/* Title Styles */
.title-container {
    background-color: #BFC3E2;
    padding: 10px;
    text-align: center;
}

.title-container .page-title, .title-container .subtitle {
    color: white;
    padding: 10px;
    font-family: 'Barlow', sans-serif;
}

.title-container .page-title {
    font-size: 36px;
    margin-bottom: 5px;
}

.title-container .subtitle {
    font-size: 24px;
    margin-top: 5px;
}

.title-container .title-underline {
    width: 50px;
    border: 0.5px solid white;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    .footer-section, .footer-section2 {
        flex-basis: 100%;
    }
    .section {
        flex-direction: column;
    }
    .section .image-container, .section .text-container {
        max-width: 100%;
    }

    .section {
        flex-direction: column;
    }
    .image-container, .text-container {
        max-width: 100%;
    }
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    background-color: #grey; /* Adjust the color as needed */
}

.grid-item {
    border: 1px solid #ccc; /* Optional */
    padding: 10px;
    text-align: center;
}

.grid-item img {
    width: 50px; /* Adjust as needed */
    height: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

