<link href="assets/css/style.css" rel="stylesheet">

<***********signup form code*******>

body {
    background: #f5f8fa;
}

.card {
    border: none;
}

input:focus, textarea:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}


<***********>


body {
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    font-family: 'Segoe UI', sans-serif;
}

.card {
    background-color: #ffffff;
    border-radius: 1rem;
}

input, textarea {
    border-radius: 0.5rem !important;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.btn-primary:hover {
    background-color: #0056b3;
}

body {
    background: linear-gradient(to right, #f6f9fc, #e0ecf8);
    font-family: 'Segoe UI', sans-serif;
}

.card {
    background-color: #ffffff;
    border-radius: 1rem;
}

input, textarea {
    border-radius: 0.5rem !important;
    box-shadow: none !important;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}


<***********booking pages code***************>
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

h2 {
    color: #2d3436;
}

.service-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.card-title {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.price-box {
    font-size: 1.1rem;
}

.btn-primary {
    border-radius: 30px;
}


<********book-now code********>
  .booking-form {
    border-radius: 15px;
    padding: 20px;
    background: #ffffff;
}

.booking-form .btn-outline-primary {
    border-radius: 30px;
    font-weight: bold;
    min-width: 110px;
}

.booking-form .btn-dark {
    background-color: #2f2f2f;
    color: white;
    border-radius: 30px;
    opacity: 0.7;
}

<********signup spiner code********>

/* 🔄 Smooth Fade Loader */
#loader {
    transition: opacity 0.5s ease;
}

/* 🔁 Pulse Animation */
.pulse-circle {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


<*********navbar code******>

.navbar .nav-link {
    font-size: 15px;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ffc107 !important;
}

.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
}


<*********booking card code******>
.service-card {
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: scale(1.02);
}
.wishlist-btn, .cart-btn, .quick-view-btn {
  border-radius: 50%;
  width: 38px;
  height: 38px;
}

.service-card {
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.wishlist-btn, .cart-btn {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}
 

 