body {
    font-family: Arial, "Tahoma", sans-serif;
    color: #555;
}


/* Logo */

.logo {
    height: 75px;
    width: auto;
}


/* Hero */

.hero {
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        #ffffff,
        #eefaff
    );
}


.hero-logo {
    max-width: 420px;
}


/* Service */

.service-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}


.service-card:hover {
    transform: translateY(-5px);
}


.service-icon {
    font-size: 50px;
    margin-bottom: 15px;
}


/* CTA */

.cta {
    background: #009fc2;
    color: white;
}


/* Footer */

footer {
    background: #17233c;
    color: white;
}

/* =========================
   HERO
========================= */

.hero {
    padding: 90px 0;
    background: linear-gradient(
        135deg,
        #f5fcff 0%,
        #ffffff 60%,
        #fff5fa 100%
    );
}

.hero-subtitle {
    color: #009fc2;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.hero h1 {
    color: #222;
    margin-bottom: 5px;
}

.hero-title {
    color: #e9005b;
    font-weight: 700;
    font-size: 30px;
}

.hero-services {
    color: #666;
    font-size: 16px;
}

.hero-box {
    padding: 25px;
    background: rgba(255,255,255,0.8);
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.print-card {
    background: white;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.print-card:hover {
    transform: translateY(-5px);
}

.print-icon {
    font-size: 45px;
    margin-bottom: 10px;
}

.print-card h5 {
    margin-bottom: 5px;
    font-weight: 700;
}

.print-card p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

/* =========================
   SERVICES NEW
========================= */

.services-section {
    background: #ffffff;
}

.section-subtitle {
    color: #009fc2;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.service-card-new {
    height: 100%;
    padding: 35px 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-icon-new {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-card-new h4 {
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-new p {
    color: #777;
    min-height: 50px;
    margin-bottom: 20px;
}

/* =========================
   PRODUCT PAGE
========================= */

.product-image-box {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: linear-gradient(
        135deg,
        #eafbff,
        #fff1f7
    );

    border-radius: 25px;
    text-align: center;
}

.product-icon {
    font-size: 120px;
    margin-bottom: 20px;
}

.product-image-box h3 {
    font-weight: 700;
}

.price-box {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box strong {
    color: #e9005b;
    font-size: 22px;
}