:root {
  --bg-color: #F5F5F5;
  --lgreen: rgba(2,204,168,1.0);
}
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

html {
    scroll-behavior: smooth;
    padding:0px;
    margin:0px;
    font-size: 16px;
}
body {
    background-color: black !important;
    color: black !important;
}

.bg-check {
    background: #FF0000;
    border: 3px solid black;
}
.bg-selected {
    background-color: var(--lgreen);
}

/* TITLE and HEADINGS STYLING */
.headings {
    border-bottom: solid 3px black;
    padding: 15vh 0 2vh 0;
}
.headings2 {
    border-bottom: solid 3px white;
    padding: 15vh 0 2vh 0;
}
#title{
    color: white;
    height: 100vh;
    padding-top: 40vh;
    width: 70vw;
}
#title-style {
    font-size: 6rem;
    color: white;
    display: block !important;
    background-color: rgba(0,0,0,0.15);
    border-radius: 10px 100px 10px 100px;
    -moz-border-radius: 10px 100px 10px 100px;
    -webkit-border: 10px 100px 10px 100px;
    text-align: center;
}
#conf-dates{
    font-size: 3rem;
/*    color: var(--lgreen);*/
    color: white;
}
.sub-title {
    display: inline-block; 
    color: var(--lgreen);
    /* Place it off-screen to the left initially */
    transform: translateX(-100%); 
    opacity: 0;
    
    /* Ensure a smooth transition when the 'animate' class is added */
    transition: transform 1s ease-out, opacity 1s ease-out;
}
.sub-title.visible {
    animation: slideInFromLeft 1s ease-out forwards;
}

/* NAVBAR STYLING */
#social {
    position:fixed;
    width: 50%;
    margin-left: 50%;
    padding-right: 4vh;
    margin-top: 5.5vw;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border: 7px;
}
.iiser-social {
    right: 0;
    margin-right: 5vh;
    margin-top: 2vh;
    width: 5vw;
}
#logo-black {
    width: 7vw;
}
#logo-white {
    width: 7vw;
}

.main-nav {
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border: 7px;
    position : fixed;
    left: 10px;
    top : 10px;
    padding: 5px 10px 10px 10px;
}

.nav-item {
    color: var(--lgreen);
    font-family: "Janna", sans-serif;
    font-weight: bold;    
}
.nav-item a{
    font-size: 1.2rem;
    color: var(--lgreen) !important;
    text-decoration: none;
}
.nav-item a:hover{
    color: var(--lgreen) !important;
    font-weight: normal;
    text-decoration: underline;
}
.nav-item a:focus{
    color: var(--lgreen) !important;
    text-decoration: underline;
}
.nav-item a:visited {
    color: var(--lgreen) !important;
}
.nav-item a:active {
    color: var(--lgreen) !important;
}

/* CAROUSEL STYLING */
.carousel-inner{
    background-color: Black;
    height: 100vh;
}
.carousel-item {
    background-color: Black;
    background-position: center center;
    background-size: cover; /* Scale to cover the entire container */
    height: 100vh;
}
.carousel-item img{
    opacity: 0.75;
}
.carousel{
    z-index: -1;
}
#carouselIndicators {
    font: 'Helvetica', arial, sans-serif;
    position : fixed;
    width: 100vw;
    height: 100vh; /* Or a specific height for your carousel */
}


/* PROGRAM SECTION STYLING */
#program {
    background-color: var(--bg-color);
    padding-bottom:15vh;
    overflow:auto;
    height:auto;
}
.date{
    display:inline-block;
    font-size: 1.7rem;
    border: 1px solid black;
    margin-left: 0.5vw;
    padding: 1%;
}
.date:hover{
    cursor: pointer;
}
.tg {
    border-collapse: collapse;
    border-spacing: 0;
    width: 60vw !important;
}
.tg td {
    border-color: black;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}
.tg th {
    border-color: black;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}
.tg .tg-baqh {
    text-align: center;
    vertical-align: center;
}
.col1 {
    width: 10%;
}
.col2 {
    width: 30%;
}
.col3 {
    width: 60%;
}
.tg .tg-amwm {
    font-weight: bold;
    text-align: center;
    vertical-align: center;
}
.chair {
    background-color:var(--lgreen);
}


/* OLD QFTA SECTION STYLING */
#numbers_bg{
    height: 130vh;
    width: 100%;
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/QFTA2019_Conference_Photo.jpg");
}

#qfta19 {
    padding: 2vh 10vw 2vh 0;
    margin: 40vh 0 0 30vw;
    width: 70vw;
    background-color: var(--bg-color);
    float: left;
}
#qfta20 {
    padding: 2vh 0 2vh 10vw;
    margin: 30vh 30vw 0 0;
    width: 70vw;
    background-color: var(--bg-color);
    float: left;
}
.link {
    color: var(--lgreen);
    transition: transform .2s; /* Animation */
}
.link:hover {
    color: var(--lgreen);
    transform: scale(1.5);
}
.link a{
    color: var(--lgreen);
    text-decoration: none;
}
.link a:hover {
    color: var(--lgreen);
    text-decoration: underline;
}


/* SPEAKERS SECTION STYLING */
#speakers {
    background-color: var(--bg-color);
    padding-bottom: 15vh;
}
.response {
    display:block;
    margin: 0 0 1vh 1vw;
}

/* ORGANIZERS SECTION STYLING */
#organizers {
    background-color: var(--bg-color);
    padding-bottom: 15vh;
}
#organizers a{
    color: black;
}
/* REGISTER SECTION STYLING */
#register {
    background-color: var(--bg-color);
    padding-bottom: 15vh;
}
#advisors ul {
    list-style-type: square;
}
#advisors li {
    padding-top: 1%;
}

/* VENUE SECTION STYLING */
#venue {
    background-color:#151a2c;
    color: white;
    /* background-color: var(--bg-color);*/
    padding-bottom: 0vh;
}
.gcolor{
    color: var(--lgreen);
}

/* FOOTER SECTION STYLING */
#foot {
    color: var(--lgreen);
    padding-top: 3vh !important;
    background-color:#151a2c;
    text-decoration: none;
}
#foot a {
    color: var(--lgreen);
    text-decoration: none;
}
#foot a:hover {
    text-decoration: underline;
}

/* REST */
#pc {
    display: block;
}
#mobile {
    display: none;
}


/*Mobiles*/
#mobile a {
    color: white;
    text-decoration: none;
}
#mobile a:hover {
    text-decoration: underline;
}


