.elementor-15 .elementor-element.elementor-element-87da957{--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;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-15 .elementor-element.elementor-element-87da957.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-15 .elementor-element.elementor-element-87da957{--width:325px;}}/* Start custom CSS for html, class: .elementor-element-5cbd70c *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 30px 0 20px;
    color: white;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.95;
    padding: 0 15px;
}

/* Mobile Video Focus Section */
.video-focus-section {
    background: white;
    border-radius: 0;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    padding: 15px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.video-focus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

/* Video Call-to-Action */
.video-cta {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 10px;
}

.cta-arrow {
    font-size: 2.5rem;
    margin-bottom: 8px;
    animation: bounce 2s infinite;
    transition: transform 0.3s ease;
}

.cta-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0;
}

.swipe-indicator {
    display: none;
}

/* Video Container - Full Mobile Optimization */
.video-container {
    position: relative;
    width: 100%;
    margin: 0 auto 20px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    /* Maximum mobile optimization - full width */
    max-width: none !important;
    padding: 0 10px;
}

.video-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #6c757d;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.placeholder-content p {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.play-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

/* Video Hint */
.video-hint {
    text-align: center;
    margin: 20px 10px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.hint-text {
    font-size: 1rem;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 15px;
}

.watch-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.watch-cta:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Contact Section */
.contact-section {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    margin: 20px 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #11998e, #38ef7d);
}

.contact-header {
    margin-bottom: 25px;
}

.contact-title {
    font-size: 1.6rem;
    color: #2d3748;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-subtitle {
    color: #718096;
    font-size: 1rem;
}

.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.contact-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-position {
    font-size: 1rem;
    margin-bottom: 4px;
    opacity: 0.9;
}

.contact-company {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f0f8ff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
}

.contact-icon {
    font-size: 1.1rem;
}

.contact-text {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Final Call to Action */
.final-cta {
    text-align: center;
    padding: 40px 15px;
    color: white;
}

.final-cta-heading {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.final-cta-text {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.final-cta-button {
    display: inline-block;
    padding: 16px 30px;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(17, 153, 142, 0.4);
    transition: all 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(17, 153, 142, 0.5);
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .video-focus-section {
        margin: 0;
        padding: 10px 0;
        border-radius: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .video-container {
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .video-cta {
        padding: 10px;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .contact-section {
        padding: 25px 15px;
        margin: 15px 5px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-item {
        padding: 10px;
        gap: 8px;
    }
    
    .final-cta {
        padding: 30px 10px;
    }
    
    .final-cta-heading {
        font-size: 1.6rem;
    }
    
    .final-cta-button {
        width: 90%;
        max-width: 300px;
    }
    
    .cta-arrow {
        font-size: 2rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .video-focus-section {
        margin: 0;
        padding: 8px 0;
        border-radius: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }
    
    .video-container {
        padding: 0 3px;
    }
    
    .contact-section {
        margin: 10px 2px;
        padding: 20px 10px;
    }
    
    .contact-name {
        font-size: 1.3rem;
    }
    
    .contact-position {
        font-size: 0.9rem;
    }
    
    .contact-company {
        font-size: 1rem;
    }
    
    .contact-text {
        font-size: 0.85rem;
    }
    
    .cta-arrow {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}/* End custom CSS */