.banner {
    position: relative;
    width: 100%;
    height: calc(50vh - 72px);
    margin-top: 72px;
    overflow: hidden;
}

.video-background-container {
    position: absolute;
    top: -0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

#background-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.banner .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
}

.banner .content h1 {
    font-size: 64px;
    text-align: center;
    margin: 0;
}

.banner .content p {
    font-size: 1.1rem;
    max-width: 450px;
    margin: 10px auto 0;
    color: #ddd;
    line-height: 1.5;
}

/* General Section Styling */
section {
    padding: 40px 20px;
    text-align: center;
}

/* Section Background Colors */
.faq { background-color: #252525; }
.contact { background-color: #1e1e1e; }

/* Inner Wrappers */
.choose-us-reasons,
.services-list,
.certifications-list,
.testimonials-list,
.service-logs .table-wrapper,
.contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact {
    flex-direction: column;
}

/* Box Styling */
.reason,
.service,
.certification,
.testimonial {
    max-width: 300px;
    background-color: #2c2c2c;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    text-align: center;
    width: 100%;
}

/* Headings & Text */
h2 { 
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 0.7;
}
.contact h2 {
    margin: 0;
    padding: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #2c2c2c;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00aaff;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 170, 255, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #1e1e1e;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 15px 0;
    color: #ddd;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px;
}

/* contact */
.contact p {
    font-size: 1rem;
    color: #bbb;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #00aaff; /* ice blue */
    border: 2px solid #00aaff;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #00aaff;
    color: #1e1e1e;
    box-shadow: 0 4px 10px rgba(0, 170, 255, 0.5);
    transform: scaleX(1.03);
}