/* General Body and Root Variables */
:root {
    --primary-color: #F45B5B; /* A vibrant reddish-pink */
    --secondary-color: #424242; /* Dark grey for accents */
    --text-color: #313131; /* Dark grey for text */
    --light-text-color: #525252; /* Lighter grey for subtext */
    --background-light: #F9ECE1; /* Light beige for sections */
    --white: #ffffff;
    --black: #000000;
    --roboto: 'Roboto', sans-serif;
    --playfair: 'Playfair Display', serif;
}

body {
    margin: 0;
    font-family: var(--roboto);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Helper Classes */
.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.fullSection {
    padding: 80px 0;
}

.c-row > .inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.c-column {
    flex: 1;
    min-width: 0; /* Prevents flex items from overflowing */
}


.text-center { text-align: center; }

/* Header Styles */
#main-header .inner { display: flex; justify-content: space-between; align-items: center; }
#main-header { background: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 15px 20px; position: sticky; top: 0; z-index: 1000; }
.main-logo a { text-decoration: none; color: var(--primary-color); font-family: var(--playfair); font-size: 28px; font-weight: bold; }
.header-menu ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 25px; }
.header-menu ul li a { text-decoration: none; color: var(--light-text-color); font-weight: 500; transition: color 0.3s; }
.header-menu ul li a:hover { color: var(--primary-color); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.btn-book-now a { background-color: var(--primary-color); color: var(--white); padding: 10px 25px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: background-color 0.3s; }
.btn-book-now a:hover { background-color: #d14a4a; }
.mobile-nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-color); }

/* Hero Banner Section */
#home-banner-section { padding: 0; position: relative; color: var(--white); text-align: left; }
#home-banner img { width: 100%; height: 70vh; object-fit: cover; display: block; filter: brightness(1.0); }
#banner-content-wrapper { position: absolute; top: 50%; right: 5%; transform: translateY(-50%); max-width: 550px; padding: 0 20px; }
#banner-content h2 { font-size: 45px; font-family: var(--playfair); line-height: 1.2; margin: 0 0 20px; text-shadow: 1px 1px 3px rgba(0,0,0,0.5); }
#banner-content h2 span { color: var(--primary-color); }
.countdown { margin-top: 20px; }
.counter { display: flex; gap: 10px; }
.counter__box { background: rgba(255, 255, 255, 0.9); color: var(--black); padding: 10px; border-radius: 10px; text-align: center; width: 70px; }
.counter__time { font-size: 28px; font-weight: 700; margin: 0; }
.counter__duration { font-size: 12px; text-transform: uppercase; margin: 0; }
#buttons-home { margin-top: 30px; display: flex; gap: 15px; }
.more-btn, .cliam-btn { padding: 12px 30px; border-radius: 5px; text-decoration: none; color: var(--white); font-weight: bold; transition: all 0.3s; }
.more-btn { background-color: var(--secondary-color); }
.cliam-btn { background-color: var(--primary-color); }
.more-btn:hover, .cliam-btn:hover { opacity: 0.9; transform: translateY(-2px); }

/* About Us & Services Section */
h1, h2, h3 { font-family: var(--playfair); }
h1 { font-size: 36px; color: var(--primary-color); margin-bottom: 10px; }
h2 { font-size: 28px; margin-bottom: 15px; }
.section-EV0ZNk8O13 .c-column img { border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); width: 100%; }
.bulletList-ZZrcujV7rjM ul { list-style: none; padding-left: 0; }
.bulletList-ZZrcujV7rjM li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.bulletList-ZZrcujV7rjM li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--primary-color); position: absolute; left: 0; }
.section-5ZxShiaE7p { background-color: var(--background-light); }
.servives-box { text-align: center; background: var(--white); border-radius: 8px; padding: 25px; box-shadow: 0 1px 5px rgba(0,0,0,0.1); margin: 0 10px; display: flex; flex-direction: column; height: 100%; transition: transform 0.3s, box-shadow 0.3s; }
.servives-box:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.servives-box img { width: 100%; border-radius: 5px; margin-bottom: 15px; }
.servives-box h2 { font-size: 22px; color: var(--primary-color); }
.servives-box p { flex-grow: 1; margin-bottom: 15px; }
.servives-box span { text-decoration: line-through; color: #888; margin-right: 10px; }
.servives-box h6 { font-size: 24px; font-weight: 600; margin: 5px 0 15px; }
.servives-box a { background-color: var(--primary-color); color: var(--white); padding: 10px 20px; border-radius: 5px; text-decoration: none; transition: background-color 0.3s; }

/* Form Section */
.section-lnKOqP9ecq { background-color: var(--background-light); }
#form-section .c-column { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
#form-section img { border-radius: 8px; width: 100%; }
.form-control { width: 100%; padding: 12px; margin-bottom: 15px; border-radius: 5px; border: 1px solid #ddd; box-sizing: border-box; }

/* Footer */
.section-iHYD6TP5JT8 { background-color: var(--black); color: var(--white); padding: 50px 20px; }
#footer-menu-links h3 { font-family: var(--playfair); font-size: 20px; margin-bottom: 15px; }
#footer-menu-links ul { list-style: none; padding: 0; }
#footer-menu-links li { margin-bottom: 8px; }
#footer-menu-links li a { color: #ccc; text-decoration: none; transition: color 0.3s; }
#footer-menu-links li a:hover { color: var(--primary-color); }
.section-vp-rWhzF0vH { background-color: #1a1a1a; color: #aaa; padding: 1px 2px; text-align: center; font-size: 14px; }
#footer-scial-links ul, #footer-btm-links ul { list-style: none; padding: 0; display: flex; justify-content: center; align-items: center; gap: 15px; flex-wrap: wrap; margin-top: 15px; }
#footer-scial-links a { color: var(--white); font-size: 20px; }

/* Responsive Styles */
@media (max-width: 992px) {
    .header-menu { display: none; }
    .mobile-nav-toggle { display: block; }
    .header-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .header-menu.active ul { flex-direction: column; text-align: center; }
    #banner-content-wrapper { max-width: 90%; left: 5%; right: 5%; }
    #banner-content h2 { font-size: 32px; }
}

@media (max-width: 767px) {
    .c-row > .inner { flex-direction: column; }
    #top-header .inner { flex-direction: column; gap: 10px; }
    #main-header .inner { justify-content: space-between; }
    .main-logo a { font-size: 24px; }
    .btn-book-now { display: none; } /* Hide book now button on small screens to simplify header */
    #banner-content-wrapper { text-align: center; }
    #banner-content h2 { font-size: 28px; }
    .counter { justify-content: center; }
    #buttons-home { justify-content: center; flex-direction: column; align-items: center; }
    .fullSection { padding: 30px 15px; }
    .servives-box { margin-bottom: 20px; }
    .section-iHYD6TP5JT8 .inner { text-align: center; }
    #footer-menu-links ul { justify-content: center; }
}

/* Services Page Specific Styles */

.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/our work.svg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.services-hero h1 {
    font-size: 48px;
    font-family: var(--playfair);
    margin-bottom: 15px;
    color: var(--white);
}

.services-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

#services-section .c-row .inner {
    justify-content: center;
}

#services-section .c-column {
    margin-bottom: 30px;
}
/* services-style.css */

.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/our work.svg') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 20px;
}

.services-hero h1 {
    font-size: 48px;
    font-family: var(--playfair);
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

#services-section .c-row .inner {
    justify-content: center;
}

#services-section .c-column {
    margin-bottom: 30px;
}

.service-category {
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.category-title {
    text-align: center;
    font-size: 32px;
    font-family: var(--playfair);
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.servives-box-list {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    height: 100%;
}

.servives-box-list p {
    margin: 0 0 10px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.servives-box-list p:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
/* ADD THIS TO YOUR style.css FILE */

.main-logo img {
    max-height: 50px; /* You can adjust this value */
    width: auto;
    vertical-align: middle; /* Helps with alignment */
}
/* Floating WhatsApp Button CSS */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    margin-top: 16px;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    .whatsapp-icon {
        margin-top: 13px;
    }
}