* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient( rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('background.jpg');
    background-size: cover;
    background-position: center;
}

.navbar {
    width: 100%;
    margin: auto;
    margin-right: 10px; /* Adjusted margin */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0; /* Smaller padding */
    color: yellow;
    background-image: url('navbar_background.jpg');
    /*  Dark blue background color */
    /*border-radius: 20px; /* Rounded corners */
}

.logo {
    width: 120px;
    cursor: pointer;
    margin-right: 100px;
}

.navbar a {
    text-decoration: none;
    color: yellow; /* Change color to darken blue */
    text-transform: uppercase;
    margin: 0 5px; /* Adjusted margin between links */
}

.navbar a:hover {
    text-decoration: underline;
}

.navbar a:last-child {
    margin-right: 20px; /* Added margin after the "Contact" link */
}

.navbar a::after {
    content: '';
    height: 3px;
    width: 100%;
    background: #00008B;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: width 0.5s, opacity 0.5s;
    opacity: 0; /* Initially hide the underline */
}

.navbar a:hover::after {
    width: 100%;
    opacity: 1; /* Show the underline on hover */
}

/*nav responsiveness*/
/* Existing CSS */

/* Existing CSS */

/* Existing CSS */

@media (max-width: 768px) {
    .navbar {
        padding: 20px 0; /* Adjusted padding */
        flex-wrap: wrap;
    }

    .navbar a {
        font-size: smaller; /* Adjusted font size */
        margin: 5px; /* Adjusted margin */
        margin-right: 10px; /* Adjusted margin */

    }
}

body{
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://i.pinimg.com/564x/c5/6a/d4/c56ad4e1becc395481b7bf5e1eef8e88.jpg');
    background-size: cover;
    background-position: center;
}
.banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://i.pinimg.com/564x/c5/6a/d4/c56ad4e1becc395481b7bf5e1eef8e88.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 0px;
    position: relative;
}
.wrapper {
    background-color:#fff;
    padding: 20px;
    border-radius: 10px;
    margin: 50px auto;
    width: 90%;
}

.container {
    margin-bottom: 20px;
}

.container h1 {
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
    color: goldenrod;
    text-align: center;
    margin-bottom: 20px;
}

.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-image {
    flex: 1;
    margin-right: 20px;
    
}

.about-image img {
    width: 66%;
    height: auto;
    display: block;
    border-radius: 5px;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 24px;
    color: goldenrod;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.5;
}

/* Reach section styling */

.reach {
    text-align: center;
    margin-top: 20px;
}

.reach p {
    color: black;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
}

.reach button {
    width: 200px;
    padding: 15px;
    text-align: center;
    margin: 0 10px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid #00008B;
    color: goldenrod;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: 0.5s;
    display: inline-block;
}

.reach button span {
    background: black;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: width 0.5s;
}

.reach button:hover span {
    width: 100%;
}

.reach button:hover {
    background: black;
    border: none;
}

/* Responsive Styling */

@media (max-width: 768px) {
    .about {
        flex-direction: column;
    }

    .about-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .reach {
        margin-top: 50px;
    }
}







.footer {
    background-color: goldenrod;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    overflow-x: auto; /* Allow horizontal scrolling on smaller screens */
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

td i {
    margin-right: 5px;
}

/* Optional: Add some spacing between the icon and text */
td i {
    margin-right: 5px;
}

/* Responsive CSS */
@media (max-width: 768px) {
    .footer {
        overflow-x: auto;
    }

    table {
        width: auto;
    }

    td {
        display: block;
        width: 100%;
    }
}


