body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container1 {
    display: flex;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 0.5rem;
    right: 0.5rem;
    width: 60px;
    height: 60px;
    border-radius: 99px;
    background-color: #2e3047;
    cursor: pointer;
}

.img2 {
    width: 500px;
    height: 200px;
}


.hamburger {
    position: relative;
    top: calc(50% - 2px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;

}


.hamburger>span,
.hamburger>span::before,
.hamburger>span::after {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 99px;
    background-color: #FFF;
    transition-duration: .25s;
}

.hamburger>span::before {
    content: '';
    top: -8px;
}

.hamburger>span::after {
    content: '';
    top: 8px;
}

.menu-toggle.is-active .hamburger>span {
    transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger>span::before {
    top: 0;
    transform: rotate(0deg);
}

.menu-toggle.is-active .hamburger>span::after {
    top: 0;
    transform: rotate(90deg);
}

@media (max-width: 375px) {
    .hamburger {
        top: calc(50% - 2px);
        left: 50%;
        transform: translate(-50%, -50%);
        width: 32px;

    }

    .hamburger>span,
    .hamburger>span::before,
    .hamburger>span::after {
        display: block;
        position: absolute;
        width: 100%;
        height: 4px;
        border-radius: 99px;
        background-color: #FFF;
        transition-duration: .25s;
    }

    .hamburger>span::before {
        content: '';
        top: -7px;
    }

    .hamburger>span::after {
        content: '';
        top: 8px;
    }

    .menu-toggle.is-active .hamburger>span {
        transform: rotate(45deg);
    }

    .menu-toggle.is-active .hamburger>span::before {
        top: 0;
        transform: rotate(0deg);
    }

    .menu-toggle.is-active .hamburger>span::after {
        top: 0;
        transform: rotate(90deg);
    }
}


.sidebar {
    position: fixed;
    background-color: #f4f4f4;
    padding: 20px;
    height: 140vh;
    transition: 0.3s ease;
    /* Adding transition effect for smooth animation */
    overflow: hidden;
    /* Hide sidebar content when collapsed */

}

.nav-heading {
    color: rgb(19, 141, 155);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.sidebar-toggle-container {
    position: fixed;
    top: 2rem;
    right: 1rem;
    z-index: 9999;
}




.sidebar h3 {
    color: #707793;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.sidebar .menu {
    margin: 0 -1rem;
}

.sidebar .menu .menu-item {
    display: block;
    padding: 1em;
    color: black;
    text-decoration: none;
    transition: 0.2s linear;
}

.sidebar .menu .menu-item:hover,
.sidebar .menu .menu-item.is-active {
    color: #3bba9c;
    border-right: 5px solid #3bba9c;
}

.sidebar .menu .menu-item:hover {
    border-right: 5px solid #3bba9c;
}

.content {
    flex: 1 1 0;
    padding: 2rem;
}

.content h1 {
    color: #3C3F58;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.content p {
    color: #707793;
}

@media (max-width: 1024px) {
    .sidebar {
        max-width: 200px;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        height: 100vh;
        width: 100%;
        max-width: 300px;
        transition: 0.2s linear;
        z-index: 999;
        /* Ensure the sidebar is above other content */
    }


    .sidebar.is-active {
        left: 0;
    }
}

.main-cont1 {
    display: flex;
    padding-left: 250px;
    width: 100%;
    flex-direction: column;
}

.main-cont {
    width: 100%;
    margin-top: -100px;
    padding-top: 0px;

}

@media (max-width: 1024px) and (min-width:768px) {
    .main-cont1 {
        padding-left: 200px;
    }
}

/* Styles for specific elements */

/* Heading */
.nav-links {
    text-decoration: none;
}

a:link {
    text-decoration: none;
}

/* Navigation links */
.nav-sub-links {
    text-decoration: none;
    padding: 15px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    cursor: pointer;
}

.nav-sub-links:hover {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /* Example shadow values */
}

.temp {
    padding-top: 20px;
    margin-right: 50px;
    padding-right: 30px;
}

/* Apply semi-transparent overlay */
.bg-img {
    position: relative;
    background-image: url('./new-images/Main-img.jpg');
    background-size: cover;
    height: 400px;
}

.bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity (0.5 for example) */
}

/* Styling for heading text */
.heading {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

@media (max-width: 1300px) and (min-width:767px) {}


.heading-text {
    color: #ffffff;
    font-size: 65px;
    margin-bottom: 60px;
}

.heading-text1 {
    color: #ffffff;
    width: 100%;
    font-size: 65px;
    /* margin-bottom: 60px; */
}

.text-overlay {
    position: absolute;
    opacity: 1;
    top: 75%;
    /* Adjust to position vertically */
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 2;
    color: white
        /* Text color */
}


.overlay-text {
    font-size: 40px;
    /* Adjust font size */
    line-height: 43px;
}

@media (max-width: 1400px) and (min-width:767px) {
    .overlay-text {
        font-size: 30px;
        /* Adjust font size */
        line-height: 43px;
    }

    .text-overlay {
        top: 85%;
        /* Adjust to position vertically */
    }
}

.line {
    border-bottom: 5px solid green;
    /* Adjust the border thickness */
    width: 80%;
    margin: 0 auto;
}

/* Styling for overlay text */

.cont-text1 {
    color: #f4f4f4;
    font-size: 25px;
    margin-left: 50px;
    line-height: 28px;
    text-align: center;
    font-family: 'Open Sans';
}

@media (max-width: 1300px) and (min-width:767px) {
    .bg-img {
        /* width: auto; */
        max-width: auto;
        height: 500px;
    }

    .line {
        width: 600px;
    }

}

/* Box */
.box1 {
    /* background-color: #f4f4f4; */
    padding: 40px;
    width: 100%;
}

.heading-box1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.content-box1 {
    font-size: 16px;
    line-height: 1.6;
}

/* Styles for overlay text */


.amneits-data,
.form-data {
    margin-top: 40px;
    padding-left: 60px;
    padding-right: 10px;
    font-size: 20px;
}

.boxes {

    border: 2px solid rgba(0, 145, 76, 1);
    background-color: rgba(255, 255, 255, 1);
    /* color: rgba(0,145,76,1); */
    font-family: 'Open Sans';
    font-size: 13pt;
    line-height: 22px;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
}

.box {
    margin-left: 60px;
    margin-right: 60px;
    margin-top: 40px;


}

/* CSS to add a gap of 200px between cards using a wrapper */
.main-card {
    padding-right: 30px;
    margin-bottom: 200px;
    /* Sets a gap of 200px after each card */
}

/* styles.css */
/* CSS using flexbox to maintain image aspect ratio */
.img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrapper img {
    max-width: 100%;
    max-height: 100%;

}

a {
    text-decoration: none;
    color: inherit !important;
    background: none;
}

/* Styling for the individual cards */
.card {
    border: none;
    padding: 20px;
}

.notices {
    margin-left: 60px;
}

.agm {
    margin-top: 20px;
    margin-bottom: 30%;
}

.line1 {
    border-bottom: 1px solid black;
    width: 90%;

    position: relative;
}

/* Adjust the line position */
.line1::before {
    content: "";
    position: absolute;
    top: 0%;
    width: 100%;
    height: 1px;

}

.footer-img1 .footer-img {
    width: 100%;
}


@media only screen and (max-width: 767px) {

    .main-cont1 {
        width: 100%;
        /* Occupy full width */
    }

    .main-cont {
        padding-top: 20px;
        /* Add some padding */
    }

    .line {
        width: 300px;
        margin-top: 10px;
    }

    .footer-img1 .footer-img {
        width: 100%;
    }

    .text-overlay {
        top: 85%;
        left: 50%;
    }

    .overlay-text {
        font-size: 30px;
        line-height: 30px;
    }

    .heading-text,
    .heading-text1 {
        font-size: 50px;
        line-height: 50px;
    }

    .main-card {
        padding-right: 10px;
    }

    .card {
        margin-left: 10px;
        padding: 20px;
        margin-right: 0px;
    }

    .box {
        margin-left: 20px;
    }

    .amneits-data,
    .form-data {

        padding-left: 20px;

    }

    .notices {
        margin-left: 10px;
    }

    .temp {
        margin-right: 0px;
        padding-right: 10px;
    }

    .main-cont1 {

        padding-left: 0px;
    }
}