/* Moved custom styles from index.html for better performance and caching. */
body {
    font-family: Nunito, sans-serif;
    scroll-behavior: smooth;
    color: #77777b;
}

:root {
    --custom-blue: #b15c7b;
    --custom-blue-dark: #b15c7b;
    --custom-blue-light: #e6f0f5;
    --custom-text-gray: #b15c7b;
    --custom-heading-gray: #b15c7b;
}

.color-manzil {
    color: #b15c7b;
}

.hero-section {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 100vh;
    padding-top: 100px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(114, 63, 63, 0.5)), url("images/cover.jpg");
    background-blend-mode: darken;
    background-position: top 20% left 10%;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    transform-origin: center;
    z-index: 0;
}

.hero-section>.container {
    position: relative;
    z-index: 1;
}

.cta-button {
    transition: all 0.3s ease-in-out;
    background-color: var(--custom-blue);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(53, 49, 52, 0.4);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    background-color: white;
    border-radius: 1rem;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: var(--custom-blue);
}

.testimonial-card {
    background: #fff;
    border-left: 4px solid var(--custom-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--custom-heading-gray);
}

.header-title {
    color: var(--custom-blue);
}

.service-card h3,
.testimonial-card p:last-child,
.faq-arrow {
    color: var(--custom-blue);
}

.how-it-works-step {
    background-color: var(--custom-blue);
}

.how-it-works-line {
    background-color: #dbeafe;
}

.cta-section {
    background-color: var(--custom-blue);
}

.cta-section-button {
    background-color: white;
    color: var(--custom-blue);
}

.cta-section-button:hover {
    background-color: #f9fafb;
}

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}

details[open] summary .arrow-down {
    transform: rotate(180deg);
}

.arrow-down {
    transition: transform 0.3s ease-in-out;
}

.slider-container {
    position: relative;
    margin: auto;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fade 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -30px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(226, 116, 162, 0.6);
}

.dots-container {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    color: #b15c7b !important;
}

.swiper-pagination-bullet {
    background-color: #b15c7b !important;
}