* {
    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;
    font-size: 20px;

}

.navbar1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: aliceblue;
    padding-left: 30px;
    padding-right: 30px;

}

.logo img {
    width: 300px;
}

.menu ul {
    display: flex;
    list-style-type: none;
}

.menu ul li {
    padding: 12px;
    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: 85px;
    background: orange;
}

.mobile-bar {
    display: none;
}

.closeit {
    display: none;
}

@media (max-width: 900px) {

    .logo img {
        margin-left: 70px;
    }

    .navbar1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: aliceblue;
        width: 100%;
        position: fixed;
        z-index: 15;
        top: 0;
    }

    /* MOBILE VIEW */
    .mobile-bar {
        display: block;
        width: 20px;
        z-index: 2;
        margin-left: 10px;
        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;
    }
}




/* **************************** */
/* ********SECTION1************ */
/* **************************** */
.top-image {
    background-color: rgb(0, 0, 0);
    width: 100%;
    /* border-top-left-radius: 90px;
    border-bottom-right-radius: 90px; */

}

.top-image img {
    object-fit: cover;
    width: 100%;
    height: 400px;
    margin: 0 auto;
    opacity: 0.3;
    /* border-top-left-radius: 90px;
    border-bottom-right-radius: 90px; */
    /* border-top-left-radius: 40px;
    border-bottom-right-radius: 40px; */
}

.headings {
    position: absolute;
    color: white;
    z-index: 10;
    top: 220px;
    left: 550px;
    font-size: 80px;
    font-weight: 800;
}

.headings:hover {
    color: orange;
    transition: 0.4s ease-in-out;
    cursor: pointer;
}

@media(max-width: 900px) {
    .top-image img {
        height: 280px;
        object-fit: cover;

    }

    .headings {
        position: absolute;
        left: 90px;
        font-size: 39px;
        top: 160px;
        opacity: 0.7;
        
    }
}

/* ********************** */
 /* SECTION2  */
/* ********************** */

.sec2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
}

.head1 {
    font-size: 60px;
    font-weight: 800;
    border-bottom: 2px solid orange;
    margin-bottom: 32px;
}

.card p {
    width: 680px;
    font-size: 19px;
    text-align: left;
    margin-left: 12px;
}

.more1 {
    display: flex;
    gap: 100px;
}
.more1 .card p{
    text-align: justify;
}

.card h1 {
    margin-bottom: 9px;
    text-align: left;
    margin-left: 12px;
    font-weight: 800;
}

/* .orange {
    width: ;
} */

/* CSS */
.slideshow-container {
    position: relative;
}

.slide {
    display: none;
}

.slide img {
    width: 350px;
    height: 380px;
    object-fit: cover;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.5s;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border: none;
    border-radius: 0 3px 3px 0;
}

.slide:hover .caption {
    opacity: 1;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}



@media(max-width: 900px) {
    .more1 {
        display: flex;
        gap: 12px;
        flex-direction: column-reverse;
    }
    .more1 h1{
        font-size: 19px;
    }
    .more1 p{
        font-size: 15px;
        width: 350px;
    }
    .slideshow-container{
        width: 400px;
    }
}








/* ************************ */
/* ********SECTION 3******* */
/* ************************ */
.sec3 {
    margin-top: 180px;
    margin-bottom: 100px;
}

.info5 {
    text-align: center;
    font-size: 19px;
}

.info5 {
    width: 600px;
    margin: 0px auto;
}

.info5 ul li {
    list-style-type: none;
}

.info90 img {
    width: 400px;

}





/* *********************** */
/* ******SPECIAL SECTION****** */
/* *********************** */
.special {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.spec1 img {
    width: 650px;
    border-radius: 12px;
}

.side5 {
    background-color: orange;
    width: 700px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.info8 h1 {
    background-color: #fff;
    width: 650px;
    border-radius: 5px;
    margin: 0 auto;
    font-size: 35px;
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 10px;
}

.info8 p {
    font-size: 18px;
    text-align: justify;
}




@media(max-width: 900px) {
    .special {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        margin-left: 5px;
        gap: 40px;
        margin-bottom: 40px;
    }

    .spec1 img {
        width: 350px;
        border-radius: 12px;
    }

    .side5 {
        background-color: orange;
        width: 400px;
        text-align: center;
        padding: 20px;
        border-radius: 12px;
    }
    .info8 h1 {
        background-color: #fff;
        width: 340px;
        border-radius: 5px;
        margin-bottom: 10px;
        font-size: 28px;
        font-weight: 900;
    }
    .info8 p{
        font-size: 15px;
    }

    .info8 {
        width: 350px;
        margin-left: 14px;
    }
}



/* ************************ */
/* ***OUR DAY TODAY PROGRAM*** */
/* ************************ */
.head9 {
    font-size: 55px;
    font-weight: 800;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 50px;
}
.head9 span{
    color: orange
}

table,
th,
td {
    border-style: solid;
    padding: 12px;
}

table {
    /* margin-left: 30%; */
    font-size: 19px;
    width: 650px;
}

.tables {
    display: flex;
    justify-content: space-between;
    justify-content: space-around;
    margin-bottom: 100px;
}

@media(max-width: 900px) {
    .head9{
        font-size: 20px;
    }
    
    table {
        font-size: 13px;
        width: 360px;
    }

    .tables {
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin: 30px;
    }

}










/* **********FOOTER*********** */
footer {
    background-color: rgb(0, 0, 69);
    color: white;
    font-size: 15px;
}

.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;
}

/* **************************************************** */
/* ***************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;
}
.innerhead5{
    text-align: center;
    color: white;
}
.info7 img {
    width: 20px;
}

.box p {
    color: white;
}

#overlay-content .head5 h1 {
    font-size: 40px;
}




@media(max-width: 900px) {
    #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: white;
    }
}

.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;
}

.footer2 ul {
    list-style-type: none;
}

.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;
}

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;
}

.credit p {
    text-align: center;
}

@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;
    }
}