

/* Container layout to spread items out like the image */

.bg-red {
    background-color: #e31e24;
}

.btn-red {
    background-color: #e31e24;
    color: #fff;
}

    .btn-red:hover {
        background-color: #b71c1c;
        color: #fff;
    }

.text-red {
    color: #e31e24;
}

.form-control:focus {
    border-color: #e31e24;
    box-shadow: 0 0 0 0.2rem rgba(211,47,47,0.15);
}

.form-control {
    padding: 14px 16px;
}

.custom-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Makes red boxes full height */
    padding: 0 !important;
    height: 90px; /* Adjust based on your preferred header height */
}

/* Common style for the red boxes on both ends */
.red-block-box {
    background-color: #e31e24 !important; /* Swiss Red */
    background-image: none !important; /* Removes template shapes */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 100%;
}

    /* Ensure Logo Figure has no background */
    .red-block-box .logo {
        background: none !important;
        margin: 0;
    }

/* Navigation styling to match the image (Uppercase, bold) */
.navigation li a {
    text-transform: uppercase;
    font-weight: 700;
    color: #000 !important;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Right side button styling */
.btn-offer {
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
}

    .btn-offer i {
        margin-right: 10px;
        font-size: 18px;
    }

/* Remove default template padding/margins that might interfere */
.header__four__left, .header__right {
    display: contents; /* Flattens the structure so flex works correctly */
}

/* Vertical padding */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.py-8 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-9 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
}

.py-10 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
}

/* Horizontal padding */
.px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
}

.px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}

.px-8 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
}

.px-9 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
}

.px-10 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
}

/* Padding Top */
.pt-6 {
    padding-top: 4rem !important;
}

.pt-7 {
    padding-top: 5rem !important;
}

.pt-8 {
    padding-top: 6rem !important;
}

.pt-9 {
    padding-top: 7.5rem !important;
}

.pt-10 {
    padding-top: 9rem !important;
}

/* Padding Bottom */
.pb-6 {
    padding-bottom: 4rem !important;
}

.pb-7 {
    padding-bottom: 5rem !important;
}

.pb-8 {
    padding-bottom: 6rem !important;
}

.pb-9 {
    padding-bottom: 7.5rem !important;
}

.pb-10 {
    padding-bottom: 9rem !important;
}


ul.tab-btns {
    display: flex;
    gap: 8px;
    padding: 16px;
    background: #1e1e1e;
    list-style: none;
    margin: 0;
}

.tab-btn {
    cursor: pointer;
}

    .tab-btn .inner__tab {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 160px;
        height: 140px;
        background: #2d2d2d;
        border-radius: 6px;
        gap: 12px;
        transition: background 0.2s ease;
        color: #fff;
    }

    .tab-btn:hover .inner__tab {
        background: #3a3a3a;
    }

    .tab-btn.active-btn .inner__tab {
        background: #e02020;
    }

    .tab-btn .icon__image {
        width: 64px;
        height: 64px;
        border: 2.5px solid #fff;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #fff;
    }

    .tab-btn .tab___all {
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.3px;
    }


.sectiontwo_btn {
    display: flex;
    align-items: center;
    gap: 12px; /* spacing between buttons */
}



:root {
    --red: #c0392b;
    --red-light: #e74c3c;
    --dark: #2c2c2c;
    --gray: #6b6b6b;
}

.testimonial-card {
    max-width: 520px;
    animation: fadeUp 0.6s ease-out both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avatar {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-light), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .avatar .fa-user {
        font-size: 1.8rem;
        color: rgba(255, 255, 255, 0.85);
        margin-top: 6px;
    }

.quote-badge {
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 28px;
    height: 28px;
    background: var(--red);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.4);
}

    .quote-badge .fa-quote-left {
        font-size: 0.7rem;
        color: #fff;
    }

.testimonial-text {
    font-size: 0.925rem;
    line-height: 1.75;
    color: var(--dark);
    font-style: italic;
}

.author {
    border-left: 3px solid var(--red);
    padding-left: 1rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
}

.author-role {
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 480px) {
    .testimonial-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author {
        border-left: none;
        padding-left: 0;
        border-bottom: 3px solid var(--red);
        padding-bottom: 0.25rem;
        text-align: center;
    }
}



.news_letter.three .news_letter_content {
    max-height: 250px !important; /* adjust as needed */
    overflow: hidden !important;
}

.partner-logo {
    max-height: 50px; /* adjust to match your design */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.85;
}


.cta-btn-group {
    display: inline-flex;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.cta-btn {
    padding: 18px 40px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    letter-spacing: 0.3px;
    display: inline-block;
}

.cta-btn--dark {
    background: #111;
    color: #fff;
    border-radius: 10px 0 0 10px;
    padding-right: 30px;
}

    .cta-btn--dark:hover {
        background: var(--theme-color);
        color: #fff;
    }

.cta-btn--light {
    background: #fff;
    color: var(--theme-color);
    border-radius: 0 10px 10px 0;
    padding-left: 30px;
}

    .cta-btn--light:hover {
        background: var(--theme-color);
        color: #fff;
    }

.cta-divider {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-left: -18px;
    margin-right: -18px;
    flex-shrink: 0;
}

    .cta-divider::after {
        content: '';
        width: 2px;
        height: 18px;
        background: #999;
        display: block;
        transform: rotate(25deg);
    }