 
  @media (max-width: 768px) {
  a.navbar-brand span {
    font-size: 16px; /* Adjust this value as needed */
  }
}

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  .form-group {
    margin-bottom: 15px;
  }

  label {
    display: block;
    margin-bottom: 5px;
    color: #555;
  }

  input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }

  .book-button {
    width: 100%;
    padding: 10px;
    background-color: #ff5a5f;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .book-button:hover {
    background-color: #e04a50;
    

  }
  
  
  /* General Card Styling */
.gallery-card {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px; /* Added margin between cards */
}

.gallery-card:hover {
    transform: translateY(-10px); /* Elevate card on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location {
    font-size: 14px;
    font-weight: 500;
}

.location i {
    margin-right: 5px;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe57;
}

/* View All Button */
.view-all-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.view-all-btn:hover {
    background: #0056b3;
}

/* Spacing between cards */
.row {
    margin: -10px; /* Compensate for column padding */
}

.col-sm-8, .col-sm-4, .col-sm-6, .col-md-6, .col-md-4 {
    padding: 10px; /* Add padding between columns */
}

/* Fix for odd number of cards */
.gallery_section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the cards */
}
  
  
  
   /* Center the install button */

  
 .install-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  background-color: #ff5a5f;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: block; /* Always visible */
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}


.filters-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }
        
        .filter-item {
            padding: 10px 20px;
            background: #f1f2f6;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            user-select: none;
        }
        
        .filter-item:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
        }
        
        .filter-item.active {
            background: #4a69bd;
            color: white;
            font-weight: 500;
        }
        
        .filter-item i {
            font-size: 14px;
        }
        
    
    /* Mobile-first approach for filter items */
@media (max-width: 768px) {
    .filters-row {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
    
    .filter-item {
        font-size: 20px;
        padding: 4px 12px;
        margin: 2px;
        border-radius: 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .filter-item i {
        font-size: 9px;
        margin-right: 2px;
    }
}

/* Optional: Additional optimization for very small screens */
@media (max-width: 480px) {
    .filter-item {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .filter-item i {
        font-size: 8px;
    }
}

    
 <style>
        .whatsapp-fab {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .whatsapp-fab:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0,0,0,0.4);
        }
        
        .whatsapp-fab i {
            color: white;
            font-size: 30px;
        }
        
        .typing-dots {
            position: absolute;
            bottom: 70px;
            right: 20px;
            background: white;
            padding: 10px 15px;
            border-radius: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            display: none;
        }
        
        .typing-dots span {
            animation: typing 1.4s infinite;
            font-size: 20px;
            margin: 0 1px;
        }
        
        .typing-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .typing-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }
        
        @keyframes typing {
            0%, 60%, 100% { opacity: 0.3; }
            30% { opacity: 1; }
        }
    