body, h1, h2, h3, p, ul, li, form {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.content .container u {
    color: green;
}
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #003B5B;
    color: #fff;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    height: 100px;
}

.logo {
    height: 50px;
    margin-right: 20px;
}

nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-right: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: large;
}

nav ul li a:hover {
    color: #06ccf9;
}

nav ul li ul {
    display: none;
    position: absolute;
    background-color: #003B5B;
    padding: 10px;
    border-radius: 4px;
    top: 100%;
    left: 0;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    margin: 5px 0;
}

nav ul li ul li a {
    color: #fff;
}

.banner {
    background-image: url('banner.jpg');
    background-size: cover;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.banner h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.button {
    display: inline-block;
    background-color: #003B5B;
    color: #c7c7c7;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
}

.contact form .btn {
    width: 150px;
    height: 35px;
    border: 0px;
    border-radius: 30px;
    background-color: aquamarine;
}

.content {
    background-color: #F7F7F7;
    padding: 50px 0;
    text-align: center;
}

.features {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

.feature-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 30px;
    width: 100%;
}

.feature img {
    max-width: 100px;
    margin-bottom: 10px;
}

.feature p {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 15px;
}

.gallery {
    background-color: #F7F7F7;
    padding: 50px 0;
    text-align: center;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin-top: 10px;
   
}

.contact {
    background-color: #003B5B;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.contact textarea {
    height: 100px;
}

.contact input,
.contact textarea {
    padding: 10px;
    margin: 10px;
    border-radius: 4px;
    width: 300px;
    border: 0px;
    width: 350px;
}

.contact button {
    padding: 10px 20px;
    background-color: #fff;
    color: #003B5B;
    border-radius: 4px;
    cursor: pointer;
}

footer {
    background-color: #003B5B;
    color: #fff;
    padding: 10px 0;
    text-align: center,
    
}

#social{
  background-color: #003B5B;
  text-align: center;
  color: #F7F7F7;
}

.name , .f {
    font-style: oblique;
    font-weight: bolder;
    font-size: x-large;
}

.message{
  text-align: center;
  font-weight: bolder;
}

#social-media-icons img {
  width: 40px;
  height: 40px;
  margin-right: 30px;
}

.feature .read-more {
  display: none;
}

.feature .collapsed {
  display: none;
}

.feature .expanded {
  display: block;
}

/* Add these styles to your existing CSS */

body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.content .container p {
    margin-left: 0; /* Remove left margin */
    margin-right: 0; /* Remove right margin */
}

.feature-box {
    flex-direction: column; /* Stack features vertically on small screens */
    align-items: center; /* Center features */
}

.feature {
    flex-basis: 100%; /* Take up full width on small screens */
    margin-left: 0; /* Remove left margin */
    margin-right: 0; /* Remove right margin */
}

.photo-grid img {
    width: 100%; /* Make images responsive within the grid */
    height: 60%;
}

.contact input,
.contact textarea {
    width: 70%; /* Make form inputs responsive */
}


/* Hamburger menu styles */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Navigation container styles */
.nav-container {
    display: flex;
    align-items: center;
}

/* Add media query to adjust styles for smaller screens */
@media screen and (max-width: 800px) {
    .hamburger {
        display: block;
    }

    nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: large;
    margin-left: 40%;  
}

    header {
        height: auto;
    }
    
    .f {
        text-align: center;
        margin-left: 100%
    }

    .name {
        text-align: center;
        margin-right: 30%;
    }

    .feature {
        flex-basis: calc(43.33% - 20px); /* Adjust width for larger screens */
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust this value to position the menu properly */
        left: 0;
        background-color: #003B5B;
        width: 100%;
        text-align: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul.show {
        display: flex;
    }
    .banner h1 {
        font-size: 28px; /* Adjust font size for smaller screens */
    }

    .feature p {
        margin-left: 0; /* Remove left margin */
        margin-right: 0; /* Remove right margin */
    }

    .photo-grid {
        grid-template-columns: repeat(1, 1fr); /* Single column on small screens */
    }
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}


