
/* General Styles */
html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff0f5;
    color: #333;
}
.wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh; /* Full viewport height */
        }
.content {
            flex: 1;
            padding: 20px;
        }

/* Navbar */


 .navbar-brand .logo {
    width: 240px; /* Adjust logo size */
    height: auto;
    filter: brightness(0) invert(1); /* Convert dark text to white */
}


.navbar {
    background-color: #ff69b4;
}

.navbar-brand img {
    width: 200px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    color: #ff1493 !important;
}

/* Hero Section Styling */
.hero {
    background: linear-gradient(to right, #ff66b2, #ff3385); /* Pink Gradient */
    color: white;
    padding: 80px 0;
}

.hero .btn {
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero .btn i {
    font-size: 1.3rem;
}

.hero .btn:hover {
    transform: scale(1.05);
}

/* Explore Services Section */
/* Explore Services Section */
.explore-container {
    margin-top: 20px;
    text-align: center; /* Center align everything */
}

.explore-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: inline-block;
}

/* Arrow Container */
.arrow-container {
    margin-top: 10px;
}

/* Bouncing Animation - Stops after 3 times */
.bounce {
    animation: bounce 1.5s ease-in-out 3; /* Runs 3 times and stops */
}

/* Keyframes for bounce effect */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}



/* Services */
.services {
    padding: 60px 0;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ff1493;
}

.services i {
    font-size: 50px;
    color: #ff69b4;
    margin-bottom: 15px;
}

/* Book services */
.accordion-button:not(.collapsed) {
    background-color: #ff69b4 !important; /* Pink color */
    color: white !important;
}

.accordion-button {
    transition: background-color 0.3s ease-in-out;
}

.booking-summary-mobile {
  position: fixed;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #28a745;
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 1000;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}



/* Footer */
footer {
    background-color: #ff69b4;
    color: white;
    padding: 15px 0;
    margin-top: auto;
}
