:root {
    --primary-color: #0D1B2A;
    --secondary-color: #C49B66;
    --tertiary-color: #fff;
}

/* ============================================================ */
body {
    font-family: 'roboto slab', serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* ============================================================= */
.hero {
    position: relative;
}

.hero img {
    height: 100vh;
    /* Full screen look */
    object-fit: cover;
    filter: brightness(70%);
    /* Dark overlay effect */
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 27, 42, 0.6), rgba(0, 0, 0, 0.4));
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #C49B66;
    /* Secondary golden tone */
    text-transform: uppercase;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin: 15px 0;
    animation: fadeInUp 1.2s ease;
    font-family: 'great vibes', serif;
}

.btn-hero {
    padding: 12px 28px;
    background: #C49B66;
    color: #fff;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1.5s ease;
}

.btn-hero:hover {
    background: #a37c4b;
    color: #fff;
    transform: translateY(-3px);
}

/* Simple animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================== */
.head-title h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Great Vibes', serif;
}

.head-title span {
    color: var(--primary-color);
     font-family: "Roboto Slab", serif;
}

/* ===================================================== */

.about-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-images .main-img {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    z-index: 1;
    border: 5px solid var(--tertiary-color);
    border-radius: 0 50% 50% 0 / 50% 50% 0 0;
}

.about-images .overlay-img {
    position: absolute;
    bottom: -70px;
    right: -1px;
    border-radius: 0 0 50% 50% / 30% 70% 30% 10%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 250px;
    z-index: 2;
    transform: scale(0.9);
    border: 5px solid var(--tertiary-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .about-images .overlay-img {
        display: none;
    }
    .about-images .main-img {
        border-radius: 0 50% 50% 0 / 50% 50% 0 0;
    }
}
/* Animation */
.animate-img {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

.overlay-img.animate-img {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====================================== */
.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0D1B2A;
    /* Primary */
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.service-list li {
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.service-list li:hover {
    color: #C49B66;
    /* Secondary golden tone */
    transform: translateX(5px);
}

img.rounded.shadow {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* =================================================== */
.services {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../images/background/1.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.services img {
    border-radius: 10% 10% 30% 30% / 0 0 30% 30%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border: 5px solid var(--tertiary-color);
    transition: all 0.6s ease-in-out;
}

.services img:hover {
    transform: scale(.9);
    transition: all 0.6s ease-in-out;
    border-radius: 0 0 30% 30% / 50% 50% 0 0;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.services .card {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 0 0 10% 10% / 0 0 30% 30%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ======================================================= */
.why-choose-us .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.6s ease-in-out;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8)), url('../images/background/2.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    text-align: center;
}

/* ============================================ */
.why-choose-us .card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background-position: bottom;
    transition: all 0.6s ease-in-out;
}

.why-choose-us .title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-choose-us p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.why-choose-us .card i {
    font-size: 2.5rem;
    color: #cc2984;
    margin-bottom: 15px;
}

/* ====================================== */
.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #6c4ab6;
    /* primary color */
    box-shadow: none;
}

.faq-accordion .accordion-item {
    border: none;
}

.faq-accordion .accordion-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* =================================================== */
.btn-quote {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border: none;
    border-radius: 0 0 30% 30% / 0 0 15% 15%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-quote:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    color: #fff;
    border-radius: 0 0 30% 30% / 50% 50% 0 0;
}

.btn-quote:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-quotes {
    display: inline-block;
    /* padding: 12px 0px; */
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--secondary-color);
    border: none;
    border-radius: 0 0 30% 30% / 0 0 15% 15%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.6s ease-in-out;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-quotes:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    color: #fff;
    border-radius: 0 0 30% 30% / 50% 50% 0 0;
    transition: all 0.6s ease-in-out;
}

.btn-quotes:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ================================================ */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.contact-us .card {
    border-radius: 15px;
    background: #fff;
    padding: 25px;
}

.contact-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 250, 0.95));
    border-radius: 15px;
}

.contact-info h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

.map-container iframe {
    border-radius: 12px;
}

/* =============================================== */
.contact-us .contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(250, 250, 250, 0.8)), url('../images/background/1.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}
.contact-us .title{
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Great Vibes', serif;
}
/* ================================================ */
.list-group-item{
    border-radius: 20px;
    border-bottom: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--tertiary-color);
    padding: 10px;
}
.title{
    font-size: 5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Great Vibes', serif;
}

/* =================================== */
.call-now {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--secondary-color);
    border: none;
    border-radius: 0 0 30% 30% / 0 0 15% 15%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.call-now:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    color: #fff;
}