body {
    font-family: 'Poppins', sans-serif;
    background: #f6f7fb;
    color: #222;
}

/* ================= HERO ================= */
.service-hero {
    min-height: 75vh;
    background: linear-gradient(135deg, #4b1fd6, #2575fc);
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 8s infinite alternate;
}

.glow-left {
    background: #ffffff;
    top: 10%;
    left: 8%;
}

.glow-right {
    background: #ffd166;
    bottom: 12%;
    right: 10%;
}

.service-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
}

.service-text {
    max-width: 620px;
    margin: 22px 0 35px;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* ================= CONTENT ================= */
.service-content {
    padding: 100px 20px;
}

.service-card {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 28px;
    padding: 60px;
    box-shadow: 0 40px 90px rgba(0,0,0,0.15);
    animation: fadeUp 1s ease forwards;
}

/* ICON HEADER */
.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b1fd6, #2575fc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 15px 40px rgba(75,31,214,0.4);
}

/* IMAGE */
.service-image {
    border-radius: 24px;
    overflow: hidden;
    margin: 40px 0;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-image:hover img {
    transform: scale(1.08);
}

/* FEATURES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: #f6f7fb;
    padding: 28px;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

.feature-box i {
    font-size: 30px;
    color: #4b1fd6;
    margin-bottom: 12px;
}

.feature-box h5 {
    font-weight: 600;
}

/* CTA */
.service-cta {
    margin-top: 60px;
    text-align: center;
}

.service-cta a {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
}

/* ================= ANIMATIONS ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-40px); }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .service-title {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 35px;
    }

    .service-image img {
        height: 220px;
    }
}

/* CENTER HERO CONTENT */
.hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    animation: fadeUp 1.1s ease forwards;
}

/* CENTER BUTTON */
.service-hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/* ==========================
   MODERN SERVICE INTRO
========================== */
.service-intro {
    padding: 90px 20px;
    background: #f6f8fc;
}

.intro-card {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    animation: fadeUp 1s ease forwards;
}

/* Badge */
.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(75,31,214,0.12);
    color: #4b1fd6;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 18px;
    font-weight: 500;
}

/* Title */
.intro-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.intro-content h2 span {
    color: #2575fc;
}

/* Text */
.intro-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 22px;
}

/* Bullet Points */
.intro-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.intro-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #333;
}

.intro-points i {
    color: #4b1fd6;
}

/* Image */
.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================
   RESPONSIVE
========================== */
@media (max-width: 768px) {
    .intro-card {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }

    .intro-points li {
        justify-content: center;
    }
}




/* =================================
   375px MOBILE PERFECT FIX
================================= */
@media (max-width:576px){

/* HERO */
.service-hero{
    min-height: auto;
    padding:70px 15px 40px;
    text-align:center;
}

.hero-inner{
    padding:0 5px;
}

/* BADGE */
.service-badge{
    font-size:12px;
    padding:6px 14px;
}

/* TITLE */
.service-title{
    font-size:28px;
    line-height:34px;
    font-weight:800;
}

/* TEXT */
.service-text{
    font-size:14px;
    line-height:22px;
    margin:15px auto 20px;
    padding:0 5px;
}

/* INTRO SECTION */
.service-intro{
    padding:40px 14px;
}

/* CARD */
.intro-card{
    grid-template-columns:1fr;
    padding:25px 18px;
    gap:25px;
    border-radius:18px;
    text-align:center;
}

/* TITLE */
.intro-content h2{
    font-size:22px;
    line-height:30px;
}

/* PARA */
.intro-content p{
    font-size:14px;
    line-height:22px;
}

/* POINTS CENTER */
.intro-points li{
    justify-content:center;
    font-size:14px;
}

/* IMAGE */
.intro-image img{
    height:auto;
    max-height:260px;
    border-radius:16px;
}

/* CARD SHADOW REDUCE */
.service-card{
    padding:25px 18px;
    border-radius:18px;
}

/* FEATURE GRID */
.feature-grid{
    grid-template-columns:1fr;
    gap:18px;
}

/* FEATURE BOX */
.feature-box{
    padding:20px;
}

}
