.header_section_s4 .header_wrap {
    width: 1320px;
    margin: 0 auto;
    height: 7rem;
    display: flex;
    align-items: center;
}

.header_topbar {
    background: #538DCA;
    padding: 0.4rem 0;
}

.header_topbar a {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.header_topbar .topbar_social {
    display: flex;
    justify-content: end;
    gap: 1rem;
}

.topbar_contact {
    display: flex;
    gap: 2rem;
}

.hero_slider .hero_slider_item {
    height: 800px;
}

/* Keep original heading font for hero title - no override */
.hero_slider_item .hero_content .content .title h2 {
    font-size: 70px;
    /* Keep original Inter font */
}

/* Additional ALYSSAH brand styling */
.header_section_s4 {
    font-family: "Poppins", sans-serif; /* Only for non-heading elements */
}

.main_menu li a {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.main_menu li a:hover {
    color: #538DCA;
}

.hero_slider_item .hero_content .btn_primary {
    background-color: #26955a!important;
    color: #FFFFFF!important;
}

.hero_slider_item .hero_content .btn_primary:hover {
    background-color: white!important;
    color: #538DCA!important;
    border: 2px solid #538DCA!important;
}

a.btn_outline {
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 5px;
}

a.btn_outline:hover {
    background: #26955a!important;
    color: white;
    border: 2px solid #26955a!important;
}

#about .about_content .content .title h2 {
    color: #538DCA!important;
}

#about .about_btn {
    margin-top: 30px;
}

/* ==== Fanfact Section Styles ==== */
.fanfact_section {
    background: linear-gradient(135deg, #538dca 0%, #084962 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.fanfact_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.fanfact_section .container {
    position: relative;
    z-index: 2;
}

.fanfact_item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.fanfact_item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.fanfact_icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.fanfact_item:hover .fanfact_icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.fanfact_icon i {
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.fanfact_item:hover .fanfact_icon i {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.fanfact_content h2.count {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-family: "Inter", sans-serif;
}

.fanfact_content p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

.fanfact_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.shape_overlay {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape_overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .fanfact_section {
        padding: 60px 0;
    }
    
    .fanfact_item {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .fanfact_content h2.count {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .fanfact_section {
        padding: 50px 0;
    }
    
    .fanfact_item {
        padding: 25px 15px;
    }
    
    .fanfact_content h2.count {
        font-size: 36px;
    }
    
    .fanfact_icon {
        width: 70px;
        height: 70px;
    }
    
    .fanfact_icon i {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .fanfact_content h2.count {
        font-size: 32px;
    }
    
    .fanfact_content p {
        font-size: 14px;
    }
}

.impact_section .section_title .sub_title.text-white {
    color: #FFFFFF!important;
}

.video_section .video_wrap .content .btn_primary:hover {
    border: 2px solid #ffffff!important;
}