.bg-img {filter:blur(2px);}
.bg-img:before {background:radial-gradient(#4b17c3 1%, #00175a 40%); opacity:0.6;}

.visual-content {position:relative; width:100%; height:100%; }
.visual-content img {position:absolute; width:100%; top:50%; left:50%; transform:translate(-50%,-50%);}

.business-container {display:block;}
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    position: relative;
}

.services-grid {
    display: grid;
    gap: 60px;
}

.service-card {
    border-radius: 24px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 0.6fr 0.4fr;
    gap: 50px;
    align-items: center;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.1);
}

.service-content {
    z-index: 2;
    position: relative;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1c91d0 0%, #2be2ca 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
	color:#fff;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.1rem;
    color:  var(--point-color);
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-description {
    font-size: 1.1rem;
    color: rgba(203,203,203,1);
    line-height: 1.7;
    margin-bottom: 30px;
	font-weight:500;
}

.service-features {
    list-style: none;
}

.service-features li {
    font-size: 1rem;
    color: rgba(243, 243, 243, 1);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
	font-weight:600;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background:linear-gradient(135deg, #27cccc, #0f89a9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.service-visual {
    height: 350px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-content {
    text-align: center;
    z-index: 2;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-tag {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.3);
    color: #007bff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.geometric-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(0, 123, 255, 0.1) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(138, 43, 226, 0.1) 50%, transparent 51%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Partners Section */
.partners-section {
    margin-top: 30px;
}

.partners-title {
    font-size: 1.75rem;
    font-weight: 700;
	color:#fff;
	margin:3rem 0 1.5rem 0;
    text-transform: uppercase;
}

.partners-logos {
    display: grid;
	grid-template-columns:repeat(3, 1fr);
    gap: 1.5rem;
}

.partner-logo {
    background: transparent;
    transition: all 0.3s ease;
	border-radius:0.5rem;
	overflow:hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

/* Service Links Section */
.service-links {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
	margin-top:2rem;
}

.qr-code-section {
    display: flex;
    align-items: flex-start;
}

.qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
}

.qr-code img {
    width: 130px;
    height: 130px;
    border-radius: 4px;
    filter:invert(1);
    transition: opacity 0.3s ease;
}

.qr-code:hover img {
    opacity: 1;
}

.qr-label {
    font-size: 1.1rem;
    color: rgba(243, 243, 243, 1);
    font-weight: 600;
    text-align: center;
}

.website-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.website-icon {
	width:130px;
	height:130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.website-icon:hover {
    opacity: 1;
}

.website-icon i {
    font-size: 4rem;
    color: rgba(243, 243, 243, 1);
}

.website-btn {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    background: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(243, 243, 243, 1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .service-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }
    
    .service-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-visual {
        order: -1;
        height: 250px;
    }

    .service-links {
        gap: 15px;
        align-items: flex-start;
    }


    .services-section {
        padding: 80px 0;
    }
    
    .service-card {
        padding: 30px;
        gap: 20px;
    }
    
    .service-visual {
        height: 200px;
    }
    
    .visual-icon {
        font-size: 3rem;
    }
    
    .tech-tags {
        justify-content: center;
    }
    
    .partners-section {
        margin-top: 25px;
    }
    
    .partners-logos {
        gap: 8px;
		grid-template-columns:repeat(2,1fr);
    }

}