@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Big+Shoulders+Inline:opsz,wght@10..72,100..900&family=Noto+Sans+Symbols:wght@100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sigmar&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* variables */
body{
    background-color: #F0F8FF;
}
:root{
    --navbar-font: "Oswald", sans-serif;
    --homepage-font:"Expletus Sans", sans-serif;
    --para-font:"Roboto", sans-serif;
    --header-font:"Anton", sans-serif;
    --timesnewroman: "Tinos", serif;
}
.main-heading{
    text-align: center;
    padding-bottom: 40px;
    padding-top: 20px ;
    font-size: 35px;
    font-family: var(--homepage-font);
    color: #565650;
}
.main-heading-span{
    font-size: 40px;
    font-family: var(--homepage-font);
    color: #3F6EFF;
}
.paragraph{
    font-size: 18px;
    line-height: 1.5;
    font-family: var(--para-font);   
    font-weight: 300;
    text-align: justify;
}
.header-heading{
    font-size: 45px;
    font-family: var(--header-font);
    font-weight: 400;
    letter-spacing: 1px;
}
.padding{
    padding-left:100px;
    padding-right:100px;
    padding-bottom: 40px;
    padding-top: 20px;
}
.section-p1{
    padding: 40px 80px;
}
.left-right-padding{
    padding-left: 100px; 
    padding-right: 100px;
}

/* button */
.animated-button {
    padding: 15px 40px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #3F6EFF;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border: 2px solid #3F6EFF;
    border-radius: 30px;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.animated-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(63, 110, 255, 0.3), transparent);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    border-radius: 50%;
    opacity: 0;
}

.animated-button:hover {
    background: linear-gradient(135deg, #f0f0f0, #ffffff);
    box-shadow: 0 6px 12px rgba(63, 110, 255, 0.3);
    transform: scale(1.03); /* Scaling effect on hover */
}

.animated-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.animated-button:active {
    transform: scale(0.95); /* Slight scale-down when clicked */
}

/* navbar */
.header{
    height: auto;
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
}
.nav-logo{
    display: none;
}
.nav-container{
    z-index: 10;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    align-items: center;
    padding: 0 3rem;
    background-color: #fff;
}
.nav-logo {
    width: 80px;
    padding: 1rem 0;
}
.nav-logo img{
    width: 100%;
    object-fit: cover;
}
.nav-link-container{
    padding: 16px 0;
}
.nav-links{
    list-style: none;
}
.nav-links> .nav-link-item{
    display: inline-block;
    margin: 0 8px;
    position: relative;
}
.nav-links> .nav-link-item> a{
    text-decoration: none;
    display: flex;
    padding: 9px 6px;
    color: #000000;
    font-weight: 600;
    font-family: var(--homepage-font);
    transition: 0.3 ease;
    align-items: center;
    font-size: 14px;
}
.nav-links> .nav-link-item:hover> a{
    color: #3F6EFF;
    background-color: #cfc9dc;
    border-radius: 10px;
}
.nav-link-item > a> .fa-chevron-down{
    display: inline-block;
    height: 16px;
    width: 16px;
    margin-left: 8px;
    transition: 0.3s ease;
    pointer-events: none;
}
.nav-link-item:hover > a> .fa-chevron-down{
    transform: rotate(-180deg);
}
.nav-links> .nav-link-item> .dropdown-menu{
    width: 200px;
    position: absolute;
    top: 80%;
    left: -16px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    transform: translate(0deg);
    transition: 0.3s ease;
    visibility: hidden;
    opacity: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;;
}
.nav-links> .nav-link-item:hover> .dropdown-menu{
    transform: translateY(8px);
    visibility: visible;
    opacity: 1;
}
.nav-links> .nav-link-item> .dropdown-menu> .dropdown-menu-items{
    list-style: none;
}
.nav-links> .nav-link-item> .dropdown-menu> .dropdown-menu-items> a{
    text-decoration: none;
    display: block;
    color: #777;
    font-weight: 500;
    transition: 0.3s ease;
    padding: 12px;
}
.nav-links> .nav-link-item> .dropdown-menu> .dropdown-menu-items> a:hover{
    color: #2d57d9;
    background-color: #2d58d927;
}
.nav-container .open-menu{
    display: none;
    font-size: 24px;
    color: #fff;
}
.nav-container .close-menu{
    display: none;
    font-size: 24px;
    color: #fff;
}

@media (max-width:992px) {
    .nav-logo{
        display: none;
    }
    .nav-container{
        background-color: black;
        position:initial;
        z-index: 1000;
        padding: 2rem;
        justify-content: space-between;
    }
    .nav-container .nav-link-container{
        position: absolute;
        right: 0px;
        width: 100%;
        visibility: hidden;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #02040ac1;
        z-index: 99;
        padding: 15px;
        transition: all 0.3s ease-in;
    }
    .nav-container .nav-link-container.open{
        visibility: visible;
        transition: all 0.3s ease-out;
        right: 0;
    }
    .nav-link-container>.nav-links>.nav-link-item{
        display: block;
        margin: 0;
    }
    .nav-link-container>.nav-links>.nav-link-item > a{
        color: #fff;
        padding: 24px 16px;
        border-bottom: 1px solid #ffffff20;
        display: flex;
        justify-content: space-between;
    }
    .nav-link-item:hover> a > .fa-chevron-down{
        transform: rotate(0);   
    }
    .nav-container > .nav-link-container > .nav-links > .dropdown-menu-branch.active > a .fa-chevron-down{
        transform: rotate(-180deg);
    } 
    .nav-links> .nav-link-item>.dropdown-menu{
        width: 100%;
        opacity: 1;
        position: relative;
        visibility: visible;
        border-bottom: 1px solid #ffffff20;
        border-radius: 0;
        background-color: transparent;
        transform: translateY(0px);
        box-shadow: none;
        padding: 0px;
        left: auto;
        max-height: 0;
        overflow: hidden;
    }
    .nav-links> .nav-link-item:hover>.dropdown-menu{
        transform: translateY(0px);
    }
    .nav-links> .nav-link-item>.dropdown-menu > .dropdown-menu-items > a{
        color: #ffffff22;
        border: none;
    }
    .nav-links> .nav-link-item>.dropdown-menu > .dropdown-menu-items > a:hover{
        color: #fff;
        border: none;
    }
    .nav-container .open-menu{
        cursor: pointer;
        display: block;
    }
    .nav-container .close-menu{
        display: block;
        padding: 16px;
        cursor: pointer;
        width: fit-content;
    }
}




/* footer section */
.section-p1{
    padding: 20px 120px;
}

footer{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #ffffff29;
    color: white;
    background-color: #1D1A26;
}
footer .col{
    display: flex;
    gap: 200px;
    /* flex-direction: column; */
    align-items: flex-start;
    padding-bottom: 50px;
}
.footerlogo{
    margin-bottom: 30px;
    height: 100px;
}
footer h4{
    font-size: 24px;
    padding-bottom: 20px;
    font-family: sans-serif;
}
footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
    font-family: Arial, Helvetica, sans-serif;
}
footer a{
    text-decoration: none;
    color: #222;
    margin-bottom: 10px;
}
footer .follow{
    text-align: center;
    margin-top: 20px;
}
footer .follow i{
    color: rgb(255, 255, 255);
    padding-right: 4px;
    cursor: pointer;
    font-size: 30px;
}

footer .install .row img{
    border: 1px solid #2d57d9;
    border-radius: 6px;
}
footer .install img{
    margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover{
    color: #3F6EFF;
}

.copyright{
    width: 100%;
    text-align: center ;
}
.copyright p{
    padding-bottom: 0px ;
    font-size: 16px;
}
.copyright p a{
    font-size: 17px;
    text-decoration: none;
    color: white;
}
.icon i{
    font-size: 40px;
}


/* ---------------hero page----------------- */
/* hero section */
#hero-section{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.swiper-container{
    position:relative;
    height: 100vh;
    /* z-index: -1; */

}
.text-slider{
    position:absolute;
    width: 100%;
    clip-path: polygon(39.5% 0, 0 0, 0 100%, 69.5% 100%);
    background: rgba(29, 26, 38);
}
.text-slide{
    display: flex;
    justify-content: center;
    align-items:center;
    flex-direction: column;
}

.text-slide h1,
.text-slide p{
    padding: 6px;
    width: 40%;
    color: #cfc9dc;
    background: rgba(25, 25, 39, 0.8);
    /* user-select: none; */
}
.text-slide h1{
    font-family: var(--homepage-font);
    font-size: clamp(0.1rem, 3vw, 60rem);
    margin: 0 55% 0 10%;
    background: linear-gradient(to left, #3F6EFF 0%, #A48FFF 50%, #3F6EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip:none;
}
.text-slide p{
    height: auto;
    font-size: 20px;
    margin: 15px 55% 0 10%;
    font-family: var(--homepage-font);
    background: transparent;
}
.swiper-slide1{
    height: 100%;
}

.image-slider{
    position: relative;
    left: 40%;
    width: 70%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 43% 100%);
}

.image-slider img{
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 40% 50%;
    filter: brightness(1);
    transition: 0.3s;
}

.image-slide:nth-child(3) img{
    object-position:100% 50%;
}
.overlay{
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(41,33,37, 0.2);
}
.parallelogram {
	width: 80%;
	height: 50px;
    padding: 20px 100px;
	transform: skew(40deg);
	background: #1D1A26;
    margin-left: 80px;

}
@media (max-width: 600px) {
    .swiper-container{
        height: 50vh;
    }
    .text-slider{
        position: relative;
        width: 100%;
        top: 50%;
        right: 0;
        bottom: 0;
        clip-path: polygon(100% 1%, 0 1%, 0% 100%, 100% 100%);
    }
    .text-slide{
        width: 100%;
        height: 100%;
        justify-content: center;
    }
    .text-slide h1,
    .text-slide p{
        width: 80%;
        text-align: center;
    }
    .text-slide h1{
        font-size: 1.5rem;
        margin: 0% 0% 0;
        line-height: 1.1;
    }
    .text-slide p{
        font-size: 1rem;
        margin: 3% 15%;
        height: auto;
        line-height: 1.4;
    }
    .swiper-slide1 .animated-button{
        padding: 15px;
        font-size: 17px;
    }
    .image-slider{
        left: 0;
        bottom: 50%;
        width: 100%;
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100% ) ;
    }
    .img-slide img{
        object-position: 50% 50% ;
    }

} 
#ycceheader img{
    width: 100%;
}
/* about ITSEMC */
.itsemc-container{
    width: 100%;
    height: 100%;
    position: relative;
    padding-left:100px;
    padding-right:100px;
    padding-bottom: 40px;
    padding-top: 60px;
    background-color: #F0F8FF;
}
.itsemc-container h1{
    text-align: center;
    padding-bottom: 20px;
    font-size: 35px;
    font-family: var(--homepage-font);
    color: #565650;
}
.itsemc-container h1 span{
    font-size: 40px;
    font-family: var(--homepage-font);
    color: #3F6EFF;
}
.itsemc-container p{
    text-align: justify;
    font-size: 18px;
    line-height: 1.5;
    font-family: var(--para-font);   
    font-weight: 300;
}


/* glimpes */
.previous-heading{
    padding-bottom: 0px;
    text-align: center;
}
.previous-container{
    width: 100%;
    height: 100%;
}
.heading-container{
    display: flex;
}
.previous-container.main-heading{
    padding-bottom: 20px;
}

.swiper {
    width: 85%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 520px;
    height: 320px;
    position: relative;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    border: 5px solid #fff;
    object-fit: cover;
  }


.swiper .swiper-button-next,
.swiper .swiper-button-prev{
    color: #fff;
}

.swiper .swiper-button-next {
    margin-right: -10px;
}

.swiper .swiper-button-prev {
    margin-left: -10px;
}

.swiper-pagination .swiper-pagination-bullet{
    width: 17px;
    height: 17px;
    background: #777;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    border: 3px solid #fff;
    background: #d13639;
}


/* previous conference link */
.previous-link-container {
    background-color: #1D1A26;
    background-image: url(./banner/b2.png);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
}
/* about nagpur */
.ngp-container{
    width: 100%;
    height: 100%;
}
.ngp-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.ngp-info p{
    text-align: justify;
    padding-right: 80px;
}
.ngp-image{
    /* background-image: url(images/extras/ngp-1.jpg); */
    background-position: center;
    background-size:cover;
    transition: background-image 0.3s ease-in-out;
    width: 2400px;
    height: 550px;
    transition: 0.3s;
    animation-name: ngpanimation;
    animation-duration: 14s;
    animation-iteration-count: infinite;
}
.ngp-image:hover{
    box-shadow: rgba(100, 100, 111, 0.617) 0px 7px 29px 0px;
}

@keyframes ngpanimation {
    0%{
        background-image: url(images/extras/ngp-1.jpg);
    }
    50%{
    background-image: url(images/extras/ngp-2.jpg);
    }
    100%{
        background-image: url(images/extras/ngp-1.jpg);
    }
}


/* sponsors */
.sponsors-container{
    width: 100%;
    height: 100%;
}
.logos {
  overflow: hidden;
  border-radius: 20px;
  padding: 40px 0;
  background: white;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 15s slide infinite linear;
}

.logos-slide img {
  height: 120px;
  margin: 0 40px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}




/* contact us page */
#page-header{
    background-color: #1D1A26;
    background-image: url(./banner/banner.png);
    background-position: 0% 20%;
    width: 100%;
    height: 40vh;
    background-size:cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 14px;
    padding-top: 90px;
}
#page-header h1,
#page-header p{
    color: #fff;
}
#contact-details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 120px;
    padding-top: 60px;
}

#contact-details .details{
    width: 40%;
}
.contact-table {
    border-collapse: collapse;
}

.contact-table tr td{
    padding-left: 70px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #77777759;
    border-collapse: collapse;   
}
.table-flex{
    font-family: var(--para-font);
    transition: 0.3s ease;
}
.table-icon-flex{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

}
.table-flex p a{
    text-decoration: none;
    transition: 0.2s;
}
.table-flex p a:hover{
    cursor: pointer;
    color: #db2121;
}
.table-flex i:hover{
    transform: scale(1.1);
    color: #3F6EFF;
}
.table-head{
    padding-left: 30px;
    padding-right: 30px;
    font-family: var(--homepage-font);
    font-weight: 600;
}
#contact-details .map{
    width: 50%;
    height: 300px;
}
#contact-details .map iframe{ 
    width: 100%;
    height: 100%;
}


/*------------IMPORTANT DATES AND LINK---------- */
#important-dates{
    padding-top: 60px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
}

/* table styling */
.main-table{
    border-collapse: collapse;
}
.main-table tr td{
    border: 1px solid #77777789;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;

}
.table-top-heading{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background-image: url(./banner/b2.png);
    background-position: 50% 50%;
    background-color: #374057;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.table-heading{
    font-family: var(--para-font);
    font-weight: 700;
    font-size: 18px;
}
.table-second-row{
    font-size: 18px;
    font-family: cursive;
}
.table-hover:hover{
    /* background-color: #a48fff56; */
    background-image: linear-gradient(135deg, #667eea36 0%, #764ba223 100%);
    color: #3F6EFF;
}
.even{
    background-color: #f7f7f7;
}

/* venue */
.venue-container{
    padding-bottom:40px;
    padding-top:60px;
}
.venue-container-2{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 40px;
}
.venue-container-2 p{
    padding: 40px;
    font-size: 25px;
}

/* ------------ publication page ----------- */
.publications-para{
    padding-top: 120px;
    padding-bottom: 102px;
    font-size: 25px;
}

/* committee */
.committee-main-heading{
    width: 100%;
    text-align: center;
}
.committee-table{
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-collapse: collapse;
    align-items: center;
}
.committee-table tr td{
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
    padding-right: 60px;
}
.committee-table tr:hover{
    background-image: linear-gradient(135deg, #667eea36 0%, #764ba223 100%);
    color: #3F6EFF;
}
.committee-table-heading{
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    background-image: url(./banner/b2.png);
    background-position: 50% 50%;
    background-color: #374057;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.committee-first-row{
    font-family: var(--para-font);
    font-weight: 700;
    font-size: 18px;
}
.committee-second-row{
    font-size: 15px;
    font-family:var(--para-font);
}
.committee-weight{
    font-weight: 400;
}
.altTable{
    margin: 0 auto;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 40px;
}


/* new patron */

.mentorcontainer{
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.mentorcontainer .card{
    position: relative;
    width: 230px;
    height: 300px;
    background: rgba(255, 255, 255, 0.643);
    margin: 20px;
    /* box-shadow: 0px 15px 35px rgba(0, 0, 0, 00.5); */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* backdrop-filter: blur(10px); */
}
.mentorcontainer .card .content{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* opacity: 0.5; */
    transition: 0.2s ;
}
.mentorcontainer .card:hover .content{
    opacity: 1;
    transform: translateY(-10px) ;
}
.mentorcontainer .card .content .imgBx{
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid rgba(0, 0, 0, 0.25 );
    margin: 0 auto;
}

.mentorcontainer .card .content .imgBx img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
}
.mentorheading{
    font-family: var(--para-font);
    color: #000;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-size: 18px;
    text-align: center;
    display: block;
    margin: 20px 0 10px;
    line-height: 1.1em;
    user-select: none;
    padding: 0px 10px;
}
.mentorheading span{
    font-size: 12px;
    font-weight: 400;
    text-transform: initial;
    user-select: none;
    font-family: var(--timesnewroman);
}
.mentordesignation{
    font-size: 14px;
    text-align: center;
    width: 100%;
    font-family: var(--para-font);
    color: #777;
}


/* --------------registration----------------- */
.reg-para{
    padding-top: 80px; 
    padding-bottom: 40px; 
    padding-left: 100px; 
    padding-right: 100px; 
    font-size: 22px;
    font-family: var(--para-font);
    font-weight: 300;
}
.reg-para-2{
    padding-top: 20px; 
    padding-left: 100px; 
    font-size: 25px; 
    padding-bottom: 20px;
    font-family: var(--homepage-font);
}
.reg-list{
    padding-left: 150px;
    font-size: 22px;
    font-family: var(--para-font);
    font-weight: 300;
}

/* Feature Section */

#feature{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding-bottom: 40px;
}

#feature .fe-box{
    width: 200px;
    text-align: center;
    padding: 25px 15px;
    box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    margin: 15px 0;
    background-color: #ffffff9b;
}

#feature .fe-box:hover{
    box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}
.medal-icon{
    font-size: 80px;
    padding: 20px;
    color: #CCCBC7;
    transition: 0.3s;
}
.medal-icon:hover{
    transform: scale(1.1);
}

#feature .fe-box h3{
    display: inline-block;
    padding: 9px 8px 6px 8px;
    line-height: 1;
    border-radius: 4px;
    color: #088178;
    font-family: var(--para-font);
}
.feature-subheading{
    font-size: 18px;
    font-family: var(--navbar-font);
    padding-top: 10px;
}
.feature-para{
    font-size: 16px;
    font-family: var(--para-font);
}
.fe-color1{
    background-color: #fddde4; 
}

.fe-color2{
    background-color: #cdebbc; 
}

.fe-color3{
    background-color: #d1e8f2; 
}
.medal-color-1{
    color: #DB8D73;
}
.medal-color-2{
    color: #f6d458e6;
}
.medal-color-3{
    color: #A3A4A8;
}

/* ------------keynote speaker page--------- */
.keynote{
    width: 100%;
    height: 100%;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 50px;
    padding-top: 50px;
}
.speaker-container{
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items:flex-start;
    gap: 50px;
    border-radius: 40px;
    background-color: #ffffffa0;
    box-shadow: rgba(0, 0, 0, 0.344) 0px 1px 4px;
    transition: 0.3s;
}
.speaker-container h1{
    font-size: 25px;
    padding-bottom: 10px; 
    padding-top:10px
}
.speaker-container:hover{
    box-shadow: rgb(0, 0, 0) 0px 1px 6px;
    transform: translateY(-10px);
}
.speaker-words{
    width: 60%;
    text-align: justify;

}
.speaker-words p{
    font-family: var(--para-font);
    font-weight: 400;
    line-height: 25px;
}
.speaker-image{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.speaker-image img{
    height: auto;
    object-fit: cover;
    width: 300px;
    height: auto;
}
.speaker-post{
    font-family: var(--timesnewroman);
    font-size: 20px;
    padding-top: 5px;
}


/* ------------call for papers----------- */
#submission-guidelines{
    width: 100%;
    height: 100%;
}
.papers-btn{
    display: flex;
    justify-content: center;
    text-decoration: none;
    padding-top: 30px;
    padding-bottom: 30px;
}

/* tracks */
.accordion{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 60px;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 60px;
    gap: 20px;
}

.acc-list{
    list-style: none;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    background: #e3edf7;
    box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
}
.accordion li label{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500px;
    cursor: pointer;
    font-family: var(--para-font);
}
label::before{
    content: '+';
    margin-right: 10px;
    font-size: 30px;
    font-weight: 900px;
}
input[type="radio"]{
    display: none;
}
.accordion .content{
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}
.accordion input[type="radio"]:checked + label + .content{
    max-height: 1000px ;
    padding: 10px 10px 20px;
}
.accordion input[type="radio"]:checked + label::before{
    content: '-';
}
.content ul li{
    font-family:'Times New Roman', Times, serif;
    font-size: 18px;
}
.committee-main-heading{
    width: 100%;
    text-align: center;
}
.editors-table{
    overflow-x: scroll;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-collapse: collapse;
    align-items: center;
}
.editors-table tr td{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
}
.editors-table tr:hover{
    background-image: linear-gradient(135deg, #667eea36 0%, #764ba223 100%);
    color: #3F6EFF;
}


/* about us page */
.vission-mission{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.newvissionmission{
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.vision{
    width: 50%;
}
.vision ul{
    padding-right: 50px;
    list-style: none;
}
.mission{
    width: 50%;
}
/* .flipcard {
    width: 320px;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.flipcard .front-face1 {
    background: url('./extras/YCCE-admin.png');
    background-color: #1D1A26;
}

.flipcard .back-face1 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    flex-direction: column;
    transform: rotateY(180deg);
    background-color: #1D1A26;
    background-image: url(./banner/b2.png);
}

.flipcard .front-face1,
.flipcard .back-face1 {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    backface-visibility: hidden;
    transition: .7s cubic-bezier(.4, .2, .2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}


.flipcard:hover > .back-face1 {
    transform: rotateY(0);
}

.flipcard:hover > .front-face1 {
    transform: rotateY(-180deg);
}

.flip-card-para{
    color: #fff;
    font-size: 20px;
    font-family: var(--para-font);
} */

/* card-2 */
/* .flipcard .front-face2 {
    background: url('./extras/YCCE-maingate.png');
    background-color: #1D1A26;
}

.flipcard .back-face2 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    flex-direction: column;
    transform: rotateY(180deg);
    background-color: #1D1A26;
    background-image: url(./banner/b2.png);
}

.flipcard .front-face2,
.flipcard .back-face2 {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    backface-visibility: hidden;
    transition: .7s cubic-bezier(.4, .2, .2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}


.flipcard:hover > .back-face2 {
    transform: rotateY(0);
}

.flipcard:hover > .front-face2 {
    transform: rotateY(-180deg);
}
.back-face2 ul{
    color: #fff;
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    font-family: var(--para-font);
}
.back-face2 ul li{
    padding-top: 10px;
} */
.faculty-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-self: center;
    padding-bottom: 80px;
}
.faculty-img img{
    width: 60%;
    display: block;
    transition: 0.3s;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}





/* responsive design */

/* mobile view */

/* index page */
@media only screen and (max-width: 600px) {
    .padding{
        padding-top: 40px;
        padding-left: 40px;
        padding-right: 40px;
    }
    #ycceheader h1{
        font-size: 20px;
    }
    .itsemc-container{
        padding-top: 40px;
        padding-left: 30px;
        padding-right: 30px;
    }
    #previous h1{
        padding-top: 40px;
        padding-left: 40px;
        padding-right: 40px;
        font-size: 2em;
    }
    .previous-link-container {
        flex-direction: column;
        height: 300px;
        justify-content: center;
    }
    .previous-link-container h1{
        font-size: 1.5rem;
    }
    .previous-link-container button{
        padding: 15px 20px;
    }
    .ngp-info{
        flex-direction: column;
    }
    .ngp-image{
        width: 100%;
    }
    .ngp-info p{
        padding-right: 0px;
    }
    .logos{
        padding: 30px 20px;
    }
    .logos:before {
        background: none;
    }
    .logos:after {
        background: none;
    }

    /* about page */
    #page-header {
        background-position: 50% 20%;
        width: 100%;
        height: 20vh;
        padding: 0px;
    }
    .left-right-padding {
        padding-left: 30px;
        padding-right: 30px;
    }
    .vission-mission {
        flex-direction: column;
        gap: 20px;
    }
    .newvissionmission{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    .vision{
        width: 100%;
    }
    .mission{
        width: 100%;
    }
    .keynote {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
    }
    .speaker-container h1 {
        font-size: 25px;
        padding-top: 20px;
        width: 100%;
    }
    .speaker-container {
        width: 100%;
        padding: 0px;
        flex-direction: column;
    }
    .speaker-image p {
        padding-top:20px;
    }
    .speaker-image img {
        width: 250px;
        padding: 10px;
    }
    .speaker-image h1{
        text-align: center;
    }
    .speaker-words p {
        padding-bottom: 20px;
    }
    .speaker-image {
        width: 80%;
    }
    .speaker-words {
        width: 80%;
    }
    .faculty-img img{
        width: 90%;
    }

    /* commitee page */
    .committee-table {
        display: block ;
    }
    .committee-table-heading {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    background-image: url(./banner/b2.png);
    background-position: 50% 50%;
    background-color: #374057;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
    .editors-table tr td {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .committee-table tr td {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .committee-first-row {
        font-family: var(--para-font);
        font-size: 15px;
        
    }

    /* call for papers */
    .accordion {
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 80px;
    }
    .accordion li label {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 300px;
        cursor: pointer;
        font-family: var(--para-font);
    }

    /* sponsors */
    #feature .fe-box {
        width: 250px;
    }
    .reg-list {
        padding-left: 50px;
        font-size: 20px;
    }
    /* registration */
    .reg-para {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 20px;
    }
    .reg-para-2 {
        padding-left: 30px;
    }
    .committee-table tr td {
        font-size: 15px;
    }
    /* imp dates and venue */
    .venue-container-2 {
        flex-direction: column;
    }
    .map iframe{
        width: 450px;
        height: 500px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .venue-container-2 p {
        padding: 40px 0px;
        font-size: 20px;
    }
    .main-table tr td {
        border: 1px solid #77777789;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 30px;
        padding-right: 30px;
    }
    /* contact us */
    #contact-details {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        padding-bottom: 80px;
        padding-top: 60px;
    }
    .contact-table tr td {
        padding-left: 30px;
        padding-right: 30px;
    }
    #contact-details .map {
        width: 100%;
        height: 350px;
    }

    /* footer */
    @media (max-width: 1100px) {
        .section-p1 {
            padding: 0px;
        }
        .cursor{
            display: none;
        }
        footer .col {
            gap: 50px;
            align-items: flex-start;
            padding-bottom: 20px;
            padding-top: 20px;
        }
        footer .follow {
            margin: 0 auto;
        }
        footer h4 {
            font-size: 24px;
            padding-bottom: 5px;
            font-family: sans-serif;
        }
        .icon{
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            padding-bottom: 30px;
        }
        .copyright p {
            padding-bottom: 20px;
            padding-left: 10px;
            padding-right: 10px;
            font-size: 15px;
        }
    }
    
}



/* --------------------------new index-------------------------------- */
.hero {
    height: 100vh;
    background: url(./extras/25-26.png) no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    background-attachment: fixed;
}
.hero h1 {
    font-size: 38px;
    font-family: var(--homepage-font);
    filter: drop-shadow(1px 1px 5px #3F6EFF);
    color: #fff;
    transition: 0.3s;
}

.hero p {
    font-size: 22px;
    font-family: var(--para-font);
    filter: drop-shadow(1px 1px 5px #000);
    padding-bottom: 5px;
}
.subheading-container{
    display: flex;
    width: 50%;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
    font-family: var(--navbar-font);
    font-size: 20px;
    filter: drop-shadow(1px 1px 5px #000);
    padding-bottom: 10px;
}
.line{
    border-left: 2px solid #fff;
}
.subheading{
    transition: 0.3s;
    color: #fff;
    border: 1px solid #fff;
    background-color: #ffffff6c;
    padding: 10px;
    border-radius: 20px;
}
.subheading:hover{
    scale: 1.05;
    cursor: pointer;
}
.association{
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin: 0 auto;
    font-family: var(--timesnewroman);
    font-size: 25px;
    font-weight: 600;
    filter: drop-shadow(1px 1px 5px #000);
}
.second-subheading{
    width: 50%;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    filter: drop-shadow(1px 1px 5px #000);
}

.second-subheading img{
    height: 100%;
    width: 120px;  
    transition: 0.3s;
    object-fit: cover;
}
.second-subheading img:hover{
    scale: 1.05;
    filter: drop-shadow(1px 2px 5px #ebb206);
}
@media (max-width: 768px) {
    .hero h1 {
        padding: 10px 0;
        font-size: 28px;
    }
    .hero p {
        padding: 10px;
        font-size: 20px;
    }
    .subheading-container {
        width: 100%;
        padding: 20px;
    }
    .second-subheading {
        width: 50%;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        filter: drop-shadow(1px 1px 5px #000);
    }
    .second-subheading img {
        height: 100%;
        width: 100px;
    }
  }
