body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

header {
    /* position: fixed; */
    width: 100%;
    background: #1357d7;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

#logo img {
    width: 150px;
    background-color: white;
    padding-left: 50px;
    margin-left: 50px;
    padding: 5px;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: -1;
}

nav {
    display: flex;
    padding-right: 65px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: bolder;
}

.active_n,
.nav_a:hover {
    text-decoration: underline;
    text-decoration-color: rgba(233, 79, 13, 0.842);
    text-decoration-thickness: 5px;
    text-underline-offset: 5px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 50px;
        top: 15px;
        font-size: 24px;
        cursor: pointer;
        z-index: 1;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 2;
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 10px 0;
        padding: 10px;
        color: black;
    }

    .zoom-img {
        display: none;
    }

    #agenda-section-out div div h2 p{
        padding: 0px 0px;
    }
    .pimgd{
        display: flex;
        flex-direction: column;
        /* justify-content: space-evenly;
        align-items: center; */
    
    }
}

#agenda-section-out div div h2 p{
    padding: 0px 200px;
}
section {

    text-align: center;
}

#m_div {
    margin-top: -4px;
    padding: 40px 0px;
    background: #ddd;
}


#home div p {
    text-align: justify;
}

#slider_s {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
    z-index: 1;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slider img {
    width: 100%;
    height: auto;

}

.speaker {
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;
}



#home ul li {
    text-align: left;

}

.sec_home {
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
}

.agenda_sec {
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
}

#m_div h2 {
    font-size: 20px;
    padding: 0;
    border-radius: 4px;
    border-bottom: 4px solid #aadc45;
}

#home_div {
    display: flex;
}

.zoom-img {
    width: 475px;
    height: 375px;
    border-radius: 10px;
}

.zoom-img img {
    width: 475px;
    height: 375px;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

#home_div img:hover {
    transform: scale(1.1);
}
/* Agenda table & Bar css         */
.w3-bar {
    width: 100%;
    overflow: hidden;
}

.w3-black,
.w3-hover-black:hover {
    color: #fff !important;
    background-color: #0f1669 !important;
}

.w3-bar .w3-button {
    white-space: normal;
}

.w3-bar .w3-bar-item {
    padding: 8px 16px;
    float: left;
    width: auto;
    border: none;
    display: block;
    outline: 0;
}

.w3-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    font-size: 15px;
}

.w3-button:hover {
    background-color: grey;
}

.agenda_table {
    width: 80%;
    margin: auto;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    
}

td,
th {
    border: 1px solid #0b0808;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}


/* footer css */

.footer {

    background: #10182F;

}

.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3.5rem;
    padding: 5px 60px;
}

.footer-row .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-col .links {
    margin-top: 20px;
    padding-left: 0px; 
}

.footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-col .links li a {
    text-decoration: none;
    color: #bfbfbf;
}

.footer-col .links li a:hover {
    color: #fff;
}

.footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
}

.footer-col form {
    display: flex;
    gap: 5px;
}

.footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid #7489C6;
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
}

.footer-col input::placeholder {
    color: #ccc;
}

.footer-col form button {
    background: #fff;
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
}

.footer-col form button:hover {
    background: #cecccc;
}

.footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
    font-size: 25px;
}

.footer-col .icons i {
    color: #afb6c7;
}

.footer-col .icons i:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }

    .footer .footer-row {
        padding: 20px;
        gap: 1rem;
    }

    .footer-col form {
        display: block;
    }

    .footer-col form :where(input, button) {
        width: 100%;
    }

    .footer-col form button {
        margin: 10px 0 0 0;
    }
}

#register{
    cursor: pointer;
    box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.5);
}
#register:hover{
    transition: all .3s ease-in-out;
    transition-property: transform;
    transform: scale(1.1);
}

/* .registeranis{
    transition: all .3s ease-in-out;
    transition-duration: .3s;
    transition-property: transform;
    transform: scale(1.1);
} */


.partner{
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
    margin-top: 25px;
}

.pimgd{
    display: flex;
    justify-content: space-evenly;
    align-items: center;

}
#partners  img{
 width: 250px;
 height: auto;
}


#partners h4{
    text-align: center;
    background-color: #0f1669;
    color: white;
    padding: 4px 15px;
    border-radius: 5px;
    width: 250px;
   }


   .album{
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: auto;
    margin-bottom: 25px;
    margin-top: 25px;
}

