/*=========== TABLE OF CONTENTS ===========
1. General css (Reset code)
2. Header
3. 

/*-------------------------------------
		0.General css (Reset code)
--------------------------------------*/
*{
    padding: 0;
    margin: 0;
}

body{
	font-family: 'Helvetica Neue';
	font-size:16px;
	color: #676a81;
	background: #fff;
    max-width:none;
    margin: 0;
	overflow-x:hidden;
    height:2000px;
}

h1,h2,h3,h4,h5,h6 { 
	margin: 0;
	color:#43485c;
    font-size: 16px;
	font-family: 'Helvetica Neue';
	text-transform: capitalize;
}

p {
	margin: 0;
	line-height:1.8;
	color:#43485c;
	font-size:16px;
	font-family: 'Helvetica Neue';
}
img{border:none;max-width:100%; height:auto;}
ul{
	padding: 0;
    margin: 0 auto;
    list-style: none;
}
ul li {
	list-style: none;
	
}
select,input,textarea,button{box-shadow:none;outline:0!important;}
button {background: transparent;border: 0;}

html,body{
    height: 100%;
    margin: 0;
    padding:0;
	position: relative;
}
[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s 0.3s ease; 
  -moz-transition: opacity 0.3s 0.3s ease; 
  -ms-transition: opacity 0.3s 0.3s ease; 
  -o-transition: opacity 0.3s 0.3s ease; 
  transition: opacity 0.3s 0.3s ease; 
  opacity: 0;
}

.fix{position: relative;clear: both;}

/*=============Style css=========*/

/*-------------------------------------
        1. Header
--------------------------------------*/

.header {
    position: -webkit-sticky;
    position: fixed;
    top: 0;
    z-index: 1000; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.navbar-brand {
    color: #BF5700 !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
    padding: 0px 16px!important;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.5) !important;
    padding: 16px !important;
    transition: padding 0.8s ease !important;
    backdrop-filter: blur(10px)!important;
}
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path/to/noise.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    z-index: 0;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    position: relative;
    z-index: 2;
}


.navbar-nav .nav-link {
    color: #636a82 !important;
    transition: color 0.3s ease-in-out !important;
    transform: translateY(0) !important;
    margin-left: 12px;
    margin-right:12px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #BF5700 !important;
    transform: translateY(0) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #BF5700 !important;
}

.nav-link {
    font-size: 1.2rem;
}

/*-------------------------------------
        Welcome-hero
--------------------------------------*/

.welcome-hero{
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
    background:url(../images/Thumbnail.png)no-repeat;
    background-size:cover;
    background-position: center;
    margin-top: 40px;
    height:80vh;
    z-index: 1;
}

.welcome-hero:before{
    position:absolute;
    content: " ";
    top:0;
    left:0;
    background:rgba(BF5700,.5);
    width:100%;
    height:100%;
}

/*.header-text-area*/
.header-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}


.header-text h2 {
    color: #222;
    font-size: 54px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.5;
    margin-top: 80px;
}
.header-text h2 span {color: #222;}
.header-text p {
    color: #222;
    font-size: 20px;
    font-weight: 400;
    margin: 30px 0 60px;
    letter-spacing: 1px;
}
.header-text a {
    width: 200px;
    height: 60px;
    line-height: 60px;
    border-radius: 3px;
    text-transform: capitalize;
    color: #fff;
    background: #b636ff;
    border:1px solid #b636ff;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
    -webkit-transition: 0.3s linear; 
    -moz-transition: 0.3s linear; 
    -ms-transition: 0.3s linear; 
    -o-transition: 0.3s linear; 
    transition: 0.3s linear;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 8px;
    gap: 32px;
    right: 0;
    top: 100%;
    transform: translateY(-50%);
}
.icons img {
    height: 40px;
    width: auto;
}

.info-wrapper p {
    font-size: 1.2em;
    line-height: 2;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}


.btn-custom {
    background-color: #BF5700!important;
    color: white !important;
    padding: 10px 20px !important;
    border: 1px solid #BF5700 !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    justify-content: center; 
    align-items: center;
    text-align: center !important;
    white-space: nowrap !important;
}

.btn-custom:hover {
    background-color: #a94e00 !important;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
}

/* Media Queries */
@media (max-width: 1200px) {
    .header-text h2 {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .header-text h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .header-text h2 {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .header-text h2 {
        font-size: 40px;
    }
}
/*-------------------------------------
       Goals & Features
--------------------------------------*/
.goals {
    padding: 60px 0;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 2rem;
    height: 100%; 
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card-icon {
    font-size: 24px;
    color: #BF5700;
}

.card-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #F8EEE5;
    border: 1px solid #BF5700;
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}


.card-title h6 {
    font-size: 20px;
    color: #333;
    margin-bottom: 0.5rem;
}

.card-description p {
    font-size: 16px;
    color: #666;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.col-md-4 {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

/* -------------------------------------
        Section-heading
--------------------------------------*/

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.section-heading h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.separator-div {
    border-radius: 4px;
    height: 8px;
    width: 64px;
    background-color: #FBD935;
    border: none;
    margin-top: 8px;
    margin-bottom: 1rem;
}

/* -------------------------------------
        Call for Submission 
--------------------------------------*/
.call-for-submission {
    padding: 60px 0;
}

.single-feature {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.single-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.single-feature h4 {
    font-size: 20px;
    color: #BF5700;
    margin-bottom: 16px;
    font-weight: 600;
}

.single-feature p {
    font-size: 16px;
    color: #555;
}

.table {
    width: 100%;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 4px;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 16px;
    text-align: left;
    vertical-align: middle;
    border-top: none;
    border-bottom: none;
}

.table thead th {
    background-color: #F7F6F3;
    font-weight: 500;
    color: #333;
}

.table tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

.table th {
    font-size: 16px;
}

.table td {
    color: #555;
}

.table td.font-weight-bold {
    font-weight: 500
}

.table-1 {
    background-color: #FFE4E1 !important; /* Misty Rose */
}

.table-2 {
    background-color: #E6E6FA !important; /* Lavender */
}

.table-3 {
    background-color: #F0FFF0 !important; /* Honeydew */
}

.table-4 {
    background-color: #faf4dea9 !important;
}


.guideline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.guideline-title {
    font-weight: 500;
    color: #555;
    flex: 1;
}

.guideline-content {
    color: #555;
    flex: 2;
}

.call-for-submission p{
    margin-bottom: 12px;
}

/* ------------------------------------
     Organizer and Speaker Cards 
-------------------------------------*/

.single-speaker, .single-organizer {
    border: none; 
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.2s, background-color 0.2s, border 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    position: relative;
    overflow: visible; 
}

.single-speaker img, .single-organizer img {
    width: 200px;
    height: 200px;
    border-radius: 10%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    transition: box-shadow 0.3s ease-in-out;
}

.single-speaker a, .single-organizer a {
    text-decoration: none;
}

.single-student a {
    text-decoration: none;
}

.single-speaker h6, .single-organizer h6 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
    text-decoration: none;
}

.single-speaker p, .single-organizer p {
    font-size: 16px;
    color: #666;
}

.single-speaker:hover h6, .single-organizer:hover h6, .single-student:hover h6{
    color: #bf5700;
    text-decoration: underline;
}

.single-speaker:hover img, .single-organizer:hover img {
    box-shadow: rgba(191, 87, 0, 0.75) 6px 6px;
}



/*-------------------------------------
        Modals
--------------------------------------*/

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 32px;
    font-size: 24px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.speaker-img-modal {
    width: 150px; 
    height: 150px; 
    border-radius: 50%; 
    display: block;
    margin: 0 auto 20px;
    object-fit: cover;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/*-------------------------------------
        Contact
--------------------------------------*/

.footer-copyright {
    padding: 24px 0;
    background-color: #fafafa;
}

.footer-copyright .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hm-foot-icon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.hm-foot-icon ul li {
    display: inline-block; 
}

.hm-foot-icon ul li a {
    color: #636a82;
    margin: 0 9px; 
    transition: color .3s; 
}

.hm-foot-icon ul li a:hover {
    color: #BF5700;
}

.footer-copyright h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.footer-copyright p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.hm-footer-copyright p {
    color: #888ea5;
    text-transform: capitalize;
}

.hm-footer-copyright p a {
    color: #888ea5;
}

.hm-footer-copyright1 p {
    font-size: 14px;
    color: #888ea5;
    text-transform: capitalize;
}
/*===============================
    Scroll Top
===============================*/
#scroll-Top  .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background:#BF5700;
	border:1px solid #BF5700;
	border-radius:50%;
	-webkit-transition: .5s; 
	-moz-transition:.5s; 
	-ms-transition:.5s; 
	-o-transition:.5s;
    transition: .5s;
	z-index: 2;
}
#scroll-Top  .return-to-top:hover {
    background:#fff;
    color: #BF5700;
	border:1px solid #BF5700;
}

#scroll-Top  .return-to-top i{
    position:relative;
    bottom:0;

}

#scroll-Top  .return-to-top i{
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration:1s;
}
@keyframes example {
    0%   {bottom:0px;}
    100%  {bottom:7px;}
}


/*-------------------------------------
     Fonts and Space
--------------------------------------*/
.link {
    color: #BF5700;
    text-decoration: underline;
    font-weight: 500;
}

.link:hover {
    color: #9d3400;
    text-decoration: underline;
    font-weight: 500;
}

.single-organizer .link2{
    color: #333;
    text-decoration: underline;
    font-weight: 400;
}

.link2 {
    color: #333;
    text-decoration: underline;
    font-weight: 400;
}

.link2:hover {
    color: #BF5700;
    text-decoration: underline;
    font-weight: 400;
}

.space {
    margin-top: 4rem;
}

h3 {
    
}

h4 {
    font-size: 24px;
    color: #242424;
    font-weight: 500;
    margin-bottom: 32px;
}
h6{
    font-size: 20px;
    color: #333;
    font-weight: 500;
    margin-bottom: 32px;
}
p{
    color: #555;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

@media (min-width: 1720px) {
    .custom-lg-6 {
        width: 50%;
    }

    .custom-offset-lg-3 {
        margin-left: 25%;
    }
}

.span-highlight {
    color: #BF5700;
}

/*-------------------------------------
        0.1 animation
--------------------------------------*/
html {
    scroll-behavior: smooth;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.welcome-hero .header-text {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
}

.welcome-hero .header-text.animate {
    animation: fadeInUp 2s ease-out forwards;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

  