/* Reset and Box-Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin-top: 60px; /* Space for fixed navbar */
}

/* Navbar Styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0056b3;
    color: #fff;
    padding: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.brand-logo img {
    max-width: 22%; /* Scales the logo down */
    height: auto;
}

nav .hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: background-color 0.3s, border-radius 0.3s;
    border-radius: 4px;
}
h2{
    color: #0056b3;
}
nav ul li a:hover {
    background-color: #003d7a;
}
#video-section{
    padding:0 0.5rem;
}
#header-video{
    width: 100%;
    padding-top: 36px;
    height: auto;
}
/* Popup Styles */
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 1000; /* Sit on top */
}

.popup-content {
    background-color: #fff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
/* form popup */
.popupform {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 1000; /* Sit on top */
    overflow: auto; /* Enable scroll if needed */
}

.popup-content-form {
    background-color: #fff;
    margin: 15% auto; /* Centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Adjust based on screen size */
    max-width: 600px; /* Optional: max width */
    position: relative;
}



/* Header/Banner Section */
header {
       
    position: relative;
    text-align: center;
    color: #fff;
    background: url('./1725119766770.jpg') no-repeat center center/cover;
    padding: 100px 20px;
   
}

header .header-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
}

header .header-text h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

header .header-text p {
    font-size: 1.2rem;
}

/* General Section Styles */
section {
    padding: 2rem;
    margin:  0;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
form {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.form-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-right: 1rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1.5px dotted #0056b3;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: #003d7a;
}

button[type="submit"] {
    background-color: #0056b3;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    width: 50%;
    display: block;
    margin: 1rem auto;
}

button[type="submit"]:hover {
    background-color: #003d7a;
}
#about-content {
    max-height: 100px; /* Limit height initially */
    overflow: hidden;  /* Hide overflowing content */
    transition: max-height 0.3s ease; /* Smooth transition */
}

#about-content.expanded {
    max-height: 1000px; /* Enough height to show all content */
}
li{
    margin-left: 10px;
}

.read-more {
    background-color: #0056b3;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #003d7a;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
}

footer p {
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header {
   
        background: url('./1725119766770.jpg') no-repeat center center/cover;
        background-size: cover; /* Ensures the image covers the entire area without overflow */
        background-position: center center; /* Centers the background image */
        height: auto;/* Adjusts the height to be 100% of the viewport height */
        width: 100%; /* Ensures the width is 100% of the viewport width */
        overflow: hidden; /* Hides any overflow */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #0056b3;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 1rem;
        z-index: 1000;
    }

    nav ul.show {
        display: flex;
    }

    nav .hamburger {
        display: block;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        padding: 1rem;
        text-align: center;
        display: block;
        border-bottom: 1px solid #fff;
    }

    header {
        padding: 50px 20px;
    }

    header .header-text h1 {
        font-size: 1.5rem;
    }

    header .header-text p {
        font-size: 1rem;
    }

    form {
        padding: 2rem 1rem;
    }

    .form-group {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .slider .prev, .slider .next {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        position: relative;
        text-align: center;
        color: #fff;
        background: url('./1725119766770.jpg') no-repeat center center/cover;
        padding: 100px 20px;
        height: auto;
        width: 100%;
    }
    nav ul {
        top: 50px;
    }

    header {
        padding: 40px 10px;
    }

    header .header-text h1 {
        font-size: 1.2rem;
    }

    header .header-text p {
        font-size: 0.9rem;
    }

    form {
        padding: 1rem 0.5rem;
    }

    .slider .prev, .slider .next {
        font-size: 1rem;
    }
}
