@charset "UTF-8";
/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

 :root {
    --primary-color: #008fff;
    --secondary-color: #6120fa;
    --accent-color: #041127;
    --dark-color: #1f2937;
    --light-gray: #f8fafc;
    --text-gray: #64748b;
    --primary-color-opaque: rgba(0, 143, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Fira Code', monospace;
    line-height: 1.6;
    background: var(--light-gray);
    min-height: 100vh;

}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none !important;
    padding: 10px 20px!important;
    font-weight: 500!important;
    border-radius: 50px!important;
    transition: all 0.3s ease!important;
    box-shadow: 0 15px 40px rgba(5, 14, 43, 0.2)!important;
}

.btn-primary:hover {
    color: #6120fa;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(110, 48, 255, 0.4)!important;
    background: linear-gradient(135deg, var(--primary-color), var(--light-gray));
}

.animatefloat {
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-20px); }
}

/* Services Overview Section */


.section-title h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-weight: 300;
}

.service-item {
    margin-bottom: 3rem;
}

.service-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-item .block {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 30, 56, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-item .block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.6s;
}

.service-item:hover .block::before {
    left: 100%;
}

.service-item:hover .block {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.colored-box {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-item:nth-child(2) .colored-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-item:nth-child(3) .colored-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-item:nth-child(4) .colored-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-item:nth-child(5) .colored-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.colored-box::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-item:hover .colored-box {
    transform: rotate(10deg) scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-item:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-item .text-primary {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.service-item:hover .text-primary {
    transform: translateX(5px);
}

/* Why Choose Limach Section */
.banner {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    z-index: -1;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.services-grid {
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-card .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-card .service-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-card:hover .read-more::after {
    transform: translateX(5px);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

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

.service-card, .service-item .block {
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:nth-child(2), .service-item:nth-child(3) .block {
    animation-delay: 0.2s;
}

.service-card:nth-child(3), .service-item:nth-child(4) .block {
    animation-delay: 0.4s;
}

.service-item:nth-child(5) .block {
    animation-delay: 0.6s;
}

@media (max-width: 768px) {
    .hero-title, .main-title {
        font-size: 2.5rem;
    }

    .service-card, .service-item {
        margin-bottom: 2rem;
    }

    .banner, .isometric-tiles {
        padding: 80px 0 60px;
    }

    .services-overview {
        padding: 60px 0;
    }
}