* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ddd;
}

.navbar1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: aliceblue;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;

}
.darkmode{
    background-color: rgb(3, 3, 29);
    color: white;
}

.myLinks {
    align-items: center;
}

.logo img {
    width: 300px;
}

.menu ul {
    display: flex;
    list-style-type: none;
}

.menu ul li {
    padding: 19px;
    font-size: 19px;
    font-weight: 500;
}

.menu ul li a {
    color: #258fcb;
    text-decoration: none;
}

.menu ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    background: orange;
    transition: width 0.3s ease;
}


.menu ul li a:hover::after {
    width: 87px;
    background: orange;
}

.mobile-bar {
    display: none;
}

.closeit {
    display: none;
}



/* ****************************************************************************************************** */
/* *************************this is a menu********************************************** */
/* ****************************************************************************************************** */
@media (max-width: 900px) {

    .logo img {
        margin-left: 50px;
    }

    .navbar1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: aliceblue;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
    }

    /* MOBILE VIEW */
    .mobile-bar {
        display: block;
        width: 20px;
        z-index: 2;
        margin-left: 0px;
        position: absolute;
    }

    .menu ul {
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 120px;
        background-color: #fff;
        height: 100%;
        width: 270px;
        flex-direction: column;
        z-index: 10;
        display: none;
    }

    .closeit {
        display: block;
        position: absolute;
        right: 30px;
        top: 50px;
    }

    .closeit img {
        width: 30px;
    }

    .sec1 {
        margin-top: 20px;
    }

    .slide {
        top: 60px;
    }

}




/* ********************************************* */
/* **************TOP BUTTON********************* */
/* ********************************************* */
/* #mybtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    left: 12px;
    z-index: 999;
    border: none;
    outline: none;
    background-color: red;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
} */



/* ********SECTION1************ */
.slideshow {
    position: relative;
    width: 100%;
    height: 607px;
    /* Set the height of the slideshow */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: brightness(50%);
    /* Add white opacity effect */
}

.caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.caption h2 {
    margin-top: 0;
    font-size: 60px;
    width: 800px;

}

.caption h2 span {
    color: rgb(255, 149, 0);
}

.caption p {
    margin-bottom: 0;
    width: 500px;
}

@media(max-width: 900px) {
    .caption h2 {
        font-size: 25px;
        width: 300px;
    }

    .caption p {
        width: 290px;
    }

    .slideshow {
        position: relative;
        width: 100%;
        height: 500px;
        /*Set the height of the slideshow */
        overflow: hidden;
    }

    .navbar1 {
        width: 100%;
    }

    .slide img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        filter: brightness(50%);
        /* Add white opacity effect */
    }

}

/* ********SECTION 2************* */
.sec2 {
    margin-top: 100px;
}

.beg1 h1 {
    font-size: 40px;
    width: 750px;
    font-weight: 900;
}

.beg1 p {
    width: 650px;
}

.info {
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-content: space-around;
}

.div1 img {
    width: 600px;
    border: 3px solid orange;
    border-radius: 23px;
    box-shadow: 3px 1px rgb(167, 148, 148);
}

.quick {
    width: fit-content;
    margin: 0 auto;
}

.quick h1 {
    font-size: 50px;
    position: relative;
    top: 130px;
}


.div2 p {
    width: 600px;
}

@media(max-width: 900px) {
    .info {
        display: flex;
        flex-direction: column;
    }

    .div1 img {
        width: 400px;

    }

    .uu {
        display: none;
    }

    .div2 {
        width: 300px;
        gap: none;

    }

    .info {

        display: flex;
        align-items: center;

    }

    .beg1 {
        display: none;
    }

}

/*********** SECTION 3 **********/
.sec3sec {
    margin-top: 100px;
}

.head3 h1 {
    font-size: 60px;
    font-weight: 800;
    border-bottom: 2px solid orange;

}

.sec3 {
    gap: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.inner3 {
    text-align: center;
    width: 610px;
    border-radius: 40px;
    padding: 20px;
    background-color: rgb(128, 201, 235);
}

.inner3:hover {
    background-color: rgb(255, 102, 0);
    transition: 0.5s ease-in;
    cursor: pointer;
}
.inner3 img {
    width: 90px;
}

.inner3 h1 {
    text-align: center;
}
.head5 {
    font-size: 30px;
    font-weight: 900;
}

.quick {
    border-bottom: 2px solid orange;
    font-size: 60px;
    font-weight: 800;
    text-align: center;
    border-width: fit-content;
}

.quick h1 {
    text-align: center;
}

@media(max-width: 900px) {


    .sec3 {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        height: auto;
        margin: 75px;
    }

    .head3 h1 {
        border-bottom: 2px solid orange;
        width: fit-content;
        margin-right: 523px;
        font-size: 30px;
        margin-left: 120px;
    }

    .inner3 {
        width: 253px;
        height: auto;
        margin-left: 0px;
        font-size: 12px;
        margin: 5px;
        padding: 15px;
        font-size: 15px;
    }

    .inner3 img {
        width: 70px;
    }

    .head5 {

        padding-bottom: 12px;
        padding-top: 12px;
        text-align: center;
    }


}

@media (max-width: 900px) {}

/* ******************************************** */
/* ********************SECTION 4*************** */
/* ******************************************** */
.sec4 {
    margin-top: 50px;

    /* background-image: url(../images/icons/background.png); */
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;

}

.uu {
    width: 680px;
    height: 2px;
    background-color: orange;
    margin-left: 30%;
    margin-bottom: 50px;
}

.piclinks {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 50px;
    margin: 0 auto;
}

.image-container {
    position: relative;
    width: 300px;
    height: 200px;
    transition: opacity 0.6s ease;
}

.piclinks:hover> :not(:hover) {
    opacity: 0.4;
}


.image {
    width: 100%;
    height: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-container:hover .overlay {
    opacity: 1;
}

.text {
    font-size: 20px;
    font-weight: bold;
}

.ending {
    padding-top: 120px;
    padding-bottom: 120px;
    background-image: url(../images/icons/pic3.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ************************** */
/* DESIGN FOR THE IMAGE DOWN */
/* ************************** */
.lightbox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
}


.lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}


.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.lightbox-prev,
.lightbox-next {
    font-size: 24px;
    cursor: pointer;
}


.lightbox-image {
    position: relative;
    margin: 40px auto;
    max-width: 800px;
    max-height: 600px;
}

.lightbox-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.images-ending {
    margin-top: 100px;
    font-size: 20px;
    text-align: center;
    margin-bottom: 100px;
}

.images-image {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 250px;
}

.images-image img {
    border-radius: 50%;
    width: 300px;
    box-shadow: 5px 2px 1px rgb(0, 255, 115);
    cursor: pointer;
}

@media(max-width: 900px) {
    .lightbox-image {
        position: relative;
        margin: 40px auto;
        max-width: 800px;
        max-height: 600px;
        top: 200px;
    }

    .lightbox-nav {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: space-between;
        width: 100%;
        z-index: 3;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        cursor: pointer;
        opacity: 0.6;
    }

    .lightbox-close {
        position: relative;
        top: 150px;
        left: 83%;
        font-size: 24px;
        cursor: pointer;
        opacity: 0.5;
    }

    .lightbox-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        display: none;
    }


}


/* ********************************************************************************************** */
/* ********************************************************************************************** */
/* ********************************************************************************************** */


@media(max-width: 900px) {
    .sec4 {
        margin-top: 100px;
        height: fit-content;
        margin-bottom: 100px;
    }

    .quick {
        font-size: 30px;
    }

    .piclinks {
        display: flex;
        flex-wrap: wrap;
    }

    .image-container {
        width: 230px;
    }

    /* OVAL SHAPED PICS */
    .images-image {
        display: flex;
        flex-wrap: wrap;
        margin-left: 40px;
        flex-direction: column;
        justify-content: center;
        height: 520px;
    }

    .images-image img {
        border-radius: 50%;
        width: 130px;
        box-shadow: 5px 2px 1px rgb(0, 255, 115);
    }

    .images-ending h1 {
        font-size: 30px;
    }

    .images-ending h3 {
        font-size: 12px;
    }


}

/* MAP */
.ourlocation {
    margin-top: 100px;
}


/* **********FOOTER*********** */
footer {
    background-color: rgb(0, 0, 69);
    color: white;
}

.inner {
    display: flex;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
    align-items: center;
}

.foot1 {
    width: 350px;
    text-align: center;
}

.line1 {
    height: 2px;
    width: 140px;
    background-color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}

.footer2 ul li {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.head {
    font-size: 17px;
    font-weight: 600;
}

.foot1 img {
    width: 110px;
}

.media img {
    width: 26px;
}

.footer2 ul {
    list-style-type: none;
}


/* **************************************************** */
/* ***************CONTACT LIST***************** */
/* **************************************************** */

/* Style the overlay container */
#overlay-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

/* Style the overlay content */
#overlay-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0f014e;
    padding: 80px;
    width: 500px;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: black;
    transition: 3s ease-in;
}

/* Style the close button */
#close-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.info7 img {
    width: 20px;
}
.innerhead5{
    text-align: center;
    color: white;
}

.box p {
    color: white;
}

#overlay-content .head5 h1 {
    font-size: 40px;
    color: white;
}

@media(max-width: 900px) {

    /* CONTACT BOX */
    #overlay-content {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #0f014e;
        padding: 0pc;
        padding-top: 62px;
        padding-left: 32px;
        width: 350px;
        height: 450px;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        color: black;
    }

    #overlay-content .head5 h1 {
        color: WH;
    }
}

.head5 h1 {
    font-size: 19px;
}

.info7 {
    display: flex;
    align-items: end;
    gap: 8px;
    margin-bottom: 12px;
    margin-top: 9px;
}

.info7 a {
    color: white;
    text-decoration: none;
}

.info7 a:hover {
    color: orange;
}

.box {
    text-align: left;
}

.footer2 ul li a {
    color: white;
    text-decoration: none;
}

.footer3 {
    display: block;
    text-align: right;
    text-decoration: none;
}

.footer3 p {
    margin-top: 14px;
}

.join {
    width: 150px;
    height: 50px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 12px;
    border-style: none;
}

.join:hover {
    cursor: pointer;
}

.contact {
    width: 300px;
}

.line3 {
    background-color: #fff;
    width: 800px;
    height: 1px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.credit {
    margin-top: 12px;
    padding-bottom: 15px;
}

.credit span {
    color: yellow;
    font-weight: 700;
}

.credit p {
    text-align: center;
}

button {
    padding: 10px 20px;
    background-color: #258fcb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #1e00b3;
    transition: 0.3s ease-in;
}

@media(max-width: 900px) {
    footer {
        height: 600px;
        font-size: 15px;
        text-align: center;
    }

    .inner {
        display: flex;
        flex-direction: column;
    }

    .media p {
        display: none;
    }

    .line3 {
        width: 400px;
    }

    .footer2 {
        text-align: center;
    }

    .footer3 {
        text-align: center;
    }

    .credit {
        margin-left: 67px;
        width: 300px;
        text-align: center;
    }
}