.elementor-3210 .elementor-element.elementor-element-bab4e50{--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;}/* Start custom CSS for html, class: .elementor-element-bd6e829 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Manrope font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* === COMMUNIK HEADER STYLES === */
.communik-header-wrapper {
    background: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.communik-header-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.communik-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    min-height: 80px;
}

/* === LOGO SECTION === */
.communik-logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    order: 1;
}

.communik-logo-link {
    display: block;
    transition: all 0.3s ease;
}

.communik-logo-link:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.communik-logo-img {
    height: 50px !important;
    width: auto;
    max-width: 200px !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* === NAVIGATION MENU === */
.communik-nav-menu {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    order: 2;
}

.communik-nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.communik-nav-item {
    position: relative;
}

.communik-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif!important;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.communik-nav-link:hover {
    color: #ff8c42;
    transform: translateY(-2px);
}

/* Active state and underline effect */
.communik-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8c42, #ff6b1a);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.communik-nav-link:hover::after,
.communik-nav-link.communik-active::after {
    width: 100%;
}

.communik-nav-link.communik-active {
    color: #ff8c42;
    font-weight: 500;
}

/* === CTA BUTTONS SECTION === */
.communik-cta-section {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
    order: 3;
}

.communik-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif!important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.communik-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.communik-btn:hover::before {
    left: 100%;
}

.communik-btn-secondary {
    background: rgba(255, 140, 66, 0.1);
    color: #ff8c42;
    border: 2px solid #ff8c42;
}

.communik-btn-secondary:hover {
    background: #ff8c42;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

.communik-btn-primary {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    color: #ffffff;
    border: 2px solid transparent;
}

.communik-btn-primary:hover {
    background: linear-gradient(135deg, #ff6b1a, #ff8c42);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

/* === MOBILE BURGER MENU === */
.communik-burger-menu {
    display: none !important; /* Force hide on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 10001;
    position: relative;
    order: 4;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any focus styles that might cause pink/colored borders */
.communik-burger-menu:focus,
.communik-burger-menu:active,
.communik-burger-menu:hover {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.communik-burger-line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    pointer-events: none; /* Prevent individual lines from being clicked */
}

.communik-burger-menu.communik-active .communik-burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #ff8c42;
}

.communik-burger-menu.communik-active .communik-burger-line:nth-child(2) {
    opacity: 0;
}

.communik-burger-menu.communik-active .communik-burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: #ff8c42;
}

/* === MOBILE MENU OVERLAY === */
.communik-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: none !important; /* Force hide on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.communik-mobile-overlay.communik-active {
    display: flex;
    opacity: 1;
}

.communik-mobile-nav {
    text-align: center;
    margin-bottom: 40px;
}

.communik-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.communik-mobile-nav-item {
    margin: 20px 0;
}

.communik-mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif!important;
    font-size: 24px;
    font-weight: 300;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 20px;
}

.communik-mobile-nav-link:hover,
.communik-mobile-nav-link.communik-active {
    color: #ff8c42;
    transform: scale(1.1);
}

.communik-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .communik-header-container {
        max-width: 90%;
    }
    
    .communik-nav-list {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .communik-header-container {
        max-width: 95%;
    }
    
    .communik-nav-list {
        gap: 15px; /* Reduced gap for better fit */
    }
    
    .communik-nav-link {
        font-size: 14px; /* Smaller font */
        padding: 6px 0;
    }
    
    .communik-btn {
        padding: 8px 16px; /* Smaller buttons */
        font-size: 12px;
    }
    
    .communik-cta-section {
        gap: 10px; /* Reduced gap between buttons */
    }
}

/* New tablet-specific breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .communik-header-container {
        max-width: 98%;
        padding: 0 15px;
    }
    
    .communik-header-content {
        padding: 15px 0;
        min-height: 65px;
    }
    
    .communik-nav-list {
        gap: 20px;
    }
    
    .communik-nav-link {
        font-size: 14px;
    }
    
    .communik-btn {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .communik-logo-img {
        height: 45px !important;
        max-width: 180px !important;
    }
    
    /* If still cramped, switch to mobile layout earlier */
    .communik-cta-section {
        gap: 8px;
    }
}

/* Switch to mobile layout earlier for tablets if needed */
@media (max-width: 900px) {
    .communik-header-container {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .communik-header-content {
        padding: 14px 0;
        min-height: 65px;
        position: relative;
        justify-content: space-between;
    }
    
    .communik-burger-menu {
        display: flex !important; /* Show burger earlier */
    }
    
    .communik-mobile-overlay {
        display: none;
    }
    
    .communik-mobile-overlay.communik-active {
        display: flex !important;
        opacity: 1;
    }
    
    .communik-nav-menu,
    .communik-cta-section {
        display: none !important; /* Hide desktop nav earlier */
    }
    
    .communik-logo-img {
        height: 42px !important;
        max-width: 160px !important;
    }
}

@media (max-width: 768px) {
    .communik-header-container {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .communik-header-content {
        padding: 16px 0;
        min-height: 70px;
        position: relative;
        justify-content: space-between;
    }
    
    .communik-burger-menu {
        display: flex !important; /* Only show on mobile */
    }
    
    .communik-mobile-overlay {
        display: none; /* Hidden by default, shown via JS */
    }
    
    .communik-mobile-overlay.communik-active {
        display: flex !important; /* Show when active on mobile */
        opacity: 1;
    }
    
    .communik-nav-menu,
    .communik-cta-section {
        display: none !important;
    }
    
    .communik-logo-img {
        height: 40px !important;
        max-width: 150px !important;
    }
}

/* Ensure mobile elements are hidden on larger screens */
@media (min-width: 901px) {
    .communik-burger-menu {
        display: none !important;
    }
    
    .communik-mobile-overlay {
        display: none !important;
    }
    
    .communik-nav-menu,
    .communik-cta-section {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .communik-header-container {
        max-width: 100%;
        padding: 0 12px;
    }
    
    .communik-logo-img {
        height: 35px !important;
        max-width: 120px !important;
    }
    
    .communik-header-content {
        padding: 12px 0;
        min-height: 60px;
    }
    
    .communik-mobile-nav-link {
        font-size: 20px;
    }
    
    .communik-burger-menu {
        width: 40px;
        height: 40px;
    }
    
    .communik-burger-line {
        width: 22px;
    }
}

/* === ACCESSIBILITY === */
.communik-nav-link:focus,
.communik-btn:focus {
    outline: 2px solid #ff8c42;
    outline-offset: 2px;
}

/* Remove focus outline from burger menu */
.communik-burger-menu:focus {
    outline: none;
}

.communik-burger-menu:focus-visible {
    outline: none;
}

/* === PERFORMANCE OPTIMIZATIONS === */
.communik-header-wrapper {
    will-change: transform;
}

.communik-nav-link,
.communik-btn,
.communik-logo-link {
    will-change: transform;
}

/* === BODY PADDING FOR FIXED HEADER === */
body {
    padding-top: 120px; /* Increased for better spacing */
}

@media (max-width: 768px) {
    body {
        padding-top: 90px; /* More padding on mobile for fixed header */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px; /* Adequate padding for small mobile */
    }
}/* End custom CSS */