@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Chivo", sans-serif;

}

html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    overflow-y: scroll;
}


:root {
    --menu-text-color: #414141;
    --grey2-color: #171717;
    --dark-bg-color: #1e1e1e;
    --yellow-color: #E8BC04;
    /* --primary-color: #800020; */
    --primary-color: #930327;
    --light-grey-color: #E6E6E6;
    --white-color: #fff;

}

body {
    background-color: var(--dark-bg-color);
    color: var(--light-grey-color);
    font-family: "Chivo", sans-serif;
}






.btn-custom {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-custom:hover {
    background: var(--primary-color);
}





/* customized starts here */
.bw-header-top {
    height: 6px;
    background-color: var(--primary-color);
    width: 100%;
}

.navbar {
    border-bottom: 1px solid rgba(23, 23, 23, 0.3);
}

/* Remove the default Bootstrap SVG icon and border */
.custom-toggler {
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Space between bars */
}

.custom-toggler:focus {
    box-shadow: none;
    /* Removes the blue focus ring */
}

/* Style the custom bars */
.toggler-bar {
    display: block;
    width: 28px;
    /* Width of the bars */
    height: 3px;
    /* Thickness of the bars */
    background-color: var(--primary-color);
    /* Deep maroon color from your image */
    border-radius: 0px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-collapse.show~* {
    filter: brightness(1);
    transition: filter 0.3s ease;
}



/* --- THE MORPH --- */
.custom-toggler.active .toggler-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.custom-toggler.active .toggler-bar:nth-child(2) {
    width: 3px;
    margin-left: 13px;
}

.custom-toggler.active .toggler-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

a.navbar-brand {
    box-shadow: none;
    /* Removes the blue focus ring */
}

.nav-link {
    color: var(--menu-text-color);
    font-family: "Crimson Text", serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-left: 20px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    /* Smooth sliding effect */
}

.nav-link:hover::after {
    width: 100%;
    /* Line grows to full width on hover */
}


/* Hero section */
.hero {
    padding: 110px 0;
    position: relative;
}

.hero-bg {
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    margin-top: -110px;
    width: 100%;
    height: 100%;
    position: absolute;

}

.hero-box {
    backdrop-filter: blur(10px);
    background: rgba(131, 9, 25, 0.9);
    padding: 50px;
    max-width: 700px;
    color: #fff;
    position: relative;
}

.hero-box-style1 {
    border-left: 3px solid var(--yellow-color);
    padding-left: 40px;
    margin-left: 20px;
}

.hero-box h2 {
    font-family: "Crimson Text", serif;
    font-weight: 800;
    font-size: 3rem;
    line-height: 3.375rem;
}

.hero-box p {
    margin-top: 20px;
    font-family: "Chivo", sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--light-grey-color);
}

.btn-custom {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: var(--white-color);
    border-radius: 0;
    color: var(--dark-bg-color);
    border: 1px solid var(--white-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-custom:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-custom:active {
    transform: translateY(0);
    /* Pushes down when clicked */
}

@media (max-width: 767.98px) {
    .hero-box-style1 {
        border-left: none;
        padding-left: 0px;
        margin-left: 0px;
    }

    .hero-box h2 {

        font-size: 2.5rem;

    }

    .hero-box p {
        margin-top: 20px;
        font-family: "Chivo", sans-serif;
        font-size: 1rem;
        font-weight: 300;
        color: var(--light-grey-color);
    }

    .hero {
        padding-bottom: 0;
    }

    .hero-bg {
        /* padding: 0px 0; */
        position: relative;
        height: 300px;
    }

    .hero-box {
        margin-top: -100px;
        padding: 30px;
        width: 100%;
        position: relative;
        z-index: 2;



    }

    .hero-bg::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;

        /* Gradient from Transparent to your Gray #1E1E1E */
        background: linear-gradient(to bottom,
                rgba(30, 30, 0, 0) 0%,
                #1E1E1E 100%);

        z-index: 1;
    }

}

@media (max-width: 575.98px) {
    .btn-custom {
        width: 100%;
    }

    .hero-box h2 {

        font-size: 2.25rem;
        font-weight: 600;
        line-height: 2.5rem;

    }
}



/* quote section under hero section */
.section-dark {
    background: var(--dark-bg-color);
    padding: 80px 0;
}

.quote-div {
    position: relative;
    padding: 30px;
}

.quote-div p {
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
}

.quote-div::before {
    content: "";
    background-image: url('../images/gold-quotes.svg');
    position: absolute;
    top: -15px;
    left: -15px;
    width: 44px;
    height: 44px;

}

.quote-div::after {
    content: "";
    background-image: url('../images/gold-quotes.svg');
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 44px;
    height: 44px;
    transform: rotate(180deg);

}


@media (max-width: 767.98px) {
    .section-quote {
        margin-top: 0px;
    }
}

@media (max-width: 575.98px) {
    .quote-div::before {

        top: -15px;
        left: 0px;


    }

    .quote-div::after {

        bottom: -15px;
        right: 0px;


    }
}


/* About Us starts */
.about-section {
    padding-top: 30px;
}

.section-title-left {
    font-family: "Crimson Text", serif;
    font-weight: 600;
    font-size: 3rem;
    font-style: italic;
    color: var(--white-color);
    position: relative;
    text-align: left;
}

.section-title-left::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--yellow-color);
}

.about-img-frame {
    position: relative;
    display: inline-block;
    /* Fits the size of the image */
    line-height: 0;

}

.about-img-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-img-frame::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 0;
    bottom: 0;
    height: calc(100% - 8px);
    width: calc(100% - 8px);

    z-index: 4;
    border: 2px solid var(--primary-color);
    pointer-events: none;
}

.about-p {
    font-family: "Chivo", sans-serif;
    font-size: 1.125rem;
    font-weight: 200;
    line-height: 1.5rem;
    color: var(--light-grey-color);
}



/* services */
.services-section {
    padding-top: 0px;
}

.section-title-center {
    font-family: "Crimson Text", serif;
    font-weight: 600;
    font-size: 3rem;
    font-style: italic;
    color: var(--white-color);
    position: relative;
    text-align: center;
}

.section-title-center::after {
    content: "";
    position: absolute;
    left: calc(50% - 25px);
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--yellow-color);
}

.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card img {
    height: 200px;
    width: auto;
    object-fit: cover;
}

.service-header {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 30px 15px;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1rem;
    font-family: "Chivo", sans-serif;
}

.service-body {
    background-color: #ffffff;
    padding: 40px;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #E5E5E5;
    /* Light gray divider line */
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.5px;
    text-align: left;
    font-family: "Chivo", sans-serif;
}

/* Remove border from the last item */
.service-list li:last-child {
    border-bottom: none;
}

.check {
    color: var(--primary-color);
    margin-right: 20px;
    font-size: 1.2rem;
    line-height: 1;
}

@media (min-width: 992px) {
    .services-section {
        padding-top: 60px;
    }

    .service-card img {
        height: 250px;
        width: auto;
        object-fit: cover;
    }
}


/* inbetween quotes */
.bg-grey {
    background-color: var(--menu-text-color);
}

.company-info-inbetween {
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--white-color);

}


/* services explained */

.sub-title {
    font-family: "Chivo", sans-serif;
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-weight: 300;
    /* Bold weight */
    letter-spacing: 2px;
    /* Spacing between letters for that formal look */
    font-size: 0.875rem;
    text-transform: uppercase;
    padding: 20px 0;
}

.sub-title::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 3px;
    background-color: var(--yellow-color);
    margin-right: 9px;
}

.service-ex-block {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 40px 30px;
    height: 100%;
    /* Ensures all cards match height */
    position: relative;
    /* Required for the triangle positioning */
    overflow: hidden;
    /* Clips the triangle to the card edge */
    transition: transform 0.3s ease;
    z-index: 1;
}

/* The Subtle Dark Triangle */
.service-ex-block::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100px;
    /* Size of the triangle area */
    height: 100px;

    /* Creates the diagonal cut using a gradient */
    background: linear-gradient(to top left,
            transparent 50%,
            rgba(0, 0, 0, 0.15) 50%
            /* Darker shade for the corner */
        );
    pointer-events: none;
}

/* Typography to match the formal look */
.service-ex-block h3 {
    font-family: "Crimson Text", serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 3;
}

.service-ex-block p {
    font-family: "Chivo", sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--light-grey-color);
    opacity: 1;
    font-weight: 300;
}

/* Hover Effect */
.service-ex-block:hover {
    transform: scale(1.03);
    background-color: #A3052D;
}



/*  how it works*/
/* Step Styling */
.step-item {
    padding: 30px 15px;

}

.step-item:hover .step-number {
    color: #797979;
}

.step-number {
    font-family: "Crimson Text", serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #444;
    /* Darker gray for the large numbers */
    line-height: 1;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.step-heading {
    font-family: "Chivo", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.step-divider {
    border: 0;
    border-top: 1px solid #555;
    opacity: 1;
    width: 100%;
    margin: 20px 0;
}

.step-text {
    font-family: "Chivo", sans-serif;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;
}

/* @media (max-width: 1199.98px) and (min-width: 767.98px){
    .step-heading {
    
  font-size: 1.125rem;
  
  letter-spacing: 0px;
  
}
} */

@media (max-width: 991.98px) and (min-width: 575.98px) {
    .about-img-frame {
        position: relative;
        display: inline-block;
        line-height: 0;
        width: 100%;
        height: 300px;
        overflow: hidden;

    }

    .about-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}



/* why choose us */
.feature-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-icon img {
    width: 60px;
    /* Size of the icons */
    height: auto;
    transition: all 0.3s ease;
    /* filter: brightness(0) saturate(100%) invert(84%) sepia(26%) saturate(1081%) hue-rotate(357deg) brightness(97%) contrast(89%);  */
    /* The filter above converts a black SVG to a gold color #D4AF37 */
}

.feature-title {
    color: #ffffff;
    font-family: "Chivo", sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4;
    text-transform: capitalize;
    margin: 0 auto;
    letter-spacing: 1px;
    max-width: 200px;
    /* Keeps text wrapped exactly like the image */
}

/* Optional: Subtle hover effect */
.feature-item:hover .feature-icon img {
    transform: scale(1.2);
}


/* contact */
.contact-section {
    padding-top: 40px;
}

.bg-maroon {
    background-color: var(--primary-color);
}

.contact-box {
    min-height: 300px;
}

/* The Gold Vertical Line */
.gold-divider {
    width: 3px;
    height: 44px;
    background-color: var(--yellow-color);
    position: absolute;
    right: 0;
}

.contact-info {
    color: #ffffff;
    font-family: "Chivo", sans-serif;
}

.brand-name {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.phone {
    color: var(--yellow-color);
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    font-size: 1.125rem;
}

.phone:hover {
    filter: brightness(1.2);
}

.email {
    color: var(--yellow-color);
    text-decoration: underline;
    font-weight: 400;
    display: block;
    text-decoration: none;
    font-size: 1.125rem;
}

.email:hover {
    text-decoration: underline;
    filter: brightness(1.2);
}

/* Map Styling */
.map-container {
    height: 100%;
    min-height: 300px;
    position: relative;
    /* filter: grayscale(100%) contrast(1.2);  */
}

.map-container iframe {
    width: 100%;
    border: 0;
    height: 100%;
}

/* Invisible shield over the top-left corner */
.map-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 100px;
    background: transparent;
    z-index: 10;
}

.title-no-underline::after {
    display: none;
}

@media (max-width: 991.98px) {
    .title-no-underline::after {
        display: block;
    }

    .contact-box {
        min-height: 150px;
        padding: 30px 15px;
    }
}


/* footer */
.footer-links{
    font-family: "Crimson Text", serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--menu-text-color);
    opacity: 0.8;
    text-decoration: none;
}
.footer-links:hover{
    opacity: 1;
}
.footer-copyright-text{
    color: var(--menu-text-color);
    opacity: 0.8;
    font-family: "Crimson Text", serif;
    font-size: 1rem;
    
}
.footer-disclaimer-text{
    font-family: "Chivo", sans-serif;
    color: var(--menu-text-color);
    opacity: 0.8;
    font-size: 0.75rem;
}
    