.elementor-280 .elementor-element.elementor-element-e07fcd5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f5280c7 *//* General Styles */
body {
    font-family: 'Poppins', sans-serif; /* Updated font */
    font-size: 16px; /* Increased base font size */
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f5f5f5; /* Soft, neutral background */
}

/* Header */
header {
    background: #800020; /* Rich, deep brown */
    color: #ecf0f1; /* Soft white */
    padding: 30px;
    font-size: 24px; /* Increased header font size */
}

/* Image Slider */
.slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 350px; /* Slightly taller slider */
    justify-content: center;
    align-items: center;
    background-color: #f29e92; /* Muted teal */
}
.slide {
    width: 90%;
    max-width: 1000px;
    border-radius: 15px; /* Softer corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
}

/* Services */
#services {
    padding: 40px;
    background: #ffffff;
    color: #371608; /* Rich, deep brown text */
}
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Larger gap for better spacing */
}
.service-box {
    width: 260px;
    padding: 25px;
    background: #f8f9fa; /* Subtle off-white */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.service-box img {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    object-fit: cover; /* Ensures proper image scaling */
}

/* About Section */
#about {
    background: #9f2112; /* Elegant, royal red */
    padding: 40px;
    color: #ecf0f1; /* Soft white */
    font-size: 18px; /* Slightly larger font for readability */
}

/* Contact Section */
#contact {
    background: #800020; /* Rich, deep brown */
    color: #ecf0f1; /* Soft white */
    padding: 40px;
    font-size: 18px;
}
#pricing {
    background: #f4f4f4;
    padding: 30px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-box {
    width: 250px;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #519fa5, #371608, #9f2112);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-box:hover::before {
    opacity: 0.1;
}

.price-box h3 {
    color: #371608;
    font-size: 1.5rem;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
}

.price-box p {
    font-size: 1.1rem;
    color: #9f2112;
    z-index: 2;
    position: relative;
}

.price-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: #519fa5;
}

.price-box:nth-child(2):hover {
    border-color: #371608;
}

.price-box:nth-child(3):hover {
    border-color: #9f2112;
}


/* Buttons */
button.book-now {
    padding: 12px 25px;
    background: #f29e92; /* Muted teal */
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
button.book-now:hover {
    background: #519fa5; /* Rich, deep brown */
    transform: scale(1.05);
}

/* Gallery */
.gallery-container img {
    width: 30%;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: #9f2112; /* Elegant, royal red */
    color: #f0f0f0; /* Soft white text */
    padding: 20px;
    font-size: 16px;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');/* End custom CSS */