.elementor-440 .elementor-element.elementor-element-0a11cc8{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4655aa6 */:root {
    --primary-color: #ff7b00;
    --background-color: rgba(30, 144, 255, 1);
    --text-color: #ffffff;
    --hover-color: rgba(255, 255, 255, 0.3);
    --glass-effect: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.social-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--background-color);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.5s ease-out;
}

.social-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hover-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: var(--hover-color);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.social-text {
    font-size: 11px;
    color: var(--text-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 2px;
    text-align: center;
    font-weight: 500;
}

.order-section,
.contact-section {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 30px;
    margin-left: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-section {
    cursor: default;
}

.contact-section:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.order-text,
.contact-text {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.handwritten-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    display: inline-block;
}

.handwritten-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.6; transform: scaleX(0.9); }
    50% { opacity: 1; transform: scaleX(1); }
}

@media (max-width: 768px) {
    .social-container { flex-direction: column; gap: 15px; }
    .social-icons { gap: 10px; }
    .social-icon { width: 40px; height: 40px; }
    .social-icon img { width: 20px; height: 20px; }
    .social-text { font-size: 9px; }
    .order-section, .contact-section { margin-left: 0; order: -1; padding: 6px 12px; }
    .order-text, .contact-text { font-size: 12px; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */