    .left-box {
        padding: 30px;
    }

    .left-box h3 {
        font-weight: 700;
        margin-bottom: 15px;
    }

    .left-box ul {
        list-style: none;
        padding: 0;
    }

    .left-box ul li {
        margin-bottom: 10px;
        font-weight: 500;
    }

    .form-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1a3d97;
    color: white;
    border-radius: 10px;
    padding: 40px 20px;
    min-height: 420px; /* better spacing */
}

.form-control {
    border-radius: 8px;
    height: 40px;
    padding-left: 5px;
}

.form-check-label {
    color: #ddd;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f5f7fb;
        }

        /* ===== HEADER STYLES ===== */
        .custom-header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* Logo */
        .navbar-brand img {
            height: 55px;
            transition: 0.3s;
        }

        /* Navigation Links */
        .navbar-nav .nav-link {
            font-weight: 600;
            font-size: 0.95rem;
            color: black;
            padding: 0.5rem 1rem;
            transition: 0.2s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: rgb(26, 61, 151);
        }

        /* Dropdown Styling */
        .dropdown-menu {
            border: none;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
            padding: 8px 0;
            margin-top: 8px;
            min-width: 240px;
            border: 1px solid rgb(26, 61, 151);
        }

        .dropdown-item {
            font-size: 0.85rem;
            font-weight: 500;
            padding: 8px 20px;
            color: rgb(49, 59, 83);
            transition: 0.2s;
        }

        .dropdown-item:hover {
            background: rgb(217, 228, 252);
            color: rgb(26, 61, 151);
            padding-left: 24px;
        }

        /* Mega Dropdown for Services (multiple columns) */
        .mega-dropdown {
            position: static;
        }

        .mega-dropdown .dropdown-menu {
            width: 100%;
            left: 0;
            right: 0;
            margin-top: 8px;
            padding: 20px 25px;
            min-width: 320px;
        }

        .mega-dropdown .dropdown-menu .row {
            margin: 0;
        }

        .mega-dropdown .dropdown-menu h6 {
            font-weight: 700;
            color: rgb(26, 61, 151);
            margin-bottom: 12px;
            font-size: 0.9rem;
            border-left: 3px solid rgb(26, 61, 151);
            padding-left: 10px;
        }

        .mega-dropdown .dropdown-menu .dropdown-item {
            padding: 6px 0 6px 12px;
            font-size: 0.8rem;
        }

        .mega-dropdown .dropdown-menu .dropdown-item:hover {
            padding-left: 18px;
        }

        /* Info Box (Phone Numbers) */
        .info-box {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgb(220, 230, 255);
            padding: 8px 18px;
            border-radius: 50px;
            transition: 0.2s;
        }

        .info-box:hover {
            background: rgb(188, 207, 253);
        }

        .info-box-icon {
            width: 36px;
            height: 36px;
            background: rgb(26, 71, 187);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-box-icon img {
            width: 20px;
            height: 20px;
            /* filter: brightness(0) invert(1); */
        }

        .info-box-content p {
            margin: 0;
            font-size: 0.8rem;
            font-weight: 600;
            color: rgb(26, 61, 151);
            line-height: 1.3;
        }

        .info-box-content small {
            font-size: 0.7rem;
            color: #64748b;
        }

        /* CTA Button */
        .btn-quote {
            background: rgb(21, 75, 212);
            color: #fff;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: 0.3s;
            border: none;
            white-space: nowrap;
        }

        .btn-quote:hover {
            background: rgba(26, 61, 151);
            transform: translateY(-2px);
            box-shadow: 0 6px 14px rgb(26, 61, 151,0.3);
            color: #fff;
        }

        /* ===== MEGA DROPDOWN STYLES ===== */
        /* Desktop: position relative to parent */
        @media (min-width: 992px) {
            .nav-item.dropdown.mega-dropdown {
                position: static;
            }

            .mega-dropdown .dropdown-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                width: 100%;
                margin-top: 0;
                border: none;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 20px 35px rgba(0,0,0,0.15);
                padding: 25px 30px;
                background: #fff;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.25s ease;
                display: block !important;
            }

            .mega-dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        /* Mobile: dropdown appears directly below the Services link, not at bottom */
        @media (max-width: 991px) {
            /* Remove static positioning on mobile */
            .nav-item.dropdown.mega-dropdown {
                position: relative;
            }
            
            .mega-dropdown .dropdown-menu {
                position: absolute !important;
                top: 100% !important;
                left: 0 !important;
                right: auto !important;
                width: 100% !important;
                min-width: 280px !important;
                max-width: 100% !important;
                transform: none !important;
                margin-top: 0 !important;
                border-radius: 8px !important;
                box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
                padding: 15px 20px !important;
                background: #fff !important;
                /* Ensure it shows/hides properly */
                display: none;
            }
            
            /* Show dropdown when toggled or when 'show' class is present */
            .mega-dropdown .dropdown-menu.show,
            .mega-dropdown.show .dropdown-menu {
                display: block !important;
            }
            
            /* Adjust inner columns for mobile */
            .mega-dropdown .dropdown-menu .row [class*="col-"] {
                margin-bottom: 15px;
            }
            
            .mega-dropdown .dropdown-menu h6 {
                margin-top: 5px;
                font-size: 0.85rem;
            }
            
            .dropdown-item {
                font-size: 0.8rem;
                padding: 6px 0 6px 10px;
            }
            
            /* Make dropdown toggle indicator */
            .dropdown-toggle::after {
                margin-left: 5px;
            }
        }

        /* Dropdown items styling (common) */
        .dropdown-menu h6 {
            font-weight: 700;
            color: rgb(26, 61, 151);
            margin-bottom: 12px;
            font-size: 0.9rem;
            border-left: 3px solid rgba(26, 61, 151, 0.7);
            padding-left: 12px;
        }

        .dropdown-item {
            font-size: 0.85rem;
            font-weight: 500;
            padding: 6px 0 6px 12px;
            color: rgb(44, 53, 75);
            transition: 0.2s;
        }

        .dropdown-item:hover {
            background: rgb(211, 223, 255);
            color: rgb(26, 61, 151,0.7);
            padding-left: 18px;
        }

        /* Info Box Styling */
        .info-box {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f8f9fa;
            padding: 5px 15px;
            border-radius: 40px;
            transition: 0.2s;
        }

        .info-box-icon {
            width: 32px;
            height: 32px;
            background: rgba(26, 61, 151, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-box-icon img {
            width: 18px;
            height: 18px;
            filter: brightness(0) invert(1);
        }

        .info-box-content p {
            margin: 0;
            font-size: 0.75rem;
            font-weight: 600;
            color: #1e293b;
            line-height: 1.3;
        }

        /* CTA Button */
        .btn-quote {
            background: rgba(26, 61, 151);
            color: #fff;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            transition: 0.3s;
            border: none;
            white-space: nowrap;
        }

        .btn-quote:hover {
            background: rgba(26, 61, 151, 0.9);
            transform: translateY(-1px);
            color: #fff;
        }

        /* Mobile adjustments */
        @media (max-width: 991px) {
            .navbar-collapse {
                padding: 15px 0;
                max-height: 70vh;
                overflow-y: auto;
            }
            
            .info-box, .btn-quote {
                margin: 8px 0;
                width: fit-content;
            }
            
            .navbar-nav {
                margin-top: 10px;
            }
        }

    .service-card {
        background: rgb(26, 61, 151);
        border-radius: 8px;
        text-align: center;
        height: 100%;
        transition: 0.3s;
        border: 1px solid #eee;
        overflow: hidden;
        /* IMPORTANT */
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* IMAGE FULL SIZE */
    .service-img {
        width: 100%;
        height: 200px;
        /* CARD IMAGE HEIGHT BADA */
        overflow: hidden;
    }

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* IMPORTANT CHANGE */
        display: block;
    }

    /* TITLE BELOW IMAGE */
    .service-title {
        font-size: 16px;
        font-weight: 700;
        padding: 12px 10px;
        color: rgb(26, 61, 151);
        text-transform: uppercase;
        background: #fff;
    }
    .btn{
    background-color: rgb(26, 61, 151);
    color: white;
    transform: scale(0.95);
    transition: all 0.3s ease; /* IMPORTANT */
}

.btn:hover{
    background-color: rgb(57, 89, 170);
    color: white;
    transform: scale(1);
}

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .service-img {
            height: 150px;
        }
    }

        /* IMAGE GRID - CARD STYLE */
    .img-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
        padding: 20px;
    }

    /* CARD CONTAINER */
    .img-box {
        display: block;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        cursor: pointer;
    }

    /* IMAGE CONTAINER - FIXED SIZE */
    .img-box .image-container {
        width: 100%;
        height: 270px; /* Fixed height for uniformity */
        overflow: hidden;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* IMAGE STYLING */
    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures all images cover the area uniformly */
        display: block;
        transition: transform 0.3s ease;
    }

    /* CARD TITLE */
    .img-box .card-title {
        padding: 15px;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        background: #fff;
        margin: 0;
        font-family: 'Montserrat', sans-serif;
        border-top: 1px solid #eee;
    }

    /* HOVER EFFECTS */
    .img-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .img-box:hover img {
        transform: scale(1.08);
    }

    /* REMOVE OVERLAY TEXT */
    .img-box::after {
        display: none;
    }

    /* RESPONSIVE ADJUSTMENTS */
    @media(max-width: 1200px) {
        .img-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .img-box .image-container {
            height: 220px;
        }
    }

    @media(max-width: 992px) {
        .img-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .img-box .image-container {
            height: 200px;
        }
    }

    @media(max-width: 768px) {
        .img-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 15px;
        }
        .img-box .image-container {
            height: 180px;
        }
        .img-box .card-title {
            font-size: 14px;
            padding: 12px;
        }
    }

    @media(max-width: 480px) {
        .img-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .img-box .image-container {
            height: 220px;
        }
    }

    /* LEFT CONTENT BOX STYLING */
    .left-box {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .left-box h3 {
        color: #1a1a1a;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'Montserrat', sans-serif;
    }

    .left-box p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .left-box ul {
        list-style: none;
        padding-left: 0;
    }

    .left-box ul li {
        padding: 8px 0;
        color: #555;
        font-size: 16px;
    }

    .consent-text {
        font-size: 12px;
        color: #999;
        margin-top: 15px;
    }

    /* FORM BOX STYLING */
    .form-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-box h4 {
        color: #fff;
    }

    .form-box .form-control {
        border-radius: 8px;
        border: none;
        padding: 12px 15px;
        font-size: 14px;
    }

    .form-box .form-control:focus {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
        outline: none;
    }

    .form-box .btn-light {
        background: #fff;
        color: #667eea;
        font-weight: 700;
        padding: 12px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .form-box .btn-light:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        background: #fff;
        color: #764ba2;
    }

    .form-box .form-check-label {
        color: #fff;
        font-size: 12px;
    }

    @media (max-width: 768px) {
        .left-box, .form-box {
            padding: 20px;
        }
        
        .left-box h3 {
            font-size: 22px;
        }
    }
