/* ===================================
   MODERN PROFESSIONAL STYLING
   Glassmorphism, Blur Effects, Hover Animations
   =================================== */

/* Global improvements */
* {
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #15161a 50%, #0a0a0a 100%);
    background-attachment: fixed;
}

/* Container improvements with glassmorphism */
.e-con-full, .e-con {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero section with modern glass effect */
.elementor-element-7d5d1e7 {
    background: rgba(10, 10, 10, 0.4) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(123, 220, 181, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    margin: 20px !important;
}

/* Logo container with subtle glow */
.elementor-element-07612f4 {
    filter: drop-shadow(0 0 20px rgba(123, 220, 181, 0.3));
    transition: filter 0.3s ease;
}

.elementor-element-07612f4:hover {
    filter: drop-shadow(0 0 30px rgba(123, 220, 181, 0.6));
}

/* Heading improvements */
.elementor-heading-title {
    text-shadow: 0 0 20px rgba(123, 220, 181, 0.3),
                 0 0 40px rgba(123, 220, 181, 0.2);
    transition: text-shadow 0.3s ease;
}

.elementor-heading-title:hover {
    text-shadow: 0 0 30px rgba(123, 220, 181, 0.5),
                 0 0 60px rgba(123, 220, 181, 0.3);
}

/* Modern card styling for all sections */
.elementor-widget-container {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Video container modern upgrade */
.video-container {
    position: relative;
    width: 500px;
    height: 375px;
    margin-left: 100px;
    border: 2px solid rgba(123, 220, 181, 0.5) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 32px 0 rgba(123, 220, 181, 0.2),
                0 0 60px rgba(123, 220, 181, 0.1) !important;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(123, 220, 181, 0.3),
        rgba(123, 220, 181, 0.1),
        rgba(123, 220, 181, 0.3));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-container:hover::before {
    opacity: 1;
}

.video-container:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 48px 0 rgba(123, 220, 181, 0.3),
                0 0 80px rgba(123, 220, 181, 0.2);
}

/* Screenshots section with glass effect */
.elementor-element-00776bb {
    background: rgba(15, 15, 25, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 30px !important;
    padding: 60px 40px !important;
    margin: 30px 20px !important;
    border: 1px solid rgba(123, 220, 181, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4) !important;
}

/* Image carousel improvements */
.swiper-slide {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
    overflow: hidden;
}

.swiper-slide-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
        rgba(123, 220, 181, 0.2) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.swiper-slide:hover .swiper-slide-inner::before {
    opacity: 1;
}

.swiper-slide:hover .swiper-slide-inner {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 40px rgba(123, 220, 181, 0.3),
                0 0 60px rgba(123, 220, 181, 0.15);
}

.swiper-slide:hover {
    z-index: 10;
}

/* Reviews section with modern glass card */
.elementor-element-1c12988 {
    background: rgba(15, 15, 25, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-radius: 30px !important;
    padding: 60px 40px !important;
    margin: 30px 20px !important;
    border: 1px solid rgba(123, 220, 181, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4) !important;
}

/* Testimonial cards with cloud hover effect */
.elementskit-testimonial_card {
    background: rgba(20, 20, 35, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(123, 220, 181, 0.2) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.elementskit-testimonial_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(123, 220, 181, 0.15) 0%, 
        transparent 50%);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.elementskit-testimonial_card:hover::before {
    opacity: 1;
    animation: cloudFloat 3s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -10px);
    }
}

.elementskit-testimonial_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(123, 220, 181, 0.3),
                0 0 60px rgba(123, 220, 181, 0.15) !important;
    border-color: rgba(123, 220, 181, 0.4) !important;
}

/* Download section with premium glass effect */
.elementor-element-5d3e4c0 {
    background: rgba(15, 15, 25, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 30px !important;
    padding: 60px 40px !important;
    margin: 30px 20px !important;
    border: 1px solid rgba(123, 220, 181, 0.2) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4),
                inset 0 0 60px rgba(123, 220, 181, 0.05) !important;
}

/* Button improvements with glow effect */
.ha-creative-btn {
    background: linear-gradient(135deg, 
        rgba(123, 220, 181, 0.2) 0%, 
        rgba(123, 220, 181, 0.1) 100%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(123, 220, 181, 0.5) !important;
    border-radius: 15px !important;
    padding: 15px 35px !important;
    box-shadow: 0 4px 20px rgba(123, 220, 181, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.ha-creative-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(123, 220, 181, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ha-creative-btn:hover::before {
    width: 300px;
    height: 300px;
}

.ha-creative-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(123, 220, 181, 0.4),
                0 0 40px rgba(123, 220, 181, 0.2) !important;
    border-color: rgba(123, 220, 181, 0.8) !important;
}

.ha-creative-btn span {
    position: relative;
    z-index: 1;
}

/* Divider improvements */
.elementor-divider {
    position: relative;
}

.elementor-divider-separator {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(123, 220, 181, 0.5) 50%, 
        transparent 100%);
    height: 2px;
    box-shadow: 0 0 10px rgba(123, 220, 181, 0.3);
}

.elementor-divider__text {
    background: rgba(20, 20, 35, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(123, 220, 181, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Text improvements */
.elementor-widget-text-editor p {
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .video-container {
        margin-left: 0;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .elementor-element-7d5d1e7,
    .elementor-element-00776bb,
    .elementor-element-1c12988,
    .elementor-element-5d3e4c0 {
        margin: 20px 10px !important;
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: rgba(123, 220, 181, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(123, 220, 181, 0.3);
    color: #fff;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 10, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(123, 220, 181, 0.3);
    border-radius: 6px;
    border: 2px solid rgba(10, 10, 10, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(123, 220, 181, 0.5);
}

/* Animated gradient background for main sections */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Particle effect overlay (subtle) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(123, 220, 181, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 220, 181, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(123, 220, 181, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Ensure content is above particle effect */
.site-content {
    position: relative;
    z-index: 1;
}

/* Professional shadow system */
.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.shadow-md {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.shadow-lg {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.shadow-xl {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* Glow effect utility */
.glow-green {
    box-shadow: 0 0 20px rgba(123, 220, 181, 0.3),
                0 0 40px rgba(123, 220, 181, 0.2);
}

.glow-green-intense {
    box-shadow: 0 0 30px rgba(123, 220, 181, 0.5),
                0 0 60px rgba(123, 220, 181, 0.3);
}

