*{
    margin: 0;
    box-sizing: border-box;
}
body{
    line-height: 1.5;
}
body.hidden-scrolling{
    overflow-y: hidden;
    position: relative;
}


/*   Home Section    */
.home-section{
    width: 100%;
    display: block;
    min-height: 100vh;
    /*background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;*/
}

/*---------   Background Image Start -------------*/

.banner1,.banner2,.banner3,.banner4{
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    background-color: #e91e63;
}

.banner-image{
    width: 120%;
    min-height: 120vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    animation: zoom-out 3s linear infinite;
    background-color: black;
    /*opacity: 0.8;*/
}
@keyframes zoom-out{
    100%{
        width: 100%;
    }
}
.banner-text-box{
    width: 70%; 
    position: absolute;
    top: 30%;
    left: 15%;
    overflow: hidden;
    color: #fff;
   /* text-shadow: 1px 1px 2px red, 0 0 25px black, 0 0 5px darkred;*/
    animation: textup 12s linear infinite;
    transform: translateY(100px);    
    text-align: center;

    background-color: rgba(0,0,0,0.4);
    border-radius: 10px;
}
.banner-text-box h1{
    font-size: 25px;   
    color: yellow;
}
.banner-text-box h2{
    font-size: 20px;
    
}
.banner1{
    animation: slide1 12s linear infinite;
}
.banner2{
    animation: slide2 12s linear infinite;
}
.banner3{
    animation: slide3 12s linear infinite;
}
.banner4{
    animation: slide4 12s linear infinite;
}
@keyframes slide1{
    0%{
        visibility: visible;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}
@keyframes slide2{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: visible;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: hidden;
    }
}
@keyframes slide3{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: visible;
    }
    100%{
        visibility: hidden;
    }
}
@keyframes slide4{
    0%{
        visibility: hidden;
    }
    25%{
        visibility: hidden;
    }
    50%{
        visibility: hidden;
    }
    75%{
        visibility: hidden;
    }
    100%{
        visibility: visible;
    }
}

@keyframes textup{
    10%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(0px);
    }
}

.text-box1{
    animation-delay: 0s;
}
.text-box2{
    animation-delay: 3s;
}
.text-box3{
    animation-delay: 6s;
}
.text-box4{
    animation-delay: 9s;
}


.springer-image{
   width: 80%;
   height: 170px;
    
}



@media (max-width: 600px){
    .springer-image{
        width: 80%;
        height: 80px;
    }
    .banner-text-box{
        position: absolute;
        top: 15%;
    }     
}
@media (max-width: 800px){
    .springer-image{
        width: 80%;
        height: 100px;
    }

}






/*---------   Background Image End -------------*/

.header{
    position: absolute;   
    width: 92%;
    left: 4%;
    right: 4%;
    top: 1%;
    z-index: 99;
    padding: 3px;
    position: fixed;

    /*background-color: yellow;*/


}

.container{
    max-width: 100%px; 
    margin: auto;    
    /*background-color: blue;*/
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}

.header-main{
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 0;
    border-radius: 4px;   

    /*background-color: #e91e63;*/
    
}
.header .logo{
    padding: 0 15px;
}
.header .logo a{
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
    font-weight: 600;
}
.header .nav-menu{
    padding: 0 15px;    
}
.header .menu > .menu-item{
    display: inline-block;
    margin-left: 30px;
    position: relative;
}
.header .menu > .menu-item > a{
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #000000;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease;


}
.header .menu > .menu-item > a .plus{
    display: inline-block;
    height: 12px;
    width: 12px;
    position: relative;
    margin-left: 5px;
    pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
    content: '';
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top: 50%;
    background-color: #000000;
    height: 2px;
    width: 100%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
    background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
    transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
    color: #e91e63;
}

/*    sub-menu   */
.header .menu > .menu-item > .sub-menu{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 220px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 10px 0;
    border-top: 3px solid #e91e63;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;

    z-index: 1;
}
@media(min-width: 992px){
    .header .menu > .menu-item-has-children:hover > .sub-menu{
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .header .menu > .menu-item-has-children:hover > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
    }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
    display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.header .open-nav-menu{
    height: 34px;
    width: 40px;
    margin-right: 15px;
    display: none;             /*flex*/
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.header .open-nav-menu span{
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000000;   
    position: relative; 
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    box-sizing: border-box;
}
.header .open-nav-menu span:before{
    top: -7px;
}
.header .open-nav-menu span:after{
    top: 7px;
}

.header .close-nav-menu{
    height: 40px;
    width: 40px;
    background-color: #ffffff;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;     /* flex */
    align-items: center;
    justify-content: center;
}
.header .close-nav-menu img{
    width: 16px;
}
.header .menu-overlay{
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}
.header .menu-overlay.active{
    visibility: visible;
    opacity: 1;
}

/*   responsive  */
@media(max-width: 991px){
    .header .nav-menu{
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }
    .header .nav-menu.open{
        visibility: visible;
        right: 0px;
    }
    .header .menu > .menu-item{
        display: block;
        margin: 0px;
    }
    .header .menu > .menu-item-has-children > a{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header .menu > .menu-item > a{
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }
    .header .menu > .menu-item:first-child > a{
        border-top: 1px solid #333333;
    }
    .header .menu > .menu-item > a .plus:before,
    .header .menu > .menu-item > a .plus:after{
        background-color: #ffffff;
    }
    .header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
    }
    .header .menu > .menu-item > .sub-menu{
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }
    .header .menu > .menu-item > .sub-menu > .menu-item > a{
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }
    .header .close-nav-menu,
    .header .open-nav-menu{
        display: flex;
    }
}
/* ============== Scrolling Text Start ========== */
/*

marquee{
    width: 100%;
    background-color: rgba(0,0,0,.6);
    color: white;
    padding: 5px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    border-radius: 5px;
    font-style: italic;
    overflow: hidden;
    
}
.marquee-scroll{
    color: blue;
    font-style: normal;
    font-size: 24px;
    margin-left: 40px;
    margin-right: 40px;
    background-color: yellow;
    padding: 4px;
    border-radius: 5px;
}
*/

/* CONTAINER (TOP BAR) */
.marquee-container{
    width: 92%;
    position: fixed;   /* stick to top */
    top: 65px;
    left: 0;
    z-index: 9999;
    margin-left: 4%;
    z-index: -1;
}

/* MARQUEE STYLE */
marquee{
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: italic;
    border-radius: 5px;
}

/* LINK STYLE */
.marquee-scroll{
    margin: 0 40px;
}

.marquee-scroll a{
    color: blue;
    background-color: yellow;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 20px;
    font-style: normal;
    text-decoration: none;
    font-weight: bold;
}

/* HOVER EFFECT */
.marquee-scroll a:hover{
    background-color: orange;
    color: white;
}

/* ============== Scrolling Text End ========== */

/* ============== Shedule Text Start ========== */
/*
.sheduled{
    display: flex;
    justify-content: space-between;
}

.sheduled h2{
    background-color: rgba(0, 0, 0, 0.5);
    color: aqua;
    padding: 6px;
    font-size: 22px;
    border-radius: 10px;
    text-align: justify
}

*/
/* ============== Shedule Text End ========== */


/* --================   Guest Section Start   ====================*/
.guest-section{
    font-family: sans-serif;
    width: 100%;
    min-height: 100vh;     
    display: block;  
    background-image: url(5.jpg);
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;   
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
}

.guests{    
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%;    
}

.guest-title{
    width: 100%;
    
    height: 50px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    text-wrap: wrap;
    font-size: 42px;
    font-weight: bold;
    padding-top: 120px;
    text-align: center;
}

.guest-container{    
    width: 100%;    
    font-family: sans-serif;
    display: flex;
    /* responsive behaviour */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
    margin-top: 80px;
   
}
.card{
    position: relative;
    width: 350px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 8px 0 rgba(0,0,0,0.15);
    padding: 16px;
    margin: 80px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-image{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 15px 35px -15px rgba(0,0,0,0.5), 0 5px 20px 0 rgba(0,0,0,1);
}
.card-image img{
    width: 100%;
    transform: scale(1.2);
}
.guest-para{
    line-height: 24px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 17px;
}
.name{
    margin-top: 150px;
    font-size: 1.4em;
    color: #333333;
    font-weight: bold;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}
/* --================   Guest Section End  ====================*/


/* --======   ABOUT THE COLLEGE Section Start ================*/ 
.about-the-college-section{
    width: 100%;
    
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    /* responsive behaviour */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.college{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%;    

    font-family: sans-serif;
    
}
.college-head{    
    font-size: 42px;
    text-align :center; 
    padding-top: 10%;
    /*background-color: #e91e63;*/
}
.college-para{
    font-size: 18px;
   margin-left: 3%;
    margin-right: 3%;
    text-align: justify;
}

@media(max-width: 700px){
    .college-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
}
@media(max-width: 600px){
    .college-head{    
        font-size: 22px;
        text-align :center; 
        padding-top: 20%;
    }    
}
@media(max-width: 400px){
    .college-head{    
        font-size: 22px;
        text-align :center; 
        padding-top: 26%;
    }    
}
/* --================   ABOUT THE DEPARTMENT Section ====================*/  
#about-the-department-section{
    width: 100%;
   
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    /* responsive behaviour */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.department{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%;   

    font-family: sans-serif;
    
}
.department-head{    
    font-size: 42px;
    text-align :center; 
    padding-top: 10%;
    /*background-color: #e91e63;*/
}
.department-para{
    font-size: 18px;
    margin-left: 3%;
    margin-right: 3%;
    text-align: justify;
}
@media(max-width: 700px){
    .department-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
}
@media(max-width: 600px){
    .department-head{    
        font-size: 22px;
        text-align :center; 
        padding-top: 20%;
    }    
}
@media(max-width: 400px){
    .department-head{    
        font-size: 22px;
        text-align :center; 
        padding-top: 26%;
    }    
}
/* --================   ABOUT THE CONFERENCE Section   ====================*/
#about-the-conFerence-section{
    width: 100%;
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    /* responsive behaviour */
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.conference{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%;  
       
    font-family: sans-serif;
    
}
.conference-head{    
    font-size: 42px;
    text-align :center; 
    padding-top: 10%;
    /*background-color: #e91e63;*/
}
.conference-para{
    font-size: 18px;
    margin-left: 3%;
    margin-right: 3%;
    text-align: justify;
}
@media(max-width: 700px){
    .conference-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
}
@media(max-width: 600px){
    .conference-head{    
        font-size: 22px;
        text-align :center; 
        padding-top: 20%;
    }    
}
@media(max-width: 400px){
    .conference-head{    
        font-size: 20px;
        text-align :center; 
        padding-top: 26%;
        
    }    
}

/* --================   CALL FOR PAPPERS Section   ====================*/
#call-for-pappers-section{
    width: 100%;
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    /* responsive behaviour */
    flex-wrap: wrap;    
    align-items: center;
    position: relative;
}
.pappers{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%;  
    font-family: sans-serif;
    
}
.pappers-head{  
   width: 100%;
    font-size: 42px;    
    padding-top: 10%;
    /*background-color: #e91e63;*/
    text-align: center;
}
.pappers > h3{
    margin-left: 3%;
    margin-right: 3%;
    text-align: justify;
}
.papers-link{    
    color: red;
    font-size: 13.5px;

}
.pappers-para{
    margin-left: 6%;
    margin-right: 3%;
    text-align: justify;
    font-size: 18px;
    
    
}
@media(max-width: 700px){
    .pappers-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
}
@media(max-width: 600px){
    .pappers-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 20%;
    }    
}
@media(max-width: 400px){
    .pappers-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 26%;
    }    
}


/* --================   PAPER SUBMISSION Section  ====================*/
.paper-submission-section{
    width: 100%;
    min-height: 100vh;
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

     display: flex;
    /* responsive behaviour */
    flex-wrap: wrap;    
    align-items: center;
    position: relative;
} 
#paper-submission{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%;  

    font-family: sans-serif;
   
}
#paper-submission > h3{
    margin-left: 3%;
    margin-right: 3%;
    text-align: center;
    line-height: 1.6;
}

.paper-submission-head{  
   width: 100%;
    font-size: 42px;    
    padding-top: 10%;
    /*background-color: #e91e63;*/
    text-align: center;
}
#paper-submission > h3{
    margin-left: 3%;
    margin-right: 3%;

    text-align: justify;
    line-height: 1.6;

}

#paper-submission > h3 .papers-link{
    font-size: 18px;
    color: red;
    text-align: center;
    word-break: break-all;
}


@media(max-width: 700px){
    .paper-submission-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
}
@media(max-width: 600px){
    .paper-submission-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 20%;
    }    
}
@media(max-width: 400px){
    .paper-submission-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 26%;
    }    
}





/* --================   PUBLICATIONS Section  ====================*/
.publications-section{
    width: 100%;
    min-height: 100vh;
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    /* responsive behaviour */
    flex-wrap: wrap;    
    align-items: center;
    position: relative;
} 
#publications{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%; 
       
    font-family: sans-serif;
    
}
.publications-head{  
   width: 100%;
    font-size: 42px;    
    padding-top: 10%;
    /*background-color: #e91e63;*/
    text-align: center;
}
#publications > h3{
    margin-left: 3%;
    margin-right: 3%;
    text-align: justify;
}
@media(max-width: 700px){
    .publications-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
}
@media(max-width: 600px){
    .publications-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 20%;
    }    
}
@media(max-width: 400px){
    .publications-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 26%;
    }    
}

/* --================   IMPORTANT DATES Section  ====================*/
#important-dates-section{
    width: 100%;
    min-height: 100vh;
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    
}
.imp-date-table1{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%; 

    font-size: 22px;
    padding: 5px;

}
.table1-head{  
    text-align: center;
    font-size: 42px;    
    text-align: center;
    /*background-color: #e91e63;*/
    padding-top: 10%;
}
.table1{
    width: 90%;
    border-collapse: collapse;
    background-color: rgb(1, 27, 105);
    color: white; 
    margin-left: 5%;
    
    
}
.table1 th, .table1 td{
    padding: 12px 15px;   
    text-align: center;
    font-size: 16px;  
    border: 1px solid white;  
}
@media(max-width: 700px){
    .table1-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
}
@media(max-width: 600px){
    .table1-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 20%;
    }    
}
@media(max-width: 400px){
    .table1-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 26%;
    }    
}
/* --================   REGISTRATION Section  ====================*/
#registration-section{
    width: 100%;
    min-height: 100vh;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
} 
.imp-date-table2{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%; 

    border-radius: 10px;
    font-size: 20px;
    padding: 5px;
    text-align: justify;  
    
}
.imp-date-table2 p{
    margin-left: 3%;
    margin-right: 3%;
}

.imp-date-table2 span{
    font-weight: bold;
}
.table2-head{  
    text-align: center;
    font-size: 42px;    
    text-align: center;
    /*background-color: #e91e63;*/
    padding-top: 10%;
}
.table2{
    width: 90%;
    border-collapse: collapse;
    background-color: rgb(1, 27, 105);
    margin-left: 5%;
    color: white;
}
.table2 td,.table2 th{
    padding: 12px 15px;
    border: 1px solid black;
    text-align: center;
}
.table2 th{
    font-size: 22px;
    font-weight: bold;
    color: yellow;
}
.table2 td{
    font-size: 16px;
    font-weight: bold;
}
.table2 tbody tr:nth-child(even){
    background-color: rgb(38, 80, 208);
}


#registration-para1{
    color: rgb(3, 3, 241);
}
#registration-para2{
    color: red;
}

/*   responsive table   */

@media(max-width: 700px){
    .table2-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
    
}
@media(max-width: 600px){
    .table2-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 20%;
    }  
    .registration-table2{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-right: 4%;
    }  
}


@media(max-width: 500px){
    .table2-head{
        font-size: 38PX;
    }
    .table2 thead{
        display: none;
    }
    .table2, .table2 tbody, .table2 tr, .table2 td{
        display: block;
        width: 100%;
    }
    .table2 tr{
        margin-bottom: 5px;
    }
    
    .table2 tr td{        
        padding-left: 50%;
        text-align: right;
        position: relative;
    }
    .table2 td::before{
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-size: 13.5px;
        font-weight: 600;
        text-align: left;
    }
    .registration-table2{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-right: 4%;
    }  
}


@media(max-width: 400px){
    .table2-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 26%;
    }    
    .registration-table2{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
         margin-right: 4%;
    }  
}

/* --===============   SHEDULE Section   =======================*/

.shedule-section{
    width: 100%;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap: wrap;
}

/* GLASS CONTAINER */
.shedule-container{
  width:80%;
  /*max-width:900px;*/
  margin-top: 200px;
  margin-bottom: 200px;
  padding:30px;
  border-radius:15px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  box-shadow:0 8px 32px rgba(0,0,0,0.2);
  text-align:center;
  color:white;
}

/* TITLE */
.shedule-container h1{
  margin-bottom:20px;
}

/* MAIN BUTTONS */
.shedule-btn{
  padding:12px 25px;
  margin:10px;
  border:none;
  border-radius:30px;
  background:white;
  color:#333;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

.shedule-btn:hover{
  transform:scale(1.1);
}

/* ACTIVE BUTTON */
.active{
  background:#ff9800;
  color:white;
}

/* DATE BUTTONS */
.shedule-dates{
  margin-top:20px;
  display:none;
}

.shedule-date-btn{
  padding:10px 20px;
  margin:5px;
  border:none;
  border-radius:20px;
  background:#ffffff;
  color:#333;
  cursor:pointer;
  transition:0.3s;
}

.shedule-date-btn:hover{
  background:#ff9800;
  color:white;
}


/* LINK  */
.person-section{
  display: none;
  margin-top: 20px;
}

.shedule-date-btn1{
  padding:10px 20px;
  margin:5px;
  border:none;
  border-radius:20px;
  background:#ffffff;
  color:#333;
  cursor:pointer;
  transition:0.3s;
}

.shedule-date-btn1:hover{
  background:#ff9800;
  color:white;
}





/* TABLE */
.shedule-table{
  margin-top:25px;
  width:100%;
  /*border-collapse:collapse;*/
  display:none;
  overflow:hidden;
  border-radius:10px;
  table-layout: fixed;    /* important */
}

.shedule-table th{
  background:#ff9800;
  color:white;
  padding:12px;
  font-size: 25px;
}

.shedule-table td{
  background:rgba(255,255,255,0.2);
  padding:10px;
  font-size: 17.5px;
}

.shedule-table tr:hover td{
  background:rgba(255,255,255,0.4);
}

.shedule-table th,
.shedule-table td {
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal ;  /*!important override nowrap */
}



/* ANIMATION */
.fade{
  animation:fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}

/*GO UP*/
.shedule-goup {
  padding:10px 20px;
  margin:5px;
  border:none;
  border-radius:20px;
  background:#ffffff;
  color:#333;
  cursor:pointer;
  transition:0.3s;
}

.shedule-goup:hover{
  background:#ff9800;
  color:white;
}
/*  ARROW BUTTON  */

#topBtn{
  position: fixed;
  bottom: 120px;
  right: 30px;
  display: none;

  padding: 12px 15px;
  font-size: 18px;

  background: #094afd;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;

  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: 0.3s;
}

#topBtn:hover{
  background: #072fb3;
}

/* RESPONSIVE SHEDULE TABLE  */


/* ================= RESPONSIVE DESIGN ================= */

/* ---------- LARGE SCREENS (TV / BIG DESKTOP) ---------- */
@media (min-width: 1400px){
  .shedule-container{
    width: 70%;
    padding: 40px;
  }

  .shedule-table th{
    font-size: 28px;
  }

  .shedule-table td{
    font-size: 18px;
  }
}


/* ---------- LAPTOPS ---------- */
@media (max-width: 1200px){
  .shedule-container{
    width: 90%;
    padding: 25px;
  }

  .shedule-table th{
    font-size: 22px;
  }

  .shedule-table td{
    font-size: 16px;
  }
}


/* ---------- TABLET LANDSCAPE ---------- */
@media (max-width: 992px){
  .shedule-container{
    width: 95%;
    padding: 20px;
  }

  .shedule-btn{
    padding: 10px 18px;
    font-size: 14px;
  }

  .shedule-table{
    display: block;
    overflow-x: auto;   /* KEY: horizontal scroll */
    white-space: nowrap;
  }

  .shedule-table th{
    font-size: 18px;
  }

  .shedule-table td{
    font-size: 14px;
  }
}


/* ---------- TABLET PORTRAIT ---------- */
@media (max-width: 768px){
  .shedule-container{
    width: 95%;
    padding: 15px;
  }

  .shedule-container h1{
    font-size: 22px;
  }

  .shedule-btn{
    padding: 8px 15px;
    font-size: 13px;
  }

  .shedule-date-btn{
    padding: 8px 14px;
    font-size: 13px;
  }

  .shedule-table{
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .shedule-table th{
    font-size: 16px;
  }

  .shedule-table td{
    font-size: 13px;
  }
}


/* ---------- MOBILE LANDSCAPE ---------- */
@media (max-width: 600px){
  .shedule-container{
    padding: 12px;
  }

  .shedule-btn{
    width: 100%;
    margin: 8px 0;
  }

  .shedule-date-btn{
    width: 100%;
    margin: 5px 0;
  }

  .shedule-table{
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}


/* ---------- MOBILE PORTRAIT ---------- */
@media (max-width: 480px){
  .shedule-container{
    width: 100%;
    padding: 10px;
  }

  .shedule-container h1{
    font-size: 20px;
  }

  .shedule-table th{
    font-size: 14px;
  }

  .shedule-table td{
    font-size: 12px;
    padding: 8px;
  }
}


/* ---------- EXTRA SMALL DEVICES ---------- */
@media (max-width: 360px){
  .shedule-container h1{
    font-size: 18px;
  }

  .shedule-table td{
    font-size: 11px;
  }
}




/* --================   COMMITTEE Section   ====================*/
#committee-section{
    width: 100%;
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.committee{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%; 
}
.comittee-head{  
    font-size: 42px;    
    padding-top: 10%;
    text-align: center;
}
#head1{
    font-size: 20px;
    font-weight: bold;
    line-height: 50px;
    margin-left: 3%;
    margin-right: 3%;
}
#head2{
    font-size: 17px; 
    margin-left: 6%;
    margin-right: 3%;
}
@media(max-width: 700px){
    .comittee-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
    #head1{
        margin-left: 3%;
        margin-right: 3%;
    }
    #head2{
        margin-left: 6%;
        margin-right: 3%;
    }
}
@media(max-width: 600px){
    .comittee-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 20%;
    }    
    #head1{
        margin-left: 3%;
        margin-right: 3%;
    }
    #head2{
        margin-left: 6%;
        margin-right: 3%;
    }
    
}
@media(max-width: 400px){
    .comittee-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 26%;
    }    
    
    #head1{
        margin-left: 3%;
        margin-right: 3%;
    }
    #head2{
        margin-left: 6%;
        margin-right: 3%;
    }
    
}



/* REVIEW SECTION */
#review-section{
    width:100%;
    min-height:100vh;
    background:url(5.jpg) center top / cover no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.review{
    font-family:sans-serif;  
    
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%;    
}

.review-head{
    text-align:center;
    font-size:42px;
    padding-top:10%;
    color: black;
}

.review-container{
    width:80%;
    margin-left: 10%;
    margin-top: 25px;
    
    background:rgb(1, 27, 105);
    padding:30px;
    border-radius:6px;
    /*box-shadow:0 6px 18px rgba(0,0,0,.08);*/
}

.review-container h2{
    text-align:center;
    margin-bottom:25px;
    color: yellow;
}

.review-container ul{
    font-size:14px;
    margin-bottom:30px;
    color: white;
}

.review-container ul li{
    margin-bottom:6px;
}

/* REVIEW BOX */
.review-box{
    border:1px solid #d0d7e2;
    padding:18px;
    margin-bottom:18px;
    border-radius:5px;
    background:#fafbfd;
}

.review-title{
    font-weight:600;
    margin-bottom:12px;
    color:#003366;
}

/* GRID FIX (IMPORTANT) */
.row{
    display:grid;
    grid-template-columns:1.2fr 2.8fr;
    gap:20px;
}

.row > div{
    min-width:0; /* CHROME FIX */
}

/* FORM ELEMENTS */
label{
    font-size:14px;
    font-weight:600;
    margin-bottom:6px;
    display:block;
    white-space:nowrap;
}

input[type=text],
select,
textarea{
    width:100%;
    padding:10px 12px;
    border:1px solid #c5cbd8;
    border-radius:4px;
    font-size:14px;
}

textarea{
    min-height:140px;
}

.options{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    font-size:14px;
}

.options label{
    font-weight:normal;
}

/* SUBMIT */
.submit-btn{
    text-align:center;
    margin-top:30px;
}

button{
    background:#004aad;
    color:#fff;
    padding:12px 36px;
    border:none;
    border-radius:4px;
    font-size:15px;
    cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
    .review-container{ width:80%;}
    .row{ grid-template-columns:1fr; }
    label{ white-space:normal; }
}




/* --================   CONTACT Section  ====================*/ 
#contact-section{
    width: 100%;
    min-height: 100vh;
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.contact{
    width: 80%;
    background-color: rgb(230, 225, 225);
    border-radius: 10px;
    margin: 10%;
  
    font-family: sans-serif;
    /*display: flex;
    /* responsive behaviour */
    /*flex-wrap: wrap;    
    align-items: center;
    position: relative;*/
}
.contact-head{  
    text-align: center;
    font-size: 42px;    
    text-align: center;
    /*background-color: #e91e63;*/
    padding-top: 10%;
}
address{
    position: relative;
    left: 2%;
    width: 98%;
    font-size: 18px;
    font-weight: bold;
    line-height: 25px;
    margin-left: 3%;
}
#contact-picture{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    left: 1%;
    margin-top: 70px;
    width: 99%;
}
.svg-icon{
    width: 40px;
    margin-left: 15px; 
}
#contact-para{
    color: red;
}
@media(max-width: 700px){
    .contact-head{    
        font-size: 32px;
        text-align :center; 
        padding-top: 12%;
    }    
}
@media(max-width: 600px){
    .contact-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 20%;
    }    
}
@media(max-width: 400px){
    .contact-head{    
        font-size: 28px;
        text-align :center; 
        padding-top: 26%;
    }    
}
/* --================   FOOTER Section   ====================*/
#footer-section{
    width: 100%;    
    display: block;
    background-image: url(5.jpg);
    background-position: center top;
    background-size: cover;
}
.footer{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    position: relative;
    padding: 15px;
    color: white;
}
.footer a{
    color: yellow;
}
