:root {
  --navy: #0a1628;
  --navy-light: #162138;
  --blue: #1e8fd3;
  --blue-light: #3aa8eb;
  --white: #ffffff;
  --grey-100: #f4f7fa;
  --grey-200: #e8edf3;
  --grey-400: #8c99ad;
  --grey-600: #576275;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}
p, a, button, .past-heading {
    font-family: "Inter", sans-serif;
}
section {
    overflow: hidden;
}
h1,h2,h3,h4,h5{
    font-family: "Playfair Display", serif;
}
a {
    text-decoration: none !important;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  z-index: 100;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}
.header-logo {
    width: 120px;
}
.enquire-btn {
    clear: both;
    position: fixed;
    display: block;
    list-style-type: none;
    right: -50px;
    top: 50%;
    z-index: 15;
    transform: rotate(-90deg);
}
.enquire-btn a {
    background-color: #158FD8;
    border-radius: 0;
    font-size: 18px;
    border: 1px solid #158FD8 !important;
    -webkit-transition: width 0.5s, background-color 0.1s;
    transition: width 0.5s, background-color 0.1s;
    color: #fff;
    padding: 10px 18px;
}
.enquire-btn a:hover {
    background: transparent;
    color: #158FD8;
}
.enquire-btn {
    display: none;
}
.main-btn {
    background: #236BFE;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    width: max-content;
    padding: 10px 30px;
    border-radius: 192px;
    font-size: 18px;
    transition: all 0.7s ease-out;
}
.main-btn:hover{
    background: transparent;
    border-color: #236BFE;
    color: #236BFE;
}
@keyframes blinks {
    0%, 100% {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
}
50% {
    background: #236BFE;
}
}
.navbar-toggler {
    background: #fff;
}
.navbar-nav {
    justify-content: center;
}
.navbar-nav .nav-link {
    color: #fff;
    font-size: 21px;
    margin-right: 10px;
}
#navbar.scrolled {
    background: black !important;
}
.registered-btn {
    background: #158FD8;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    width: max-content;
    padding: 10px 30px;
    border-radius: 192px;
    font-size: 18px;
    border: 1px solid #158FD8;
}
.registered-btn:hover {
    background: transparent;
    color: #158FD8;
    border: 1px solid #158FD8;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a16288f;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(10 22 40) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(21, 143, 216, 0.15) 100%);
}
.hero .container {
    position: relative;
    z-index: 10;
}
.hero-content {
    padding: 120px 0 80px;
}
.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.badge-border {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.badge-border rect {
    fill: none;
    stroke: var(--blue);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 40 320;
    animation: borderRun 4.5s linear infinite;
}
@keyframes borderRun {
    from {
        stroke-dashoffset: 0;
    }
    to {
        stroke-dashoffset: -205;
    }
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}
.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}
.title-highlight {
    display: block;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-tagline {
    font-family: "Dancing Script", cursive;
    font-size: 1.9rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 640px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid var(--blue);
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}
.info-chip i {
    color: var(--blue);
    font-size: 1.1rem;
}
.hero-stats-float {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 40px;
    min-width: 0;
    max-width: 100%;
}
.stat-block {
    padding: 28px 32px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid #009fff;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: baseline;
    gap: 14px;
    position: relative;
    min-width: 0;
    max-width: 100%;
    flex-wrap: wrap;
    contain: layout paint;
    transition: transform .6s ease, box-shadow .6s ease, border-color .6s ease, background .8s ease;
}
.stat-block:hover {
    background: rgba(255, 255, 255, 0.08);
}
@keyframes statAccentCycle {
    0% {
        background: rgba(255, 255, 255, .04);
        border-color: #009fff;
        box-shadow: none;
        transform: translateX(0);
    }
    15%,
    35% {
        background: linear-gradient(135deg, var(--blue), #1a6fa8);
        border-color: transparent;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
        transform: translateX(-2px);
    }
    50%,
    100% {
        background: rgba(255, 255, 255, .04);
        border-color: #009fff;
        box-shadow: none;
        transform: translateX(0);
    }
}
.hero-stats-float .stat-block:nth-child(1) {
    animation: statAccentCycle 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.hero-stats-float .stat-block:nth-child(2) {
    animation: statAccentCycle 6s cubic-bezier(0.4, 0, 0.2, 1) infinite 2s;
}
.hero-stats-float .stat-block:nth-child(3) {
    animation: statAccentCycle 6s cubic-bezier(0.4, 0, 0.2, 1) infinite 4s;
}
.stat-num {
    display: inline;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    flex-shrink: 0;
}
.stat-txt {
    display: inline;
    font-family: "Playfair Display", serif;
    color: var(--white);
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.2;
    min-width: 0;
    overflow-wrap: break-word;
}
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 10;
}
.scroll-mouse {
    width: 22px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid var(--white);
    position: relative;
    display: grid;
    place-items: start center;
    padding-top: 6px;
    background: rgba(30, 143, 211, .08);
    backdrop-filter: blur(10px);
    animation: mouseFloat 1.8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(30, 143, 211, .18);
}
.scroll-wheel {
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--white);
    animation: wheelMove 1.6s infinite;
}
.hero-scroll-hint span {
    text-align: center;
}
.scroll-label {
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    animation: labelFloat 1.8s ease-in-out infinite 0.05s;
}
@keyframes wheelMove {
    0% {
        opacity: 0.9;
        transform: translateY(0);
    }
    60% {
        opacity: 0.25;
        transform: translateY(10px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}
@keyframes mouseFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}
@keyframes labelFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-mouse,
  .scroll-wheel,
  .scroll-label {
    animation: none !important;
  }
  .hero-stats-float .stat-block {
    animation: none !important;
  }
  .badge-dot {
    animation: none !important;
  }
}
.section-label {
    display: inline-block;
    /*font-size: 0.8rem;*/
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0;
}

.section-label.light {
    color: var(--blue-light);
}

.section-heading {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    /*color: var(--navy);*/
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-heading.light {
    color: var(--white);
}

.text-accent {
    color: var(--blue);
}

/* ===================== OVERVIEW SECTION ===================== */

.section-overview {
    padding: 50px 0;
    background: var(--white);
}

.section-lead {
    font-size: 1.35rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-body {
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.8;
}

.section-overview .btn-topics {
    margin-top: 20px;
}

/* Mobile Stats */

.stats-row {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--grey-200);
}

.mobile-stat {
    text-align: center;
}

.mobile-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
}

.mobile-stat-txt {
    display: block;
    font-size: 0.85rem;
    color: var(--grey-600);
    font-weight: 500;
}

/* ===================== TOPICS SECTION ===================== */

.section-topics {
    padding: 60px 0;
    background: radial-gradient(circle at top left, rgba(30, 143, 211, .14), transparent 55%), radial-gradient(circle at bottom right, rgba(10, 22, 40, .1), transparent 55%), var(--grey-100);
}

.topics-header {
    text-align: center;
    margin-bottom: 32px;
}

.topics-header .section-heading {
    margin-left: auto;
    margin-right: auto;
}

.btn-topics {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 25px;
    background: var(--blue);
    color: var(--white);
    font-weight: 500;
    font-size: 1.2rem;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(21, 143, 216, 0.35);
    transition: all 0.3s ease;
}

.btn-topics:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(21, 143, 216, 0.45);
}

.topic-card {
    position: relative;
    padding: 36px 28px;
    background: linear-gradient(145deg, #fff, #f3f7ff);
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 6px 24px rgba(10, 22, 40, .06);
    border: 1px solid var(--blue);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease, background .4s ease;
    overflow: hidden;
    contain: layout paint;
}

.topic-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--blue), rgba(58, 168, 235, .2));
    border-radius: 0 0 4px 0;
    transition: height .4s ease;
}

.topic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(10, 22, 40, .18);
    border-color: rgba(30, 143, 211, .45);
    background: radial-gradient(circle at top left, rgba(30, 143, 211, .22), #fff);
}

.topic-card:hover::before {
    height: 100%;
}

.topic-num {
    display: inline-block;
    font-size: .85rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(30, 143, 211, .35);
}

.topic-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.topic-card p {
    font-size: 0.95rem;
    /*var(--grey-600)*/
    color: #000;
    line-height: 1.6;
    margin: 0;
}

/* ===================== AUDIENCE SECTION ===================== */

.section-audience {
    padding: 120px 0;
    background: var(--navy);
}

.audience-wrapper {
    /*margin-top: 40px;*/
    padding: 60px;
    background: linear-gradient(135deg, #25385f, #0a1628eb);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 32px;
    contain: layout paint;
}
.audience-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
    margin-bottom: 32px;
}
.btn-light-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 25px;
    background: var(--white);
    color: var(--navy);
    font-weight: 500;
    font-size: 1.2rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-light-cta:hover {
    /*background: var(--grey-100);*/
    background: #158fd8;
    transform: translateY(-2px);
    /*color: var(--navy);*/
    color: #fff;
}
.btn-light-cta:hover i{
    color: #fff;
}
.btn-light-cta i {
    color: var(--blue);
    transition: transform 0.3s ease;
}
.btn-light-cta:hover i {
    transform: translateX(4px);
}
.audience-wrapper .col-lg-7 .row>[class*="col-"] {
    display: flex;
}
.audience-wrapper .col-lg-7 .role-chip {
    flex: 1;
    min-height: 0;
}
.role-chip {
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid #009fff;
    border-radius: 16px;
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.role-chip i {
    font-size: 0.95rem;
    color: var(--blue);
    opacity: 0.9;
}
.role-chip:hover {
    /*background: rgba(21, 143, 216, .15);*/
    background: rgba(21, 143, 216, 1);
    border-color: rgba(21, 143, 216, .3);
    transform: translateY(-4px);
}
.role-chip:hover i{
    color: #fff;
}
logo-slider {
    --image-size: 100px;
    /*padding: 10px 0;*/
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
}
logo-slider div {
    display: flex;
    align-items: center;
    animation: marquee 100s linear infinite;
}
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-89%);
    }
}
logo-slider img {
    min-width: var(--image-size);
    height: var(--image-size);
    margin: 0 1vw;
    object-fit: contain;
    /*box-shadow: rgb(0 0 0 / .15) 2.4px 2.4px 3.2px;*/
}
#speakers {
    padding: 2rem 0;
}
#speakerSlider {
    display: none;
}
.speaker-heading {
    padding: 12px 0 20px 0;
}
.speaker-heading h2 {
    font-size: 45px;
    font-weight: 700;
    color: var(--blue);
}
.speaker-heading h3 {
    font-size: 26px;
    color: #07133b;
    font-family: "Inter", sans-serif;
}
.speakers .img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transition: all 1s ease-out;
}
.speakers-wrap .speaker-img {
    background-color: #1e8fd37d;
}
.speakers .speaker-social {
    position: absolute;
    z-index: 9;
    top: 91%;
    left: 43%;
    background: #007ab7;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 1s ease-out;
}
.speakers .speaker-social a {
    color: #fff;
    font-size: 25px;
}
.speaker-info {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    color: #000;
}
.speaker-info p {
    margin-bottom: .5rem;
}
.accent-wrapper {
    width: 35%;
    margin: auto;
    overflow: hidden;
}
.accent-line {
    width: 80%;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #158FD8, #07133b);
    margin: 10px auto 0;
    animation: moveBar 6s linear infinite;
}
@keyframes moveBar{
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
#tickets {
    padding: 2rem 0;
}
.ticket-section {
    background: linear-gradient(135deg, #158FD8 0%, #4da6db 100%)
}
.ticket-heading {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}
.ticket-heading h2 {
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgb(0 0 0 / .2);
}
.discount-badge {
    background: #07133b;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgb(7 19 59 / .4);
}
.discount-badge i {
    margin: 0 5px;
}
.action-card {
    background: linear-gradient(135deg, #07133b 0%, #0e527b 100%);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 60px rgb(27 55 56 / .4);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.action-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}
.action-btn {
    position: relative;
    z-index: 1;
    background: #158FD8;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgb(21 143 216 / .3);
}
.ticket-wrap:nth-child(1) .ticket-animate {
    animation-duration: 2.5s;
}
.ticket-wrap:nth-child(2) .ticket-animate {
    animation-duration: 3s;
}
.ticket-wrap:nth-child(3) .ticket-animate {
    animation-duration: 3.5s;
}
.ticket-animate {
    position: relative;
    animation: borderPulse infinite ease-in-out;
}
@keyframes borderPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 145, 0, 1);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(255, 145, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 145, 0, 0);
    }
}
.sponsor {
    padding: 2rem 0;
    border-radius: 0 0 40px 40px;
}
#sponsors h2{
    font-size: 45px;
}
#sponsors h2, 
#sponsors h3 {
    color: #158fd8;
}
#sponsors .supporters-wrap {
    margin-bottom: 10px;
}
.supporter {
    padding: 10px 8px;
}
.supporter-logo {
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 30px rgb(0 0 0 / .05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 120px;
}
.supporter img {
    transition: all 0.4s ease-in-out;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}
.activity {
    padding: 2rem 0 0 0;
}
#activities h2{
    font-size: 37px; 
}
.accordions-wrap {
    flex-direction: row;
    margin: calc(-7px / 2);
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    position: relative;
    height: 450px;
    overflow: hidden;
    z-index: 1;
}
.accordions-wrap .accordions-box:hover, 
.accordions-wrap .accordions-box.active {
    flex-grow: 4;
    z-index: 3;
}
.accordions-box {
    margin: calc(7px / 2);
    position: relative;
    transition: flex-grow 0.5s ease;
    flex-grow: 2;
}
.accordions-box:before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
}
.accordions-box .boxes-image {
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100% !important;
    transition: opacity 300ms ease;
}
.accordions-box .accordions-content {
    justify-content: flex-end;
    position: absolute;
    align-items: center;
    display: flex;
    flex-flow: column;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: hidden;
    opacity: 0;
    z-index: 2;
    background-color: rgb(0 0 0 / .5);
    transition: opacity 300ms ease;
}
.accordions-box:hover .accordions-content, .accordions-box.active .accordions-content {
    opacity: 1;
}
.accordions-title {
    font-family: "Inter", sans-serif;
    text-align: left;
    font-size: 24px;
    align-self: stretch;
    color: #fff;
}
.accordions-description {
    color: #fff;
}
.testimonial {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    /*margin-top: 25px;*/
}
.testimonial p.h2 {
    font-size: 125px;
    font-weight: 700;
    color: #1e8fd3;
    -webkit-text-fill-color: #1e8fd3;
    line-height: 1;
}
.testimonial-heading {
    color: #000;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
}
.sub-heading {
    font-size: 18px;
}
.testimonialSlider {
    width: 100%;
    padding: 50px 0;
    position: relative;
}
.testimonialSlider {
    width: 100%;
    padding: 50px 0;
    position: relative
}
.testimonial .testimonialSlide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f5f5f5;
    box-shadow: 0 4px 6px rgb(0 0 0 / .1);
    transition: transform 0.3s ease, z-index 0.3s ease;
    height: 300px;
    box-sizing: border-box
}
.testimonial .swiper-slide-active {
    background: #158fd8;
    color: #fff;
    transform: scale(1);
    z-index: 10;
    filter: blur(0);
    box-shadow: rgb(0 0 0 / .45) 0 25px 20px -20px
}
.testimonial .swiper-slide:not(.swiper-slide-active) {
    transform: scale(.9);
    z-index: 1;
    filter: blur(3px);
    transition: transform 0.3s ease, z-index 0.3s ease, filter 0.3s ease;
    box-shadow: rgb(0 0 0 / .15) 1.95px 1.95px 2.6px
}
/*.testimonial .testimonialSlide h4 {*/
    /*font-family: "Inter", sans-serif;*/
/*}*/
.image-collage {
    padding: 2rem 0;
}
.gallery-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.gallery-heading h2 {
    font-size: 45px;
    color: #1e8fd3;
}
.gallery-heading p {
    font-weight: 600;
    font-size: 20px;
}
#backToHero {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #158fd8;
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    z-index: 97;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease-in-out, transform 0.2s;
}
#backToHero.show {
    display: flex;
    opacity: 1;
}
#backToHero:hover {
    transform: scale(1.15);
    background: #07133b;
}

#enquiries h2 {
    font-size: 45px;
    color: #1e8fd3;
}
.contact-card {
    background: white;
    border-radius: 16px;
    /*padding: 40px 35px;*/
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(27, 55, 56, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    word-break: break-word;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #158FD8 0%, #07133b 100%);
}
.contact-category {
    color: #07133b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    padding: 10px 14px;
    background: rgba(21, 143, 216, 0.1);
    border-radius: 50px;
    display: flex;
    justify-content: start;
    align-items: center;
    max-width: fit-content;
}
.contact-title {
    color: #07133b;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}
.contact-subtitle {
    color: #666;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}
.contact-card .divider {
    width: 50px;
    height: 3px;
    background: #158fd8;
    margin-bottom: 15px;
    border-radius: 2px;
}
.contact-detail {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.contact-detail:last-child {
    margin-bottom: 0;
}
.detail-value {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}
.detail-value a {
    color: #07133b;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    /*font-size: 13px;*/
    font-size: 16px;
    word-wrap: break-word;
}
.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(27, 55, 56, 0.18);
}
.detail-value a:hover {
    color: #158fd8;
}
#partners h3,
#partners h2 {
    font-family: "Inter", sans-serif;
}
.venue-section {
    padding: 60px 0;
}
.venue-section h2 {
    color: #158FD8;
}
.rounded-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgb(0 0 0 / .08);
}
.hero-bgs {
    height: 320px;
    background-image: url(../images/background/carnival-bg.webp);
    background-size: cover;
    background-position: center center;
}
.hero {
    min-height: 70vh;
}
.hero-overlays {
    background: linear-gradient(180deg, #02020287 40%, #07133b 60%);
    mix-blend-mode: multiply;
}
.venue-card {
    background-color: #07133b;
    padding: 30px;
}
.btn-closed {
    font-size: 26px;
    background-color: #fff0;
    border: none;
}
.modal-body p {
    text-align: justify;
}
.modal-content .modal-footer a {
    background: #158FD8;
    color: #fff;
}
.thanks-popup.hidden {
    display: none;
}
.thanks-popup.show {
    display: flex
}
.thanks-message {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0 20px rgb(0 0 0 / .2)
}
.footer-bg {
    background-color: #07133b
}
.footer-bottom {
    background-color: #158fd8;
    color: #fff
}
.tanago-logo {
    color: #28a745;
    font-weight: 700;
    font-size: 1.5rem
}
.footer-section h5 {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 1rem
}
.footer-links {
    list-style: none;
    padding: 0
}
.footer-links li {
    margin-bottom: .5rem
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    font-size: 20px;
    width: max-content;
    align-items: center;
    transition: all 0.5s cubic-bezier(.645, .045, .355, 1)
}
.footer-links a:hover {
    color: #236BFE
}
.footer-links .fa-circle {
    color: #fff;
    font-size: .5rem;
    margin-right: .75rem
}
.footer-widget-social {
    gap: 5px;
    margin: 18px 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: none;
    padding-top: 0;
    text-align: center;
    width: 73%;
}
.footer-widget-social a {
    height: auto;
    width: 43px;
    line-height: 46px;
    border-radius: 50%;
    font-size: 22px;
    color: #236BFE;
    transition: all 1s ease-out
}
.social-icons a {
    background-color: #28a745;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
    text-decoration: none
}
.social-icons a:hover {
    background-color: #236BFE;
    color: #fff
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem
}
.contact-icon {
    background-color: #fff;
    color: #171717;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0
}
.contact-content h6 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: .25rem
}
.contact-content .contact-value a {
    color: #fff;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(.645, .045, .355, 1)
}
.contact-content .contact-value a:hover {
    color: #236BFE
}
.footer-bottom a {
    color: #fff;
    text-decoration: none
}
.footer-bottom a:hover {
    color: #fff
}
.footer-bottom .fa-circle {
    color: #fff;
    font-size: .5rem;
    margin: 0 .5rem
}
.footer-bg .our-moto {
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0
}
.footer .footer-widget-social a:hover {
    transform: scale(1.3)
}
@media (max-width: 1451px) {
    .navbar-nav .nav-link {
        font-size: 18px;
    }
}
@media (max-width: 1400px) {
  .hero-stats-float .stat-num,
  .hero-stats-float .stat-txt {
    font-size: 2.1rem;
  }
}
@media (max-width: 1399px) {
    .venue-card p {
        font-size: 14px;
    }
    .venue-card h4 {
        font-size: 20px;
    }
    .contact-card {
        padding: 40px 20px;
        word-break: break-word;
    }
    .action-card h3 {
        font-size: 25px;
    }
    .action-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
    .navbar-nav .nav-link {
        font-size: 14px;
    }
}
@media (max-width: 1200px) {
  .hero-stats-float .stat-num,
  .hero-stats-float .stat-txt {
    font-size: 1.9rem;
  }
}
@media (max-width: 1199px) {
    .testimonial-heading br {
        display: none;
    }
    .contact-card {
        padding: 25px;
    }
    .testimonial p.h2 {
        font-size: 100px;
    }
    .action-card h3 {
        font-size: 21px;
    }
    .action-btn {
        /*padding: 15px 20px;*/
        font-size: 12px;
    }
    .navbar-nav .nav-link {
        font-size: 13px;
        margin-right: 0;
    }
}
@media (max-width: 1092px) {
    .navbar-nav .nav-link {
        font-size: 12px;
    }
}
@media (max-width: 1040px) {
    .navbar-nav .nav-link {
        font-size: 11px;
    }
}
@media (max-width: 991px) {
    .accordions-description {
        font-size: 13px;
    }
    #activities h2 {
        font-size: 25px;
    }
    .speaker-heading h3 {
        font-size: 17px;
    }
    .speaker-heading h2{
        font-size: 33px;
    }
    .hero {
        min-height: 85vh;
    }
    .title-highlight{
        display: inline;
    }
    .testimonialSlider {
        padding: 0 !important;
    }
    .speakers .speaker-social {
        top: 87%;
        left: 40%;
    }
    #navbar {
        background: black !important;
    }
    .navbar-nav .nav-link {
        font-size: 21px;
    }
    .navbar-collapse {
        padding-top: 35px;
    }
  .hero-content {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-info-strip {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-scroll-hint {
    display: none;
  }

  .section-overview,
  .section-topics,
  .section-audience {
    padding: 80px 0;
  }

  .audience-wrapper {
    padding: 40px 24px;
  }
}
@media (max-width: 767px) {
    .enquire-btn {
        display: block;
    }
    .speaker-info {
        align-items: center;
        text-align: center;
    }
    .hero-bgs {
        height: auto;
    }
    .accordions-description {
        font-size: 16px;
    }
    #sponsors h2 {
        font-size: 30px;
    }
    .contact-title {
        font-size: 22px;
    }
    .contact-card {
        padding: 35px;
    }
    .accordions-box.active .accordions-content {
        top: inherit;
        bottom: 100%;
    }
        .accordions-box .accordions-content  {
        position: relative;
        opacity: 1;
        padding-top: 10px;
        background: rgb(0 0 0 / .6);
    }
    .accordions-box .boxes-image {
        position: relative;
        height: 100%;
    }
    .accordions-box.active {
        height: 400px;
    }
        .accordions-box {
        flex-grow: unset !important;
        height: 80px;
        overflow: hidden;
        transition: height 0.4s ease;
    }
    .accordions-wrap {
        flex-direction: column;
        height: auto;
    }
    .action-btn {
        /*padding: 15px 20px;*/
        font-size: 15px;
    }
    #speakerRow {
        display: none;
    }
    #speakerSlider {
        display: block;
    }
}
@media (max-width: 575px) {
    .hero-bgs p {
        font-size: 13px;
    }
    .section-body {
        font-size: 13px;
    }
    .image-collage {
        display: none;
    }
    .testimonial .testimonialSlide p {
        font-size: 14px;
    }
    .testimonial-heading {
        font-size: 26px;
    }
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-tagline {
    font-size: 1.15rem;
  }

  .hero-info-strip {
    flex-direction: column;
    align-items: center;
  }

  .info-chip {
    width: 100%;
    justify-content: center;
  }

  .btn-primary-cta,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .topic-card {
    padding: 28px 22px;
  }

  .role-chip {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
}
@media (max-width: 399px) {
    #enquiries h2 {
        font-size: 35px;
    }
}