/* Bottom Fixed section - start */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    z-index: 1050;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-timer-bar-custom {
    width: 100%;
    color: #fff;
}

.timer-content {
    font-family: 'Segoe UI', sans-serif;
    gap: 10px;
}

.offer-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.time-unit {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ff6600;
}

.register-button {
    background: linear-gradient(to right, #ff9900, #ff5500);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.5rem;
    box-shadow: 0 0 10px #ff9900;
    transition: background 0.3s ease;
}

.register-button:hover {
    background: linear-gradient(to right, #ff7700, #ff3300);
}


/* Bottom Fixed section - end */

/* Hero section - start */

.webinar-hero-section {
    /* background: #fff; */
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    background-image: radial-gradient(#ccc 1px, transparent 1px);
    background-size: 20px 20px;
}

.text-orange {
    color: #ff6600;
}

.text-custom-blue {
    color: #1d4ed8;
}

.bg-gradient-orange {
    background: linear-gradient(to right, #ff9900, #ff5500);
}

.workshop-box {
    /* border: 1px solid #ddd; */
    background-color: #f8f4ff;
}

.workshop-info-box {
    padding: 2px 3px;
    color: #ff6600;
    border: solid 2px #7069FE;
    border-radius: 10px;
    box-shadow: #7069FE 5px 5px;
    background-color: white;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


/* Hero section - end */


/* card section - start */

/* Existing */
.border-custom {
    border: 1px solid #3b82f6;
    border-radius: 12px;
}

.highlight-card {
    background-color: #f7f3ff;
    border: 1px solid #3b82f6;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    color: #111;
}

.text-orange {
    color: #f97316 !important;
}


/* card section - end */

/* Timer section - start */

.timer-box {
    background-color: #111;
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
    min-width: 120px;
}

.timer-digit {
    font-size: 2.5rem;
    font-weight: bold;
}

.orange-gradient-btn {
    background: linear-gradient(to right, #fdb933, #fd7e14);
    color: white;
    border-radius: 12px;
    border: none;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(253, 126, 20, 0.4);
}

.orange-gradient-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 14px rgba(253, 126, 20, 0.5);
}


/* Timer section - end */

@media (max-width: 1023px) {

    body,
    .timer-content,
    .offer-label,
    .time-unit,
    .register-button,
    .text-orange,
    .text-custom-blue,
    .workshop-info-box,
    .highlight-card,
    .timer-box,
    .timer-digit,
    .orange-gradient-btn {
        font-size: unset;
        /* Reset base inheritance if needed */
    }

    body {
        font-size: 1rem;
    }

    .timer-content {
        font-size: 1rem;
    }

    .offer-label {
        font-size: 1.1rem;
    }

    .time-unit {
        font-size: 1.3rem;
    }

    .register-button {
        font-size: 1.2rem;
    }

    .text-orange,
    .text-custom-blue {
        font-size: 1rem;
    }

    .workshop-info-box {
        font-size: 0.85rem;
    }

    .highlight-card {
        font-size: 1rem;
    }

    .timer-box {
        font-size: 0.95rem;
    }

    .timer-digit {
        font-size: 2rem;
    }

    .orange-gradient-btn {
        font-size: 1rem;
    }

    .hero-subtext {
        font-size: 1rem !important;
    }
}

/* Base styles for all screen sizes */
.hero-heading-orange {
    color: #FF6A00;
    /* Vibrant orange like in the image */
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
}

.hero-heading-black {
    color: #000;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
}

.hero-subtext {
    color: #555;
    /* Light gray as in the image */
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: center;
}

/* Responsive font sizing for larger screens */
@media (min-width: 844px) {
    .hero-heading-orange {
        font-size: 2rem;
    }

    .hero-heading-black {
        font-size: 2.2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }
}