.banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 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;
}

.subzero {
    color: #fff;  /* White color for SUBZERO */
    display: inline-block;
    font-weight: 500;
    font-size: 56px;  /* Slightly smaller than SNOW */
}

.snow {
    font-size: 50px;  /* Slightly smaller than the original */
    font-weight: 800;  /* Thicker weight for emphasis */
    color: #00aaff; /* Ice blue color for SNOW */
    display: inline-block;
    vertical-align: top; /* Aligns both spans to the top */
    line-height: 0.4;  /* Adjusts the line height for proper alignment */
}

.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;
}

/* Inner Wrappers */
.choose-us-reasons,
.services-list,
.certifications-list,
.testimonials-list,
.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%;
}

/* Section Background Colors */
.choose-us { background-color: #1e1e1e; }
.services { background-color: #252525; }
/* .certifications { background-color: #1e1e1e; } */
.testimonials { background-color: #1e1e1e; }
.contact { background-color: #252525; }

/* Headings & Text */
h2 { 
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 0.7;
}
.contact h2 {
    margin: 0;
    padding: 0;
}
.reason h3, .service h3, .certification h3, .testimonial h3 {
    font-size: 1.5rem;
    color: #00aaff;
    line-height: 0.75;
}
.reason p, .service p, .certification p, .testimonial p, .contact p { font-size: 1rem; color: #bbb; }

/* certifications */
.certification-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.certification img {
    max-width: 100px;
    margin-bottom: 10px;
}

/* testimonials */
.testimonial cite {
    color: #00aaff;
}

/* contact */
.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; /* Dark background */
    box-shadow: 0 4px 10px rgba(0, 170, 255, 0.5);
    transform: scaleX(1.03);
}