    /* SECTION BACKGROUND */

    .colorful-section {
        background: linear-gradient(135deg, #ec7f2229, #ebedee);
        padding: 60px 0;
    }

    /* IMAGE STYLE */

    .colorful-img img {
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        transition: 0.4s ease;
    }

    .colorful-img img:hover {
        transform: scale(1.05);
    }

    /* CARD DESIGN */

    .colorful-card {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(12px);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* TITLE */

    .service-title {
        font-size: 38px;
        font-weight: 700;
        background: linear-gradient(90deg, #dc1964, #dc1964);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* TEXT */

    .service-text {
        font-size: 16px;
        color: #555;
    }

    /* LIST */

    .list-style1 ul li {
        padding: 8px 0;
        position: relative;
        padding-left: 25px;
        font-weight: 500;
    }

    .list-style1 ul li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #ffc107;
        font-weight: bold;
    }

    /* BUTTON */

    .enquire-btn {
        margin-top: -15px;
        float: right;
        padding: 12px 28px;
        border-radius: 50px;
        background: linear-gradient(45deg, #198754, #09af85);
        border: none;
        color: #fff;
        font-weight: 600;
        transition: 0.3s;
    }

    .enquire-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* DIVIDER */

    .title-divider2 {
        height: 4px;
        width: 60px;
        background: linear-gradient(90deg, #ff7a18, #32d2aa);
        margin: 15px 0;
        border-radius: 10px;
    }

    /* Base (reuse if already added) */

    .btn {
        position: relative;
        display: inline-block;
        padding: 12px 19px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.4s ease;
        z-index: 1;
    }

    .btn span {
        position: relative;
        z-index: 2;
    }

    /* GREEN BUTTON */

    .btn-green {
        background: linear-gradient(135deg, #28a745, #1e7e34);
        color: #fff;
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
    }

    /* Shine sweep effect */

    .btn-green::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: all 0.5s ease;
    }

    /* Hover animation */

    .btn-green:hover::before {
        left: 100%;
    }

    .btn-green:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.6);
    }

    /* Click effect */

    .btn-green:active {
        transform: scale(0.96);
    }

    .blur-overlay {
        position: relative;
        /* CRITICAL - enables ::after positioning */
    }

    .blur-overlay .blur-content {
        filter: blur(5px);
        pointer-events: none;
        user-select: none;
    }




.blur-overlay {
    position: relative;
    overflow: hidden;
}

.blur-overlay::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 60px;
    background: #dc1964;
    border-radius: 0px;
    z-index: 5;
}

.blur-overlay::after {
    content: "Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! | Coming Soon..! ";
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
    z-index: 10;
    font-family: 'Poppins', sans-serif;
    animation: marqueeMove 18s linear infinite;
}

@keyframes marqueeMove {
    0% {
        right: -100%;
    }
    100% {
        right: 100%;
    }
}