*{
    
    
    font-family: Arial, sans-serif;
    text-align: center;
    margin:0;
    padding:10px;
    
}
main{
    flex:1;
}
html,body{
    min-height:100%;
    margin:0;
    padding:0;
    display:flex;
    flex-direction: column;
}
.nav-item .nav-link{
    font-weight:bolder;
    color: #f9f9f9;
}

.container-fluid .navbar-brand{
   margin-left: 10px;
   color: #f9f9f9;
}
p{
    margin-left: 22px;
}

.logo{
    height:120px;
    width:120px;

}
.footer-logo{
    height:110px;
    width:120px;
}
.container-fluid {
    background: #007bff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 15px 50px;
    align-items: center;
    width:100vw;
}
h2 {
    color: #333;
    margin-bottom: 20px;
}

 /*Grid Layout for Services */
 .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.service {
    background: #f8f9fa; /* Light gray background */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
}

.service a {
    text-decoration: none;
    color: #333;
}

.service img {
    width: 100%;
    height: 180px; /* Ensures uniform image size */
    object-fit: cover; /* Crops image properly */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.service h4 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.service:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.service:hover img {
    transform: scale(1.1);
}


/* Responsive 
@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
 Responsive 
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
}

 Responsive Design 
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }
}*/

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    transition: 0.3s;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
/* Footer Styling */
footer {
    background: #007bff; /* Blue background */
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative; /* Change to fixed if you want it always at the bottom */
    bottom: 0;
    width: 100%;
    font-size: 16px;
    margin-top:auto;
}

/* Footer Links */
footer {
  background-color: #007bff;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 15px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffd700;
}


.service button{
    background: none;
    border:none;
    padding:0;
    display:flex;
    flex-direction: column;
    align-items: center;
}

.service h4{
    font-size: 15px;
}

ul{
    list-style-type:none;
}

#serviceTitle{
    color:#333;
}

.container{
    max-width: 600px;
    margin:auto;
}

.card{
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,2);
}
input,textarea{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius: 5px;
}

textarea{
    height: 100px;
}
button{
    font-size: 18px;
    padding:12px;
}
#confirmationMessage{
    font-weight: bold;
}

.testimonial-box {
    background: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #ff6600;
    width: 50%;
    margin: auto;
}


.auth-buttons {
    text-align: center;
    margin-top: 20px;
}

.auth-buttons .btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.auth-buttons a{
    visibility: visible !important;
    opacity:1 !important;
}


/*model styles*/
/* Modal styles */
.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 350px;
    border-radius: 10px;
    text-align: center;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.toggle-buttons button {
    width: 48%;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
}

form {
    display: flex;
    flex-direction: column;
}

input, button {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .service-container {
        flex-direction: column; /* Stack items in one column */
        align-items: flex-start;
         /* Center items */
    }
    

    .service {
        width: 90%; /* Make services take up more width */
    }
}



#contactwhatsapp{
    height:20px;
    width:20px;
}


#logoutBtn{
    background-color:#007bff;
   


}

#logoutBtn:hover{
    background-color:#377cca
}

.advertisement {
    max-width: 90%; /* Restricts width to 80% of the page */
    background-color: #E3F2FD; /* Light blue background */
    color: #0D47A1; /* Dark blue text */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out image and content */
    padding: 20px;
    text-align: left;
    margin: 10px auto; /* Centers the ad */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    flex-wrap: wrap; /* Ensures responsiveness */
    animation: fadeIn 1s ease-in-out;
}

.ad-image {
    max-width: 250px; /* Restrict image size */
    height: auto;
    border-radius: 5px;
    margin-right: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.ad-content {
    flex: 1; /* Allows text content to take available space */
    min-width: 250px;
}

.ad-content h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.ad-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.ad-button {
    background-color: #FFC107; /* Gold button */
    color: #0D47A1; /* Dark blue text */
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.3s, transform 0.2s;
}

.ad-button:hover {
    background-color: #FFA000; /* Darker gold on hover */
    transform: scale(1.05);
}

/* Fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Default for desktop */
.booking-form {
  width: 400px;
  padding: 30px;
}

/* Mobile and Tablet Screens */
@media (max-width: 768px) {
  .booking-form {
    width: 90%;
    padding: 20px;
  }

.booking-form input,
.booking-form select,
  .booking-form textarea,
  .booking-form button {
    font-size: 16px;
  }

  footer {
    padding: 20px 10px;
  }

  .footer-links {
    gap: 8px;
  }
}