.mascot-hero-section {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.mascot-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    animation: mascotSubtleZoom 20s infinite alternate;
}

.mascot-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

@keyframes mascotSubtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.mascot-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 15px; /* Common header padding to align exactly with logo */
}

.mascot-hero-content {
    color: white;
    max-width: 800px;
    width: 100%;
    /* margin: 0 auto removed to align left inside the container */
}

.mascot-hero-section .mascot-badge-pill {
    display: inline-block;
    padding: 6px 14px !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 8px;
    color: #00d4ff;
    line-height: 1.5 !important;
}

.mascot-hero-section h1.mascot-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1 !important;
    margin-top: 0;
    margin-bottom: 12px;
    padding: 0 !important;
    color: white;
}

.mascot-hero-title .text-gradient {
    background: linear-gradient(135deg, #3b82f6, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mascot-hero-section p.mascot-hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-top: 0;
    margin-bottom: 24px;
    padding: 0 !important;
    max-width: 600px;
    line-height: 1.6 !important;
}

.mascot-hero-cta {
    display: flex;
    gap: 20px;
}

.mascot-btn {
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mascot-btn-primary {
    background: #3b82f6;
    color: white;
}

.mascot-btn-primary:hover {
    background: #1d4ed8;
    color: white;
}

.mascot-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.mascot-btn-outline:hover {
    background: white;
    color: #172554;
}

.mascot-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.7;
    animation: mascotBounce 2s infinite;
}

.mascot-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    margin-bottom: 8px;
}

.mascot-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: mascotScrollWheel 2s infinite;
}

@keyframes mascotBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes mascotScrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Responsive adjustments for Elementor widget */
@media (max-width: 992px) {
    .mascot-hero-title { font-size: 3rem; }
    .mascot-hero-content { max-width: 90%; }
}

@media (max-width: 768px) {
    .mascot-hero-content {
        text-align: center;
        padding: 0 16px;
    }
    .mascot-hero-title { font-size: 2.25rem; }
    .mascot-hero-subtitle { font-size: 1rem; margin-left: auto; margin-right: auto; }
    .mascot-hero-cta { 
        flex-direction: column; 
        gap: 16px;
    }
    .mascot-btn {
        width: 100%;
        padding: 14px 24px;
    }
}
