/* ================= GLOBAL ================= */
/* body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f9fc;
    color: #212529;
} */

/* ================= HERO ================= */
.hero h2 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    background: #0606066b;
    padding: 10px;
    border-radius: 5px;
}

/* ================= SECTION TITLE ================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
}

.section-title p {
    color: #6c757d;
    max-width: 650px;
    margin: auto;
}

/* ================= SERVICES ================= */
.card-custom {
    border-radius: 16px;
    transition: all 0.4s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #ffffff;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

/* Gradient Hover Background */
.card-custom::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s ease;
}

/* Hover Effects */
.card-custom:hover::before {
    height: 100%;
}

.card-custom:hover {
    color: #ffffff;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ================= ICON ================= */
.service-icon {
    font-size: 42px;
    margin-bottom: 18px;
    color: #0d6efd;
    transition: all 0.4s ease;
}

.card-custom:hover .service-icon {
    color: #ffffff;
    transform: scale(1.2) rotate(5deg);
}

/* ================= TITLE ================= */
.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
    transition: 0.3s;
}

.card-custom:hover .service-title {
    color: #ffffff;
}

/* ================= DESCRIPTION ================= */
.service-desc {
    font-size: 15px;
    color: #6c757d;
    margin-top: 10px;
    line-height: 1.7;
    transition: 0.3s;
}

.card-custom:hover .service-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* ================= PORTFOLIO ================= */
.portfolio img {
    width: 100%;
    border-radius: 14px;
    transition: all 0.4s ease;
}

.portfolio img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ================= PROCESS ================= */
.process-box {
    padding: 30px;
    border-radius: 14px;
    background: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.process-number {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    border-radius: 50%;
    line-height: 65px;
    margin: auto;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

/* ================= CTA ================= */
.cta {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    padding: 90px 0;
    text-align: center;
}

.cta h2 {
    font-weight: 800;
    margin-bottom: 15px;
}

.cta p {
    opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .card-custom {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 36px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 14px;
    }
}