 .floating-whatsapp-btn {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background: #25D366;
            color: #fff;
            padding: 10px 16px;
            border-radius: 50px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: 0.2s;
        }

        .floating-whatsapp-btn:hover {
            transform: scale(1.1);
            text-decoration: none;
        }

        .floating-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #007bff;
            color: #fff;
            padding: 10px 16px;
            border-radius: 50px;
            font-size: 14px;
            z-index: 999;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            transition: 0.2s;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .fixed-form.hidden {
            display: none;
        }

        .hero-slider .slide {
            display: none;
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
        }

        .image-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            max-width: 600px;
            width: 90%;
            text-align: center;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            cursor: pointer;
            font-size: 24px;
        }

        .gallery .collage {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 15px;
        }

        .gallery .collage img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin: 5px;
        }

        .fixed-form {
            position: fixed;
            top: 80px;
            right: 20px;
            width: 420px;
            max-height: 80vh;
            background: #fff;
            padding: 20px;
            border-left: 4px solid #4B004B;
            overflow-y: auto;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            z-index: 9999;
            border-radius: 10px;
            transition: all 0.3s ease-in-out;
        }

        .form-header {
            position: sticky;
            top: 0;
            background: #fff;
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            z-index: 10;
        }

        .close-btn {
            background: red;
            color: #fff;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        @media (max-width: 992px) {
            .fixed-form {
                width: 350px;
                right: 15px;
                top: 70px;
            }
        }

        @media (max-width: 768px) {
            .fixed-form {
                width: 300px;
                right: 10px;
                top: 60px;
                padding: 15px;
            }
        }

        @media (max-width: 600px) {
            .fixed-form {
                width: 90%;
                right: 0;
                left: 0;
                margin: auto;
                top: 60px;
                border-radius: 8px;
            }
        }

        @media (max-width: 400px) {
            .fixed-form {
                width: 95%;
                padding: 12px;
                top: 55px;
            }

            .close-btn {
                padding: 4px 8px;
                font-size: 14px;
            }
        }

        .gallery {
            max-width: 1150px;
            margin: 0 auto;
            padding: 20px 30px;
            /* LEFT & RIGHT SPACE ADDED */
        }

        .collage {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            /* More spacing between items */
            padding: 50px;
            /* Outer space inside collage box */
        }

        .collage-item {
            padding: 5px;
            /* Small side spacing */
        }

        .collage img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border: 5px solid #4B004B;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .collage img:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .caption {
            margin-top: 8px;
            font-weight: 600;
            color: #4B004B;
            font-size: 1rem;
        }

        .collage-item {
            display: none;
        }

        .see-more-btn {
            background: #4B004B;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
        }

        .see-more-btn:hover {
            background: #720072;
            transform: scale(1.05);
        }


        /* Tablet screens */
        @media (max-width: 992px) {

            .contaner {
                flex-direction: column;
                /* Stack layout */
            }

            .item img,
            .item-flex-img-big,
            .item-flex-img {
                height: auto;
                /* Auto height for tablet */
            }
        }

        /* Mobile screens */
        @media (max-width: 600px) {

            .contaner {
                flex-direction: column;
                gap: 15px;
            }

            .item img {
                height: 220px;
                /* Smaller big image */
            }

            .item-flex-img-big {
                height: 160px;
                /* Adjust big on mobile */
            }

            .item-flex-img {
                height: 120px;
                /* Adjust small on mobile */
            }
        }


        .imgs {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .contaner {
            display: flex;
            gap: 10px;
        }

        .contaner .item {
            flex: 1;
        }

        .contaner .item-flex {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .item-flex-img {
            height: 120px;
            border-radius: 6px;
        }

        .item-flex-img-big {
            height: 200px;
            border-radius: 6px;
        }

        .item img {
            height: 330px;
            border-radius: 6px;
        }
        /* Container & Buttons */
        .container .row button {
            width: 100%;
            padding: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 12px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        /* Button Colors */
        .btn-success-alt {
            background-color: #e6f4ea;
            color: #2f855a;
            border-color: #2f855a;
        }

        .btn-success-alt:hover {
            background-color: #2f855a;
            color: #fff;
        }

        .btn-primary-alt {
            background-color: #e6f0fa;
            color: #193153;
            border-color: #193153;
        }

        .btn-primary-alt:hover {
            background-color: #193153;
            color: #fff;
        }

        .btn-warning-alt {
            background-color: #fff4e6;
            color: #dd6b20;
            border-color: #dd6b20;
        }

        .btn-warning-alt:hover {
            background-color: #dd6b20;
            color: #fff;
        }

        /* Modal Overlay */
        .modal-alt {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-alt.active-alt {
            display: flex;
        }

        /* Modal Dialog */
        .modal-dialog-alt {
            background: #fff;
            border-radius: 12px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
        }

        /* Modal Header */
        .modal-header-alt {
            font-size: 1.5rem;
            font-weight: 700;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #eee;
        }

        /* Modal Body */
        .modal-body-alt {
            padding: 1rem 1.5rem;
            font-size: 1rem;
            color: #555;
        }

        /* Modal Footer */
        .modal-footer-alt {
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: flex-end;
            gap: 0.5rem;
            border-top: 1px solid #eee;
        }

        /* Close Button */
        .btn-close-alt {
            position: absolute;
            top: 0.5rem;
            right: 0.75rem;
            font-size: 1.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #555;
            transition: color 0.2s;
        }

        .btn-close-alt:hover {
            color: #000;
        }

        /* Modal Buttons */
        .btn-secondary-alt {
            background: #e2e8f0;
            color: #1a202c;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
        }

        .btn-secondary-alt:hover {
            background: #cbd5e1;
        }

        .btn-primary-alt-action {
            background: #193153;
            color: #fff;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            cursor: pointer;
        }

        .btn-primary-alt-action:hover {
            background: #193153;
        }