*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#ffff;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
}

.card{
    width:360px;
    background:#0f0f0f;
    color:#fff;
    border-radius:25px;
    padding:20px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

/* Decorative shapes */
.shape{
    position:absolute;
    border-radius:50%;
}
.shape.blue{
    width:200px;
    height:200px;
    background:#153345;
    top:-80px;
    left:-80px;
}
.shape.orange{
    width:180px;
    height:180px;
    background:#ff5722;
    top: 60%;
    right:-95px;
}

/* Logo */
.logo{
    text-align:center;
    margin-top:10px;
}
.logo img{
    width: 40%;
    background:#fff;
    padding:4px;
    border-radius:40%;
}

/* Headings */
h2{
    text-align:center;
    margin-top:10px;
    color:#0aa6b5;
}
.tagline{
    text-align:center;
    font-size:14px;
    color:#ccc;
}

/* Sections */
.section{
    margin-top:18px;
}
.section h3{
    font-size:15px;
    margin-bottom:6px;
    color:#ff5722;
}
.section p{
    font-size:14px;
    line-height:1.5;
    color:#e0e0e0;
}

/* Services */
.services{
    list-style:none;
    columns:2;
}
.services li{
    font-size:13px;
    margin-bottom:5px;
}

/* Links */
a{
    color:#0aa6b5;
    text-decoration:none;
}

/* Buttons */
.buttons{
    display:flex;
    gap:10px;
    margin-top:20px;
}
.btn{
    flex:1;
    padding:10px;
    border-radius:30px;
    text-align:center;
    color:#fff;
    font-size:14px;
}
.call{
    background:#153345;
}
.whatsapp{
    background:#25d366;
}
.website{
    background:#3f51b5;
}

/* =========================
   DESKTOP / LAPTOP VIEW
   ========================= */
@media (min-width: 992px) {

    body{
        background:#0f0f0f;
        display:block;
    }

    .card{
        width:100%;
        min-height:100vh;
        border-radius:0;
        box-shadow:none;
        padding:60px 310px;
    }

    /* Center content properly */
    .logo img{
        width:120px;
    }

    h2{
        font-size:36px;
        text-align:center;
    }

    .tagline{
        font-size:18px;
        text-align:center;
    }

    .section{
        max-width:900px;
    }

    .section h3{
        font-size:18px;
    }

    .section p,
    .services li{
        font-size:16px;
    }

        .services li{
        position:relative;
        padding-left:22px;
        margin-bottom:8px;
    }

    .services li::before{
        content:"✔";
        position:absolute;
        left:0;
        top:0;
        color:#0aa6b5;
        font-weight:bold;
    }

    /* Services grid */
    .services{
        columns:4;
    }

    /* Buttons */
    .buttons{
        max-width:500px;
        margin-left: 23%;
    }

    .btn{
        font-size:16px;
        padding:14px;
    }

    /* Decorative shapes adjustment */
    .shape.blue{
        width:350px;
        height:350px;
        top:-120px;
        left:-120px;
    }

    .shape.orange{
        width:300px;
        height:300px;
        top:-100px;
        right:-100px;
    }
}
        .services li{
        position:relative;
        padding-left:22px;
        margin-bottom:8px;
    }

    .services li::before{
        content:"✔";
        position:absolute;
        left:0;
        top:0;
        color:#0aa6b5;
        font-weight:bold;
    }