@media (max-width: 992px) {

    /* Adjust max-width for your breakpoint */
    .mobile-menu-area {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .logo img {
        margin-top: -25px;
        height: 85px;
        width: 121px;
        object-fit: contain;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

}

@media (max-width: 768px) {
    .logo img {
        margin-top: -25px;
        /* height: 85px; */
        width: 121px;
        object-fit: contain;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
}


.logo img {
    /* margin-top: -15px; */
    /* height: 85px; */
    width: 121px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}




.col-sm-9 {
    width: 75%;
    margin-top: 23px;
}

.footer-logo img {
    height: 172px;
    width: 329px;
    /* object-fit: contain; */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.slider-images img{
    height: 600px;
    /* width: ; */
}




 
/* book now styles */

         /* Default visibility: Hide the button on large screens */
		 .booknow {
			display: none;
		}
		
		/* Show on small screens (max-width: 767px) */
		@media (max-width: 767px) {
		   .booknow {
				display: block; 
				align-items: center;
			   
				font-size: 16px;
				cursor: pointer;
				position: fixed;
				margin-top: 2px;
				/* top: -5px; */
				/* bottom: 2px; */
				right: 1px;
				z-index: 999;
				/* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); Optional shadow */
				/* transition: background-color 0.3s ease; */
			}
		
			/* Change background color on hover */
			.show-share-btn.booknow:hover {
				/* background-color: #218838;  */
			}
		
			/* Icon styling */
			.show-share-btn.booknow i {
				/* margin-right: 10px; */
			}
		
			/* Tooltip hiding on small screens */
		   
		}



		/* social links icons style start */

		

/* WhatsApp Buttons */

/* Container for the fixed buttons */
.fixed-contact-buttons {
    position: fixed;
    right: 20px;
    top: 80%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Common styling for each button */
.contact-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hover effect with shadow */
.contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Specific button colors */
.whatsapp-button {
    background-color: #25D366;
}

.phone-button {
    background-color: #f1b834;
}

/* Media Query for Mobile Screens */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        right: 10px;
        gap: 10px;
    }
    .contact-button {
        width: 40px;
        height: 40px;
    }
}

/* Media Query for Extra Small Screens */


/* Pop-up Box Styles */
.popup {
    position: fixed;
    right: 93px;
    top: 45%;
    background-color: white;
    border: 2px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 250px;
    z-index: 100;
    opacity: 0;
    transform-origin: top left;
    transform: scale(0.5);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

/* Show popup with animations */
.popup.show {
    display: block;
    opacity: 1;
    transform: scale(1);
    animation: slideFromButton 0.4s ease-out forwards;
}

/* Slide and grow effect */
@keyframes slideFromButton {
    from {
        opacity: 0;
        transform: translate(-20px, -20px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

/* Close Button Styling */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-color: #f44336;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.close-button:hover {
    background-color: #d32f2f;
}

/* Pop-up content styling */
.popup h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.popup-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.popup-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}



/* soical icons  */

 /* Background and layout for the entire section */
 .backgrou {
    position: fixed;
    top: 50%;
    left: 0;
    /* transform: translateY(-50%); */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 10px 7px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 0px 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}
  
    /* Base styles for each icon link */
    .icon {
      width: 40px;  /* Reduced size of the icons */
      height: 40px; /* Make the icons smaller */
      display: block;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
  
    /* Container div around each image */
    .icon-container {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #fff;  /* Default white background */
      border: 2px solid #fff;  /* Light border around icons */
      border-radius: 10px;      /* Rounded corners for the containers */
      overflow: hidden;
      transition: background-color 0.3s ease;
    }
  
    
  
    /* Image styling inside the container */
    .icon-container img {
      /* width: 100%;   */
      height: 120%; /* Ensures aspect ratio is maintained */
      object-fit: contain; /* Keeps the image's aspect ratio intact */
    }
  
    /* Hover effect to enlarge icons and add interactive effect */
    .icon:hover .icon-container {
      transform: scale(1.2); /* Slightly larger icon on hover */
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      background-color: #fff; /* Optional: change the background color on hover */
    }
  
    /* Additional media queries for responsiveness */
    @media (max-width: 768px) {
      .icon {
        width: 35px;
        height: 35px;
      }
      .backgrou {
        gap: 8px;
      }
    }
  
    @media (max-width: 480px) {
      .icon {
        width: 30px;
        height: 30px;
      }
      .backgrou {
        gap: 6px;
      }
    }



	/* 
	modal box
	*/
	
        /* Modal Background */
.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: 9999;
}

/* Modal Content */
.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease-in-out;
}

/* Modal Header */
.modal-content img {
    /* max-width: 100px; */
    height: 100px;
    width: 186px;
    /* margin-bottom: 20px; */
}

.modal-content h3 {
    font-size: 1.8em;
    /* margin-bottom: 10px; */
    color: #d4af37;
}

.modal-content p {
    /* margin-bottom: 20px; */
    color: #777;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #888;
}

.close-btn:hover {
    color: #555;
}

/* Form Fields */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    /* margin-bottom: 10px; */
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 6px;
    font-size: 1em;
    border: 2px solid #d4af37;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}


#message{
    width: 100%;
    padding: 12px;
    font-size: 1em;
    border: 2px solid #d4af37;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.form-group input:hover,
.form-group select:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-color: #b28c27;
}

.form-group input[type="submit"] {
    background: linear-gradient(to right, #d4af37, #b28c27);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px;
    border-radius: 10px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.form-group input[type="submit"]:hover {
    background: #b28c27;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
    }

    .modal-content h3 {
        font-size: 1.5em;
    }

    .modal-content p {
        font-size: 0.9em;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
        font-size: 0.9em;
    }

    .form-group input[type="submit"] {
        font-size: 0.9em;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}







/* book now button */
.book-now-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #FFA07A, #d8b46a);
    color: white;
    border: none;
    border-radius: 41px 0 0 38px;
    padding: 41px 14px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Hover effect */
.book-now-btn:hover {
    background: linear-gradient(45deg, #d8b46a, #FFA07A);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-now-btn {
        right: 20px; /* Adjust right margin for smaller screens */
        top: 50%; /* Keep the button centered vertically */
        transform: translateY(-50%); /* Keep vertical centering */
        padding: 35px 12px; /* Adjust padding for better visibility */
        font-size: 1rem; /* Adjust font size for medium screens */
    }
}

@media (max-width: 480px) {
    .book-now-btn {
        right: 0px; /* Reduce the right margin even more on small screens */
        top: auto; /* Avoid pushing it vertically too high on very small screens */
        bottom: 390px; /* Position it near the bottom */
        padding: 30px 10px; /* Adjust padding to fit */
        font-size: 0.9rem; /* Slightly smaller font size */
    }
}



/* slider testimomal client */

.testimonials {
    font-family: 'Roboto', sans-serif;
        background: linear-gradient(120deg, #f3f4f7, #e2e8f0);
        color: #333;
       
    padding: 60px 20px;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
}
.testimonials h2 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: black;
}
#customers-testimonials .shadow-effect {
    background: linear-gradient(135deg, #6aafff, #3190e7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    animation: fadeInUp 0.8s ease-in-out;
}
#customers-testimonials .shadow-effect:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.shadow-effect img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid white;
}
#customers-testimonials .shadow-effect p {
    font-family: 'Roboto', sans-serif;
    color: black;
    font-size: 1.8rem;
    line-height: 1.7;
}
.testimonial-name {
    margin: 15px auto 0;
    font-size: 1.6rem;
    font-weight: 500;
    color: black;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 20px;
    display: inline-block;
}
.owl-dots {
    margin-top: 25px;
}
.owl-dots .owl-dot {
    display: inline-block;
    margin: 0 6px;
}
.owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}
.owl-dots .owl-dot.active span {
    background: linear-gradient(135deg, #3190e7, #6aafff);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(49, 144, 231, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}