﻿body {
    font-family: "Montserrat", sans-serif;
}


.topfold {
    background: #F9F4F0;
    position: relative;
    padding: 40px 20px; /* adjust as needed */
}

    .topfold::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 30%; /* ⬅️ 10% width strip */
        height: 100%; /* ⬅️ height of the horizontal line */
        background: #ff6801; /* color */
        z-index: 0;
    }

.accent {
    color: #ff6700;
}

.bold {
    font-weight: bold;
}

.body-text {
    color: #636363;
}




.why-card {
    transition: 0.2s ease;
    border-radius: 12px;
}

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

.why-icon {
    font-size: 2.6rem;
    color: #333; /* Neutral, simple color */
}

.why-section h6 {
    color: #333;
}

.why-section h2 {
    color: #222;
}

.why-section {
    position: relative;
    background: #F9F4F0;
    padding: 40px 20px; /* adjust as needed */
}

    .why-section::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 25%; /* ⬅️ 10% width strip */
        height: 100%; /* ⬅️ height of the horizontal line */
        background: #ff6801; /* color */
    }


.prod-row h1, .prod-row h4, .prod-row p {
    text-align: left;
}



/* Testimonial Section */
.testimonial-section h2 {
    color: #222;
}

.testimonial-card {
    border-radius: 14px;
    transition: 0.25s ease;
}

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #ff8b00; /* matches your accent color */
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}



.money-back {
    background: #2e3a4b;
    text-align: center;
}


a {
    color: #ff6700;
}

.accordion-button {
    font-weight: 500;
    font-size: 1rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 20px;
    color: #333;
    position: relative;
    transition: background-color 0.3s ease;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

    .accordion-button:hover {
        background-color: #f0f0f0;
    }

    /* Remove default Bootstrap arrow completely */
    .accordion-button::after {
        display: none;
    }

    /* Add custom + / − toggle */
    .accordion-button.custom-toggle::after {
        content: "+"; /* + when collapsed */
        font-size: 1.2rem;
        font-weight: bold;
        color: #ff6700;
        transition: transform 0.3s ease;
    }

    /* Change to − when expanded */
    .accordion-button.custom-toggle:not(.collapsed)::after {
        content: "−";
    }

.accordion-body {
    background-color: #fff;
    border-left: 3px solid #ff6700;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 20px;
    font-size: 0.95rem;
    color: #555;
}

h4.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #ff6700;
}

.accordion-item {
    margin-bottom: 10px;
    border: none;
}


.bg-primary {
    background: #ff6700 !important;
}


/* Make modal extra wide */
.modal-xl-custom {
    max-width: 90% !important; /* 90% of viewport width */
}

.modal-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}



@media screen and (max-width: 768px) {
    .topfold::before, .why-section::before {
        display: none !important;
    }

    .why-section {
        margin-top: -90px;
    }
}