/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
    position: relative;
    z-index: 0;
}

/* Overlay for readability */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    z-index: -1;
}

/* Header styles */
header {
    background-color: #8B0000;
    color: white;
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.logo-container {
    flex: 0 0 auto;
    margin-right: 20px;
}

.logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
    border-radius: 10px;
}

.main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    animation: slideIn 1s ease-out;
}

.highlight {
    color: #FFD700;
    font-style: italic;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
    animation: underline 1s ease-out;
}

.sub-heading {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 10px;
    color: #f5f5f5;
    animation: fadeIn 2s ease-out;
}

/* Nav styles */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #B22222;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

nav ul {
    list-style: none;
    padding: 10px;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
    transition: transform 0.3s ease;
}

nav ul li:hover {
    transform: scale(1.1);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffcccc;
}

/* Main content */
main {
    padding: 40px;
}

section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.2);
}

/* Service list */
section#services ul {
    padding: 0;
    list-style: none;
}

section#services ul li {
    font-size: 18px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: color 0.3s, font-weight 0.3s;
}

section#services ul li:hover {
    color: #8B0000;
    font-weight: bold;
}

/* Contact section */
.contact-info {
    margin-top: 20px;
}

.contact-info p {
    font-size: 18px;
    margin: 10px 0;
}

.contact-info i {
    margin-right: 10px;
    color: #8B0000;
    font-size: 20px;
    vertical-align: middle;
}

/* Form styling */
form input, form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

form input:focus, form textarea:focus {
    border-color: #B22222;
    outline: none;
}

button {
    background: #8B0000;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #B22222;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #8B0000;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes underline {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    .logo {
        width: 140px;
    }

    form input, form textarea {
        width: 100%;
    }

    section {
        padding: 15px;
    }
}
details {
    background: rgba(255, 255, 255, 0.8);
    margin: 15px 0;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

details:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

summary {
    font-weight: bold;
    font-size: 18px;
    color: #8B0000;
    outline: none;
}

details p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
}
.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}
.hero-logo {
    width: 280px;
    max-width: 90%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #FFD700;
    color: #8B0000;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #ffcc00;
}

.book-now {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #B22222;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background 0.3s;
}

.book-now:hover {
    background: #8B0000;
}
.service-area {
    margin-top: 10px;
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}



