   * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: Arial, sans-serif; }
        .slider-container {
            width: 100%;
            height: 150vh;
            position: relative;
            overflow: hidden;
        }
        .slider {
            display: flex;
            width: 500%;
            transition: transform 0.5s ease-in-out;
        }
        .slider img {
            width: 100vw;
            height: 150%;
            object-fit: cover;
        }
        .buttons {
            position: absolute;
            top: 25%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        .btn {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 18px;
        }
        .dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        .dot {
            width: 10px;
            height: 10px;
            margin: 15px;
            background: white;
            border-radius: 50%;
            opacity: 0.5;
            cursor: pointer;
        }
        .active { opacity: 1; }
	 
		
	.google-reviews {
            padding: 60px 20px;
            text-align: center;
            background-color: #ffffff;
            margin-bottom: 30px;
        }
      .google-reviews h2 {
            color: #004ba8;
            margin-bottom: 20px;
        }
		.testimonials {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 20px;
        }
        .testimonials h2 {
            font-size: 2em;
            color: #1e3a8a;
            margin-bottom: 10px;
        }
        .testimonials p.subtitle {
            font-size: 1.2em;
            color: #555;
            margin-bottom: 40px;
        }
        .testimonial-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .testimonial-item {
            flex: 1 1 calc(20% - 20px); /* Four boxes per row */
            background-color: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: 10px;
            text-align: center;
            box-sizing: border-box;
        }
        .testimonial-item img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            margin-bottom: 15px;
        }
        .testimonial-item p {
            font-style: italic;
            color: #666;
        }
        .testimonial-item a {
            display: block;
            color: #0096c7;
            text-decoration: none;
            margin: 20px 0;
            margin: 20px 0;
        }
        .testimonial-item a:hover {
            text-decoration: underline;
        }
        .stars {
            color: #ffc107;
        }
        @media (max-width: 768px) {
            .testimonial-item {
                flex: 1 1 calc(50% - 20px); /* Two boxes per row on smaller screens */
            }
        }
        @media (max-width: 480px) {
            .testimonial-item {
                flex: 1 1 100%; /* One box per row on very small screens */
            }
        }
		.appointment-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        .appointment-section h3, .appointment-section h2 {
            color: #0b78b0;
        }
        .appointment-box {
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .appointment-box h4 {
            color: #0b78b0;
            margin-top: 20px;
        }
        .btn-primary {
            background-color: #0b78b0;
            border-color: #0b78b0;
        }
        .btn-primary:hover {
            background-color: #095c84;
            border-color: #095c84;
        }
        .map-container img {
            max-width: 100px;
            margin-bottom: 15px;
        }
        .form-label {
            font-weight: bold;
            color: #555;
        }
		 @keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .multicolor-button {
    background: linear-gradient(90deg, #f5c71a, #e67e22, #9b59b6, #3498db, #1abc9c);
    background-size: 300% 300%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    animation: gradientShift 3s infinite;
    transition: transform 0.3s ease-in-out;
  }

  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .multicolor-button:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
  }
  .banner-container {
    margin-bottom: -125px; /* Decreases the margin between the banner and the next section */
}



 * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: Arial, sans-serif; }
        .slider-container {
            width: 100%;
            height: 70vh;
            position: relative;
            overflow: hidden;
        }
        .slider {
            display: flex;
            width: 500%;
            transition: transform 0.5s ease-in-out;
        }
        .slider img {
            width: 100vw;
            height: 150%;
            object-fit: cover;
        }
        .buttons {
            position: absolute;
            top: 25%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        .btn {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 18px;
        }
        .dots {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }
        .dot {
            width: 10px;
            height: 10px;
            margin: 15px;
            background: white;
            border-radius: 50%;
            opacity: 0.5;
            cursor: pointer;
        }
        .active { opacity: 1; }
		
		
		
		
		
		 /* Button Styling */
        #openForm {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            background: linear-gradient(90deg, orange, black, green, indigo, violet);
            background-size: 300%;
            color: white;
            animation: gradient 3s infinite;
            z-index: 9999; /* Ensures it stays on top */
            position: relative; /* Avoids overlap issues */
            min-height: 48px; /* Recommended for touch targets */
            min-width: 150px; /* Provides ample space for touch */
        }

        /* Keyframe for Gradient Animation */
        @keyframes gradient {
            0% {
                background-position: 0%;
            }
            100% {
                background-position: 100%;
            }
        }
 
 
 
 
 
  .alert {
        border: none;
        background-color: #ff6666;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .alert .d-flex {
        justify-content: center;
        align-items: center;
    }

    #countdown {
        font-size: 1.2rem;
        font-weight: 500;
        color: #e3b02f;
    }

    /* Text Shadow on Headings */
    h2 {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    }

    /* Subtle Hover Effect for Alert Box */
    .alert:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
	