/* Minimal CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #ffffff; */

    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}



/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    animation: slideDown 1s ease-in-out; /* Animation for header */
    position: sticky; /* Keep header fixed while scrolling */
    top: 0;
    z-index: 1000;
}

/* Logo Section */
.logo {
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
}
.logo img {
    height: 50px;
    margin-right: 10px;
    animation: fadeIn 1s ease-in-out;
}
.logo-text {
    font-size: 24px;
    font-weight: bold;
    animation: popUp 1s ease-in-out;
    text-decoration: none;
}
.logo-subtext {
    color: #d4af37;
}
.tagline {
    font-size: 14px;
    color: #555;
}

/* Buttons Section */
.buttons {
    display: flex;
    gap: 10px;
    animation: fadeIn 1.2s ease-in-out;
}
.button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px; /* Rounded edges */
    transition: background-color 0.3s, transform 0.3s; /* Smooth hover effect */
}
.button:hover {
    background-color: #ffffff;
    transform: scale(1.1); /* Slight zoom on hover */
}
.chat-button {
    background-color: #d4af37;
    color: rgb(0, 0, 0);
    border: 1px solid #d4af37;
    animation: bounce 2s infinite; /* Bounce animation for attention */
}
.call-button {
    background-color: #d4af37;
    color: rgb(0, 0, 0);
    border: 1px solid #d4af37;
}

/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes popUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
    }

    .logo-text {
        font-size: 20px;
    }

    .tagline {
        font-size: 12px;
    }

    .buttons {
        flex-direction: column;
        gap: 5px;
    }

    .button {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .tagline {
        font-size: 10px;
    }

    .button {
        padding: 6px 10px;
        font-size: 10px;
    }
}

.navbar {
    /* background-color: black;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center; */


    display: flex;
    justify-content: space-around;
    background-color: #333;
    padding: 10px 0;
}
.navbar a {
    /* color: white;
    text-decoration: none;
    margin: 0 10px; */

    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: background 0.3s, color 0.3s;
}

.navbar a:hover {
    background-color: #d4af37;
    color: #fff;
    border-radius: 5px;
}
.navbar .city-selector {
    /* display: flex; */
    align-items: center;
}
.navbar .city-selector select {
    background-color: black;
    color: white;
    border: none;
    font-size: 14px;
}
.city-selector img {
    padding-top: 5pt;
    width: 20px; /* Adjust the size of the image */
    height: 20px; /* Keep the image square */
}


/* .hero {
    
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-size: cover;
    background-color: rgb(255, 255, 255);
    text-align: center;
    padding: 15rem 0;

} */
 
/* background-slider  */
.slider {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust the height of the slider */
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Active slide is fully visible */
.slide.active {
    opacity: 1;
}




/* .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
} */

/* #club-list {
    display: flex;
    gap: 1rem;

} */


/* .club-card {
    border: 1px solid #ccc;
    padding: 1rem;
    flex: 1;
} */


.section-title {
    text-align:center;
    padding: 20px;
    font-size: 32px;
    color: #fafafa;
}
.event-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: white;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}
.card:hover {
    transform: scale(1.05);
}
.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-content {
    padding: 15px;
}
.card-title {
    font-size: 24px;
    margin: 0;
    color: #040404;
}
.card-description {
    font-size: 14px;
    color: #555;
}
.card-button {
    background-color: #000000;
    color: white;
    padding: 5px;
    border:no;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s;
}
.card-button:hover {
    background-color: #b68e28;
}

/* Cities */

.indexCities {
    padding: 20px;
    background-color: rgb(0, 0, 0);
    border-bottom: 1px solid #555;
    animation: fadeIn 1s ease-in-out; /* Animation for smooth appearance */
    
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid layout */
    gap: 20px;
    padding: 20px;
    animation: slideUp 1s ease-in-out; /* Animation for grid appearance */
}

.city {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transform and shadow on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards; /* Fade-in with upward motion */
}

.city:nth-child(1) {
    animation-delay: 0.2s;
}
.city:nth-child(2) {
    animation-delay: 0.4s;
}
.city:nth-child(3) {
    animation-delay: 0.6s;
}
.city:nth-child(4) {
    animation-delay: 0.8s;
}

.city img {
    width: 60%;
    height: 60%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out; /* Smooth zoom effect on hover */
}

.city:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow effect */
}

.city:hover img {
    transform: scale(1.1); /* Image zooms slightly */
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    text-align: left;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth background and slide effect */
    transform: translateY(100%); /* Initially hidden below */
}

.city:hover .overlay {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(0); /* Slide up on hover */
}

.overlay h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    animation: fadeIn 0.5s ease-in-out; /* Smooth fade-in for text */
}

.overlay p {
    margin: 0;
    color: #d4af37;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: 1fr; /* Single column on tablets */
    }

    .overlay h2 {
        font-size: 1.2rem; /* Adjust font size for smaller screens */
    }

    .overlay p {
        font-size: 0.9rem; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 480px) {
    .cities-grid {
        padding: 10px; /* Adjust padding for mobile */
        gap: 10px;
    }

    .overlay {
        padding: 8px 15px; /* Adjust overlay padding */
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* parties */   

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    animation: fadeInBody 1s ease-in-out; /* Smooth fade-in effect for the body */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    animation: slideUp 1s ease-in-out; /* Slide-up animation for the container */
}

h1 {
    font-size: 24px;
    margin-bottom: 5px;
    animation: popIn 1s ease-in-out; /* Pop-in animation for the title */
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 20px;
    margin: 0 5px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s; /* Smooth hover and active effect */
    animation: fadeIn 1s ease-in-out;
}

.tab.active {
    background-color: #ffcc00;
    transform: scale(1.1); /* Slight zoom for active tab */
}

.tab:hover {
    background-color: #555;
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Content Section */
.WeeklyPartiescontent {
    background-color: #c0bcbc;
    padding: 20px;
    border-radius: 5px;
    animation: fadeIn 1.2s ease-in-out;
}

#party-details img {
    max-width: 10%;
    border-radius: 10px;
    margin-bottom: 15px;
    animation: fadeInImage 1s ease-in-out;
}

/* Buttons */
button {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s; /* Smooth hover effect */
    animation: popIn 1.2s ease-in-out;
}

button:hover {
    background-color: #e6b800;
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Animations */
@keyframes fadeInBody {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabs {
        flex-wrap: wrap; /* Stack tabs on smaller screens */
    }
    .tab {
        padding: 8px 15px;
        font-size: 14px;
    }
    h1 {
        font-size: 20px;
    }
    .content {
        padding: 15px;
    }
    button {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 18px;
    }
    .tab {
        padding: 6px 10px;
        font-size: 12px;
    }
    .content {
        padding: 10px;
    }
    button {
        padding: 6px 10px;
        font-size: 12px;
    }
}


/* upcomming events */

/* General Styles */
.upcoming-events {
    text-align: center;
    padding: 20px;
    color: #ffffff;
    background-color: white;
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 50%; /* Adjust for responsiveness */
    margin: 0 auto;
}

.events-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; /* Improves animation performance */
}

.event {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    padding: 20px;
    min-width: 200px; /* Ensure consistent card width */
    max-width: 80%; /* Adjust for smaller screens */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-shrink: 0; /* Prevent cards from shrinking */
}

.event img {
    width: 50px;
    margin-bottom: 10px;
}

.event h3 {
    font-size: 18px;
    color: #444;
}

.event .lounge-name {
    font-weight: bold;
    margin: 5px 0;
}

.event .date {
    color: #888;
}

.event .music-type {
    color: #555;
}

.book-btn {
    background-color: #c7a766;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

.book-btn:hover {
    background-color: #b6955b;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .event {
        min-width: 70%; /* Reduce card width for smaller screens */
    }

    .prev, .next {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .event {
        min-width: 90%; /* Make cards full-width on small screens */
    }

    .prev, .next {
        padding: 6px;
    }
}


/* Ratings */

/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
    color: #ffffff;
}

p {
    color: #666;
    text-align: center;
}

/* Container Styling */
.container {
    /* width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0; */

    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* VIP Services Section */
#vip-services {
    background-color: #f9f9f9;
    padding: 50px 0;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 22%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.service h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

/* Client Reviews Section */
#client-reviews {
    background-color: #fff;
    padding: 50px 15px; /* Added padding for smaller devices */
    animation: fadeIn 1s ease-in-out; /* Animation for the section */
}

.reviews {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.review {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 30%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Hover animation */
    animation: fadeInUp 0.8s ease-in-out; /* Animation for individual reviews */
}

.review:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.review h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.review .date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.review p {
    margin: 10px 0;
}

.view-all {
    display: block;
    text-align: center;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #d4af37;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    width: fit-content;
    animation: bounceIn 1s ease-in-out; /* Animation for the button */
}

.view-all:hover {
    background-color: #c0942d;
    transform: scale(1.05); /* Subtle hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .review {
        width: 45%; /* Adjust width for tablets */
    }
}

@media (max-width: 480px) {
    .review {
        width: 90%; /* Adjust width for mobile devices */
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Top Night Clubs In the World */

#client-reviews {
    text-align: center;
    padding: 50px 0;
}

.container {
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.review-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.review {
    flex: 0 0 300px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6c63ff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.stars {
    color: #ffcc00;
    font-size: 16px;
}

.rating {
    font-size: 14px;
    margin-top: 20px;
}

  




/* About us */

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.header {
    background: #000000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}
.header h1 {
    margin: 0;
}
.about-section {
    background: #fffefe;
    padding: 40px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-section h2 {
    color: #040404;
}
.about-section p {
    margin: 20px 0;
}
.team-section {
    padding: 40px 0;
}
.team-section h2 {
    text-align: center;
    color: #000000;
}
.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
}
.team-member img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}
.team-member h3 {
    margin: 10px 0;
    color: #000000;
}
.team-member p {
    color: #555;
} */

/* VIP services */

.vip-services {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
  }
  
  .vip-services h2 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 10px;
  }
  
  .vip-services p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .service-item {
    width: 200px;
    text-align: center;
  }
  
  .service-item img {
    width: 50px;
    margin-bottom: 15px;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 10px;
  }
  
  .service-item p {
    font-size: 1rem;
    color: #666;
  }
  

/* Footer */

.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    animation: fadeIn 1s ease-in-out; /* Animation for the footer */
}

.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    animation: fadeIn 1s ease-in-out; /* Animation for the footer */
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    animation: fadeIn 1s ease-in-out; /* Animation for the footer */
}

.footer {
    background-color: #3b3a3a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    animation: slideUp 1s ease-in-out; /* Animation for smoother entrance */
}

.footer .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px; /* Added gap for spacing */
}

.footer .column {
    flex: 1;
    margin: 10px;
    min-width: 200px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-in-out forwards; /* Animation for each column */
}

.footer .column:nth-child(1) {
    animation-delay: 0.2s;
}
.footer .column:nth-child(2) {
    animation-delay: 0.4s;
}
.footer .column:nth-child(3) {
    animation-delay: 0.6s;
}

.footer h3 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
}

.footer a:hover {
    text-decoration: underline;
    color: #d4af37;
    transform: scale(1.05); /* Subtle zoom effect */
}

.footer .contact-buttons {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
    gap: 10px; /* Spacing for buttons */
}

.footer .contact-buttons a {
    background-color: #d4af37;
    color: #000;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover effects */
}


.footer .contact-buttons a:hover {
    background-color: #fff;
    transform: scale(1.1); /* Slight zoom effect */
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap;
    gap: 10px; /* Spacing for icons */
}

.social-icons a {
    display: flex;
    align-items: center; /* Align icon and text */
    gap: 8px; /* Space between icon and text */
    text-decoration: none; /* Remove underline */
    color: rgb(255, 255, 255); /* Set text color */
    font-size: 16px; /* Adjust text size */
    margin-bottom: 5px; /* Space between social links */
}

.social-icons img {
    width: 20px; /* Adjust icon size */
    height: auto; /* Maintain aspect ratio */
}

.footer .social-icons a:hover {
    color: #fff;
    transform: rotate(15deg) scale(1.2); /* Fun rotation and zoom effect */
}

.footer .cities {
    margin-top: 20px;
}

.footer .cities a {
    margin: 0 10px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .cities a:hover {
    color: #d4af37;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Reduced gap for smaller screens */
    }
}

@media (max-width: 480px) {
    .footer .column {
        min-width: 100%; /* Full-width columns on mobile */
        text-align: center;
    }

    .footer .contact-buttons a {
        padding: 10px 15px; /* Adjust button size for mobile */
    }

    .footer .social-icons a {
        font-size: 1rem; /* Adjust icon size for mobile */
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Extra */

form input, form textarea, form select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form input:focus, form textarea:focus, form select:focus {
    border-color: #4caf50;
    outline: none;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.col {
    flex: 1;
    padding: 15px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }

    .row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    header h1 {
        font-size: 1.8rem;
    }
}

/* login */