.elementor-5828 .elementor-element.elementor-element-a5cb6b0{--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;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-a651032 *//* style.css */
:root {
    --bg-light: #f8fbff;
    --bg-darker: #eef5fc;
    --primary: #0A66C2;
    --primary-light: #3086E2;
    --secondary: #6366f1;
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 30px -10px rgba(10, 102, 194, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-darker) 100%);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
}

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    overflow: hidden;
}

/* Background Curved Line */
.curved-line-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes lineGlowMove {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: -1000; }
}

.line-glow {
    stroke-dasharray: 500;
    animation: lineGlowMove 6s linear infinite;
}

/* Content Container */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

/* Subtitle */
.subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 102, 194, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(10, 102, 194, 0.15);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Description */
.hero-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 32px;
}

/* Funfact Container */
.funfact-container {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
}

.funfact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.funfact-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.funfact-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.funfact-divider {
    width: 2px;
    height: 40px;
    background: rgba(15, 23, 42, 0.1);
    border-radius: 2px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 25px -10px var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px var(--primary);
}

.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

/* Floating Icons Container */
#floating-icons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.tech-icon-wrap {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.tech-icon-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 900px) {
    .tech-icon-wrap { display: none; } /* On very small screens, hide icons or make them smaller */
}

@media (max-width: 768px) {
    .funfact-container {
        flex-direction: column;
        gap: 16px;
        padding: 24px;
    }
    .funfact-divider {
        width: 40px;
        height: 2px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn {
        width: 100%;
    }
    .hero-content {
        padding: 2rem 1.5rem;
    }
}/* End custom CSS */