
        .gr
        {
            background-color: #f7e2cd;
            border-radius: 20px;
            margin-top: 5px;
            height: 170px;
            align-content: center;
            
        }
        .gr:hover {
            
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            animation: bounce 0.5s ease forwards;
        }
        @keyframes bounce {
            0% { transform: translateY(0); }
            30% { transform: translateY(-20px); }
            50% { transform: translateY(0); }
            70% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        @media (max-width: 600px) {
        .h1 {
            font-size: 2rem !important; /* Change font size to 1rem on mobile */
        }
        .em
        {
            font-size: 0.8rem !important;
        }
        .freecall
        {
            width: 70% !important;
        }
        .caro
        {
            margin-top: -10px !important;
        }
        .mtt 
        {
            padding-top: 0px !important;
            font-size: 21px !important;
        }
        .mobView
        {
            width: 80% !important;
            top:50% !important;
        }
        .choosePad
        {
            padding-top: 440px !important;
        }
        .if 
        {
            width: 450px !important;
        }
        .whychoose
        {
            width: 90% !important;
        }
        .paint
        {
            font-size: 1.6rem !important;
        }
        
        

    }
    @media (min-width: 600px) and (max-width: 900px) {
        .mobView
        {
            width: 80% !important;
            top:35% !important;
        }
        .if 
        {
            width: 450px !important;
        }
        
    }
   
    .freecall{
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
            border-radius: 15px; /* Rounded corners */
            background: linear-gradient(to right, #dcfaf3, #78d1f5); /* Light gradient background */
            padding: 20px;
        }
         input[type="text"], input[type="tel"] {
            border: 2px solid #ccc; /* Default border */
            transition: all 0.3s ease; /* Smooth transition */
            box-shadow: none; /* No shadow by default */
        }

        /* Multi-color border and shadow on hover */
        input[type="text"]:hover, input[type="tel"]:hover {
            border-image: linear-gradient(45deg, #ff7e5f, #feb47b, #86e3ce, #d4fc79) 1; /* Multi-color border */
            box-shadow: 0 0 10px rgba(255, 126, 95, 0.7), 
                        0 0 20px rgba(254, 180, 123, 0.5), 
                        0 0 30px rgba(134, 227, 206, 0.4), 
                        0 0 40px rgba(212, 252, 121, 0.3); /* Multi-layered shadow */
        }
          .service-icon {
            font-size: 50px;
            color: #0099ff;
            margin-bottom: 20px;
        }

        .service-box {
            border: 1px solid #e5e5e5;
            padding: 30px;
            text-align: center;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

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

        h3 {
            margin-top: 15px;
        }

        p {
            color: #7a7a7a;
        }
        .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Ensure it appears above other content */
}


.modal-header {
    background-color: #00bfa5; /* Adjust as needed */
    color: white;
   
    padding: 2rem 1rem;
    position: relative;
}



.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.subtitle {
    font-size: 0.8rem;
    color: #f0f0f0;
}

.required {
    color: red;
}

.form-label {
    font-weight: bold;
}

.form-control {
    border: 1px solid #00bfa5;
}

.btn-primary {
    background-color: #00bfa5;
    border: none;
}

.btn-primary:hover {
    background-color: #009688;
}
.carousel {
        position: relative;
    }

    .mobView {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -30%);
        width: 80% !important;
        background-color: #00bfa5;
        border-radius: 30px;
        padding-top: 10px;
        z-index: 10;
    }

     .image-card {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth scaling and shadow transition */
            border-radius: 10px; /* Rounded corners */
        }
        .image-card:hover {
            transform: scale(1.1) rotate(1deg); /* Slightly larger scale and rotation on hover */
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* More pronounced shadow */
            z-index: 1;
        }
        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease; /* Smooth transition for overlay effect */
        }
        .image-card:hover img {
            opacity: 0.85; /* Darkens image slightly on hover */
        }
        /* Overlay effect */
        .image-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0); /* Transparent initially */
            transition: background 0.3s ease; /* Smooth transition for overlay */
        }
        .image-card:hover::before {
            background: rgba(0, 0, 0, 0.15); /* Subtle dark overlay on hover */
        }


