* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.accordion-body i{
    font-size:18px;
}
body {
    font-family: 'Jost';
    color: var(--dark-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost';
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
    overflow-x: hidden;
  }
  #about p{
      font-size:18px !important;
      word-spacing: -0.9px;
    letter-spacing: 0px;
  }
}

.logistics-accordion-button {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.logistics-accordion-button::-webkit-details-marker {
    display: none;
}

.logistics-accordion-button::marker {
    display: none;
}

.logistics-accordion-button::after {
    content: "+";
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #8B0000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 21px;
    font-weight: bold;
}

details[open] > summary::after {
    content: "−";
}



.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
    background-color:#c9a217;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.publication-partner{
    margin-top:35px;
}

.partner-label{
    color:#FFD54F;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.95rem;
    font-weight:600;
    margin-bottom:14px;
    text-shadow: -1px -1px 0 #000, 2px -1px 0 #000, -1px 1px 0 #000, 2px 2px 0 #000, 2px 2px 4px rgba(0, 0, 0, 0.75);
}

.partner-card{
    display:flex;
    align-items:center;
    gap:24px;
    width:fit-content;
    padding:18px 24px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.18);
    border-radius:14px;
}

.partner-logo-1{
    display:flex;
    align-items:center;
    justify-content:center;
}

.partner-logo-1 img{
    height:48px;
    width:auto;
    display:block;
}

.partner-group{
    display:flex;
    align-items:center;
    gap:12px;
}

.partner-text{
    color:#fff;
    font-size:19.1px;
    font-weight:500;
    white-space:nowrap;
}

.partner-logo{
    background:#fff;
    padding:1px 7px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.partner-logo img{
    height:70px;
    width:auto;
    display:block;
}

.partner-divider{
    width:1px;
    height:52px;
    background:rgba(255,255,255,.4);
}

.hero-section {
    min-height: 106vh;
    display: flex;
    align-items: center;
    padding-top: 120px;

    background:
        linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,0.0)),url('../assets/img/hero.webp') no-repeat center center;
    background-size: cover;
    color: #ffffff;

    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.52),
        rgba(0, 0, 0, 0.34)
    );
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.countdown-title{
    color: #ffd54f;

    font-size: 20px;

    padding: 0 5px;

    letter-spacing: 2px;

    text-transform: uppercase;
text-align: center;
    margin-bottom: 18px;

    font-weight: 800;

    text-shadow:
        -1px -1px 0 #000,
         2px -1px 0 #000,
        -1px 1px 0 #000,
         2px 2px 0 #000,
         2px 2px 4px rgba(0, 0, 0, 0.75);

    box-sizing: border-box;
}

.countdown-wrapper{
     display: flex;

    gap: 18px;

    flex-wrap: wrap;

    align-items: center;

    min-width: 0;
}

.time-box {
    width: 110px;
    height: 100px;

    flex: 0 0 94px;

     background:#003366 !important;
   /* border:1px solid #DF0103;*/

    /* Safari compatibility */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    border-radius: 16px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    transition: transform .3s ease, background-color .3s ease;

    box-sizing: border-box;
}


.time-box:hover {
    transform: translateY(-4px);

    background: rgba(255, 255, 255, .16);
}


.time-box span {
    font-size: 28px;

    font-weight: 700;

    color: #fff;

    line-height: 1;

    text-shadow:
        -1px -1px 0 #000,
         2px -1px 0 #000,
        -1px 1px 0 #000,
         2px 2px 0 #000,
         2px 2px 4px rgba(0, 0, 0, 0.95);
}

.time-box small {
    margin-top: 10px;

    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px 1px 0 #000,
         1px 1px 0 #000,
         2px 2px 4px rgba(0, 0, 0, 0.75);

    color: #fff;

    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: 1px;
}

@media(max-width:768px){
    .time-box{
        width:72px;
        height:72px;
    }

    .time-box span{
        font-size:1.4rem;
    }

    .time-box small{
        font-size:.72rem;
    }

    .hero-countdown{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

    .countdown-wrapper{
        justify-content:center;
    }

    .publication-partner{
        display:flex;
        flex-direction:column;
        align-items:center;
        margin-top:28px;
    }

    .partner-card{
        width:auto;
        max-width:420px;
        padding:16px 18px;
        gap:14px;
        flex-direction:row;
        justify-content:center;
    }

    .partner-card img{
        height:46px;
    }

    .partner-text strong{
        font-size:0.95rem;
    }

    .partner-text{
        font-size:.9rem;
    }
}

#about.about-section {

    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

#about .section-title {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
}

#about p{
    text-align:justify;
     color: #ffffff;
     font-size: 21px;
     line-height:2;
}

#about .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: 160px;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #d4af37,
        #f1e6d0,
        #d4af37,
        transparent
    );

    border-radius: 4px;
}

#about .about-content {
    max-width: 100%;
}

#about .about-divider {
    background-color: #d4af37;
    opacity: 0.9;
}

#about .about-subheading {
    color: #f1e6d0;
    font-size: 21px;
    font-weight: 700;
    margin-top: 10px;
}

#about .about-list li {
    color: rgba(255,255,255,0.9);
    font-size: 21px;
}

#about .about-list li::before {
    background-color: #d4af37;
}

#about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.16),
        rgba(0,0,0,0.34)
    );
    pointer-events: none;
}

#about .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    #about .section-title {
        font-size: 1.7rem;
    }

}



.theme-section{
    padding:35px 0;
    background:#fff;
}

.theme-title{
    font-size:35px;
    color:#a52525;
   /* font-weight:700;
    bottom:10px;
    position:relative;
    text-align: center;
    line-height: 1.15;
    max-width: 1200px;
    margin: 0 auto;*/
}

.theme-description{
    font-size:21px;
    color:#555;
    text-align:justify;

}

.theme-btn{
    display:inline-flex;
    align-items:center;
    padding:15px 36px;
    border-radius:50px;
    background:#a52525;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
    font-size:18px;
}

.theme-btn:hover{
    background:#5e0d10;
    color:#fff;
    transform:translateY(-3px);
}

@media(max-width:768px){
    .theme-title{
        font-size:20px;
    }

    .theme-description{
        font-size:18px;
         word-spacing: -0.9px;
    letter-spacing: 0.4px;
    }
}

.organiser-section{
    position:relative;
   padding-top: 35px;
    padding-bottom: 5px;
    background:url("../assets/img/bg-5.webp") center center;
    background-size:cover;
    background-repeat:no-repeat;
    background-attachment:fixed;
    overflow:hidden;
}

.organiser-section .overlay{
    position:absolute;
    inset:0;

}

.organiser-section .container{
    position:relative;
    z-index:2;
}

.organiser-section .section-title::after{
  content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #f1e6d0, #d4af37, transparent);
    border-radius: 4px;
}

.organiser-block{
    margin-bottom:43px;
}

.organiser-block h3{
    color:#d4af37;
    font-size:29px;
    margin-bottom:28px;
    font-weight:700;
    letter-spacing:.5px;
}

.organiser-block p{
    color:rgba(255,255,255);
    font-size:21px;
    line-height:2;
    text-align:justify;
    margin-bottom:21px;
}

.organiser-divider{
    width:120px;
    height:2px;
    background:#d4af37;
    margin:60px auto;
    opacity:.8;
}

@media(max-width:768px){
     .organiser-section{
        background-attachment:scroll;
        padding:43px 0;
    }

    .organiser-block h3{
        font-size:1.5rem;
        text-align: center;
    }

    .organiser-block p{
         font-size:18px !important;
    }
    #committees p{
         font-size:18px !important;
    }

}

.highlights-section{
    padding:35px 0;
    background:#fff;
    margin-bottom: -50px;
}

.highlights-intro{
    max-width:950px;
    margin:auto;
    font-size:21px;
    line-height:1.9;
    color:#555;
}

.highlight-list{
    list-style:none;
    padding:0;
    margin:0;
}

.highlight-list li{
    display:flex;
    align-items:flex-start;
    gap:21px;

    min-height:205px;
    margin-bottom:7px;
}

#highlights p{
   margin: 0;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    text-align: justify;
}

.highlight-list i{
    width:58px;
    height:58px;
    min-width:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#a52525;
    color:#fff;
    font-size:21px;

    box-shadow:0 10px 25px rgba(115,16,20,.18);
}

.highlight-list h5{
    font-size:23px;
    margin-bottom:7px;
    color:#a52525;
    font-weight:700;
}

.highlight-list p{
    margin:0;
    font-size:21px;
    line-height:2;
    color:#555;
    text-align:justify;
}

@media(max-width:992px){

    .highlight-list{
        margin-bottom:0;
        margin-top: -7px;
    }

    .highlight-list li{
        margin-bottom:30px;
    }

}

@media(max-width:768px){

    .highlights-section{
        padding:43px 0;
        margin-bottom: -10px;
    }

    .highlights-intro{
        font-size:17px;
    }

    .highlight-list li{
        gap:16px;
    }

    .highlight-list i{
        width:48px;
        height:48px;
        min-width:48px;
        font-size:18px;
    }

    .highlight-list h5{
        font-size:20px;
    }

    .highlight-list p{
        font-size:16px;
        text-align:left;
    }

}

.tracks-section{
    position:relative;
    padding:35px 0;

    background:
        linear-gradient(
            rgba(199, 199, 199, 0.07),
            rgba(143, 143, 143, 0.07)
        );

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;
}

.submission-section .section-title{
    color:#fff;
}

.tracks-intro{
    color:#555;
    font-size: 21px;
    line-height: 1.9;
    text-align:justify;

}

.tracks-accordion .accordion-item{
    border:none;
    margin-bottom:18px;

    border-radius:14px !important;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.tracks-accordion .accordion-button{
    background:#ffffff;
    padding:24px 28px;
    font-weight:700;
    color:#212;
    box-shadow:none;
    display:flex;
    align-items:center;
    gap:20px;
}

.tracks-accordion .accordion-button:not(.collapsed){
    background:#fff;
    color:#a52525;
}

.tracks-accordion .accordion-button:focus{
    box-shadow:none;
}

.track-badge{
    background:#a52525;
    color:#fff;
    min-width:110px;
    text-align:center;
    padding:9px 16px;
    border-radius:30px;
    font-size:14px;
    letter-spacing:.5px;
}

.track-title{
    font-size:21px;
    line-height:1.5;
    font-weight:600;
}

.tracks-accordion .accordion-body{
    background:#fffdf9;
    padding:28px 35px;
    border-top:2px solid #d4af37;
}

.tracks-accordion ul{
    margin:0;
    padding-left:20px;
}

.tracks-accordion li{
    margin-bottom:12px;
    color:#444;
    font-size:20px;
    line-height:1.8;
}

.tracks-accordion .accordion-button::after{
    background-size:18px;
}

.tracks-note{
    margin-top:50px;
    text-align:center;
    border-top:2px solid rgba(115,16,20,.12);
    padding-top:35px;
}

@media(max-width:768px){

    .track-badge{
        min-width:90px;
        font-size:12px;
    }

    .track-title{
        font-size:17px;
    }

    .tracks-accordion .accordion-button{
        padding:18px;
        gap:15px;
    }

    .tracks-accordion .accordion-body{
        padding:21px;
    }

    .tracks-accordion li{
        font-size:16px;
    }
}

.tracks-note{
    margin-top:55px;
    padding-top:35px;
    border-top:2px solid rgba(115,16,20,.18);
    text-align:center;
}

.tracks-note a{
    color:#a52525;
    font-weight:700;
    text-decoration:none;
}

.tracks-note a:hover{
    color:#9b1f25;
}

@media(max-width:992px){
    .tracks-section::before{
        background-attachment:scroll;
    }

    .track-item{
        margin-bottom:18px;
    }
}

@media(max-width:768px){
    .tracks-section{
        padding:70px 0;
    }

    .tracks-intro{
        font-size:17px;
    }

    .track-item{
        flex-direction:column;
        align-items:flex-start;
        min-height:auto;
        padding:21px;
        gap:18px;
    }

    .track-number{
        min-width:auto;
    }

    .track-item h5{
        font-size:18px;
    }

    .tracks-note{
        padding:24px;
        text-align:left;
    }

    .tracks-note p{
        font-size:16px;
    }
}

.main-content {
    position: relative;
    background-color: white;
    z-index: 2;
    margin-top: -100px;
    border-radius: 30px 30px 0 0;
    padding-top: 50px;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
}

section:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

#about {
   padding-top: 35px;
    padding-bottom: 5px;
}

.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, white);
    z-index: 1;
}

#about,
#topics,
#publication,
#submission,
#committees,
#dates,
#registration {
    background-color: white;
    position: relative;
}

.hero-content {
    transform: translateZ(0);
    will-change: transform;
}

.conference-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    position: relative;

    text-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

.conference-subtitle {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin-bottom: 30px;
    color: #d4af37;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}


.hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), #000);
    opacity: 0.35;
}

/*.conference-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:14px;
    color:#fff;
    font-size:1.08rem;
    font-weight:400;
}*/

.meta-item{
    display:flex;
    align-items:center;
    gap:8px;
}

.meta-item i{
    color:#d4af37;
}

.meta-divider{
    color:rgba(255,255,255,.5);
}



.navbar-brand{
    display: flex;
    align-items: center;
    margin: 0;
}

.navbar-brand img{
    width: 65px;
    height: auto;
}

.brand-text{
    margin-left: 10px;
}

.b1{
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
}

.b2{
    font-size: 14px;
    line-height: 1.1;
}

@media (min-width:992px){

    .navbar-nav .nav-link{
        padding: .7rem .8rem;
    }

}

@media (max-width:991px){
    
     html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }

  

    .navbar-brand{
       max-width: calc(100% - 65px);

        position: absolute;
    }

    .navbar-brand img{
        width: 52px;
    }

    .brand-text .b1{
        font-size: 18px;
    }

    .brand-text .b2{
        font-size: 12px;
    }

    .navbar-toggler{

       margin-left: auto;
        border: 0;
        padding: 10px;
        box-shadow: none;
        background: #1f2937;

    }

    .navbar-toggler:focus{
        box-shadow: none;
    }

    .navbar-toggler-icon{
        width: 30px;
        height: 30px;
        background-size: 100%;
    }

    .navbar-collapse{

        margin-top: 15px;
        background: #fff;
        border-radius: 8px;
        padding: 10px 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,.12);

    }

    .navbar-nav{
        align-items: flex-start !important;
    }

    .navbar-nav .nav-link{

        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #eee;

    }

    .navbar-nav .nav-item:last-child .nav-link{
        border-bottom: none;
    }

}

@media (max-width: 768px) {
    .hero-section {

        background-size: cover;
        background-attachment: scroll;
        background-position: center center;
    }

    .au-navbar .navbar-brand img {
        width: 38% !important;

    }

    .hero-section .row {
        justify-content: center;
        text-align: center;
    }

    .hero-section .col-lg-8 {
        margin: 0 auto;
    }

    .conference-title,
    .conference-subtitle,
    .conference-dates {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

   /* .conference-meta{
        display:flex;
        flex-direction:column;
        gap:10px;
        align-items:center;
        margin-top:18px !important;
    }*/

    .meta-divider{
        display:none;
    }

    .meta-item{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:8px;
        text-align:center;
        line-height:1.5;
        font-size:.95rem;
    }

    .hero-section::before {
        background: linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.43)
        );
    }
}

@media (max-width: 768px) {
    .main-content {
        margin-top: -50px;
        border-radius: 20px 20px 0 0;
        padding-top: 30px;
    }

    .hero-section::after {
        height: 100px;
    }

    #about {
        margin-top: -30px;
        padding-top: 30px;
    }

    .conference-title {
        font-size: 2rem!important ;
        line-height: 1.24;
    }

    .conference-subtitle {
        font-size: 1.6rem!important ;
        letter-spacing: 2px;
    }

    .conference-dates {
        font-size: 1.1rem!important;
        padding: 12px 25px;
    }
}

html {
    scroll-behavior: smooth;
}

footer {
    margin-top: 0;
}

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

.hero-section .container {
    animation: heroContentFade 1s ease-out;
}

.section-title {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-size: 34px;

    text-transform: uppercase;
    letter-spacing: 1px;
    text-align:center;
    color:#003366;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #7a1f2b,
        #b03a3a,
        #7a1f2b,
        transparent
    );
    border-radius: 4px;
}

.card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 25px;
    overflow: hidden;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body {
    padding: 30px;
}

.list-group-item {
    border-left: none;
    border-right: none;
    padding: 15px 0;
    color: #444;
    background: transparent;
}

.list-group-item:first-child {
    border-top: none;
}

.list-group-item:last-child {
    border-bottom: none;
}

.list-group-item i {
    color: var(--secondary-color);
    font-size: 18px;
}

.table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0;
}

.table thead {
    background-color: var(--primary-color);
}

.table th {
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    border: none;
}

.table td {
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.table tbody tr:hover {
    background-color: rgba(240, 248, 255, 0.5);
}

.important-dates-section {
  background: #ffffff;
}

.dates-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.dates-underline {
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #7a1f2b, #b03a3a, #7a1f2b, transparent);
    margin: 0 auto 40px;
}

.dates-list {
  max-width: 900px;
  margin: 0 auto;
}

.dates-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e6e6e6;
  font-size: 16px;
}

.dates-row span:first-child {
  color: #000000;
}

.dates-row:last-child {
  border-bottom: none;
}

.date {
  font-weight: 600;
  white-space: nowrap;
  color:#d4af37;
}

.date.red {
  color: #c0392b;
}

.date.blue {
  color: #1e88e5;
}

.date.dark {
  color: #333;
}

@media (max-width: 768px) {

  .dates-title {
    font-size: 1.7rem;
    margin-bottom: 8px;
    margin-top: -7px;
  }

  .dates-underline {
    width: 70px;
    margin-bottom: 28px;
  }

  .dates-list {
    padding: 0 10px;
  }

  .dates-row {

    align-items: flex-start;
    gap: 4px;
    padding: 14px 0;
    font-size: 15px;
  }

  .dates-row span:first-child {
    font-weight: 600;
    color: #444;
  }

  .date {
    font-size: 15px;
    font-weight: 700;
  }
}

#topics {
    padding: 43px 0;
    position: relative;
    background: linear-gradient(180deg, #f9f4f4 0%, #eaf0f9 100%);
}

#topics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    display: none;
}

#topics .section-title {
    color: var(--primary-color);
    font-family: 'Cambria', 'Georgia', serif;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    font-size: 34px;
    position: relative;
    padding-bottom: 21px;
    margin-bottom: 40px;
    margin-top: -7px;

}

#topics .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #7a1f2b,
        #b03a3a,
        #7a1f2b,
        transparent
    );
    border-radius: 4px;
}

#topics > .container > p {
    margin: 0 auto 50px;
    font-size: 21px;
    line-height: 1.71;
    color: #000;
    font-weight: 500;
}

#topics .accordion {
    background: #ffffff;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

#topics .accordion-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #e1e6ef;
    overflow: hidden;
}

#topics .accordion-item:last-child {
    margin-bottom: 0;
}

#topics .accordion-item:hover {
    background: #f9fbfe;
}

#topics .accordion-button {
    background: linear-gradient(90deg, #f1f4f9, #ffffff);
    color: #003366;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 34px;
    border-left: 6px solid #003366;
}

#topics .accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

#topics .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #e9eef7, #ffffff);
    color: #003366;
}

#topics .accordion-button:not(.collapsed)::before {
    opacity: 1;
}

#topics .accordion-button:hover {
    background: #f2f4f7;
}

#topics .accordion-button::after {
    background-image:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003366'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
    width: 1.2rem;
    height: 1.2rem;
    background-size: 1.2rem;
}

#topics .accordion-button:not(.collapsed)::after {
    background-image:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc0000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

#topics .accordion-button .topic-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

#topics .accordion-button:not(.collapsed) .topic-number {
    transform: none;
}

#topics .accordion-body {
    background: #f9fbff;
    border-top: 1px solid #e1e6ef;
    padding: 32px 36px;
}

#topics .accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 32px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
    opacity: 0.5;
    display: none;
}

#topics .topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

#topics .topic-item {
    background: #f9fafb;
    border: 1px solid #e1e4e8;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: none;
    transform: none !important;
}

#topics .topic-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

#topics .topic-item:hover {
    background: linear-gradient(90deg, #f8fafc, #ffffff);
    border-color: var(--secondary-color);
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.15);
}

#topics .topic-item:hover::before {
    opacity: 1;
}

#topics .topic-item::after {
    content: 'â†’';
    position: absolute;
    right: 20px;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-weight: 700;
}

#topics .topic-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

#topics .topic-item-icon {
    color: #6c757d;
    font-size: 0.9rem;
    margin-right: 10px;
}

#topics .topic-item::before,
#topics .topic-item::after {
    display: none;
}

#topics .topic-item:hover {
    background: #ffffff;
    border-color: #003366;
}

#topics .track-badge {
    background: #eef2f6;
    color: #003366;
    border: 1px solid #d6dde5;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 3px;
    padding: 3px 8px;
    margin-left: 10px;
}

#topics .topic-item:hover .topic-item-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-color);
}

#topics .accordion-item:last-child .track-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-color), #ff5252);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 15px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#topics .topic-number {
    background: none;
    color: #003366;
    font-weight: 800;
    width: auto;
    height: auto;
    margin-right: 10px;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    #topics .topic-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }

    #topics .accordion-button {
        padding: 24px 28px;
        font-size: 1.1rem;
    }

    #topics .accordion-body {
        padding: 35px 30px;
    }
}

@media (max-width: 768px) {
    #topics {
        padding: 70px 0;
    }

    #topics .section-title {
        font-size: 1.7rem;
        letter-spacing: 1.5px;
        margin-top: -7px;
    }

    #topics > .container > p {
        font-size: 1.05rem;
        line-height: 1.7;
        padding-left: 10px;
        padding-right: 10px;
    }

    #topics .topic-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #topics .accordion-button {
        padding: 20px 24px;
        font-size: 1rem;
    }

    #topics .accordion-body {
        padding: 30px 24px;
    }

    #topics .accordion-body::before {
        left: 20px;
    }

    #topics .topic-item {
        padding: 18px 21px;
        font-size: 0.95rem;
    }

    #topics .topic-number {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 0.8rem;
        margin-right: 12px;
    }
}

@media (max-width: 576px) {
    #topics .section-title {
        font-size: 1.7rem;
        padding-bottom: 20px;
    }

    #topics > .container > p {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }

    #topics .accordion-button {
        padding: 18px 20px;
    }

    #topics .topic-item {
        padding: 16px 20px;
    }

    .track-badge {
        display: block;
        margin: 8px 0 0 0 !important;
    }
}

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

#topics .accordion-collapse.show .topic-item {
    animation: slideIn 0.4s ease forwards;
}

#topics .accordion-collapse.show .topic-item:nth-child(2) {
    animation-delay: 0.05s;
}

#topics .accordion-collapse.show .topic-item:nth-child(3) {
    animation-delay: 0.1s;
}

#topics .accordion-collapse.show .topic-item:nth-child(4) {
    animation-delay: 0.15s;
}

#topics .accordion-collapse.show .topic-item:nth-child(5) {
    animation-delay: 0.2s;
}

#topics .accordion-collapse.show .topic-item:nth-child(6) {
    animation-delay: 0.25s;
}

#topics .accordion-collapse.show .topic-item:nth-child(7) {
    animation-delay: 0.3s;
}

#topics .accordion-collapse.show .topic-item:nth-child(8) {
    animation-delay: 0.35s;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003366'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003366'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.faq-container {

    margin: 0 auto;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }

.faq-container .faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }

.faq-container .faq-item:hover {
    border-color: #cbd5e1;
  }

.faq-container .faq-toggle {
    display: none;
  }

.faq-container .faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 21px;
    background: #fafcff;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
    gap: 16px;
  }

.faq-container .faq-label:hover {
    background: #f1f5f9;
  }

.faq-container .faq-label .faq-title {
    font-weight: 600;
    font-size: 21px;
    color: #0b1e33;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
  }

.faq-container .faq-label .faq-title i {
    color: #1e4f8a;
    width: 21px;
    font-size: 1rem;
    text-align: center;
  }

.faq-container .faq-label .faq-arrow {
    color: #64748b;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

.faq-container .faq-content {
    max-height: 0;
    padding: 0 21px;
    background: #ffffff;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    border-top: 1px solid transparent;
  }

.faq-container .faq-content-inner {
    padding: 6px 0 21px 0;
    color: #1e293b;
    font-size: 0.95rem;
    line-height: 1.6;
  }

.faq-container .faq-content-inner p {
    margin-bottom: 12px;
    font-size: 18px;
    text-align:justify;
  }

.faq-container .faq-content-inner p:last-child {
    margin-bottom: 0;
  }

.faq-container .faq-content-inner ul {
    padding-left: 21px;
    margin: 8px 0 12px 0;
    list-style-type: disc;
  }

.faq-container .faq-content-inner ul li {
    margin-bottom: 5px;
  }

.faq-container .faq-content-inner .highlight-box {
    background: #f8fafc;
    border-left: 4px solid #b91c1c;
    padding: 12px 16px;
    border-radius: 6px;
    margin: 12px 0;
    font-size: 0.95rem;
  }

.faq-container .faq-content-inner .highlight-box strong {
    color: #991b1b;
  }

.faq-container .faq-content-inner .badge-physical {
    display: inline-block;
    background: #1e4f8a;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-right: 4px;
  }

.faq-container .faq-content-inner .badge-virtual {
    display: inline-block;
    background: #6b7280;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    margin-right: 4px;
  }

.faq-container .faq-content-inner .btn-outline-link {
    display: inline-block;
    background: transparent;
    border: 1.5px solid #1e4f8a;
    color: #1e4f8a;
    padding: 6px 16px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: 4px;
  }

.faq-container .faq-content-inner .btn-outline-link:hover {
    background: #1e4f8a;
    color: white;
  }

.faq-container .faq-content-inner .visa-note {
    background: #f0f4fe;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #dbe7f9;
    margin: 12px 0;
  }

.faq-container .faq-content-inner .visa-note i {
    color: #1e4f8a;
    margin-right: 8px;
  }

.faq-container .faq-toggle:checked ~ .faq-content {
    max-height: 800px;
    padding: 0 21px 6px 21px;
    border-top-color: #e2e8f0;
  }

.faq-container .faq-toggle:checked ~ .faq-label .faq-arrow {
    transform: rotate(180deg);
  }

.faq-container .faq-toggle:checked ~ .faq-label {
    background: #f1f6fe;
  }

@media (max-width: 500px) {
    .faq-container .faq-label {
      padding: 14px 16px;
    }
    .faq-container .faq-label .faq-title {
      font-size: 0.95rem;
    }
    .faq-container .faq-content {
      padding: 0 16px;
    }
    .faq-container .faq-toggle:checked ~ .faq-content {
      padding: 0 16px 6px 16px;
    }
    .faq-container .faq-content-inner {
      font-size: 0.9rem;
    }
  }

.tracks-label {
      background: #dce5f0;
      border-radius: 40px;
      padding: 0px 14px;
      font-size: 0.7rem;
      font-weight: 600;
      color: #1a2f4e;
    }

@media (max-width: 700px) {
      .header-grid { flex-direction: column; align-items: start; gap: 16px; }
      .header-dates { text-align: left; width: 100%; }
      .countdown { justify-content: flex-start; flex-wrap: wrap; }
      .section-title { font-size: 1.6rem; }
    }

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a2e;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #fff;
}

.modal-title {
    color: #fff;
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4a90e2;
    font-weight: 600;
}

.modal-section p {
    color: #d4d4d4;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.modal-section p strong {
    color: #4a90e2;
    font-weight: 600;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #1a1a2e;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #4a90e2;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #5a9ef2;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 25px 20px;
        margin: 10px;
        max-height: 85vh;
    }

    .modal-title {
        font-size: 21px;
    }

    .modal-section p {
        font-size: 14px;
    }
}

.bg-light {
    background-color: var(--light-bg) !important;
}

#publication .card {
    border-top: 4px solid var(--accent-color);
    border-left: none;
}

#publication .card-body {
    padding: 40px;
}

#publication ol {
    padding-left: 20px;
    margin-bottom: 0;
}

#publication li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

#submission .card-header.bg-warning {
    background-color: #ffc107 !important;
    color: #000;
}

#submission .card-header.bg-info {
    background-color: #17a2b8 !important;
    color: white;
}

@media (max-width: 1200px) {
    .conference-title {
        font-size: 2.4rem;
    }

    .conference-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .conference-title {
        font-size: 2rem;
    }

    .conference-subtitle {
        font-size: 1.6rem;
    }

    .conference-dates {
        font-size: 1.2rem;
        padding: 12px 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
       padding: 15px 40px;
        left: -12px !important;
        top: 10px;
        position: relative;
        background: linear-gradient(90deg, #00152e 0%, #002a4f 45%, #00152e 100%);

    }

    .au-navbar .nav-link {
        color:#fff !important;
        font-size:18px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid #eee;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .btn-au-register {
        width: 100%;
        margin-top: 10px;
    }

    .conference-title {
        font-size: 1.8rem;
    }

    .conference-subtitle {
        font-size: 1.4rem;
    }

    .conference-dates {
        font-size: 1.1rem;
        padding: 10px 25px;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-right: 0;
    }

    /*section {
        padding: 50px 0;
    }*/

    .card-body {
        padding: 25px;
    }

    .important-dates {
        padding: 30px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .conference-title {
        font-size: 1.6rem;
    }

    .conference-subtitle {
        font-size: 1.2rem;
    }

    .conference-dates {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .important-dates {
        padding: 20px;
    }

    footer {
        padding: 40px 0 20px;
    }

    .accordion-button {
        padding: 15px;
        font-size: 15px;
    }
}

.about-section {
    background-color: #ffffff;
    padding-top: 90px;
    padding-bottom: 90px;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.about-lead {

    margin-bottom: 20px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 30px 0 35px;
}

.about-subheading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.about-list li {
    position: relative;
    padding-left: 21px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #444;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .about-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-lead {
        font-size: 1.05rem;
    }
}

#committees {
    background-color: rgba(115,16,20,.67);
    padding: 35px 0 !important;
    position: relative;
}

#committees p{
   font-size: 21px;
   line-height:2;
   text-align:justify;
}

#committees .container {
    position: relative;
    z-index: 2;
}

#committees .section-title {
    color: #ffffff;
   text-align:center;
}

#important-dates .section-title {
    color: #ffffff;
   text-align:center;
}

#committees .section-title::after {
   content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #f1e6d0, #d4af37, transparent);
    border-radius: 4px;
}

.committee-row {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.committee-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.committee-row-title {
    color: #a52525;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    position: relative;
}

.committee-row-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #a52525;
}

.committee-members {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card1{
    font-size: 18px !important;
    text-align:justify;
}

.committee-members li {
    color: #2c3e50;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;

}

.committee-members li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a52525;
    font-weight: bold;
    font-size: 1.2rem;
}

.committee-members li strong {
    color: #a52525;
    font-weight: 700;
}

.leadership-boxes {
    margin-bottom: 40px;
}

.leadership-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border-top: 4px solid #d4af37;
}

.leadership-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.leadership-box h3:not(.leader-card-title){
    color:#a52525;
    font-size:1.2rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:15px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(115,16,20,.1);
}

.leadership-box .name {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.leadership-box .title {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.committee-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
}

.committee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.committee-card-title {
    color: #a52525;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    position: relative;
}

.committee-card-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #a52525;
}

.leadership-box .row {
    margin-top: 20px;
}

.leadership-box .col-md-3 .name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.leadership-box .col-md-3 .title {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.row.mb-4 {
    display: flex;
    flex-wrap: wrap;
}

.row.mb-4 > div {
    display: flex;
}

.leadership-box, .committee-card {
    flex: 1;
}

#committees > .container > .row:nth-of-type(1) {
    margin-bottom: -25px !important;
}

#committees > .container > .row:nth-of-type(2) {
    margin-bottom: 2px !important;
}

#committees > .container > .row:nth-of-type(3) {
    margin-bottom: 7px !important;
}

@media (max-width: 992px) {
    #committees {
        padding: 60px 0;
    }

   /* #committees .section-title {
        font-size: 1.5rem;
    }*/

    .committee-row,
    .leadership-box {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    /*#committees .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }*/

    .committee-row-title {
        font-size: 1.2rem;
    }

    .committee-members li {
        font-size: 0.95rem;
    }

    .leadership-box .name {
        font-size: 1.1rem;
    }
  #committees > .container > .row:first-of-type > div:first-child {
    margin-bottom: 4px !important;
  }
}

@media (max-width: 576px) {
    #committees .section-title {
        font-size: 1.5rem;
       /* padding-bottom: 20px;
        margin-top: -7px;*/
    }

    .committee-row,
    .leadership-box {
        padding: 25px 20px;
    }

    .leadership-box h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .committee-card {
        padding: 25px;
    }

    .leadership-box .col-md-3 .name {
        font-size: 1rem;
    }

    .leadership-box .col-md-3 .title {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .committee-card-title {
        font-size: 1.1rem;
    }

    .leadership-box .col-md-3 {
        margin-bottom: 20px;
    }

    .leadership-box .col-md-3 .name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .committee-card {
        padding: 20px;
    }

    .leadership-box {
        padding: 25px;
    }

    .leadership-box h3 {
        font-size: 1.1rem;
    }
}

/*.leadership-box{
    background: rgba(255,255,255,.95);
    border-radius:8px;
    padding:30px;
    height:100%;

    border-top:4px solid #d4af37;

    box-shadow:0 4px 12px rgba(0,0,0,.10);

    transition:.35s;
}*/

.leadership-box:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.leadership-box-small{
    padding:23px 26px;
    margin-bottom: 7px;
}


/* Leadership Profile Layout */

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


/* Leader Image - Left Side */
.leader-profile img {
    display: block;
    width: 220px;
    height: 220px;

    object-fit: cover;
border-radius:5px;
    margin: 0 auto 15px;

}

/* Leader Details - Right Side */
.leader-info {
    width: 100%;
    text-align: center;
   
}


.leader-info h4 {
    margin: 0;
     font-size: 17px;
    text-align: center;
}

/* Card Title */
.leader-card-title {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color:#003366;
    text-transform:uppercase;
    border-bottom: 1px solid lightgray;
}

/* Leadership Box */
.leadership-box {
    height: 100%;
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.10);
    
}

/* Mobile */
@media (max-width: 767px) {

    .leader-profile {
        display: block;
        width: 100%;
        text-align: center;
    }

    .leader-profile img {
        width: 150%;
        max-width: 220px;
        height: 220px;

        display: block;
        margin: 15px auto 20px;

        object-fit: contain;
        object-position: center;

        border-radius: 8px;
    }

    .leader-info h4 {
        font-size: 17px;
    }

    .leader-card-title {
        font-size: 18px;
    }

    .leadership-box {
        padding: 20px;
    }
}

/*.leader-profile{
    display:flex;
    align-items:center;
    gap:21px;
    min-height:170px;
}

.leader-profile img{
    width:124px;
    height:160px;
    object-fit:cover;
    border-radius:12px;
    border:2.5px solid #d4af37;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
    flex-shrink:0;
    transition:.35s;
}*/

.leadership-box:hover .leader-profile img{
    transform:scale(1.04);
}

/*.leader-info{
    flex:1;
}*/

/*.leader-card-title{
    color:#a52525;
    font-size:1.3rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:25px;
    padding-bottom:15px;
    border-bottom:2px solid #d4af37;
    position:relative;
}*/

/*.leader-card-title::after{
    content:"";
    position:absolute;
    bottom:-2px;
    left:0;
    width:60px;
    height:2px;
    background:#a52525;
}*/

.leader-role{
    display:inline-block;
    background:#a52525;
    color:#fff;
    font-size:12px;
    letter-spacing:1px;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:10px;
    text-transform:uppercase;
}

/*.leader-info h4{
    color:#a52525;
    font-size:21px;
    margin-bottom:10px;
    font-weight:700;
}*/

.leader-info p{
    margin:0;
    color:#666;
    line-height:1.7;
    font-size:16px;
}

/*@media(max-width:991px){
    .leader-profile{
        flex-direction:column;
        text-align:center;
    }

    .leader-profile img{
        width:160px;
        height:200px;
    }
}*/

p{

    line-height: 1.71;
}

@media (min-width:992px) and (max-width:1399.98px){

    #committees{
        padding:52px 0 !important;
    }

    /*#committees .section-title{
        font-size:30px;
        margin-bottom:36px;
        padding-bottom:18px;
    }*/

    #committees .section-title::after{
        width:110px;
    }

    #committees p.text-white{

        line-height:1.75 !important;
        margin-bottom:24px !important;
    }

    .leadership-box,
    .committee-card{
        padding:21px;
        border-radius:12px;
    }

    .leadership-box-small{
        padding:18px 20px;
    }

    .leader-card-title,
    .committee-card-title{
        font-size:1.12rem;
        margin-bottom:18px;
        padding-bottom:12px;
    }

   /* .leader-profile{
        gap:16px;
        min-height:140px;
    }

    .leader-profile img{
        width:95px;
        height:125px;
    }

    .leader-info h4{
        font-size:18px;
        margin-bottom:8px;
    }*/

    .leader-info p{
        font-size:14px;
        line-height:1.55;
    }

    .committee-members li{
        font-size:15px;
        line-height:1.6;
        margin-bottom:8px;
    }

    .committee-card p{
        font-size:15px !important;
        line-height:1.7 !important;
    }

    .row.mb-4{
        margin-bottom:1rem !important;
    }

    .row.mt-4{
        margin-top:.5rem !important;
    }

    #committees > .container > .row:nth-of-type(1) {
    margin-bottom: -1px !important;
}

}

#speakers {
  background: #f7f5f1;
  padding: 35px 0 !important;
}

.section-title-dark{
    text-align:center;
    font-size:34px;
    font-weight:800;
    color:#a52525;
    margin-bottom:52px;
    position:relative;
    padding-bottom:7px;
    text-transform: uppercase;

}

.section-title-dark::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:130px;
    height:3px;
    background:linear-gradient(
        90deg,
        transparent,
        #d4af37,
        #f3e4b0,
        #d4af37,
        transparent
    );
}

.section-subtitle-spekers{
    text-align: center;
}

.speakersSwiper .swiper-slide{
    height: auto;
    display: flex;
}

.speaker-card{
    width:100%;
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.speaker-img {
  position: relative;
  overflow: hidden;

  aspect-ratio:1/1;
}

.speaker-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: 0.4s ease;
}

.speaker-card:hover .speaker-img img {
  transform: scale(1.07);
}

.speaker-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.designation {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  min-height: 90px;
}

.speaker-info h4 {
  color: #a52525;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.speaker-links{
    margin-top:auto;
    padding-top:16px;
    border-top:1px solid #ececec;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.connect-text{
    font-size:.85rem;
    color:#777;
    font-weight:500;
}

.speaker-links a {
  position: relative;

    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0a66c2;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.speaker-links a:hover::after {
  opacity: 1;
}

.speaker-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(120deg, transparent, rgba(212,175,55,0.2));
  opacity: 0;
  transition: 0.4s;
}

.speaker-links a:hover{

    background:#005079;
}

.speaker-card:hover::before {
  opacity: 1;
}

.speaker-links a[tite="LinkedIn"] {
  background: #0a66c2;
  color: #fff;
        width:42px;
      height:42px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:18px;
}

.speaker-links a[title="LinkedIn"]:hover {
  background: #004182;
}

.speaker-links a[title="Profile"]:hover {
  background: #a52525;
}

.speaker-pagination{
    position: static !important;
    margin-top: 35px;
    text-align: center;
}

.speaker-pagination .swiper-pagination-bullet-active{
    background: #a52525;
    width: 18px;
    border-radius: 20px;
}

@media (max-width: 767px){

    #speakers{
        padding:45px 0 !important;
    }

    .section-title-dark{
        font-size:26px;
        margin-bottom:30px;
    }

    .speakersSwiper{
        padding:0 8px;
    }

    .swiper-slide{
        display:flex;
        justify-content:center;
    }

  .speaker-card{
      border-radius:18px;
      max-width:360px;
      width:100%;
      margin:auto;
  }

    .speaker-info{
        padding:16px;
    }

    .speaker-info h4{
        font-size:17px;
        line-height:1.35;
        margin-bottom:8px;
        min-height:auto;
    }

    .designation{
        font-size:13px;
        line-height:1.55;
        min-height:auto;
        margin-bottom:14px;
    }

    .speaker-links{
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:12px;
        padding-top:14px;
        margin-top:auto;
        border-top:1px solid #ececec;
    }

    .connect-text{
        font-size:13px;
        font-weight:600;
        color:#666;
    }

    .speaker-links a{
        width:36px;
        height:36px;
        font-size:15px;
        flex-shrink:0;
    }

    .speaker-pagination{
        margin-top:21px;
    }
}

@media (min-width: 992px) and (max-width: 1399px) {

    #speakers{
        padding: 55px 0 !important;
    }

    .section-title-dark{
        font-size: 30px;
        margin-bottom: 40px;
    }

    .speaker-card{
        border-radius: 12px;
    }

    .speaker-img img{
        height: 210px;
    }

    .speaker-info{
        padding: 18px 16px;
    }

    .speaker-info h4{
        font-size: 17px;
        line-height: 1.35;
        margin-bottom: 8px;
    }

    .designation{
        font-size: 13px;
        line-height: 1.55;
        min-height: 78px;
    }

    .speaker-links{
        padding-top: 12px;
    }

    .speaker-links a{
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .speakersSwiper{
        padding-bottom: 55px;
    }
}

#call-paper{
    position:relative;
   padding-top: 35px;
    padding-bottom: 5px;
    background:url("../assets/img/bg-9.webp") center center/cover fixed;
    overflow:hidden;
}

.paper-overlay{
    position:absolute;
    inset:0;
    background:rgba(115,16,20,.67);
}

#call-paper .container{
    position:relative;
    z-index:2;

}

#call-paper .section-title{
    color:#ffffff;

}
#support-and-legal{
    padding-top: 35px;
    padding-bottom: 35px;
}

#support-and-legal .section-title{
    color:#ffffff;

}

.section-title-light::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:0;
    transform:translateX(-50%);
    width:140px;
    height:3px;
    background:linear-gradient(
        90deg,
        transparent,
        #d4af37,
        #f4e6b3,
        #d4af37,
        transparent
    );
}

#call-paper p{
    color:#ffffff;
    font-size:21px;
    line-height:2;
    font-weight:400;
    text-align:justify;
    margin-bottom:28px;
    text-shadow:
        0 2px 6px rgba(0,0,0,.43),
        0 0 18px rgba(0,0,0,.25);
}

.paper-btns{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.paper-btn,
.paper-btn-outline{
    text-decoration:none;
    padding:15px 34px;
    border-radius:40px;
    font-weight:700;
    transition:.35s;
}

.paper-btn{
    background:#a52525;
    color:#fff;
}

.paper-btn:hover{
    background:#fff;
    color:#a52525;
}

.paper-btn-outline{
    border:2px solid #a52525;
    color:#fff;
}

.paper-btn-outline:hover{
    background:#a52525;
    color:#fff;
}

@media(max-width:768px){

    #call-paper{
        background-attachment:scroll;
        padding:80px 0;
    }

    #call-paper p{
        text-align:left;
        font-size:18px;
        line-height:1.9;
        text-align: justify;
    }

    .section-title-light{
        font-size:28px;
    }

    .paper-btns{
        flex-direction:column;
    }

    .paper-btn,
    .paper-btn-outline{
        width:100%;
        text-align:center;
    }
}

#submission-categories {
  padding: 35px 0px;
  background: linear-gradient(135deg, #f9fafc, #eef1f7);
  font-family: 'Poppins', sans-serif;
  background:url("../assets/img/bg-4.webp") center center/cover fixed;
  position: relative;
  overflow: hidden;
}

.submission-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(rgba(199, 199, 199, 0.07), rgba(143, 143, 143, 0.07)), url(../assets/img/bg-4.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#submission-categories .section-title {

}

.submission-intro {
  text-align: center;
  margin: 0 auto 50px;
  color: #000000;
  font-size: 21px;
  line-height: 1.7;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 28px;
}

.category-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.6);
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #a52525, #d4af37, transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.icon-wrap {
  width: 35px;
  height: 35px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a52525, #a83232);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(115,16,20,0.3);
  transition: 0.35s;
}

.category-card:hover .icon-wrap {
  transform: rotate(6deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(115,16,20,0.4);
}

.category-card p {
  font-size: 17px;
  font-weight: 600;
  color: #212;
  text-transform:uppercase;
  text-align:center;
}

.category-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transform: rotate(25deg);
  transition: 0.6s;
  opacity: 0;
}

.category-card:hover::after {
  top: 100%;
  opacity: 1;
}

.process-section {
  margin-top: 80px;
}

.process-section h3 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 50px;
  color: #111;
}

.timeline {
  position: relative;
  margin: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.timeline-item span {
  min-width: 40px;
  height: 40px;
  background: #a52525;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 2;
}

.timeline-item p {
  color: #555;
  line-height: 1.8;
    font-size: 20px;
    text-align:justify;
}

@media (max-width: 768px) {

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-card {
    padding: 14px 10px;
    border-radius: 10px;
    text-align: center;
  }

  .icon-wrap {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
  }

  .icon-wrap i {
    font-size: 18px;
  }

  .category-card p {
    font-size: 13.3px;
    margin: 0;
    line-height: 1.3;
  }
    #submission-categories {
    padding: 40px 12px;
  }

  #submission-categories .section-title {
    font-size: 29px;
    margin-bottom: 20px;
  }

  .submission-intro {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }

  .timeline-item span {
    width: 36px;
    height: 36px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .timeline-item p {
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
  }

  .process-section {
    margin-top: 34px;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {

    #submission-categories{
        padding: 55px 0;
    }

    #submission-categories .section-title{
        font-size: 30px;
        margin-bottom: 16px;
    }

    .submission-intro{
        max-width: 900px;
        font-size: 18px;
        line-height: 1.65;
        margin-bottom: 40px;
    }

    .categories-grid{
        grid-template-columns: repeat(5, 1fr);
        gap: 18px;
    }

    .category-card{
        padding: 24px 18px;
        border-radius: 14px;
    }

    .icon-wrap{
        width: 54px;
        height: 54px;
        margin-bottom: 14px;
        font-size: 21px;
    }

    .category-card p{
        font-size: 15px;
        line-height: 1.45;
    }

    .process-section{
        margin-top: 55px;
    }

    .timeline::before{
        left: 18px;
    }

    .timeline-item{
        gap: 16px;
        margin-bottom: 28px;
    }

    .timeline-item span{
        min-width: 36px;
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .timeline-item p{
        font-size: 18px;
        line-height: 1.65;
    }
}

#important-dates {
  padding: 35px 0;
  background: linear-gradient(135deg, #003366, #001a33);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-title-light::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #d4af37;
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.dates-table{
    width:100%;
    min-width:850px;
    border-collapse:collapse;
    background: #f7f9fc;
}


.dates-table td{
   
    border: 3px solid #ddd;
    text-align:justify;
    padding: 10px 18px;
  color: #036;
  font-size: 17px;
}

.dates-table th{
    color: #fff;
    text-align:center;
   padding:10px 18px;
    font-size:20px;
    border: 3px solid #ddd;
}

@media (max-width:768px){

    .dates-table{
        min-width:700px;
    }

    .dates-table th,
    .dates-table td{
        padding:12px;
        font-size:15px;
    }

}

.dates-table thead {
 /* background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));*/
 background: #F78C44;
}

.dates-table td:nth-child(2) {
 color: #9b1f25;
  text-align: center;
  font-weight: 600;
}

/*.dates-table tbody tr:nth-child(7) {
  background: rgba(212, 175, 55, 0.12);
}
*/
.dates-table tbody tr {
  transition: all 0.25s ease;
}

.dates-table tbody tr:hover {
  background: rgba(255,255,255,0.10);
  transform: scale(1.01);
}

.dates-table tbody tr:nth-child(even) {
  background: rgba(255,255,255,0.03);
}

.dates-note{
    margin-top:52px;
    text-align:left;
text-align:justify;
    color:rgba(255,255,255,.82);

    font-size:21px;
    line-height:1.9;
    margin-left:auto;
    margin-right:auto;
}

@media (max-width: 768px) {
  .section-title-light {
    font-size: 28px;
  }

  .dates-table th,
  .dates-table td {
    padding: 12px;
    font-size: 12px;
  }

  .dates-note {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 30px;
    text-align: justify;
  }
}

.policy-section{
    position:relative;
    padding:35px 0px;
    background:#fafbfd;

    background-image:url("../assets/img/bg-9.webp");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    overflow:hidden;
}

.policy-section .section-title{
    font-size: 34px;
    margin-bottom: 7px;
}

.policy-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.07);
}

.policy-section .container{
    position:relative;
    z-index:2;
}

.custom-policy-accordion{
    margin:auto;
}

.custom-policy-accordion .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    background:white;
}

.custom-policy-accordion .accordion-button{
    font-weight:600;
    font-size:21px;
    padding:21px 28px;
    background:#fff;
    color:#173A63;
    box-shadow:none;

}

.custom-policy-accordion .accordion-button i{
    color:#D9A441;
    font-size:21px;
}

.custom-policy-accordion .accordion-button:not(.collapsed){
    background:#173A63;
    color:#fff;
}

.custom-policy-accordion .accordion-button:not(.collapsed) i{
    color:#FFD166;
}

.custom-policy-accordion .accordion-button:focus{
    box-shadow:none;
}

.custom-policy-accordion .accordion-body{
    padding:30px;
    color:#555;
    line-height:1.9;
    font-size: 21px;
    text-align:justify;
}

.custom-policy-accordion .accordion-body strong{
    color:#000000;
}

.custom-policy-accordion .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      filter: none;
    }

.custom-policy-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23173A63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-policy-accordion ul{
    padding-left:20px;
}

.custom-policy-accordion li{
    margin-bottom:16px;
}

@media (max-width: 768px) {

  #policy {
    padding: 40px 12px;
  }

  #policy .section-title {
    font-size: 27px;
    margin-bottom: 0px;
  }
  .custom-policy-accordion .accordion-button {
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.3;
    gap: 10px;
  }

  .custom-policy-accordion .accordion-button i {
    font-size: 16px;
    margin-right: 6px !important;
  }
  .custom-policy-accordion .accordion-body {
    padding: 14px 14px;
  }

  .custom-policy-accordion p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
   .custom-policy-accordion ul {
    padding-left: 18px;
    margin-bottom: 10px;
  }

  .custom-policy-accordion li {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 6px;
  }
   .custom-policy-accordion h5 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .custom-policy-accordion hr {
    margin: 14px 0;
  }

}

.awards-section{
    position:relative;
    padding:35px 0px;
    overflow:hidden;
    background:
        radial-gradient(circle at top right,#fdf8ec 0%,#ffffff 45%),
        linear-gradient(to bottom,#ffffff,#fafbfd);
}

.awards-section::before{
    content:"";
    position:absolute;
    width:403px;
    height:403px;
    border-radius:50%;
    background:rgba(201,164,55,.034);
    top:-170px;
    right:-120px;
}

.awards-section::after{
    content:"";
    position:absolute;
    width:270px;
    height:270px;
    border-radius:50%;
    background:rgba(23,58,99,.034);
    left:-120px;
    bottom:-120px;
}

.award-card{
    position:relative;
    background:linear-gradient(
        180deg,
        #ffffff,
        #fcfcfc
    );
    border:1px solid rgba(201,164,55,.25);
    overflow:hidden;
    transition:.45s;
    border-radius:20px;
    padding:43px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    height:100%;
}

.award-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(
        90deg,
        #c59d3d,
        #f2d57b,
        #c59d3d
    );

}

.award-card:hover{
    transform:translateY(-10px) scale(1.015);
    box-shadow:
    0 25px 60px rgba(0,0,0,.12),
    0 0 0 1px rgba(201,164,55,.18);
}

.section-subtitle {
    font-size: 21px;
}

.award-icon{
    width:77px;
    height:77px;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;

    background:#fff8e7;

    border:2px solid rgba(201,164,55,.25);
    margin-bottom:25px;
}

.award-icon::before{
    content:"";
    position:absolute;
    inset:-12px;
    border-radius:50%;
    border:1px dashed rgba(201,164,55,.35);
}

.award-icon i{
    font-size:34px;
    color:#c9a437;
}

.award-card h4{
    font-weight:700;
    color:#173A63;
    margin-bottom:10px;
    font-size: 21px;
}

.award-count{
    display:inline-block;
    background:#fff;
    color:#173A63;
    border:1px solid #dcb55a;
    font-weight:600;
    letter-spacing:.5px;
    padding:6px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:25px;

}

.award-card p{
    color:#666;
    line-height:1.9;
    font-size:21px;
    text-align:justify !important;
    text-align: left;
}

.award-footer{
    margin-top:70px;
    padding:35px 80px;

    border-top:1px solid rgba(23,58,99,.12);
    border-bottom:1px solid rgba(23,58,99,.12);
    background:transparent;
}

.award-footer p{
    margin:0;
    color:#596273;
    line-height:2;
    font-size:21px;
    margin-inline:auto;
}

@media (max-width: 768px) {

  .awards-section {
    padding: 40px 12px;
  }

  .awards-section .section-title {
    font-size: 29px;
    margin-bottom: 15px;
  }

  .awards-section .section-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .award-card {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .award-card h4 {
    font-size: 17px;
    margin: 8px 0;
  }

  .award-count {
    font-size: 13px;
    margin-bottom: 8px;
    display: inline-block;
  }

  .award-card p {
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
  }
  .award-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
  }

  .award-icon i {
    font-size: 18px;
  }
   #awards .row.g-4 {
    gap: 12px !important;
  }

  #awards .col-lg-6 {
    margin-bottom: 7px;
  }
  .award-footer {
    margin-top: 20px;
    padding: 0 5px;
  }

  .award-footer p {
    margin: 10px;
    font-size: 15.1px;
    line-height: 1.5;
  }
  .award-card {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
}

.submission-section {
  padding: 35px 0px;

  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-title-light::after {
 content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-80%);
    width: 250px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #f1e6d0, #d4af37, transparent);
    border-radius: 4px;
}

.guidelines-heading {
  text-align: center;
  font-size: 29px;
  color: #ffc107;
  margin: 43px auto 52px;
  font-weight: 500;
  position: relative;
  width: fit-content;
  padding: 0 25px;
  text-transform:uppercase;
}

.guidelines-heading::before,
.guidelines-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
}

.guidelines-heading::before {
  right: 100%;
  margin-right: 15px;
}

.guidelines-heading::after {
  left: 100%;
  margin-left: 15px;
}

.guideline-block {
  margin: 0 auto 45px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.guideline-block:last-child {
  border-bottom: none;
}

.guideline-block h4 {
  font-size: 24px;
  color:  #f2d57b;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  text-align:justify;
}

.guideline-block h4::before {
  /*content: "";*/
  display: inline-block;
  width: 18px;
  height: 2px;
  /*background: #d4af37;*/
  margin-right: 10px;
  vertical-align: middle;
}

.guideline-block h5 {
  font-size: 25px;
  margin-top: 18px;
  margin-bottom: 5px;
  /*color: #d4af37;*/
  color:#ffc107;
  font-weight: 500;
}

.guideline-block p {
font-size: 21px;
 /* color: #e6e6e6;*/
 color:#fff;
  text-align:justify;

}

.guideline-block ul {
  padding-left: 18px;
  margin-top: 6px;
  text-align:justify;
}

.guideline-block li {
  font-size: 21px;
  margin-bottom: 7px;
  /*color: #ddd;*/
  color:#fff;
  text-align:justify;
  line-height: 1.6;
}

.guideline-block li::marker {
  color: #FFD54F;
}

.guideline-block ul ul {
  margin-top: 5px;
  padding-left: 18px;
  opacity: 0.9;
}

/*.guideline-block:hover h4 {
  color: #ffffff;
  transition: 0.3s ease;
}*/

@media (max-width: 768px) {

  .submission-section {
    padding: 40px 12px;
  }

  .section-title-light {
    font-size: 29px;
    margin-bottom: 18px;
  }

  .guidelines-box {
    padding: 1px 14px;
    border-radius: 10px;
  }
   .guideline-block {
    margin-bottom: 18px;
  }

  .guideline-block h4 {
  font-size: 19px;
text-align: justify;
    line-height: 1.45;
    word-spacing: -0.9px;
    letter-spacing: 0px;
    hyphens: auto;
    overflow-wrap: break-word;
        line-height: 1.6;
  }

  .guideline-block h5 {
    font-size: 21px;
    margin-bottom: 5px;
  }

  .guideline-block p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: 0.3px;
  }
  .guideline-block ul {
    padding-left: 18px;
    margin-bottom: 8px;
  }

  .guideline-block ul li {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.45;
    text-align: justify;
    line-height: 1.45;
    word-spacing: -0.9px;
    letter-spacing: -0.5px;
  }

  .guideline-block ul ul {
    margin-top: 4px;
  }
  .guidelines-heading {
    font-size: 25px;
    margin-top: -16px;
    margin-bottom: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1399px) {

    .submission-section{
        padding: 55px 0;
    }

    .section-title-light{
        font-size: 30px;
        margin-bottom: 24px;
    }

    .section-title-light::after{
        width: 60px;
        margin-top: 10px;
    }

    .guidelines-heading{
        font-size: 25px;
        margin: 32px auto 40px;
    }

    .guidelines-heading::before,
    .guidelines-heading::after{
        width: 60px;
    }

    .guideline-block[style]{
        margin-top: 55px !important;
    }

    .guideline-block{
        margin-bottom: 34px;
        padding-bottom: 20px;
    }

    .guideline-block h4{
        font-size: 21px;
        margin-bottom: 10px;
    }

    .guideline-block h5{
        font-size: 20px;
        margin-top: 16px;
        margin-bottom: 6px;
    }

    .guideline-block p,
    .guideline-block li{
        font-size: 17px;
        line-height: 1.65;
    }

    .guideline-block ul{
        padding-left: 20px;
        margin-top: 8px;
    }

    .guideline-block li{
        margin-bottom: 6px;
    }

    .guideline-block h4::before{
        width: 14px;
        margin-right: 8px;
    }
}
#cmt-acknowledgement{
       padding-top: 35px;
    padding-bottom: 35px;
    scroll-margin-top: 70px;
}

#proceedings-publication{
     padding-top: 35px;
    padding-bottom: 35px;
}


#Guidelines{
    padding-top: 35px;
    padding-bottom: 5px;
}

#registration {
   padding-top: 35px;
    padding-bottom: 35px;
}

#registration::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(0,51,102,0.04), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(204,0,0,0.04), transparent 45%);
    pointer-events: none;
}

#registration::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(120deg, rgba(0,51,102,0.04), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(204,0,0,0.05), transparent 45%);
    pointer-events: none;
}

/*#registration .section-title {
  text-align: center;
}*/

#registration .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.fee-table-container {
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  padding: 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  border: 1px solid #e2e6ee;
  overflow: hidden;
  z-index: 2;
  margin-bottom: 25px;
}

.fee-table thead {
  background: linear-gradient(90deg, #003366, #002144);
}

.fee-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    font-size: 17px;
}

.fee-table thead th {
    background: var(--primary-color);
    color: #ffffff;
    padding: 21px 24px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.fee-table thead th:first-child {
    border-top-left-radius: 8px;
}

.fee-table thead th:last-child {
    border-top-right-radius: 8px;
}

.fee-table tbody tr {
    transition: background 0.25s ease;
}

.fee-table tbody tr:hover {
    background: rgba(0, 51, 102, 0.035);
}

.fee-table tbody tr:nth-child(even) {
  background-color: #f7f9fc;
}

.fee-table th,
.fee-table td {
    padding: 16px 20px;
    vertical-align: middle;
}

.fee-table tbody td:first-child {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 17px;
}

.fee-table tbody td:nth-child(2),
.fee-table tbody td:nth-child(3) {
    font-weight: 700;
    font-size: 18px;
    color: #2c3e50;
}

.fee-table td.text-center {
  font-weight: 700;
  color: #003366;
}

.fee-table tbody td {
    padding: 21px 24px;
    border-bottom: 1px solid #e6ebf2;
    vertical-align: middle;
}

.fee-table th:nth-child(1),
.fee-table td:nth-child(1) {
    text-align: left;
}

.fee-table th:nth-child(2),
.fee-table td:nth-child(2),
.fee-table th:nth-child(3),
.fee-table td:nth-child(3) {
    text-align: center;
}

.fee-table tbody tr:last-child td {
    border-bottom: none !important;
}

.fee-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.01) !important;
}

@media (max-width: 768px) {
    #registration {
        padding: 40px 0 !important;
    }
    #registration .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }
    .fee-table thead th,
    .fee-table tbody td {
        padding: 10px 12px !important;
        font-size: 0.95rem !important;
    }
}

#icls-editions {
  position: relative;
  padding: 52px 20px;
  background: url("../assets/img/bg-9.webp") center center/cover fixed;
  color: #fff;
  overflow: hidden;
  margin-bottom: -90px;
}

#icls-editions .section-title {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  font-size: 34px !important;
}

.editions-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 0, 25, 0.52),
    rgba(0, 0, 0, 0.16)
  );
}

#icls-editions .container {
  position: relative;
  z-index: 2;
}

#icls-editions .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.edition-card {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}

.edition-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.edition-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.edition-card:hover img {
  transform: scale(1.08);
}

.edition-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 14px 10px 10px;
  color: #000000;
}

.report-link {
  display: inline-block;
  margin: 12px 0 18px;
  padding: 8px 16px;
  font-size: 13px;
  color: #fff;
  background: #7a0019;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.report-link:hover {
  background: #a30021;
  transform: translateY(-2px);
}

.edition-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}

.edition-card:nth-child(2) { animation-delay: 0.1s; }

.edition-card:nth-child(3) { animation-delay: 0.2s; }

.edition-card:nth-child(4) { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.edition-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #ffcc70, #7a0019);
  opacity: 0.8;
}

@media (max-width: 992px) {
  .editions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  #icls-editions {
    padding: 60px 16px;
    background-attachment: scroll;
  }

  #icls-editions .section-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .editions-grid {
    gap: 16px;
  }

  .edition-card img {
    height: 150px;
  }

  .edition-card h4 {
    font-size: 14px;
  }

  .report-link {
    font-size: 12px;
    padding: 7px 14px;
  }
}

@media (max-width: 480px) {
  .editions-grid {
    grid-template-columns: 1fr;
  }
}

.logistics-general-note-speaker {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;

  background: rgba(255, 255, 255, 0.918);
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
}

.logistics-general-note-speaker p {
  margin: 0;
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
}

@media (max-width: 576px) {
      .logistics-general-note-speaker p {
        font-size: 16px;
    }
}

#cmt-acknowledgment {
  background: linear-gradient(135deg, #f5edde, #fff7cc);
  padding: 52px 20px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #7a0019;
  margin: 10px auto 0;
}

#cmt-acknowledgment .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #7a0019;
  margin-bottom: 40px;
}

.cmt-box p {
  font-size: 21px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

.cmt-box strong {
  color: #7a0019;
  font-weight: 600;
}

#cmt-acknowledgment-call {
  background: rgba(115, 16, 20, .67) !important;
  padding: 52px 20px;
}

.section-title::after {
content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, #f1e6d0, #d4af37, transparent);
    border-radius: 4px;
}

#cmt-acknowledgment-call .section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #7a0019;
  margin-bottom: 40px;
}

.cmt-box-call p {
  font-size: 28px;
  line-height: 1.7;
  font-weight: 700;
  color: #333;
  margin: 0;
  text-align: center;
}

.cmt-box-call strong {
  color: #7a0019;
  font-weight: 600;
}

@media (max-width: 768px) {
  #cmt-acknowledgment {
    padding: 16px 16px;
  }

  #cmt-acknowledgment .section-title {
    font-size: 21px;
    margin-bottom: 25px;
  }
  

  .cmt-box {
   font-size: 18px;
    text-align: justify;
    margin-top: -40px;
    width: 110%;
  }

  .cmt-box p {
    font-size: 18px;
  }

    .cmt-box-call {
    padding: 21px;
  }

  .cmt-box-call p {
    font-size: 14px;
  }
}

@media (min-width:992px) and (max-width:1440px){
    .hero-section .col-lg-9{
        transform:scale(.88);
        transform-origin:left center;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {
.hero-section{
        min-height:100vh;
        padding-top:90px;
    }

    .conference-title{

line-height:1.2;

margin-bottom:12px;
    }

    .conference-subtitle{

    }

    .conference-dates{
        font-size:1rem;
        padding:12px 20px;
    }

    .conference-meta{
        font-size:.95rem;
        gap:10px;
        margin-top:16px !important;
    }

    .hero-countdown{
        margin-top:30px !important;
    }

    .countdown-title{

        margin-bottom:14px;
    }

    .countdown-wrapper{
        gap:14px;
    }

    .time-box{
        width:78px;
        height:78px;
        border-radius:12px;
    }

    .time-box span{
        font-size:1.4rem;
    }

    .time-box small{
        font-size:.7rem;
        margin-top:6px;
    }

    .publication-partner{
        margin-top:28px;
    }

    .partner-label{
        font-size:.8rem;
        margin-bottom:10px;
    }

    .partner-card{
        padding:12px 18px;
        gap:18px;
    }

    .partner-logo-1 img{
        height:38px;
    }

    .partner-text{
        font-size:.9rem;
    }

    .partner-logo{
        padding:2px 10px;
    }

    .partner-logo img{
        height:52px;
    }

    .partner-divider{
        height:42px;
    }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fast {
  transition-duration: 0.6s;
}

.reveal-scale {
  transform: translateY(30px) scale(0.97);
}

.reveal-scale.active {
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }

.reveal-delay-2 { transition-delay: 0.2s; }

.reveal-delay-3 { transition-delay: 0.3s; }

.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.text-writing{

    color:#d4af37;
}




.row.equal-height {
    display: flex;
    flex-wrap: wrap;
}

.row.equal-height > div {
    display: flex;
    margin-bottom: 30px;
}

/*.leadership-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    min-height: 280px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.leader-card-title {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
}

.leader-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.leader-profile img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.leadership-box h4{
    font-size:18px;
}

.leader-info {
    flex: 1;
    margin-bottom: -140px;
}

.leader-info h4 {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .leadership-box {
        min-height: 240px;
    }
}
*/
.dates-table th:nth-child(1),
.dates-table td:nth-child(1) {
    width: 32%;
}

.dates-table th:nth-child(2),
.dates-table td:nth-child(2) {
    width: 20%;
}

.dates-table th:nth-child(3),
.dates-table td:nth-child(3) {
    width: 60%;
}

.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:url("img/b1.jpg") center center;
    background-size:cover;
    background-repeat:no-repeat;
    overflow:hidden;
}

.hero-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,
    rgba(0,0,0,.78),
    rgba(0,0,0,.45),
    rgba(0,0,0,.60));
}

.hero-section .container{
    position:relative;
    z-index:2;
}

.conference-subtitle{
    color:#FFD54F;
    font-size:30px;
    font-weight:800;
    letter-spacing:0.5px;
    margin-bottom:20px;
     text-shadow:
        -1px -1px 0 #000, 2px -1px 0 #000, -1px 1px 0 #000, 2px 2px 0 #000, 2px 2px 4px rgba(0, 0, 0, 0.75);
}

.conference-title{
    color:#fff;
    font-size:30px;
    line-height:1.25;
    font-weight:800;
     text-shadow:
        -1px -1px 0 #000, 2px -1px 0 #000, -1px 1px 0 #000, 2px 2px 0 #000, 2px 2px 4px rgba(0, 0, 0, 0.75);
}

.conference-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;

    color: #fff;
    font-size: 18px;

  transform: translateY(8px);

    text-shadow:
        -1px -1px 0 #000, 2px -1px 0 #000, -1px 1px 0 #000, 2px 2px 0 #000, 2px 2px 4px rgba(0, 0, 0, 0.75);
}

.meta-divider{
    color:#FFD54F;
}





@media(max-width:991px){

.hero-section{

padding:120px 0 80px;

min-height:auto;

}

.conference-title{

font-size:40px;

}

.hero-countdown{

margin-top:50px;

}

}

@media(max-width:767px){

.conference-title{

font-size:30px;

}

.conference-subtitle{

font-size:21px;
position:relative;
}

.conference-meta{

   margin: 0 auto;
        text-align: center;
        width: fit-content;
}

}

.hero-countdown {
    background: rgba(255, 255, 255, .15);

    /* Safari compatibility */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);

    border-radius: 20px;

 padding: 30px 25px;
 
    margin-left: -50px;
    margin-top: 45px;
    margin-bottom: -28%;

    border: 1px solid rgba(255, 255, 255, .20);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .30);

    width: 115%;

    box-sizing: border-box;

    /* Prevent flex items from creating overflow */
    min-width: 0;
}
/* =========================================================
   CONFERENCE DATES
   ========================================================= */

.conference-dates {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 20px;
text-shadow: -1px -1px 0 #000, 2px -1px 0 #000, -1px 1px 0 #000, 2px 2px 0 #000, 2px 2px 4px rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 2px solid #036;
    border-radius: 5px;
    font-size: 21px;
    padding: 7px 20px;
    font-weight: 700;
    text-align: center;
    background-color: #003366;
    box-sizing: border-box;
}
.banner-text{
    text-shadow: -1px -1px 0 #000, 2px -1px 0 #000, -1px 1px 0 #000, 2px 2px 0 #000, 2px 2px 4px rgba(0, 0, 0, 0.75);
    text-align: center;
    transform: translateY(50px);
    color:#fff;
    font-size:50px;
}


.footer{
    background:linear-gradient(135deg, #081420, #10263d);;
    color:#fff;
    padding-top: 40px;
    padding-bottom: 5px;
}

.footer-container{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:60px;
    align-items:flex-start;
}

.footer-section h4{
    color: rgb(255, 209, 102);
    margin-bottom:25px;
    font-size:21px;
    font-weight:700;
    position:relative;
}

.footer-section h4::after{
    content:'';
    width:50px;
    height:3px;
    background:#c9a217;
    display:block;
    margin-top:10px;
}

.footer-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    margin-bottom:20px;
}
.footer-section{
     position: relative;
    left: -8px;
}
.footer-brand img{
    width:30%;
    height:auto;
    
   /* margin-right:15px;*/
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-text .b1{
    font-size:28px;
    font-weight:700;
    color:#fff;
}

.brand-text .b2{
    font-size:15px;
    color:#c9a217;
    letter-spacing:1px;
}

.footer-text{
    color:#ddd;
    line-height:1.8;
    margin:20px 0;
    font-size:15px;
}

.footer-section p{
    display:flex;
    align-items:flex-start;

    line-height:1.8;
    margin-bottom:18px;
    color:#ddd;
    font-size:18px;
}

.footer-section i{
    color:#fff;
    margin-top:5px;
    min-width:18px;
}

.social-icons i{
    text-align: center;
  margin-top: -1px;
}

.footer-section a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-section a:hover{
    color:#c9a217;
}

.social-icons{
    display:flex;
    gap:12px;
    margin:25px 0;
}

.social-icons a{
    width:42px;
    height:42px;
    border:1px solid rgba(255,255,255,.25);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:.3s;
}

.social-icons a:hover{
    background:#c9a217;
    color:#035b3a;
    border-color:#c9a217;
}

.footer-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:20px;
}

.footer-buttons a{
    border:1px solid rgba(255,255,255,.3);
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    transition:.3s;
}

.footer-buttons a:hover{
    background:#c9a217;
    color:#035b3a;
}

.footer-bottom{
    margin-top:30px;
    padding:15px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    font-size:14px;
    color:#ccc;
}

@media(max-width:991px){

.footer-container{
    grid-template-columns:1fr;
    gap:40px;
    text-align:center;
}

.footer-brand{
    justify-content:center;
}


.footer-section p{
    justify-content:center;
}

.social-icons,
.footer-buttons{
    justify-content:center;
}

}

@media (max-width: 767.98px) {
    .footer-section h4 {
        text-align: center;
    }

    .footer-section h4::after {
        margin-left: auto;
        margin-right: auto;
    }
}

.copy-content a{
    color:#a52525;
    font-size:21px;
    text-decoration:none;
    transition:color .3s ease;
    text-align:justify;
}

.copy-content:hover a{
    color:#0d6efd;
}

.copy-content {
    position: relative;
    padding-right: 35px;
}

.copy-icon {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
}

.copy-link {
    display: block;
    text-decoration: none;
}

.submission-block .note {
    display:block;
    margin-top:9px;
    font-size:16px;
    color:#555;
}

.brand-text {
    display:flex;
    flex-direction:column;
    line-height:1.2;

}

.brand-text .b1 {
    font-size:20px;
    font-weight:800;
    color:#DF0103;
    letter-spacing:.5px;
}

.brand-text .b2 {
    font-size:16px;
    color:#FDA851;
    font-weight:600;
}

@media(max-width:768px){

.brand-text .b1{
    font-size:21px;
}

.brand-text .b2{
    font-size:14px;
}

}

.banner{
    background:
    linear-gradient(
    rgba(15,20,35,0.30),
    rgba(15,20,35,0.30)
    ),
    url('../img/b1s.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

.banner-container{

    height:auto;
}

.banner-row{
    margin-top: 2%;
    margin-bottom: 5%;
    margin-left: -30px;

}

.banner-left{
    margin-top:160px;
}

.publication-label{

  display:block;
    margin-top:40px;
    color:#FFD54F;
    font-weight:800;
     text-shadow:
     -1px -1px 0 #000, 2px -1px 0 #000, -1px 1px 0 #000, 2px 2px 0 #000, 2px 2px 4px rgba(0, 0, 0, 0.75);
}

.partner-card{
    padding:10px 18px;
}

#about.about-section{

    background-image:url("../img/bg-9.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.about-content{

    position:relative;

    bottom:20px;

}

#organiser.organiser-section{

    background:
    linear-gradient(
        135deg,
        rgba(0,51,102,0.55),
        rgba(0,26,51,0.60)
    ),
    url("../img/f1.jpeg") center center / cover no-repeat fixed;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.wrapper {
            max-width: 1200px;
            margin: 0 auto;

        }

.wrapper .section-title {
            text-align: center;
            margin-bottom: 48px;
        }

.wrapper .section-title h1 {
            font-size: 34px;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #003366;
            margin-bottom: 8px;
        }

.wrapper .section-title p {
            font-size: 18px;
            color: #54738f;
            font-weight: 400;
            letter-spacing: 0.3px;
        }

.wrapper .publication-container {
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 32px;
            align-items: start;
        }

.wrapper .left-menu {
            background: #ffffff;
            border-radius: 24px;
            padding: 16px 12px;
            box-shadow: 0 12px 28px rgba(0, 20, 40, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(210, 215, 240, 0.3);
            backdrop-filter: blur(2px);
            height: auto;
            transition: box-shadow 0.2s;
        }

.wrapper .menu-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            margin-bottom: 8px;
            border-radius: 16px;
            cursor: pointer;
            font-weight: 500;
            font-size: 17px;
            color: #2c3f5c;
            border-left: 5px solid transparent;
            transition: all 0.25s ease;
            background: transparent;
            letter-spacing: -0.01em;
        }

.wrapper .menu-item i {
            font-size: 1.3rem;
            color: #6485a8;
            transition: all 0.25s ease;
            width: 24px;
            text-align: center;
        }

.wrapper .menu-item:hover {
            background: #eef4fa;
            color: #1a4b7a;
            border-left-color: #8bb3d9;
        }

.wrapper .menu-item:hover i {
            color: #171a26;
            transform: translateX(4px);
        }

.wrapper .menu-item.active {
            background: #e1edfb;
            color: #0b3459;
            border-left: 5px solid #171a26;
            box-shadow: 0 6px 14px rgba(48, 112, 176, 0.06);
            transform: translateX(4px);
            font-weight: 600;
        }

.wrapper .menu-item.active i {
            color: #1e5b8e;
            transform: scale(1.05);
        }

.wrapper .content-box {
            background: #ffffff;
            border-radius: 24px;
            padding: 38px 40px;
            box-shadow: 0 12px 28px rgba(0, 20, 40, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(210, 215, 240, 0.25);
            min-height: 440px;
            animation: fadeSlide 0.35s ease forwards;
            transition: box-shadow 0.2s;
        }

.wrapper .content-box h2 {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            color: #0f2a44;
            margin-bottom: 24px;
            border-bottom: 2px solid #e9f0f8;
            padding-bottom: 18px;
        }

.wrapper .content-box h2 i {
            color: #3173b0;
            font-size: 2rem;
        }

.wrapper .content-box p {
            color: #2f4868;
            line-height: 1.7;
            margin-bottom: 21px;
            font-size: 21px;
            text-align:justify;
        }

.wrapper .content-box ul {
            list-style: none;
            padding: 0;
            margin: 20px 0 10px;
        }

.wrapper .content-box li {
            margin-bottom: 16px;
            padding-left: 36px;
            position: relative;
            color: #1f3a57;
            font-size: 18px;
            line-height: 1.5;
            text-align:justify;
        }

.wrapper .content-box li::before {
            content: "✓";
            position: absolute;
            left: 4px;
            top: 0;
            color: #2a7a4b;
            font-weight: 600;
            font-size: 1.3rem;
            opacity: 0.8;
        }

@keyframes fadeSlide {
            0% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 1; transform: translateY(0); }
        }

@media (max-width:900px){

    .wrapper .publication-container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .wrapper .left-menu{
        display:grid !important;
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        overflow:visible !important;
        white-space:normal;
        padding:0;
        background:transparent;
        border:none;
        box-shadow:none;
    }

    .wrapper .menu-item{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        margin:0;
        padding:18px 10px;
        min-height:100px;

        border:1px solid #d8e2ec;
        border-radius:12px;

        background:#fff;

        border-left:none;
        border-bottom:none;

        white-space:normal;
    }

    .wrapper .menu-item i{
        font-size:26px;

    }

    .wrapper .menu-item span{
        font-size:14px;
        line-height:1.3;
    }

    .wrapper .menu-item.active{
        background:#171a26;
        color:#fff;
        border:1px solid #171a26;
    }

    .wrapper .menu-item.active i{
        color:#fff;
    }

    .wrapper .content-box{
        margin-top:18px;
    }
}

@media (max-width:480px){

    .wrapper .left-menu{
        grid-template-columns:repeat(2,1fr);
    }

    .wrapper .menu-item{
        min-height:40px;

    }

}

@media (max-width: 768px){

  .wrapper {
    padding: 40px 14px;
  }

  .wrapper .section-title {
    margin-bottom: 24px;
  }

  .wrapper .section-title h1 {
    font-size: 24px;
  }

  .wrapper .section-title p {
    font-size: 14px;
  }
  .wrapper {
    padding: 40px 14px;
  }

  .wrapper .section-title {
    margin-bottom: 24px;
  }

  .wrapper .section-title h1 {
    font-size: 24px;
  }

  .wrapper .section-title p {
    font-size: 14px;
  }
   .wrapper .left-menu {
    gap: 10px;
  }

  .wrapper .menu-item {
    min-height: 72px;
    padding: 12px 8px;
    border-radius: 10px;
  }

  .wrapper .menu-item i {
    font-size: 20px;
  }

  .wrapper .menu-item span {
    font-size: 12.5px;
    line-height: 1.25;
  }
   .wrapper .content-box {
    padding: 18px 16px;
    border-radius: 14px;
    min-height: auto;
  }

  .wrapper .content-box h2 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .wrapper .content-box h2 i {
    font-size: 1.4rem;
  }

  .wrapper .content-box p {
   font-size: 16px;
   line-height: 1.9;
   text-align: left;
  }

  .wrapper .left-menu::-webkit-scrollbar {
            height: 4px;
            background: #dce7f2;
            border-radius: 12px;
        }

        .wrapper .left-menu::-webkit-scrollbar-thumb {
            background: #b0cade;
            border-radius: 12px;
        }

        .wrapper .menu-item i.bi {
            transition: 0.2s;
        }

  #registration-logistics-section{
    background:
        linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.81)),
        url("assets/img/bag.webp") center center / cover no-repeat fixed;
    padding: 35px 0;
}

.logistics-general-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;

  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
}

.logistics-general-note p {
  margin: 0;
  font-size: 21px;
  color: #f1f1f1;
  line-height: 1.6;
}

/*#organiser p{
    color:#fff;
     font-size: 21px;
     line-height:2;
}*/


@media (min-width:1400px){

    .container-fluid{
        padding-left:40px !important;
        padding-right:40px !important;
    }

    .navbar-nav .nav-link{
        font-size:15px;
        padding:10px 14px;
    }

}

@media (max-width:1200px){

    .navbar-nav .nav-link{
        font-size:14px;
        padding:8px 10px;
    }

}

@media (max-width:991px){

    .navbar-nav{
        margin-top:15px;
        gap:0;
    }

    .navbar-nav .nav-link{
        padding:12px 0;
        border-bottom:1px solid #eee;
    }

}

.au-brand{
    margin-left: 70px;
}

.countdown-container {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .countdown-container {
        min-height: 140px;
    }
}

@media only screen and (max-width:991px){

.banner{
    padding:70px 0 40px !important;
    min-height:auto;
    text-align:center;
}

.banner-container{
    width:100%;
    padding-left:20px;
    padding-right:20px;
}

.banner-row{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.banner-left{
   margin-top: 100px;
}

.conference-subtitle{
    font-size:18px;
    line-height:1.5;
    margin-bottom:10px;
}

.conference-title{
    font-size:34px;
    line-height:1.35;
    margin-bottom:20px;
    word-break:break-word;
}

.conference-title sup{
    font-size:16px;
}

/*.conference-meta{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    margin-top:60px;
}*/

.meta-divider{
    display:none;
}

.publication-label{
    display:block;
    margin:25px 0 15px;
    font-size:16px;
}

.partner-card{
    width:100%;
    max-width:320px;
    margin:auto;
}

.partner-logo-1,
.partner-group{
    background-size:contain;
    background-position:center;
    background-repeat:no-repeat;
}

.partner-divider{
    display:none;
}

.hero-countdown{
    width:100%;
    max-width:360px;
    margin:35px auto 0;
    min-height:300px;
}

.conference-dates{
    justify-content:center;
    font-size:16px;
}

.countdown-title{
    font-size:21px;
    margin:15px 0;
}

@media (max-width: 991.98px) {
    #about .about-lead {
        font-size: 18px !important;
    }

.countdown-wrapper{

    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.time-box{
    padding:18px 10px;
}

.time-box span{
    font-size:34px;
    line-height:1;
}

.time-box small{
    font-size:13px;
}

}

@media only screen and (max-width:575px){

.banner{
    padding:60px 0 35px !important;
}

.banner-container{
    padding-left:15px;
    padding-right:15px;
}

.conference-subtitle{
    font-size:16px;
}

.conference-title{
    font-size:26px;
    line-height:1.45;
}

.conference-title sup{
    font-size:13px;
}

.conference-meta span{
    font-size:12px;
 
}

.publication-label{
    font-size:15px;
}

.partner-card{

  /*  padding:40px;*/
}

.hero-countdown{
    max-width:100%;
    margin-left: 10px;
}

.conference-dates{
    font-size:14px;
}

.countdown-title{
    font-size:18px;
}

.countdown-wrapper{
    gap:10px;
}

.time-box{
    padding:15px 8px;
}

.time-box span{
    font-size:28px;
}

.time-box small{
    font-size:12px;
}

}

@media(max-width:768px){

.footer-brand{

    margin:0 0 15px;
    bottom:30px;
    position:relative;
    left: 40px;
}

}

.dates-table th {
  color:#fff;
    text-align: center;
}

.date{
color: #d4af37;
    font-weight: 700;
}


/* ==========================================================
   TEMPLATE 5 - FINAL CROSS-BROWSER COMPATIBILITY LAYER
   Chrome | Edge | Firefox | Safari | Android | iPhone
   ========================================================== */

html {
    width: 100%;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

.row > * {
    min-width: 0;
}

/* Safari/Firefox-safe blur with a non-blur fallback. */
.partner-card,
.time-box,
.category-card,
.modal-overlay {
    background-color: rgba(255, 255, 255, 0.12);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
    .partner-card,
    .time-box,
    .category-card,
    .modal-overlay {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
}

/* Mobile Safari does not handle fixed backgrounds consistently. */
@media (max-width: 991.98px) {
    .hero-section,
    .organiser-section,
    .tracks-section,
    #submission-categories,
    .submission-overlay,
    #call-paper {
        background-attachment: scroll !important;
    }
}

/* Responsive navbar: never use a fixed pixel left margin. */
@media (max-width: 991.98px) {
    

    .navbar-toggler {
        position: relative;
        flex: 0 0 auto;
        margin-left: auto !important;
        z-index: 10;
    }

    .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .navbar-nav {
        width: 100%;
        max-width: 100%;
    }

    .navbar-nav .nav-link {
        white-space: normal;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}

/* Tables scroll inside their own wrapper instead of widening the page. */
.table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767.98px) {
.banner-text{
    font-size:30px;
}
  }
}

@media (max-width: 767.98px) {
    .table-responsive .table {
        min-width: 600px;
    }
}

/* Safe flex children. */
.navbar,
.navbar .container,
.navbar-brand,
.navbar-collapse,
.d-flex,
.flex-row,
.flex-column {
    min-width: 0;
}

/* Prevent long URLs/code from causing horizontal overflow. */
a,
p,
li,
td,
th,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code {
    overflow-wrap: break-word;
    word-wrap: break-word;
    /*text-align: justify;*/
}

pre {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* iPhone/iPad form controls: avoid Safari auto-zoom. */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    input,
    textarea,
    select {
        font-size: 16px;
    }
}

/* Reduced-motion accessibility. */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ================================
   IMPORTANT DATES TABLE
================================ */

#important-dates {
    width: 100%;
    overflow: hidden;
}

#important-dates .table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

#important-dates .dates-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

/* Prevent table content from breaking badly */
#important-dates .dates-table th,
#important-dates .dates-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 767.98px) {

    #important-dates .table-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    #important-dates .dates-table {
        width: 900px;
        min-width: 900px;
    }

    #important-dates .dates-table th,
    #important-dates .dates-table td {
        white-space: normal;
    }

    #important-dates .dates-table th:nth-child(1),
    #important-dates .dates-table td:nth-child(1) {
        width: 220px;
        min-width: 220px;
    }

    #important-dates .dates-table th:nth-child(2),
    #important-dates .dates-table td:nth-child(2) {
        width: 180px;
        min-width: 180px;
    }

    #important-dates .dates-table th:nth-child(3),
    #important-dates .dates-table td:nth-child(3) {
        width: 500px;
        min-width: 500px;
    }
    p{
      text-align: justify;
        line-height: 1.45;
        word-spacing: -0.9px;
        letter-spacing: 0px;
        hyphens: auto;
        overflow-wrap: break-word;
  }
  .wrapper .content-box li{
      text-align: left;
        line-height: 1.45;
        word-spacing: -0.9px;
        letter-spacing: 0px;
        hyphens: auto;
        overflow-wrap: break-word;
  }
}


.arrow-list {
    list-style: none;
    padding-left: 0;
}

.arrow-list li::before {
    content: "➜";
    margin-right: 8px;
}




