.elementor-187 .elementor-element.elementor-element-12561693{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );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 );}.elementor-187 .elementor-element.elementor-element-1f22d320{width:var( --container-widget-width, 70% );max-width:70%;--container-widget-width:70%;--container-widget-flex-grow:0;text-align:justify;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-187 .elementor-element.elementor-element-50d2ae4{width:var( --container-widget-width, 30% );max-width:30%;--container-widget-width:30%;--container-widget-flex-grow:0;}.elementor-187 .elementor-element.elementor-element-40849e4{--display:flex;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}.elementor-187 .elementor-element.elementor-element-1f22d320{width:100%;max-width:100%;}.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}.elementor-187 .elementor-element.elementor-element-50d2ae4{width:initial;max-width:initial;}}@media(max-width:767px){.elementor-widget-text-editor{font-size:var( --e-global-typography-text-font-size );}.elementor-187 .elementor-element.elementor-element-1f22d320{width:100%;max-width:100%;text-align:justify;}.elementor-widget-image .widget-image-caption{font-size:var( --e-global-typography-text-font-size );}.elementor-187 .elementor-element.elementor-element-50d2ae4{width:100%;max-width:100%;}}/* Start custom CSS for html, class: .elementor-element-c255aa3 */:root {
    --primary-color: #ff7b00;
    --background-color: rgba(187, 0, 255, 1);
    --text-color: #ffffff;
    --hover-color: rgba(255, 255, 255, 0.3);
    --glass-effect: blur(10px);
}

.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 .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 .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 .3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}
.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    background: var(--hover-color);
}
.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-text {
    font-size: 11px;
    color: var(--text-color);
}

.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;
}
.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;
}

@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; }
}

@keyframes fadeInUp {
    from { opacity:0; transform:translateY(20px); }
    to { opacity:1; transform:translateY(0); }
}

.handwritten-text {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    position: relative;
}
.handwritten-text::after {
    content:'';
    position:absolute;
    bottom:-2px;
    left:0;
    width:100%;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.8),transparent);
    animation: shimmer 2s infinite;
}
@keyframes shimmer {
    0%,100% { opacity:.6; transform:scaleX(.9); }
    50% { opacity:1; transform:scaleX(1); }
}/* End custom CSS */