/* About Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 !important;
}


.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Clients Section */
.clients-section {
    background: var(--light-gray);
}

.brands-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    width: max-content;
    align-items: center;
}

.brand-logo {
   width: 250px;
  padding: 0 15px;
}

.brand-logo img {
    height: auto;
}

/* Testimonials */
.testimonials{
    background: var(--light-gray);
}
.testimonial-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-content {
    padding-left: 15px;
}

.testimonial-card p{
        color: var(--gray);
}

.rating {
    color: var(--accent-yellow);
}

/* CTA Section  */
.contact-section{
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
