.elementor-1163 .elementor-element.elementor-element-6e6105d{--display:flex;}/* Start custom CSS *//* ===== RESET ===== */
.services-section {
    position: relative;
    width: 100%;
    padding: 120px 0 80px;
    background: #0b0714;
    overflow: hidden;
}

/* ===== NEURAL BACKGROUND ===== */
.neural-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.node {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, #a88cff, #632aff, transparent);
    position: absolute;
    filter: blur(8px);
    opacity: 0.55;
    animation: float 6s infinite ease-in-out;
}

.n1 { top: 30%; left: 18%; animation-duration: 7s; }
.n2 { top: 55%; left: 45%; animation-duration: 10s; }
.n3 { top: 40%; left: 72%; animation-duration: 8s; }
.n4 { top: 70%; left: 30%; animation-duration: 11s; }

@keyframes float {
    0% { transform: translateY(0px); opacity: 0.5; }
    50% { transform: translateY(-20px); opacity: 0.8; }
    100% { transform: translateY(0px); opacity: 0.5; }
}

/* ===== CONNECTION LINES ===== */
.connections {
    width: 100%;
    height: 100%;
    position: absolute;
}

.connections line {
    stroke: rgba(138, 94, 255, 0.4);
    stroke-width: 2;
    stroke-linecap: round;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% { stroke-opacity: 0.2; }
    100% { stroke-opacity: 0.55; }
}

/* ===== CONTENT WRAPPER ===== */
.content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #cfc5ff;
    font-size: 1rem;
    margin-bottom: 50px;
}

.small-title {
    margin-top: 70px;
}

/* ===== GRID LAYOUTS ===== */
.services-grid, .package-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.services-grid.big {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services-grid.small {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.package-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== CARDS ===== */
.service-card, .package-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}

.service-card:hover, .package-card:hover {
    transform: translateY(-5px);
    background: rgba(138, 94, 255, 0.12);
    border-color: rgba(138, 94, 255, 0.35);
}

.service-card h3, .package-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card p, .package-card p {
    color: #d4caff;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== CUSTOM PACKAGE ===== */
.custom-package {
    margin-top: 60px;
    padding: 40px;
    background: rgba(138, 94, 255, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(138, 94, 255, 0.2);
}

.custom-package h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.custom-package p {
    color: #d9ceff;
    margin-bottom: 25px;
}

.custom-btn {
    display: inline-block;
    background: #8a5eff;
    padding: 14px 34px;
    color: white;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.custom-btn:hover {
    background: #a883ff;
    transform: scale(1.04);
}/* End custom CSS */