.elementor-927 .elementor-element.elementor-element-24befcf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5be7fb9 *//* Top Bar */
        .top-bar {
            background: #1a1a1a;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            width: 100%;
        }
        
        .top-bar-container {
            max-width: 100%;
            margin: 0;
            padding: 0 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .top-bar-left {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .top-bar-item:hover {
            color: #e63946;
        }
        
        .top-bar-icon {
            color: #e63946;
            font-size: 14px;
        }
        
        .top-bar-right {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .social-links {
            display: flex;
            gap: 10px;
        }
        
        .social-link {
            width: 28px;
            height: 28px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #e63946;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Main Header */
        .main-header {
            background: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .main-header.scrolled {
            box-shadow: 0 5px 25px rgba(0,0,0,0.12);
        }
        
        .header-container {
            max-width: 100%;
            margin: 0;
            padding: 0 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 110px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .logo:hover {
            transform: scale(1.02);
        }
        
        .logo-icon {
            width: 95px;
            height: 95px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .header-container .logo-text {
            display: none;
        }
        
        /* Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 5px;
            margin: 0;
        }
        
        .nav-link {
            position: relative;
        }
        
        .nav-link a {
            display: block;
            padding: 10px 18px;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 8px;
            position: relative;
        }
        
        .nav-link a:hover {
            color: #e63946;
            background: rgba(230, 57, 70, 0.05);
        }
        
        .nav-link a::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 18px;
            right: 18px;
            height: 2px;
            background: #e63946;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .nav-link a:hover::after {
            transform: scaleX(1);
        }
        
        .nav-link.active a {
            color: #e63946;
        }
        
        .nav-link.active a::after {
            transform: scaleX(1);
        }
        
        /* CTA Button */
        .header-cta {
            margin-left: 15px;
            display: flex;
            align-items: center;
        }
        
       .header-cta .cta-button {
            padding: 11px 26px;
            background: linear-gradient(135deg, #e63946 0%, #ff6b6b 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 0px !important;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
            white-space: nowrap;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4);
        }
        
        .cta-button::after {
            content: '→';
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover::after {
            transform: translateX(3px);
        }
        
        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }
        
        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #1a1a1a;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translateY(8px);
        }
        
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(-8px);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #e0e0e0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-nav-links {
            list-style: none;
            padding: 20px;
        }
        
        .mobile-nav-links li {
            border-bottom: 1px solid #f0f0f0;
        }
        
        .mobile-nav-links li:last-child {
            border-bottom: none;
        }
        
        .mobile-nav-links a {
            display: block;
            padding: 15px 10px;
            color: #1a1a1a;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-links a:hover {
            color: #e63946;
            padding-left: 15px;
        }
        
        .mobile-cta {
            padding: 20px;
            border-top: 1px solid #f0f0f0;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 3px;
            }
            
            .nav-link a {
                padding: 10px 14px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 900px) {
            .top-bar {
                display: none;
            }
            
            .header-container {
                height: 85px;
            }
            
            .logo-icon {
                width: 70px;
                height: 70px;
            }
            
            .main-nav {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
        }
        
        @media (max-width: 480px) {
            .header-container {
                padding: 0 20px;
            }
            
            .logo-icon {
                width: 60px;
                height: 60px;
            }
        }/* End custom CSS */