
        body {
            background-color: #f8f9fa;
            font-family: 'Poppins', sans-serif;
            color: #4b4bc2;
        }

        .header {
            background-color: #4b4bc2;
            color: #fff;
            padding: 15px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .page-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            text-align: center;
        }

        .search-bar {
            max-width: 600px;
            margin: 20px auto 40px;
        }

        .search-bar input {
            border-radius: 25px;
            padding: 12px 20px;
            border: 2px solid #ff6b81;
            font-size: 1rem;
            width: 100%;
            color: #ff6b81;
        }

        .search-bar input::placeholder {
            color: #ff6b81;
        }

        .filter-container {
            margin-bottom: 30px;
        }

        .filter-container .form-control {
            border-radius: 25px;
            border: 2px solid #4b4bc2;
            color: #4b4bc2;
        }

        .filter-container .btn {
            border-radius: 25px;
            background-color: #ff6b81;
            color: #fff;
            border: none;
        }

        .filter-container .btn:hover {
            background-color: #ff4757;
        }

        .item-card {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            margin-bottom: 25px;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            background: #fff;
        }

        .item-card:hover {
            transform: translateY(-10px);
           
        }

        .card-body {
            text-align: center;
        }

        .card-title {
            font-size: 1rem;
            font-weight: 600;
            color: #4b4bc2;
            margin-bottom: 10px;
        }

        .card-text {
            font-size: 1rem;
            color: #555;
        }

        .card-text strong {
            color: #333;
        }

        .dark-mode-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ff6b81;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: background-color 0.3s ease;
        }

        .dark-mode-toggle:hover {
            background-color: #ff4757;
        }

        body.dark-mode {
            background-color: #1a1a1a;
            color: #f8f9fa;
        }

        body.dark-mode .header {
            background-color: #333;
        }

        body.dark-mode .item-card {
            background-color: #2d2d2d;
            color: #f8f9fa;
        }

        body.dark-mode .card-title {
            color: #4b4bc2;
        }

        body.dark-mode .card-text {
            color: #ccc;
        }

        body.dark-mode .card-text strong {
            color: #f8f9fa;
        }

        body.dark-mode .search-bar input {
            background-color: #333;
            border-color: #ff6b81;
            color: #f8f9fa;
        }

        body.dark-mode .search-bar input::placeholder {
            color: #ff6b81;
        }

        /* List View Styles */
        .list-view .item-card {
            width: 100% !important;
            max-width: 100% !important;
            flex-direction: row !important;
            align-items: center;
            margin-bottom: 10px;
        }

        .list-view .item-card .card-img-top {
            width: 100px !important;
            height: 100px !important;
            margin-right: 20px;
        }

        .list-view .item-card .card-body {
            text-align: left !important;
        }


  /* Floating Icons Styling */
.floating-icons {
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Icon Containers */
.icon-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Default Styling for Icons */
.floating-icons a {
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: pulseEffect 2s infinite;
    transition: all 0.3s ease-in-out;
}

/* Hover Effects - Bounce & Glow */
.floating-icons a:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.6);
    animation: bounce 0.4s ease-in-out;
}

/* Individual Icon Colors */
.floating-icons .phone-icon {
    background-color: #007bff;
}

.floating-icons .whatsapp-icon {
    background-color: #25D366;
}

.floating-icons .location-icon {
    background-color: #ff5733;
}

.floating-icons .enquiry-icon {
    background-color: #ffc107;
    color: black;
}

/* Hover Effects for Labels */
.icon-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.icon-container:hover .icon-text {
    opacity: 1;
}

/* Pulse Effect */
@keyframes pulseEffect {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 15px 5px rgba(37, 211, 102, 0.3); }
    100% { box-shadow: 0 0 20px 10px rgba(37, 211, 102, 0); }
}

/* Bounce Animation */
@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(-5deg); }
    100% { transform: scale(1.2) rotate(5deg); }
}

/* Modal Animation */
.animated-modal .modal-content {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Modal Styling */
.animated-modal .modal-content {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUpFade 0.4s ease-out;
}

/* Smooth Slide-Up and Fade Animation */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Styling */
.input-style {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.input-style:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

/* Modern Submit Button */
.btn-gradient {
    background: linear-gradient(45deg, #28a745, #218838);
    color: white;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, #218838, #28a745);
    transform: scale(1.05);
}

/* Modal Open Button */
.modal-btn {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.modal-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}



/* Modal Styling */
.animated-modal .modal-content {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUpFade 0.4s ease-out;
}

/* Smooth Slide-Up and Fade Animation */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Container */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Modal Open Button */
.modal-btn {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.modal-btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

