:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --primary-light: #e7f1ff;
    --primary-soft: #f1f6ff;
    --text-dark: #1c1c1c;
    --text-muted: #666;
}


/* ===== Premium Navbar ===== */
.navbar-premium {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-premium .navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.navbar-premium .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 0.4rem;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-premium .nav-link:hover {
    color: #0d6efd;
}

/* underline animation */
.navbar-premium .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 50%;
    bottom: -5px;
    background-color: #0d6efd;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-premium .nav-link:hover::after {
    width: 60%;
}

/* Active nav link */
.navbar-premium .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
}

/* Active underline */
.navbar-premium .nav-link.active::after {
    width: 60%;
}


/* Dropdown premium */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 0.6rem;
    animation: dropdownFade 0.3s ease;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f1f5ff;
    color: #0d6efd;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Button CTA */
.btn-cta {
    border-radius: 30px;
    padding: 0.45rem 1.2rem;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.35);
}

/* Dropdown icon animation */
.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

/* Rotate icon when open */
.nav-item.dropdown.show .dropdown-icon {
    transform: rotate(180deg);
}


/* ===== Hero Carousel ===== */
.hero-carousel {
    margin-top: 80px;
    /* offset navbar fixed */
}

.carousel-item {
    height: 90vh;
    min-height: 900px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Overlay gradient */
.carousel-overlay {
    position: absolute;
    inset: 0;
}

/* Caption */
.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
    opacity: 0.95;
}

/* Indicators */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}


/* ===== Welcome Section Premium ===== */
.welcome-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

.welcome-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.welcome-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: flex-start;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

/* Image */
.welcome-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Content */
.welcome-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 22px;
}

/* Signature */
.welcome-signature {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.welcome-signature h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.welcome-signature span {
    color: #0d6efd;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .welcome-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .welcome-image img {
        max-width: 300px;
        margin: 0 auto 30px;
    }
}



/* ===== About SAFE ===== */
.about-safe {
    background-color: #f9fbff;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #0d6efd;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* Text */
.about-safe p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* Card */
.about-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Timeline */
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-weight: 500;
    color: #333;
}

.timeline li span {
    min-width: 60px;
    font-weight: 700;
    color: #0d6efd;
}

.timeline li.active {
    color: #0d6efd;
}

.timeline li.active span {
    color: #198754;
}


/* ===== Event Speakers ===== */
.event-speakers {
    background: #ffffff;
}

.speaker-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

/* Hover */
.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

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

/* Overlay Info */
.speaker-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.2),
            transparent);
    color: #fff;
}

.speaker-info h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.speaker-country {
    display: inline-block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.speaker-info p {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.95;
}


/* ===== Event Countdown ===== */
.event-countdown {
    background: linear-gradient(135deg,
            #0d6efd,
            #6610f2);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.event-countdown::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/cubes.png");
    opacity: 0.08;
}

.countdown-desc {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Countdown Box */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.countdown-box:hover {
    transform: translateY(-6px);
}

.countdown-box h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.2rem;
}

.countdown-box span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 1px;
}

/* CTA Dark */
.btn-cta-dark {
    border-radius: 30px;
    padding: 0.6rem 1.6rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.event-topics {
    padding: 100px 0;
    background: #f8f9fb;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: #2c7be5;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1c1c1c;
}

.section-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.topic-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
}

.topic-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2c7be5, #00d4ff);
    opacity: 0;
    transition: opacity .35s ease;
}

.topic-card:hover::before {
    opacity: 0.08;
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


.call-innovation {
    padding: 110px 0;
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    position: relative;
    overflow: hidden;
}

.call-innovation::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(44, 123, 229, 0.25), transparent 60%);
}

.innovation-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.innovation-header {
    text-align: center;
    margin-bottom: 50px;
}

.innovation-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto;
}

.innovation-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 50px;
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.innovation-content p {
    margin-bottom: 22px;
    line-height: 1.9;
    font-size: 16px;
}

.innovation-highlight {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-top: 40px;
    color: #ffffff;
}

.innovation-cta {
    text-align: center;
    margin-top: 45px;
}

.innovation-cta .btn {
    border-radius: 40px;
    padding: 0.8rem 2.4rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.community-engagement {
    padding: 110px 0;
    background: linear-gradient(180deg, #f8fdf9, #eef7f1);
    position: relative;
}

.community-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.community-header {
    text-align: center;
    margin-bottom: 50px;
}

.community-lead {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto;
}

.community-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.community-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 22px;
}

.community-highlight {
    margin-top: 35px;
    padding: 20px;
    background: linear-gradient(135deg, #198754, #20c997);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    border-radius: 18px;
}

.community-cta {
    text-align: center;
    margin-top: 45px;
}

.community-cta .btn {
    border-radius: 40px;
    padding: 0.8rem 2.2rem;
    font-weight: 700;
}

.publication-section {
    padding: 110px 0;
    background: #f9fafc;
}

.publication-lead {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.publication-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 26px;
    padding: 60px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.publication-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 22px;
}

/* Journal List */
.publication-journals {
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #e6e6e6;
}

.publication-journals h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

.publication-journals ul {
    list-style: none;
    padding: 0;
}

.publication-journals li {
    background: #f5f7fb;
    padding: 18px 22px;
    border-radius: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.publication-journals a {
    margin-left: 10px;
    font-weight: 600;
    text-decoration: none;
}

.publication-journals a:hover {
    text-decoration: underline;
}

/* CTA */
.publication-cta {
    margin-top: 50px;
}

.publication-cta .btn {
    border-radius: 40px;
    padding: 0.75rem 2.2rem;
    font-weight: 700;
}


.event-schedule {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

.schedule-lead {
    max-width: 850px;
    margin: 0 auto 70px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.schedule-location {
    max-width: 1100px;
    margin: 0 auto;
}

.location-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}

.location-date {
    display: inline-block;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 30px;
}

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

.schedule-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.day-label {
    display: inline-block;
    background: #0d6efd;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.schedule-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.schedule-card h5 {
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 12px;
}

.schedule-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}


.important-dates {
    padding: 110px 0;
    background: #ffffff;
}

.dates-lead {
    max-width: 820px;
    margin: 0 auto 70px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Grid */
.dates-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Card */
.date-card {
    background: #f8f9fc;
    padding: 30px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.date-card:hover {
    transform: translateY(-6px);
}

/* Icon */
.date-icon {
    font-size: 2.4rem;
}

/* Content */
.date-content h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.date-content p {
    margin: 0;
    font-weight: 600;
    color: #0d6efd;
}

/* Highlight Early Bird */
.date-card.highlight {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: #fff;
}

.date-card.highlight p {
    color: #fff;
}

/* Final Seminar */
.date-card.final {
    background: linear-gradient(135deg, #198754, #20c997);
    color: #fff;
}

.date-card.final p {
    color: #fff;
}


.partners-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 17px;
}

/* Grid logo */
.partners-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px 30px;
    align-items: center;
}

/* Logo box */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
}

.partner-logo img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Hover (opsional) */
.partner-logo:hover img {
    transform: scale(1.05);
}


.faq-section {
    padding: 80px 20px;
    background-color: #f9fafb;
    font-family: 'Segoe UI', sans-serif;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-container h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question .icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease;
}

.faq-answer p,
.faq-answer ul {
    margin: 15px 0;
    color: #444;
    line-height: 1.6;
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}


.payment-section {
    padding: 90px 20px;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}

.payment-container {
    max-width: 1200px;
    margin: auto;
}

.payment-container h2 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 10px;
}

.payment-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.7;
}

.payment-category {
    font-size: 26px;
    margin: 60px 0 25px;
    color: #111;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.payment-grid.single {
    max-width: 350px;
}

.payment-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform .3s ease;
}

.payment-card:hover {
    transform: translateY(-6px);
}

.payment-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a56db;
}

.deadline {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.pay-btn {
    background: #1a56db;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: background .3s ease;
}

.pay-btn:hover {
    background: #0f3fbf;
}

.highlight {
    background: linear-gradient(135deg, #1a56db, #2563eb);
    color: #fff;
}

.highlight .price,
.highlight .deadline {
    color: #fff;
}

.highlight .pay-btn {
    background: #fff;
    color: #1a56db;
}

.highlight .pay-btn:hover {
    background: #e5e7eb;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #facc15;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.contact-section {
    padding: 90px 20px;
    background: #f9fafb;
    font-family: 'Segoe UI', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.contact-header p {
    color: #666;
    max-width: 650px;
    margin: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.info-box h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.info-box p {
    color: #555;
    line-height: 1.6;
}

.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1a56db;
}

.contact-btn {
    background: #1a56db;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background .3s ease;
}

.contact-btn:hover {
    background: #0f3fbf;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #e5e7eb;
    padding: 70px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 18px;
    color: #ffffff;
}

.footer-about p {
    color: #cbd5f5;
    line-height: 1.7;
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 14px;
    transition: all .3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
    padding-left: 6px;
}

.footer-contact p {
    font-size: 14px;
    color: #cbd5f5;
    margin-bottom: 10px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 40px 0 20px;
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #94a3b8;
}

/* Social */
.footer-social a {
    color: #cbd5f5;
    font-size: 18px;
    margin-left: 15px;
    transition: transform .3s ease, color .3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-4px);
    color: #60a5fa;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-social a {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    z-index: 9999;
    transition: transform .2s ease, box-shadow .2s ease;
}

.wa-float img {
    width: 30px;
    height: 30px;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
}


.committee-section {
    background: #f9fafc;
}

.committee-title {
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
}

.committee-card {
    background: #fff;
    padding: 25px 15px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.committee-image img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e9ecef;
}

.welcome-section {
    background: linear-gradient(135deg, #f8f9fc, #eef2f7);
}

.welcome-card {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.welcome-image img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

.welcome-content {
    flex: 1;
}

.welcome-signature h5 {
    margin-top: 20px;
    font-weight: 700;
}

.swiper {
    padding-bottom: 60px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0d6efd;
}

.swiper-pagination-bullet {
    background: #0d6efd;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-card {
        flex-direction: column;
        text-align: center;
    }

    .welcome-image img {
        width: 200px;
        height: 200px;
    }
}

/* Section Styling */
.event-speakers {
    background: linear-gradient(135deg, #f8f9fb, #eef2f7);
}


.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.section-desc {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* Card */
.speaker-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.speaker-img {
    overflow: hidden;
    position: relative;
}

.speaker-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Body */
.speaker-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.speaker-body h5 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.speaker-country {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.speaker-topic {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
}

/* Button */
.speaker-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: transparent;
    border: 1.5px solid var(--primary-dark);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.speaker-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}
