:root {
    --navy: #0B1A2F;
    --navy-dark: #061121;
    --blue: #1E8FD3;
    --blue-hover: #2DA3EB;
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --grey-50: #F1F5F9;
    --grey-100: #E2E8F0;
    --grey-400: #94A3B8;
    --grey-600: #475569;
    --grey-800: #1E293B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--grey-800);
    line-height: 1.6;
    background: var(--white);
}

section {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
}

.accordion-header {
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none !important;
}

.header-logo {
    width: 100px;
}

.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;
}
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;
    margin-top: 15px;
    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;*/
}

.overview-image-wrapper {
          max-width: 440px;
          margin: auto;
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 20px 45px rgba(11, 26, 47, 0.18);
        }
        
        .overview-image {
          width: 100%;
          height: auto;
          object-fit: cover;
          display: block;
        }
        .topics-header {
            text-align: center;
            margin-bottom: 32px;
        }
        .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;
        }
        .topics-header .section-heading {
            margin-left: auto;
            margin-right: auto;
        }
        .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 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;
            color: #000;
            line-height: 1.6;
            margin: 0;
        }
        .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);
        }

#attends {
    padding: 3rem 0 2rem 0;
    background: #07133b;
}
#attends p {
    font-size: 18px;
    color: #fff;
}

#attends .job-cards {
    background-color: #ffffff29;
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgb(186 182 182 / 8%);
    padding: 17px 10px;
    height: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

#attends .job-cards p {
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
}


/* ===== HERO SECTION ===== */

.hero {
    position: relative;
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*opacity: 0.28;*/
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(44deg, rgb(11 26 47 / 90%) 0%, rgb(11 26 47 / 70%) 50%, rgb(26 143 216 / 68%) 100%);
    /*linear-gradient(135deg, rgb(11 26 47 / 66%) 0%, rgb(11 26 47 / 47%) 50%, rgba(26, 143, 216, 0.1) 100%);*/
    /*opacity: 0.3;*/
}

.hero-container {
    position: relative;
    z-index: 10;
    padding: 120px 0 80px;
}

/* Hero Content */

.hero-content {
    color: var(--white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.eyebrow-line {
    position: relative;
    width: 40px;
    height: 2px;
    background: var(--blue);
    overflow: hidden;
}

.eyebrow-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 90deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
    animation: eyebrow-highlight 1.5s ease-in-out infinite;
}

.hero-eyebrow span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    animation: eyebrow-text 1.5s ease-in-out 0.3s infinite;
}

@keyframes eyebrow-highlight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes eyebrow-text {
    0%,
    100% {
        color: rgb(255, 255, 255);
    }
    50% {
        color: var(--blue);
    }
}

.hero-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(4.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 16px;
}

.title-accent {
    color: var(--blue);
}

.hero-tagline {
    font-family: "Dancing Script", cursive;
    font-size: 1.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Hero Details */

.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 36px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(26, 143, 216, 0.15);
    border: 1px solid rgba(26, 143, 216, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.1rem;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
}

.detail-values {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Hero Actions */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-white {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    align-items: center;
    width: max-content;
    gap: 10px;
    padding: 14px 28px;
    background: var(--white);
    color: var(--navy);
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--navy);
}

.btn-white i {
    color: var(--blue);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.btn-white:hover i {
    transform: translateX(4px);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-register:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 143, 216, 0.3);
    color: var(--white);
}

.btn-register i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.btn-register:hover i {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 25px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero-section .btn-register,
.hero-section .btn-outline{
    font-size: 18px;
    
    /*padding: 20px 40px;*/
}

#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;
}

/* Hero Card - Glass */

.hero-card {
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.card-header {
    position: relative;
    text-align: center;
}

.card-badge {
    display: inline-block;
    padding: 10px 20px;
    color: var(--white);
    font-family: "Playfair Display", serif;
    /*font-size: 1.8rem;*/
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* What to Expect list - glass rows with color */

.expect-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.expect-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 16px 18px;
    border-radius: 14px;
    margin: 0 -10px;
    background: linear-gradient(135deg, rgb(255 255 255 / 23%) 0%, rgb(26 143 216 / 19%) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #2da3eb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    animation: statAccentCycle 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-fill-mode: both;
}

.expect-item:hover {
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.12) 0%, rgba(26, 143, 216, 0.12) 100%);
    border-color: rgba(26, 143, 216, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 20px rgba(26, 143, 216, 0.08);
}

.expect-number {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    line-height: 1;
}

.expect-text {
    flex: 1;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    padding-top: 8px;
    min-width: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

@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);
    }
}

.expect-list .expect-item:nth-child(1) {
    animation-delay: 0s;
}
.expect-list .expect-item:nth-child(2) {
    animation-delay: 2s;
}
.expect-list .expect-item:nth-child(3) {
    animation-delay: 4s;
}

/* Badge */

#overview {
    padding: 60px 0;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.section-badge.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-600);
}

.section-intro {
    font-size: 1rem;
    color: var(--grey-600);
    margin-bottom: 0;
}

/* ===== TOPICS SECTION ===== */

.section-topics {
    padding: 50px 0;
    background: radial-gradient(circle at top left, rgba(26, 143, 216, 0.14) 0, transparent 55%), radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.12) 0, transparent 60%), var(--grey-50);
}

/* Topics Accordion (compact) */

.topics-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 10px 30px rgba(11, 26, 47, 0.04);
}

.topics-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.topics-accordion .accordion-button {
    background: transparent;
    padding: 18px 18px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: none;
    gap: 12px;
}

.topics-accordion .accordion-button:focus {
    box-shadow: none;
}

.topics-accordion .accordion-button::after {
    opacity: 0.7;
}

.topics-accordion .accordion-button:not(.collapsed) {
    background: rgba(26, 143, 216, 0.06);
}

.topic-pill {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--blue);
    background: var(--grey-50);
    border: 1px solid var(--grey-100);
    transition: all 0.25s ease;
}

.topics-accordion .accordion-button:not(.collapsed) .topic-pill {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.topic-title {
    min-width: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.topics-accordion .accordion-body {
    padding: 14px 18px 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), var(--white));
}

.topic-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--grey-100);
    height: 100%;
    transition: all 0.3s ease;
}

.topic-item:hover {
    border-color: var(--blue);
    box-shadow: 0 10px 30px rgba(26, 143, 216, 0.1);
    transform: translateY(-4px);
}

.topic-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--grey-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--blue);
    transition: all 0.3s ease;
}

.topic-item:hover .topic-number {
    background: var(--blue);
    color: var(--white);
}

.topic-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.topic-content p {
    font-size: 0.9rem;
    color: var(--grey-600);
    margin: 0;
    line-height: 1.6;
}

.topic-bullets {
    margin: 8px 0 0;
    padding-left: 1.1rem;
}

.topic-bullets li {
    font-size: 0.9rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin: 6px 0;
}

.topic-bullets li::marker {
    color: var(--blue);
}

/* ===== AUDIENCE SECTION ===== */

.section-audience {
    padding: 40px 0;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-dark) 50%, #0d2847 100%);
    position: relative;
}

.section-audience::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26, 143, 216, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.audience-header {
    text-align: center;
}

.audience-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 28px;
}

.audience-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-bottom: 28px;
}

.audience-pill {
    display: inline-block;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #158FD8;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.audience-pill:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/*ddd*/

#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;
}

.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: 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: 1199px) {
    .testimonial-heading br {
        display: none;
    }
    .contact-card {
        padding: 25px;
    }
    .testimonial p.h2 {
        font-size: 100px;
    }
    .action-card h3 {
        font-size: 21px;
    }
    .action-btn {
        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) {
    .speaker-heading h3 {
        font-size: 17px;
    }
    .speaker-heading h2 {
        font-size: 33px;
    }
    .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: 140px 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;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 44px;
    }
    .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: 437px) {
    .hero-title {
        font-size: 31px;
    }
}

@media (max-width: 399px) {
    #enquiries h2 {
        font-size: 35px;
    }
}