.elementor-kit-10{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-codevz_primary_color:#0045a0;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-10 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */```css
/* Glass Pros Custom Styles */
:root {
    --glass-blue: #0EA5E9;
    --deep-blue: #0C4A6E;
    --ice-blue: #E0F2FE;
    --crystal: #F0F9FF;
    --shadow: rgba(14, 165, 233, 0.15);
    --accent: #06B6D4;
    --text-dark: #0F172A;
    --text-light: #64748B;
}

.glass-pros-hero {
    background: linear-gradient(135deg, #ffffff 0%, var(--crystal) 100%);
    position: relative;
    overflow: hidden;
}

.glass-pros-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.glass-effect {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.05));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(14, 165, 233, 0.2);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s infinite ease-in-out;
}

.sparkle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; left: 70%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 40%; left: 50%; animation-delay: 1s; }
.sparkle:nth-child(4) { top: 80%; left: 20%; animation-delay: 1.5s; }
.sparkle:nth-child(5) { top: 30%; left: 80%; animation-delay: 0.7s; }

.gradient-text {
    background: linear-gradient(135deg, var(--glass-blue), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card-custom {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--glass-blue), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-custom:hover::before {
    transform: scaleX(1);
}

.service-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: var(--glass-blue);
}

.service-icon-custom {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--ice-blue), var(--crystal));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    transition: all 0.4s ease;
}

.service-card-custom:hover .service-icon-custom {
    background: linear-gradient(135deg, var(--glass-blue), var(--accent));
    transform: rotate(5deg) scale(1.1);
}

.glass-pros-cta {
    background: linear-gradient(135deg, var(--glass-blue), var(--accent));
    position: relative;
    overflow: hidden;
}

.glass-pros-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" x="50" y="50" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}
```/* End custom CSS */