﻿.btn-cta {
    color: #fff;
    background-color: var(--f7-theme-color);
    min-width: 200px;
    line-height: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.btn-cta img {
    width: 20px;
    margin-left: 10px;
    position: relative;
    top: -2px;
    display: inline-block;
}
.cta {
    border: #D4AF37 1px solid;
    color: #fff;
    height: 600px;
    margin-bottom: 25px;
}

.cta-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    object-fit: cover; /* Ensures the image covers the container */
    z-index: 1; /* Places the image behind the content */
    opacity: 0.5; /* Optional: Adjust opacity for better text readability */
}

.cta .col-sm-12 > *:not(.cta-background-img) {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-weight: 600;
    font-size: 5.5em;
    padding-top: 75px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta .col-sm-12::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust color and opacity */
    z-index: 1.5; /* Between the image and the content */
}

.cta-bar {
    padding-top: 0px;
}

.cta-text {
    color: #D4AF37;
    font-weight: 800;
    font-size: 35px;
    position: relative;
    top: -33px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.ctainput {
    background-color: #1a2236;
    border: #fff 1px solid;
    border-radius: 5px;
    line-height: 53px;
    position: relative;
    width: 300px;
    top: 2px;
}

.ctainput.active {
    font-size: 20px; /* Larger font size */
    color: white; /* White text color */
    background-color: #555; /* Darker background on active */
    border-color: #888; /* Darker border on active */
    padding-left: 10px;
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); /* Optional: Add a subtle shadow */
}

.faq-section {
    margin: auto;
    font-family: Arial, sans-serif;
    background-color: #1a2236;
    color: #fff;
    border-radius: 8px;
    padding: 5px 10px 10px 10px;
}

.faq-item {
    margin-top: 5px;
    border: 1px solid #333;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    background-color: #222;
    color: #fff;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 15px;
    display: none;
    background-color: #111;
    color: #ddd;
}

.faq-icon {
    font-size: 26px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg); /* Rotates "+" to "x" */
}
.slide-image{
    margin-top:10px;
}