:root {
    --primary-blue: #4f46e5;
    --highlight-red: #ec4899;
    --brand-teal: #06b6d4;
    --brand-orange: #f97316;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --text-dark: #0f172a;
    --bg-light: #f8fafc;
    --surface-light: #eef2ff;
    --border-light: #c7d2fe;
    /* Hero: indigo → cyan only (no pink stop — avoids muddy coral on the photo) */
    --gradient-hero: linear-gradient(
        115deg,
        rgba(30, 27, 75, 0.92) 0%,
        rgba(79, 70, 229, 0.78) 42%,
        rgba(6, 182, 212, 0.82) 100%
    );
    --gradient-section: linear-gradient(135deg, #4f46e5 0%, #a855f7 45%, #06b6d4 100%);
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.navbar {
    background: #fff0;
    transition: background-color 0.3s ease;
}
.grecaptcha-badge {
    display: none;
}
.error {
    color: red;
}

.text-justify {
    text-align: justify;
}
.section h2 {
    font-size: 40px;
    font-weight: 600;
}
.navbar-toggler {
    background-color: white !important;
}
.navbar-nav {
    justify-content: end;
}
.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 700;
    font-size: 20px;
    margin-right: 10px;
}
.navbar.scrolled {
    background: linear-gradient(90deg, #1e1b4b 0%, #312e81 100%) !important;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}
.fw-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

/* Hero Section Styling */
.hero-section {
    padding: 155px 0 80px;
    position: relative;
    /* RESOLUTION: Layering the gradient on top of the image URL */
    background: var(--gradient-hero),
        url("../images/background/barcelona-bg.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-event {
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.18);
}

.hero-content .hero-title-accent {
    position: relative;
    display: inline-block;
    color: #fff;
}

@keyframes hero-accent-draw {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hero-content .hero-title-accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #f97316, var(--brand-teal), transparent);
    border-radius: 999px;
    transform-origin: left center;
    animation: hero-accent-draw 2s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    .hero-content .hero-title-accent::after {
        animation: none;
        transform: scaleX(1);
    }
}

.main-title {
    font-size: 3.3rem;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 10px;
}

.highlight-red {
    color: var(--brand-teal);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    /* color: var(--text-muted); */
    color: #fff;
    /* max-width: 650px; */
    margin-bottom: 40px;
    border-left: 5px solid var(--brand-teal);
    padding-left: 15px;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 12px 12px 0;
    padding: 15px 18px 15px 15px;
}
.stats-grid .fw-semibold {
    font-size: 0.95rem;
}
/* Info Bar - Glassmorphism style to pop on dark bg */
.info-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.info-item {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgb(255 255 255 / 25%);
    backdrop-filter: blur(6px);
    border-radius: 15px;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
}

.info-text span {
    font-weight: 600;
    color: white;
    font-size: 18px;
}

.btn-cta {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.35);
    border: none;
    text-transform: uppercase;
}

.btn-cta:hover {
    background-color: #db2777;
    transform: translateY(-3px);
    color: white;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    color: white !important;
    border: 2px solid var(--brand-orange);
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
    white-space: nowrap;
    padding: 12px 35px;
    min-width: fit-content;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #ea580c;
    border-color: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.45);
    color: white !important;
}

/* Secondary Action (Teal Ghost) */
.btn-secondary-custom {
    background-color: transparent;
    color: white !important;
    border: 2px solid var(--brand-teal);
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    background-color: var(--brand-teal);
    color: white !important;
    transform: translateY(-3px);
}

/* --- SECONDARY BUTTON (Ghost Blue) --- */
.btn-secondary-custom {
    background-color: transparent;
    color: white !important; /* White for hero, can change to var(--primary-blue) for light sections */
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid white;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    padding: 12px 35px;
    min-width: fit-content;
}

.btn-secondary-custom:hover {
    background-color: white;
    color: var(--primary-blue) !important;
    transform: translateY(-3px);
}

/* --- ADJUSTMENT FOR NAV BAR --- */
.navbar .btn-primary-custom {
    padding: 8px 20px;
    font-size: 14px;
}

/* White Stats Card - Now has huge contrast */
.stats-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 25px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-limited {
    background-color: #fef2f2;
    color: var(--brand-orange);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    position: absolute;
    top: -18px;
    right: 22px;
    display: inline-block;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.card-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 35px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 14px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: white;
    border-color: var(--brand-teal);
    transform: scale(1.05);
}

.stat-value {
    font-size: 25px;
    color: var(--brand-teal);
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-desc {
    font-size: 0.85rem;
    color: #000;
    font-weight: 500;
}

#attendees {
    padding: 25px 0 30px;
    background: white;
}

#attendees logo-slider {
    --image-size: 100px;
    padding: 10px;
    overflow: hidden;
    max-width: auto;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
}

#attendees logo-slider div {
    display: flex;
    position: relative;
    animation: marquees 70s linear infinite;
    justify-content: space-around;
}

/* Why Section */
.why-section {
    background: linear-gradient(135deg, #eef2ff 0%, #fce7f3 40%, #cffafe 100%);
    padding: 60px 0 45px;
    position: relative;
    overflow: hidden;
}
.why-section h2 {
    font-size: 35px;
    color: var(--primary-blue);
    text-align: center;
    letter-spacing: -0.5px;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.stats-badge {
    background: rgb(255 255 255 / 0.9);
    border-radius: 25px;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgb(0 0 0 / 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgb(255 255 255 / 0.2);
}

.stats-badge i {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--brand-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    margin-right: 8px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 15px 35px rgb(0 0 0 / 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.2);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgb(0 0 0 / 0.12);
}

.feature-card.breakfast::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-card.global::before {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-card.value::before {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-card.impact::before {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-card.reach::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-card.breakfast .feature-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-card.global .feature-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-card.value .feature-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature-card.impact .feature-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-card.reach .feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

.feature-description {
    color: #464c52;
    text-align: center;
    line-height: 1.6;
}

@keyframes marquees {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-80%);
    }
}
#attendees logo-slider img {
    display: block;
    min-width: var(--image-size);
    height: var(--image-size);
    margin: 0 0.5vw;
}

@media (max-width: 991px) {
    .main-title {
        font-size: 2.8rem;
    }
    .hero-section {
        text-align: center;
        padding: 80px 0;
    }
    .hero-subtitle {
        margin: 0 auto 40px;
        border-left: none;
        border-top: 5px solid var(--highlight-red);
        padding-top: 20px;
    }
    .info-bar {
        justify-content: center;
    }
}
.section-crisis {
    padding: 80px 0;
    background: rgb(248 248 255);
}

/* Creating a soft, professional flow background */
.bg-gradient-flow {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.text-gradient-red {
    color: var(--highlight-red);
    background: linear-gradient(to right, #ec4899, #f97316, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-muted-blue {
    color: #fff;
    line-height: 1.8;
}

/* The Glassmorphism Insight Card */
.insight-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.15);
    position: relative;
    color: #000;
}

.percentage-badge {
    position: absolute;
    top: -20px;
    left: 40px;
    background: var(--brand-teal);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}

/* Adding a watermark effect */
.section-crisis::after {
    content: "INSIGHT";
    position: absolute;
    left: -20px;
    bottom: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(79, 70, 229, 0.02);
    transform: rotate(-90deg);
    z-index: 0;
}

.intro-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--brand-teal) 0%, var(--primary-blue) 100%);
    padding: 70px 0px 50px;
    overflow: hidden;
}

.intro-content {
    position: relative;
    z-index: 2;
}

.event-badge {
    display: inline-block;
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.3);
    border-image: initial;
}

.main-titles {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 4px 8px;
}

.intro-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
    margin: 0px auto 25px;
}

.section-paradigm {
    background-color: #ffffff;
}

/* Feature List Styling */
.engagement-features {
    display: grid;
    gap: 15px;
}

.feature-item {
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 17px;
    color: var(--primary-blue);
    border-left: 4px solid var(--brand-teal);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: #f0f7f7;
}

.feature-item .dot {
    height: 8px;
    width: 8px;
    background-color: var(--brand-teal);
    border-radius: 50%;
    margin-right: 15px;
}

/* Site Challenges Box */
.site-challenges-box {
    background: var(--primary-blue);
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
}

.site-challenges-box i {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .section-paradigm h2 {
        font-size: 2rem;
    }
}

@media (max-width: 991px) {
    .section-crisis {
        padding: 80px 0;
    }
    .bg-gradient-flow {
        width: 100%;
        height: 50%;
        bottom: 0;
        top: auto;
    }
}
/* key discussion */
.section-discussion {
    background: var(--gradient-section);
    overflow: hidden;
    padding: 100px 0;
}

/* Floating Image */
.sphere-float {
    max-width: 80%;
    animation: floatSphere 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

@keyframes floatSphere {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Discussion Track Styling */
.section-discussion {
    background: var(--gradient-section);
    overflow: hidden;
    padding: 100px 0;
}

/* Left Side Icon Badge Styling */
.icon-exclusive-wrapper {
    position: relative;
    display: inline-block;
    padding: 40px;
}

.main-icon-circle {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.2); transform: scale(1); }
    50% { box-shadow: 0 0 40px rgba(6, 182, 212, 0.5); transform: scale(1.05); }
}

/* Right Side Track Styling */
.discussion-track {
    position: relative;
    padding-left: 30px;
}

.discussion-track::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    width: 1px;
    height: 65%;
    background: rgba(255, 255, 255, 0.2);
}

.discussion-item {
    position: relative;
    padding-bottom: 20px;
    padding-left: 25px;
    cursor: pointer;
    font-family: 'Poppins';
    transition: transform 0.3s ease;
}

.discussion-icon-box {
    position: absolute;
    left: -35px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--primary-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.discussion-item:hover {
    transform: translateX(12px);
}

.discussion-item:hover .discussion-icon-box {
    background: var(--brand-teal);
    color: #fff;
    transform: scale(1.15);
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 20px;
}
/* who attended */
.attendance-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    border: 1px solid var(--primary-blue);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attendance-card i {
    font-size: 1.5rem;
    color: var(--brand-teal);
    margin-bottom: 15px;
}

.attendance-card p {
    font-weight: 700;
    font-family: 'Poppins';
    color: var(--primary-blue);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.attendance-card.specialty {
    background: linear-gradient(to right, var(--primary-blue), #7c3aed);
}

.attendance-card.specialty p, 
.attendance-card.specialty i {
    color: #ffffff;
}

/* Hover Effects */
.attendance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
    border-color: var(--brand-teal);
}

@media (min-width: 768px) {
    .mt-md-n5 { margin-top: -30px !important; }
}

.speaker-headings{
    color: var(--primary-blue);
}

.speakers {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px
}
.speakers .img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transition: all 1s ease-out;
}
.speakers .speaker-img img {
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
}
.speakers .speaker-social {
    position: absolute;
    z-index: 9;
    top: 91%;
    left: 43%;
    background: linear-gradient(135deg, var(--primary-blue), var(--brand-teal));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 1s ease-out;
    padding-top: 5px;
}
.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 h4 {
    color: #000;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.speaker-info h5 {
    color: #000
}
.speakers:hover .speaker-social {
    opacity: 1;
    animation: icons 1.5s linear infinite;
}
@keyframes icons{
    100% {
        transform: scale(1);
    }
    0% {
        transform: scale(1.1);
    }
}
.card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}
.speakers .speaker-title {
    color: #000;
    margin-bottom: 0;
    font-size: 18px
}

.speakers .speaker-company {
    color: var(--brand-teal);
    margin-bottom: 0;
    font-size: 20px;
}
.speakers-modal .modal-body p {
    text-align: justify
}
@media (max-width:1199px) {
    .speakers .speaker-title {
        font-size: 15px
    }
    .speakers .speaker-company {
        font-size: 18px
    }
}
/* Agenda */
#agenda {
    padding: 60px 0 60px 0;
    background-color: #f6f7fd
}
.section-header {
    position: relative;
    padding-bottom: 20px;
    text-align: center
}
.agenda-header h2 {
    font-size: 3rem;
    text-align: center;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--primary-blue);
}
#agenda .agenda-card {
    box-shadow: rgba(79, 70, 229, 0.08) 0px 12px 24px;
    border-left: 7px solid var(--brand-orange);
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
}
#agenda .agenda-time {
    font-size: 22px;
}
#agenda .agenda-title{
    color: #000;
    font-size: 25px;
    margin: 10px 0 0;
    line-height: 1.4;
}
#agenda .agenda-des {
    font-size: 17px;
}
.speaker-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 12px;
    }
    
    .speaker-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(26, 166, 183, 0.3);
      box-shadow: 0 8px 16px rgba(79, 70, 229, 0.12);
      flex-shrink: 0;
    }
    
    .spk-name{
        font-size: 20px;
    }
    
    .spk-detail{
        font-size: 17px;
    }
    
    .spk-title{
        font-size: 22px;
    }
.pill {
      border: 1px solid rgba(79, 70, 229, 0.2);
      border-radius: 999px;
      padding: 6px 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    
    .agenda-card .pill {
      border: none;
      color: #fff;
      box-shadow: 0 10px 18px rgba(79, 70, 229, 0.15);
    }
    
    .agenda-card .pill i {
      color: #fff;
    }
    
    .agenda-card .pill-session {
        background: linear-gradient(135deg, var(--brand-teal) 0%, var(--primary-blue) 100%);
    }
    
    .agenda-card .pill-time {
      background: linear-gradient(135deg, var(--brand-orange), #fb923c);
    }
.text-teal {
    color: var(--brand-orange);
}
.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: rgba(79, 70, 229, 0.16) 0px 18px 35px;
}
.agenda-bg {
    background: rgba(249, 115, 22, 0.1) !important;
}
.agenda-card .pill-session.animates {
    animation: blinkers 1s infinite;
}
@keyframes blinkers {
    0% {
        background: var(--brand-orange);
    }
    30% {
        background: var(--primary-blue);
    }
    100% {
        background: var(--brand-orange);
    }
}
/* Tickets */
.attendee-pass {
    padding: 50px 0;
}
.section-title{
    color: var(--primary-blue);
    font-size: 3rem;
}
.combo-line {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #000;
    justify-content: center;
    font-weight: 600;
}
.combo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.2s ease;
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}
.combo-purple {
    /* background: #EEEDFE; */
    /* color: #3C3489; */
    animation-delay: 0.2s;
    background: rgba(249, 115, 22, 0.13);
    color: var(--primary-blue);
}
.combo-teal {
    /* background: #E1F5EE; */
    /* color: #085041; */
    animation-delay: 0.5s;
    background: rgba(6, 182, 212, 0.12);
    color: var(--brand-orange);
}
.combo-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    animation: sweep 2.8s ease-in-out infinite;
}
.combo-teal::after {
    animation-delay: 1.4s;
}
@keyframes sweep {
    0% {
        left: -55%;
    }
    65%, 100% {
        left: 130%;
    }
}
@keyframes fadeUp  {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.pricing-cards {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .pricing-card {
            background: linear-gradient(135deg, var(--brand-teal) 0%, var(--primary-blue) 100%);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(73, 63, 185, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            flex-direction: column;
            align-items: start;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(73, 63, 185, 0.4);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        .popular-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--brand-orange);
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
        }

        .card-header {
            position: relative;
            z-index: 1;
            margin-top: 35px;
        }

        #tickets .card-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .card-price {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            /*margin-bottom: 10px;*/
            text-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
        }

        .price-note {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 25px;
        }

        .discount-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .discount-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .discount-item i {
            color: #fff;
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .buy-button {
            background: linear-gradient(135deg, rgb(249, 115, 22) 0%, rgb(236, 72, 153) 100%);;
            color: #fff;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 8px 20px rgba(23, 111, 81, 0.4);
            position: relative;
            z-index: 1;
        }

        .buy-button:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(79, 70, 229, 0.5);
        }

        .buy-button i {
            margin-left: 10px;
        }
        
        #tickets .buy-button {
            padding: 16px;
        }
        .pricing {
    font-size: 20px;
    margin-top: 20px;
}
        .ticket-animate {
    position: relative;
    animation: borderPulse infinite ease-in-out;
    margin-top: 15px;
}
.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;
}
@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);
    }
}
.benefits-section {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .benefits-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--brand-teal);
            margin-bottom: 15px;
        }

        .benefit-item {
            display: flex;
            flex-direction: column;
            align-items: start;
            /*margin-bottom: 25px;*/
            padding: 20px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.06) 0%, rgba(6, 182, 212, 0.14) 100%);
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-blue);
        }

        .benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(79, 70, 229, 0.2);
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--brand-teal) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 8px;
        }

        .benefit-content p {
            margin: 0;
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
a {
    text-decoration: none !important;
}
#venue{
        padding: 3rem 0;
        background-image: url("https://worldbigroup.com/dist/images/backgrounds/hero-img.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
    #venue h2 {
        color: var(--primary-blue);
        font-weight: 700;
        font-size: 38px;
    }
    #venue h3{
        font-weight: 500;
    }
    .box {
        position: relative;
        width: 95%;
        height: 300px;
        border-radius: 20px;
        background-size: cover;
        background-position: center;
        animation-duration: 17s;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
        transition: all 2s ease;
    }
    .venue-inner-wrap:nth-child(1) .box {
        background-image: url("https://worldbigroup.com/patient-recruitment-crisis-breakfast/images/background/barcelona-bg.webp");
        animation-name: cycle1;
    }
    .btn-closed {
        font-size: 26px;
        background-color: #fff0;
        border: none;
    }
    .modal-content .modal-footer a {
        background: var(--brand-teal);
        color: #fff;
    }
    #sponsor .media-partner img{
        cursor: pointer;
    }
    .testimonial {
    background: linear-gradient(135deg, #faf5ff, #e0e7ff, #ecfeff);
    position: relative;
    overflow: hidden;
    padding: 30px 0
}

.testimonial p.h2 {
    font-size: 125px;
    font-weight: 700;
    color: var(--primary-blue);
    -webkit-text-fill-color: var(--primary-blue);
    line-height: 1
}

.testimonial-heading {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px
}
.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 rgba(0, 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: var(--brand-teal);
        color: #fff;
        transform: scale(1);
        z-index: 10;
        filter: blur(0);
        box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    }
    #contactUs {
        background: var(--primary-blue) !important;
    }
    .testimonial .swiper-slide:not(.swiper-slide-active) {
        transform: scale(0.9);
        z-index: 1;
        filter: blur(3px);
        transition: transform 0.3s ease, z-index 0.3s ease, filter 0.3s ease;
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
    @media (max-width: 991px) {
        .testimonialSlider {
            padding: 0px 0 50px;
        }
    }
/* Sponosr */
.sponsor {
    padding: 2rem 0;
    border-radius: 0 0 40px 40px;
}
.supporter {
    padding: 10px;
    margin: 0;
    background: #fff0;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgb(0 0 0 / .3);
    box-shadow: rgb(2 10 68 / .073) 0 -50px 36px -28px inset;
}
.supporter {
    padding: 10px 8px;
}
.supporter-logo {
    cursor: pointer;
    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;
}
.media-partners .supporter-logo img{
    cursor: pointer;
}
/* Contact-us */
#contactUs {
    background: var(--primary-blue) !important;
}
.ticket-cards {
    position: relative;
    padding: 30px 35px;
    margin: 0 15px;
}
.contact-card {
    box-shadow: rgb(0 0 0 / .45) 0 25px 20px -20px;
    border-radius: 15px;
}
.contact-form {
    margin: 20px auto;
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 18px 25px;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid #FFFFFF;
    box-sizing: border-box;
    margin-bottom: 15px;
    border-radius: 50px;
    background: #fff0;
    transition: border-color 0.3s ease;
    background-color: #fff0;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
}
select#hears-us {
    color: white;
}
.contact-card ::placeholder {
  color: white;
  opacity: 1;
}

.contact-card ::-ms-input-placeholder {
  color: white;
}
/* footer */
.footer {
    padding: 30px 0;
    background: #000;
}
.our-moto {
    color: var(--brand-teal);
    font-size: 20px;
    margin-top: 20px;
    font-weight: 700;
    margin-bottom: 0;
}
.footer .footer-widget-social {
    gap: 10px;
    margin: 18px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    padding-top: 0;
    text-align: center;
    width: 73%;
}
.footer-heading {
    font-size: 32px;
    font-weight: 500;
    color: var(--brand-teal);
}
.footer-menu {
    line-height: 35px;
    color: #fff;
}
.footer ul {
    list-style: none;
    padding-left: 0;
}
.footer-menu ul li {
    font-size: 19px;
}
.footer ul li a {
    text-decoration: none;
    font-size: 22px;
    line-height: 24px;
    display: inline-block;
    color: #fff;
    transition: all 0.5s cubic-bezier(.645, .045, .355, 1);
}
.footer a:hover {
    text-decoration: underline;
    color: var(--brand-teal);
    transition: text-decoration 0.5s cubic-bezier(.645, .045, .355, 1);
}
.footer .footer-widget-social a {
    height: auto;
    width: 43px;
    line-height: 46px;
    border-radius: 50%;
    font-size: 22px;
    color: var(--brand-teal);
    transition: all 1s ease-out;
}
.footer .footer-widget-social a:hover {
    transform: scale(1.3);
}

@media (max-width: 1399px){
    .testimonial-heading {
        font-size: 27px;
    }
    .testimonial-heading br{
        display: none;
    }
    .buy-button {
        font-size: 14px;
    }
    #tickets .buy-button {
        padding: 16px 10px;
    }
    .attendance-card {
        padding: 20px 10px;
    }
    .attendance-card p {
        font-size: 14px;
    }
}
@media (max-width: 991px){
    nav.navbar {
        background: #000;
    }
}
@media (max-width: 767px){
    .footer .footer-widget-social {
        justify-content: start;
    }
    .section-paradigm p {
        font-size: 18px;
    }
    .section-paradigm h2 {
        font-size: 27px;
    }
    .hero-section {
        text-align: start;
    }
    .info-bar {
        flex-direction: column;
    }
    .hero-subtitle {
        font-size: 15px;
    }
    .main-title {
        font-size: 33px;
    }
}
@media (max-width: 575px){
    #navbar .navbar-brand {
        margin-right: 0;
    }
    #navbar img{
        width: 140px;
    }
    .contact-card {
        padding: 25px 0;
    }
    .why-section h2 {
        font-size: 22.5px;
    }
    .main-titles {
        font-size: 30px;
    }
    .intro-description {
        font-size: 15px;
    }
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}