
        /* MAIN CARD */
        .event-stats-card {
            background: #3e4055;
            border-radius: 26px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.25);
            margin-left: auto;
            margin-right: 0;
            width: fit-content;
        }

        /* HEADER BAND */
        .event-stats-header {
            background: #08147b;
            padding: 14px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 18px;
            color: #ffffff;
        }

        /* BODY */
        .event-stats-body {
            padding: 25px;
        }

        /* GRID */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        /* STAT CARD */
        .stat-box {
            background: #eff0f7;
            border-radius: 14px;
            padding: 12px 8px;
            text-align: center;
            height: 135px;
            width: 115px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }

        /* NUMBER */
        .stat-count {
            font-size: 20px;
            font-weight: 800;
            color: #08147b;
            line-height: 1;
            margin-top: 6px;
        }

        /* ICON (REPLACES CIRCLE) */
        .stat-icon {
            width: 44px;
            height: 44px;
            margin: 8px auto 6px;
            background: linear-gradient(135deg, #08147b, #3f51ff);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(8,20,123,0.35);
        }

        .stat-icon i {
            font-size: 23px;
            color: #ffffff;
        }

        /* LABEL */
        .stat-label {
            margin-top: 6px;
            font-size: 11px;
            font-weight: 700;
            color: #000;
            line-height: 1.4;
            text-transform: uppercase;
            text-align: center;
        }

        /* TABLET */
        @media (max-width: 991px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* MOBILE */
        @media (max-width: 575px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stat-box {
                width: auto;
                height: auto;
                padding: 20px;
            }
        }

/* OVERLAY WRAPPER */
.slider-overlay-content {
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    text-align: center;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    padding: 15px 20px;
    border-radius: 20px;
    width:80%;
}

/* TITLE */
.slider-overlay-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* META INFO */
.slider-overlay-content p {
    font-size: 18px;
    color: #f1f1f1;
    margin: 0;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .slider-overlay-content h2 {
        font-size: 28px;
    }

    .slider-overlay-content p {
        font-size: 14px;
    }

    .slider-overlay-content {
        padding: 22px 25px;
    }
}

.event-countdown-box {
   
    border-radius: 20px;
    padding: 20px;
    max-width: 660px;
    background: #ffffff;
    float:right;
    margin-top:-30px;
}


/* CONTAINER */
.countdown-timer{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

/* CIRCULAR TIME BOX */
.time-box{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#f6f7fb;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    box-shadow:0 8px 24px rgba(0,0,0,0.08);
    border:1px dotted #000;
    transition:transform 0.3s ease;
}

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

/* NUMBER */
.time-box span{
    font-size:32px;
    font-weight:700;
    color:#4b4bff;
    line-height:1;
   
}

/* LABEL */
.time-box small{
    margin-top:6px;
    font-size:12px;
    font-weight:600;
    color:#555;
}

/* PRIMARY CIRCLE */
.time-box-primary{
    background:linear-gradient(135deg,#f1bd4c,#6a5cff);
    border:none;
}

/* TEXT INSIDE PRIMARY */
.time-box-primary span{
    font-size:14px;
    font-weight:700;
    color:#fff;
    text-align:center;
}

/* TABLET */
@media (max-width: 991px){
    .time-box{
        width:80px;
        height:80px;
    }
    .time-box span{
         font-size:18px;
        margin-top:40px;
    }
}

/* MOBILE */
@media (max-width: 575px){
    .countdown-timer{
        gap:12px;
    }

    .time-box{
        width:48px;
        height:48px;
    }

    .time-box span{
        font-size:18px;
        margin-top:40px;
    }

    .time-box small{
        font-size:11px;
    }

    /* Primary box full-width on mobile */
    .time-box-primary{
        width:100%;
        height:auto;
        border-radius:14px;
        padding:14px 0;
    }

    .time-box-primary span{
        font-size:16px;
    }
}


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

.about-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.3;
    font-size: 14px;
}

.about-list li::before {
    content: "\f058"; /* Font Awesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff9f1c; /* matches your orange accent */
    position: absolute;
    left: 0;
    top: 3px;
}
/* Feature box title */
.feature-box-content span {
    font-size: 15px;        /* reduced from 18px */
    font-weight: 600;       /* slightly stronger for clarity */
    line-height: 1.3;
}

/* Feature box description */
.feature-box-content p {
    font-size: 13px;      /* smaller, readable */
    line-height: 1.6;
    margin-top: 6px;
    color: #7a7a7a;         /* softer than text-dark-gray */
}
@media (max-width: 767px) {
    .feature-box-content span {
        font-size: 15px;
    }
    .feature-box-content p {
        font-size: 13px;
    }
}
/* Ensure equal height for all cards */
.icon-with-text-style-04 {
    display: flex;
}

.icon-with-text-style-04 .feature-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Push content to align consistently */
.icon-with-text-style-04 .feature-box-content {
    flex-grow: 1;
}
/* SPEAKER CARD */
.speaker-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ACCENT CURVE */
.speaker-accent {
    height: 20px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

/* ACCENT COLORS */
.accent-blue { background: #3b4cff; }
.accent-cyan { background: #3fc5ff; }
.accent-purple { background: #7a4cff; }
.accent-orange { background: #ff7a45; }

/* CONTENT */
.speaker-content {
    padding: 20px 18px;
}

.speaker-content h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.speaker-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
}

/* IMAGE */
.speaker-image {
    text-align: center;
    margin-top: auto;
    overflow: hidden;
    height: 320px; /* desktop */
}

.speaker-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* desktop look */
}

/* MOBILE FIX */
@media (max-width: 576px) {
    .speaker-image {
        height: auto;          /* let image decide height */
        padding: 10px;
    }

    .speaker-image img {
        height: auto;
        max-height: 360px;
        object-fit: contain;   /* NO cropping */
    }
}



/* IMAGE */
/* HOVER ZOOM EFFECT
.speaker-image img {
    transition: transform 0.5s ease;
}


.speaker-card:hover .speaker-image img {
    transform: scale(1.03);
} */

/* BASE CARD */
.pass-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 30px;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 55px rgba(0,0,0,0.10);
    transition: all 0.35s ease;
}

.pass-card p {
  font-size: 14px; font-weight: 600;
  line-height: 1.2;
}

/* HOVER LIFT */
.pass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

/* TITLES */
.pass-title {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

/* PRICE */
.pass-price {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0;
}

.pass-price span {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

/* LIST */
.pass-card ul {
    text-align: left;
    flex-grow: 1;
    margin-bottom: 28px;
}

/* BADGES */
.pass-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* SILVER */
.pass-card.silver { border-top: 5px solid #bfc4ca; }
.pass-badge.silver { background: #eef0f3; color: #555; }

/* GOLD */
.pass-card.gold { border-top: 5px solid #f0b429; }
.pass-badge.gold { background: #fff1cc; color: #a87500; }

/* PLATINUM */
.pass-card.platinum { border-top: 5px solid #6a5cff; }
.pass-badge.platinum { background: #f1f0ff; color: #4b47d6; }

/* REGISTER BUTTON BASE */
.btn-pass {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* BUTTON COLORS */
.silver-btn {
    background: linear-gradient(135deg, #aeb3b8, #8f9499);
}
.gold-btn {
    background: linear-gradient(135deg, #f0b429, #ff8f1f);
}
.platinum-btn {
    background: linear-gradient(135deg, #6a5cff, #4b4bff);
}

/* BUTTON HOVER */
.btn-pass:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    color: #fff;
}
.swiper-slide::before{
    content:"";
    position:absolute;
    inset:0;

    z-index:1;
}
.swiper-slide > *{
    position:relative;
    z-index:2;
}
.slider-content{
    position:absolute;
    top:55%;
    left:29%;
    transform:translate(-50%, -50%);
    z-index:5;
    max-width:900px;
    padding:20px;
    color:#fff;
}

.slider-title{
    font-size:42px;
    font-weight:700;
    line-height:1;
    margin-bottom:1px;
}

.slider-tagline{
    font-size:19px;
    font-weight:600;
    color:white;
    margin-bottom:6px;
     font-weight:bold;
}

.slider-info{
    font-size:28px;
    font-weight:700;
    line-height:1.6;
}

.slider-info a{
    color:white;   
    text-decoration:none;
}

.slider-info a:hover{
    color:white;
    text-decoration:underline;
}

/* Mobile */
@media(max-width:768px){
    .slider-title{ font-size:32px; }
    .slider-info{ font-size:18px; }
    .slider-content{
    position:absolute;
    top:35%;
    left:50%;
    transform:translate(-50%, -50%);
    z-index:5;
    width:100%;
    padding:20px;
    color:#fff;
}
.swiper-slide{
    height:175px;
}
.event-stats-card {
    margin-top:-270px;
}
}

/* WHY ATTEND SECTION */
.why-attend-section {
    padding: 90px 0;
    background-color: #ffffff;
}

/* HEADER */
.why-attend-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-attend-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.why-attend-header p {
    font-size: 17px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* GRID */
.why-attend-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

/* BOX */
.why-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.why-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ICON */
.why-icon {
    width: 80px;
    height: 80px;
    background: #eef4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: #3b6cff; /* Crafto-style primary */
}

/* HOVER EFFECT */
.why-box:hover .why-icon {
    background: #3b6cff;
}

.why-box:hover .why-icon i {
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .why-attend-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .why-attend-grid {
        grid-template-columns: 1fr;
    }

    .why-attend-header h2 {
        font-size: 28px;
    }
}
/* ===============================
   EVENT SCHEDULE – COMPACT VERSION
   =============================== */

.event-schedule-section {
    padding: 20px 0;                /* compact (replaces 100px 0) */
    background: #f4f6fa;
}

/* HEADER */
.schedule-header {
    text-align: center;
    margin-bottom: 20px;
}

.schedule-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.schedule-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* TIMELINE */
.schedule-timeline {
    position: relative;
    max-width: 100%;
    margin: 0;
}

/* Vertical line */
.schedule-timeline::before {
    content: "";
    position: absolute;
    left: 110px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: #dbe3ff;
}

/* ROW */
.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
    position: relative;
}

/* TIME */
.schedule-time {
    width: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: right;
    white-space: nowrap;
}

/* CARD */
.schedule-card {
    background: #ffffff;
    padding: 8px 14px;              /* compact card padding */
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: box-shadow 0.25s ease;
    flex: 1;
}

/* CARD HOVER (NO LIFT – CLEAN) */
.schedule-card:hover {
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

/* TITLE */
.schedule-card h4 {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* TAG BASE */
.session-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 16px;
    margin-bottom: 4px;
    background: #eef4ff;
    color: #3b6cff;
    white-space: nowrap;
}

/* TAG COLORS */
.intro       { background:#e0f2fe; color:#0369a1; }
.keynote     { background:#e8f0ff; color:#1d4ed8; }
.panel       { background:#fff7ed; color:#c2410c; }
.fireside    { background:#f0fdf4; color:#15803d; }
.masterclass { background:#fdf4ff; color:#7e22ce; }
.report      { background:#ecfeff; color:#0369a1; }
.end         { background:#f1f5f9; color:#334155; }
.lunch,
.night       { background:#fff1f2; color:#be123c; }

/* HIGHLIGHTED SESSIONS */
.highlight .schedule-card {
    border-left: 3px solid #3b6cff;
}

/* LUNCH / EVENING */
.schedule-item.lunch .schedule-card,
.schedule-item.night .schedule-card {
    background: linear-gradient(135deg, #fff, #fef3c7);
    font-weight: 600;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 991px) {
    .schedule-timeline::before {
        left: 0;
    }
}

@media (max-width: 767px) {
    .schedule-item {
        flex-direction: column;
        gap: 6px;
        padding-left: 10px;
        margin-bottom: 12px;
    }

    .schedule-time {
        width: auto;
        text-align: left;
        font-size: 12px;
    }

    .schedule-card {
        width: 100%;
    }
}
.linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 6px;
    background: #0A66C2;
    color: #fff !important;
    border-radius: 4px;
    font-size: 14px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.linkedin-icon:hover {
    background: #004182;
    transform: translateY(-2px);
}

/* ACCORDION ICON BASE */
.accordion-title .accordion-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 16px;
    margin-right: 12px;
    transition: all 0.3s ease;
}

/* INACTIVE (PLUS) STATE */
.accordion-item:not(.active-accordion) .accordion-icon {
    background: #f1f3ff;
    color: #08147b;
    border: 1px solid #cfd4ff;
}

/* ACTIVE (MINUS) STATE */
.accordion-item.active-accordion .accordion-icon {
    background: linear-gradient(135deg, #08147b, #3f51ff);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 6px 16px rgba(8,20,123,0.35);
}

/* HOVER EFFECT */
.accordion-header a:hover .accordion-icon {
    transform: scale(1.05);
}
/* Hide / Show for Mobile & Desktop */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Responsive Image */
.slider-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    /* Remove full screen on mobile */
    .full-screen {
        min-height: auto !important;
        height: auto !important;
    }

    .swiper,
    .swiper-wrapper,
    .swiper-slide {
        height: auto !important;
    }

    /* Set proper banner height */
    .swiper-slide img {
        height: 220px;
        object-fit: cover;
    }
}


/* VIDEO FULL COVER */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.schedule-cards-section {
    padding: 10px 0;
    background: #faf7f3;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #666;
   
}

.schedule-block-title {
    font-size: 26px;
    font-weight: 700;
    margin: 10px 0 30px;
}

/* GRID */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* CARD */
.schedule-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 11px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ICON */
.schedule-card i {
    font-size: 34px;
    color: #f7931e;
    margin-bottom: 18px;
}

/* TITLE */
.schedule-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* TEXT */
.schedule-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* LUNCH CARD */
.schedule-break-card {
    margin: 30px auto;
    max-width: 520px;
    background: #867beb;
    color: #fff;
    border-radius: 18px;
    padding: 5px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}
.video-bg-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Video Full Cover */
.bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Optional dark overlay */
.video-bg-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* Keep content above video */
.video-bg-slide .container {
    position: relative;
    z-index: 2;
}
.slider-one-slide-prev-1,
.slider-one-slide-next-1 {
    top: 85% !important;   /* Move down */
    transform: translateY(-50%);
}