/* HSE Section */
.hse-section {
    background: var(--gray-50);
}

.hse-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hse-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.hse-content h2 {
    margin-bottom: 1.5rem;
}

.hse-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hse-features {
    margin-bottom: 2rem;
}

.hse-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.hse-features li i {
    color: var(--accent-green);
    font-size: 1.25rem;
}

.hse-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hse-visual .hse-card:first-child {
    grid-column: span 2;
}

.hse-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition-base);
}

.hse-card:hover {
    transform: translateY(-5px);
}

.hse-card .hse-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green), #00E676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.hse-card .hse-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.hse-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.hse-card p {
    font-size: 0.813rem;
    color: var(--gray-500);
    margin: 0;
}

/* Clients Marquee */
.clients-marquee {
    background: var(--white);
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}

.client-logo {
    flex-shrink: 0;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 140px;
    transition: all var(--transition-base);
}

.client-logo img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
}

.client-logo:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.15);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials-section {
    background: var(--gray-50);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-quote {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.813rem;
    color: var(--gray-500);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active,
.dot:hover {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* CTA Section moved */

/* removed background radial gradients for cleaner white version */

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}