    /* ===== GLOBAL COLOR THEME ===== */

    :root {
        --primary: #ff6b6b;
        --secondary: #4ecdc4;
        --accent: #ffd93d;
        --purple: #6c5ce7;
        --pink: #f368e0;
        --bg-light: #f9f9ff;
    }

    /* ===== BREADCUMB ===== */

    .breadcumb-wrapper {
        background: linear-gradient(135deg, #ff6b6b, #6c5ce7);
        color: #fff;
    }

    .breadcumb-title {
        font-size: 42px;
        font-weight: 700;
        color: #264047;
    }

    .breadcumb-text {
        font-size: 18px;
        opacity: 0.9;
    }

    /* ===== SECTION BACKGROUND ===== */

    .space,
    .space-extra-bottom {
        background: linear-gradient(to bottom, #f9f9ff, #ffffff);
    }

    /* ===== HEADINGS ===== */

    .sec-title,
    h2 {
        color: #dc1964;
        font-weight: 700;
    }

    .title-divider1 {
        width: 60px;
        height: 4px;
        background: linear-gradient(to right, #ff6b6b, #ffd93d);
        margin: 10px 0 10px;
        border-radius: 5px;
    }

    /* ===== IMAGE BOX ===== */

    .img-box2 img,
    .img-box7 img {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* ===== BUTTON ===== */

    .btn-success {
        background: linear-gradient(45deg, #198754, #19da81);
        border: none;
        color: #fff;
        font-weight: 600;
        border-radius: 30px;
        padding: 10px 25px;
        transition: 0.3s;
    }

    .btn-success:hover {
        background: linear-gradient(45deg, #6c5ce7, #4ecdc4);
    }

    /* ===== SERVICE CARDS ===== */

    .service-style2 {
        background: #fff;
        border-radius: 20px;
        padding: 30px 20px;
        margin-bottom: 25px;
        transition: 0.4s;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }

    /* colorful top border */

    .service-style2::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 5px;
        width: 100%;
        background: linear-gradient(90deg, #dc3545, #ffd600, #0dcaf0);
    }

    .service-style2:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    /* ICON BG */

    .service-icon {
        background: linear-gradient(135deg, #4ecdc4, #6c5ce7);
        padding: 15px;
        border-radius: 50%;
        display: inline-block;
        margin-bottom: 15px;
    }

    /* ===== LIST STYLE ===== */

    .list-styled li {
        margin-bottom: 12px;
        padding-left: 24px;
        position: relative;
    }

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

    /* ===== HOVER IMAGE EFFECT ===== */

    .mega-hover img {
        transition: transform 0.4s ease;

    }

    .mega-hover:hover img {
        transform: scale(1.08);
    }

    /* ===== SECTION SPACING ENHANCEMENT ===== */

    h2.pt-3 {
        margin-top: 0px;
    }

    /* ===== BACKGROUND COLOR BLOCKS ===== */

    section.space:nth-child(even) {
        background: #f1f3ff;
    }

    /* 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: 30px;
        font-weight: 700;
        line-height: 39px;
        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);
    }

    .topspace {
        margin-top: 80px;
    }