.elementor-39 .elementor-element.elementor-element-88f90fc{--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;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-61ca10b */.kapri-footer {
            position: relative;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            padding: 80px 5% 40px;
            overflow: hidden;
        }

        /* Animated Background */
        .footer-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
        }

        /* Tech grid lines */
        .tech-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(220, 38, 38, 0.03) 1px, transparent 1px);
            background-size: 80px 80px;
            animation: linesScroll 30s linear infinite;
        }

        @keyframes linesScroll {
            from {
                transform: translate(0, 0);
            }
            to {
                transform: translate(80px, 80px);
            }
        }

        /* Glowing orbs */
        .glow-orb-footer {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
            filter: blur(60px);
            animation: orbFloatFooter 12s infinite ease-in-out;
        }

        .glow-orb-footer:nth-child(2) {
            width: 350px;
            height: 350px;
            top: -100px;
            left: 10%;
        }

        .glow-orb-footer:nth-child(3) {
            width: 300px;
            height: 300px;
            bottom: -80px;
            right: 15%;
            animation-delay: 6s;
        }

        @keyframes orbFloatFooter {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(40px, -40px) scale(1.2);
            }
        }

        /* Floating particles */
        .particle-footer {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #dc2626;
            border-radius: 50%;
            box-shadow: 0 0 8px #dc2626;
            animation: particleRiseFooter 15s infinite ease-in-out;
        }

        .particle-footer:nth-child(4) { bottom: 0; left: 10%; animation-delay: 0s; }
        .particle-footer:nth-child(5) { bottom: 0; left: 30%; animation-delay: 3s; }
        .particle-footer:nth-child(6) { bottom: 0; left: 50%; animation-delay: 6s; }
        .particle-footer:nth-child(7) { bottom: 0; left: 70%; animation-delay: 9s; }
        .particle-footer:nth-child(8) { bottom: 0; left: 90%; animation-delay: 12s; }

        @keyframes particleRiseFooter {
            0% {
                transform: translateY(0) scale(0);
                opacity: 0;
            }
            25% {
                opacity: 1;
                transform: translateY(-200px) scale(1);
            }
            100% {
                transform: translateY(-500px) scale(1.5);
                opacity: 0;
            }
        }

        /* Diagonal lines */
        .diagonal-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
            animation: diagonalMove 8s infinite ease-in-out;
        }

        .diagonal-line:nth-child(9) {
            width: 400px;
            top: 20%;
            left: -200px;
            animation-delay: 0s;
        }

        .diagonal-line:nth-child(10) {
            width: 350px;
            top: 60%;
            right: -175px;
            animation-delay: 4s;
        }

        @keyframes diagonalMove {
            0%, 100% {
                transform: translateX(0);
                opacity: 0;
            }
            50% {
                transform: translateX(300px);
                opacity: 1;
            }
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* Footer Content Grid */
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        /* Column animations */
        .footer-column {
            animation: columnFadeIn 0.8s ease-out both;
        }

        .footer-column:nth-child(1) { animation-delay: 0.1s; }
        .footer-column:nth-child(2) { animation-delay: 0.2s; }
        .footer-column:nth-child(3) { animation-delay: 0.3s; }
        .footer-column:nth-child(4) { animation-delay: 0.4s; }

        @keyframes columnFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Logo Section */
        .footer-logo-section {
            position: relative;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
            animation: logoGlow 3s infinite;
        }

        @keyframes logoGlow {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
            }
            50% {
                box-shadow: 0 10px 50px rgba(220, 38, 38, 0.7);
            }
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-name {
            font-size: 32px;
            font-weight: 900;
            color: #ffffff;
            letter-spacing: 2px;
        }

        .logo-tagline {
            font-size: 13px;
            color: #cccccc;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .footer-description {
            font-size: 15px;
            line-height: 1.8;
            color: #aaaaaa;
            margin-bottom: 25px;
        }

        .footer-description strong {
            color: #dc2626;
            font-weight: 700;
        }

        /* Column Titles */
        .column-title {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }

        .column-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #dc2626, transparent);
            animation: underlineExpand 1s ease-out;
        }

        @keyframes underlineExpand {
            from {
                width: 0;
            }
            to {
                width: 40px;
            }
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding-left: 0;

        }

        .footer-link {
            position: relative;
            padding-left: 20px;
        }

        .footer-link::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #dc2626;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .footer-link a {
            font-size: 15px;
            color: #cccccc;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-link:hover::before {
            left: 5px;
            color: #ff4444;
        }

        .footer-link:hover a {
            color: #ffffff;
            transform: translateX(5px);
        }

        /* Contact Info Items */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(220, 38, 38, 0.05);
            border-radius: 10px;
            border-left: 3px solid #dc2626;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            background: rgba(220, 38, 38, 0.1);
            transform: translateX(5px);
            border-left-width: 5px;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .contact-info-item:hover .contact-icon {
            transform: scale(1.15) rotate(360deg);
        }

        .contact-details {
            flex: 1;
        }

        .contact-label {
            font-size: 12px;
            font-weight: 700;
            color: #dc2626;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .contact-text {
            font-size: 14px;
            color: #cccccc;
            line-height: 1.6;
        }

        .contact-text a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-text a:hover {
            color: #ffffff;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(220, 38, 38, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            animation: bottomFadeIn 1s ease-out 0.5s both;
        }

        @keyframes bottomFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .copyright {
            font-size: 14px;
            color: #888888;
        }

        .copyright a {
            color: #dc2626;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .copyright a:hover {
            color: #ff4444;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(220, 38, 38, 0.1);
            border: 2px solid rgba(220, 38, 38, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: #dc2626;
            transform: translate(-50%, -50%);
            transition: width 0.3s, height 0.3s;
            z-index: -1;
        }

        .social-link:hover::before {
            width: 100%;
            height: 100%;
        }

        .social-link:hover {
            border-color: #dc2626;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
        }

        /* Back to Top Button */
        .back-to-top {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #ffffff;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
            animation: buttonFloat 3s infinite ease-in-out;
        }

        @keyframes buttonFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .back-to-top:hover {
            transform: translateY(-15px) scale(1.1);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
            animation: none;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .kapri-footer {
                padding: 60px 5% 30px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .logo-name {
                font-size: 24px;
            }

            .column-title {
                font-size: 16px;
            }
        }/* End custom CSS */