/* ============================================
   HERO SECTION WITH VIDEO BACKGROUND
   ============================================ */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

/* Video Overlay for better text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Optional darker overlay variant - remove if not needed */
.video-overlay.dark {
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.4) 100%);
}

/* Remove old carousel styles */
.carousel-container,
.carousel-slide,
.carousel-slide img {
    display: none;
}

/* Keep progress bar if needed */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
    overflow: hidden;
}

.progress-bar {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    transition: transform 0.5s ease;
    position: relative;
    animation: progressAnimation 15s infinite linear;
}

@keyframes progressAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(500%); }
}

.progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Keep navigation dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 5;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-dot:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.5s;
}

.carousel-dot:hover:before {
    left: 100%;
}

.carousel-dot.active {
    background: var(--primary-red);
    border-color: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: white;
    transform: scale(1.1);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 4;
    max-width: 800px;
    position: relative;
}

/* ============================================
   UPDATED: TEXT SPACING FOR HERO SECTION
   line-height: 1.4, letter-spacing: 0.001em, word-spacing: 0.02em
   ============================================ */
.animated-headline {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    /* Text border/stroke for better visibility */
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.5);
    text-stroke: 2px rgba(0, 0, 0, 0.5);
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.headline-text {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFadeIn 0.8s forwards;
    /* Individual text stroke for each line */
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.6);
    text-stroke: 2px rgba(0, 0, 0, 0.6);
    /* Additional spacing for each line */
    margin-bottom: 8px;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.headline-text:last-child {
    margin-bottom: 0;
}

@keyframes slideUpFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated Subtitle with Enhanced Text Spacing */
.animated-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideRightFadeIn 1s forwards 0.8s;
    /* Text border/stroke for better visibility */
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.4);
    text-stroke: 1px rgba(0, 0, 0, 0.4);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes slideRightFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animated CTA Button */
.cta-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 0.5s forwards 1.2s;
    position: relative;
    overflow: hidden;
    /* Button text spacing */
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
    /* Adding text border for button text */
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Maintain text border on hover */
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
    text-stroke: 0.5px rgba(0, 0, 0, 0.4);
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover:before {
    left: 100%;
}

/* Fallback for slower connections */
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-fallback.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Loading Dots */
.loading-dots {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading-dots div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
    left: 8px;
    animation: loading-dots1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
    left: 8px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
    left: 32px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
    left: 56px;
    animation: loading-dots3 0.6s infinite;
}

@keyframes loading-dots1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes loading-dots3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}

@keyframes loading-dots2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(24px, 0); }
}

/* Responsive adjustments with updated spacing */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .animated-headline {
        font-size: 2.5rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
        -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.5);
        text-stroke: 1.5px rgba(0, 0, 0, 0.5);
    }
    
    .headline-text {
        -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.6);
        text-stroke: 1.5px rgba(0, 0, 0, 0.6);
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        margin-bottom: 6px;
    }
    
    .animated-subtitle {
        font-size: 1rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
        max-width: 95%;
        -webkit-text-stroke: 0.8px rgba(0, 0, 0, 0.4);
        text-stroke: 0.8px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .carousel-dots {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
    }
    
    .animated-headline {
        font-size: 2rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
        -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.5);
        text-stroke: 1.2px rgba(0, 0, 0, 0.5);
    }
    
    .headline-text {
        -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.6);
        text-stroke: 1.2px rgba(0, 0, 0, 0.6);
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        margin-bottom: 4px;
    }
    
    .animated-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
        max-width: 100%;
        -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.4);
        text-stroke: 0.6px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .carousel-dots {
        gap: 8px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* Ensure video plays nicely on all devices */
@media (max-width: 768px) {
    .hero-video {
        object-fit: cover;
    }
}

/* Cross-browser support for text-stroke */
@supports (-webkit-text-stroke: 2px black) or (text-stroke: 2px black) {
    .animated-headline,
    .headline-text,
    .animated-subtitle,
    .cta-button {
        -webkit-text-fill-color: white;
        color: white;
    }
}

/* Fallback for browsers that don't support text-stroke */
@supports not ((-webkit-text-stroke: 2px black) or (text-stroke: 2px black)) {
    .animated-headline,
    .headline-text,
    .animated-subtitle,
    .cta-button {
        text-shadow: 
            -2px -2px 0 rgba(0, 0, 0, 0.5),
            2px -2px 0 rgba(0, 0, 0, 0.5),
            -2px 2px 0 rgba(0, 0, 0, 0.5),
            2px 2px 0 rgba(0, 0, 0, 0.5),
            4px 4px 8px rgba(0, 0, 0, 0.5);
    }
    
    .animated-subtitle {
        text-shadow: 
            -1px -1px 0 rgba(0, 0, 0, 0.4),
            1px -1px 0 rgba(0, 0, 0, 0.4),
            -1px 1px 0 rgba(0, 0, 0, 0.4),
            1px 1px 0 rgba(0, 0, 0, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.5);
    }
}

/* ============================================
   SLIDE CONTENT STYLES
   ============================================ */
.slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 4;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 500px;
    pointer-events: none;
}

.carousel-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease 0.3s;
    /* Slide title spacing */
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

.slide-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease 0.5s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    /* Slide subtitle spacing */
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.carousel-slide.active .slide-title {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.active .slide-subtitle {
    opacity: 1;
    transform: translateX(0);
}

/* Different slide content animations */
.slide-1 .slide-title {
    color: #FFD700;
    animation: titleGlow1 3s ease-in-out infinite alternate;
}

.slide-2 .slide-title {
    color: #00FFAA;
    animation: titleGlow2 3s ease-in-out infinite alternate;
}

.slide-3 .slide-title {
    color: #FF6B6B;
    animation: titleGlow3 3s ease-in-out infinite alternate;
}

.slide-4 .slide-title {
    color: #4D96FF;
    animation: titleGlow4 3s ease-in-out infinite alternate;
}

.slide-5 .slide-title {
    color: #FF8E53;
    animation: titleGlow5 3s ease-in-out infinite alternate;
}

@keyframes titleGlow1 {
    from { text-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

@keyframes titleGlow2 {
    from { text-shadow: 0 0 5px rgba(0, 255, 170, 0.3); }
    to { text-shadow: 0 0 20px rgba(0, 255, 170, 0.6); }
}

@keyframes titleGlow3 {
    from { text-shadow: 0 0 5px rgba(255, 107, 107, 0.3); }
    to { text-shadow: 0 0 20px rgba(255, 107, 107, 0.6); }
}

@keyframes titleGlow4 {
    from { text-shadow: 0 0 5px rgba(77, 150, 255, 0.3); }
    to { text-shadow: 0 0 20px rgba(77, 150, 255, 0.6); }
}

@keyframes titleGlow5 {
    from { text-shadow: 0 0 5px rgba(255, 142, 83, 0.3); }
    to { text-shadow: 0 0 20px rgba(255, 142, 83, 0.6); }
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
    overflow: hidden;
}

.progress-bar {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    transition: transform 0.5s ease;
    position: relative;
}

.progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   CONTAINER STYLES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   COMPANY DETAILS SECTION - WITH UPDATED TEXT STYLE
   ============================================ */
.company-details {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.company-details:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(30,101,165,0.03)"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.company-details .section-title  h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

.section-title h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* Main Container - White Card */
.company-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    min-height: 600px;
}

/* Left Side - Welcome Title & Legacy Section */
.company-left {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Welcome Title Section */
.welcome-title {
    margin-bottom: 40px;
    position: relative;
}

.welcome-title h3 {
    font-size: 2.4rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-left: 25px;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.welcome-title h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-red);
    border-radius: 50%;
}

.welcome-title p {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin: 0;
    padding-left: 25px;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

/* Legacy Section */
.legacy-section {
    flex: 1;
    position: relative;
}

/* =========================================
   Company Profile Button Animation
   ========================================= */
#more {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 5px 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    margin-top:10px;
}

#more:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

#more:hover {
    background: transparent;
    color: rgb(222, 15, 15);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    -webkit-text-stroke: 0.5px rgba(0,0,0,0.4);
    text-stroke: 0.5px rgba(0,0,0,0.4);
}

#more:hover:before {
    left: 100%;
}


.legacy-title {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.legacy-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

/* ============================================
   UPDATED: PARAGRAPH STYLES - WITH NEW SPACING
   ============================================ */
.legacy-content {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #333;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.legacy-content p {
    margin-bottom: 20px;
    text-align: left;
    font-weight: 400;
    color: #444;
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.legacy-content p:last-child {
    margin-bottom: 0;
}

/* Right Side - Image Section */
.company-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.company-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.company-image:hover img {
    transform: scale(1.05);
}

/* Bottom Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
        rgba(224, 42, 42, 0.95) 0%, 
        rgba(224, 42, 42, 0.85) 50%, 
        rgba(224, 42, 42, 0.7) 100%);
    padding: 25px 40px;
    color: white;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    padding-left: 20px;
}

.overlay-content:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: white;
    border-radius: 2px;
}

.overlay-text {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
    text-transform: uppercase;
}

.overlay-subtext {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
    opacity: 0.95;
}

/* Stats Section Below */
.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto 0;
}

.stat-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(30, 101, 165, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 101, 165, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover:before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 101, 165, 0.2);
}

.stat-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #d41f1f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

/* ============================================
   QUALITY ASSURANCE SECTION – BLUE CARD VERSION (ICON HOVER ONLY)
   ============================================ */
.quality-section {
    padding: 80px 0;
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}

.quality-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 101, 165, 0.05) 0%, transparent 100%);
    z-index: 0;
}

/* =======================
   Section Title
   ======================= */
.quality-section .section-title h2 {
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.quality-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.quality-section .section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 400;
    margin-top: 15px;
    line-height: 1.5;
}

/* =======================
   Layout Wrapper
   ======================= */
.quality-content-wrapper {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

/* =======================
   Left Side Content
   ======================= */
.quality-left {
    flex: 1;
}

.quality-description {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-blue);
    position: relative;
}

.quality-description h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    padding-bottom: 10px;
    position: relative;
}

.quality-description h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.quality-description p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

/* =======================
   Quality Features List
   ======================= */
.quality-features {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(30, 101, 165, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(30, 101, 165, 0.1);
    transition: color 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.feature-item span {
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}

/* =======================
   Right Side: Quality Cards Grid
   ======================= */
.quality-right {
    flex: 1.2;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* =======================
   Quality Cards - Primary Blue
   ======================= */
.quality-card {
    position: relative;
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #1E65A5 0%, #0d4a7a 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(30, 101, 165, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* =======================
   Icon Styling (Hover Only)
   ======================= */
.quality-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Only icon reacts on hover */
.quality-card:hover .quality-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-red), #b71c1c);
    color: #fff;
}

/* =======================
   Card Text
   ======================= */
.quality-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.quality-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

/* =======================
   Responsive Design
   ======================= */
@media (max-width: 1024px) {
    .quality-content-wrapper {
        flex-direction: column;
    }
    .quality-left, .quality-right {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
    .quality-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .quality-card {
        padding: 25px 20px;
    }
    .quality-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    .quality-description h3 {
        font-size: 1.5rem;
    }
    .quality-description p {
        font-size: 1rem;
    }
}


/* ============================================
   COMMITMENT SECTION - FULL BACKGROUND LAYOUT
   ============================================ */
.commitment-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
    text-align: center;
}

/* Background Image */
.commitment-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    filter: brightness(0.8);
}

/* Blue Gradient Overlay */
.commitment-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Decorative Effects */
.commitment-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(224, 42, 42, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(224, 42, 42, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: shimmer 8s infinite linear;
    z-index: 2;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Content (No Background Box) */
.commitment-content {
    position: relative;
    z-index: 3;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Title */
.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red, #E02A2A);
    border-radius: 2px;
}

.commitment-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-top: 15px;
}

/* Description */
.commitment-description {
    max-width: 800px;
    margin: 0 auto 40px;
}

.commitment-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Cards */
.commitment-card {
     background: linear-gradient(135deg, 
        rgba(30, 101, 165, 0.8) 0%, 
        rgba(30, 101, 165, 0.7) 50%, 
        rgba(30, 101, 165, 0.8) 100%);;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    animation: floatCard 6s ease-in-out infinite;
}

.commitment-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #E02A2A, rgba(224, 42, 42, 0.5), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.commitment-card:hover {
    background: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

}

.commitment-card:hover::after {
    transform: scaleX(1);
}

/* Floating Animation */
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Icon */
.commitment-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    transition: all 0.5s ease;
}

.commitment-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(224, 42, 42, 0.2);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.commitment-card:hover .commitment-icon {
    transform: scale(1.2) rotateY(360deg);
    color: var(--primary-blue);
}

.commitment-card:hover .commitment-icon::before {
    background: rgba(224, 42, 42, 0.4);
    box-shadow: 0 0 25px rgba(224, 42, 42, 0.4);
}

/* Card Text */
.commitment-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
}

.commitment-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 992px) {
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.clients-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(30, 101, 165, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(224, 42, 42, 0.05) 0%, transparent 50%);
    z-index: 0;
}

/* Title Styling */
.clients-section .section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.clients-section .section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

.clients-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.clients-section .section-title p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 400;
    margin-top: 15px;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

/* Auto-scroll Container */
.clients-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 5%,
        black 95%,
        transparent
    );
}

/* Clients Track */
.clients-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollClients 80s linear infinite;
    padding: 15px 0;
    will-change: transform;
}

.clients-track:hover {
    animation-play-state: paused;
}

/* Infinite scroll animation */
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

/* ============================================
   CLIENT LOGO STYLING - ALWAYS ACTIVE STATE
   ============================================ */
.client-logo {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 130px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 3px solid var(--primary-blue);
    transform: translateY(-8px) scale(1.05);
    z-index: 2;
}

/* Subtle blue overlay gradient (always visible) */
.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 101, 165, 0.05) 0%,
        transparent 100%
    );
    opacity: 1;
    z-index: 1;
}

/* Decorative bottom gradient line (Red → Blue) always visible */
.client-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    z-index: 2;
}

/* Logo Image Styling */
.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 3;
    padding: 8px;
}

/* Brand-specific image adjustments */
.client-logo img[alt*="Maruti"],
.client-logo img[alt*="Tata"],
.client-logo img[alt*="Mahindra"],
.client-logo img[alt*="Ashok"],
.client-logo img[alt*="Hero"],
.client-logo img[alt*="Bajaj"],
.client-logo img[alt*="L&T"],
.client-logo img[alt*="JCB"],
.client-logo img[alt*="Caterpillar"],
.client-logo img[alt*="Volvo"],
.client-logo img[alt*="Hyundai"],
.client-logo img[alt*="Honda"],
.client-logo img[alt*="Siemens"],
.client-logo img[alt*="ABB"],
.client-logo img[alt*="Schneider"],
.client-logo img[alt*="Bosch"] {
    max-height: 80px;
    max-width: 160px;
}

/* Ensure logos maintain aspect ratio */
.client-logo img {
    object-fit: contain;
    object-position: center;
    width: auto !important;
    height: auto !important;
}

/* Logo container ensures proper alignment */
.client-logo > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Optional: Add subtle background pattern for empty logo areas */
.client-logo:empty:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(30, 101, 165, 0.05) 0px,
            rgba(30, 101, 165, 0.05) 10px,
            transparent 10px,
            transparent 20px
        );
    opacity: 0.3;
}

/* Floating Animation for Logos */
@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.client-logo {
    animation: floatLogo 8s ease-in-out infinite;
}

/* Staggered floating animation */
.client-logo:nth-child(1) { animation-delay: 0s; }
.client-logo:nth-child(2) { animation-delay: 0.5s; }
.client-logo:nth-child(3) { animation-delay: 1s; }
.client-logo:nth-child(4) { animation-delay: 1.5s; }
.client-logo:nth-child(5) { animation-delay: 2s; }
.client-logo:nth-child(6) { animation-delay: 2.5s; }
.client-logo:nth-child(7) { animation-delay: 3s; }
.client-logo:nth-child(8) { animation-delay: 3.5s; }
.client-logo:nth-child(9) { animation-delay: 4s; }
.client-logo:nth-child(10) { animation-delay: 4.5s; }
.client-logo:nth-child(11) { animation-delay: 5s; }
.client-logo:nth-child(12) { animation-delay: 5.5s; }
.client-logo:nth-child(13) { animation-delay: 6s; }
.client-logo:nth-child(14) { animation-delay: 6.5s; }
.client-logo:nth-child(15) { animation-delay: 7s; }
.client-logo:nth-child(16) { animation-delay: 7.5s; }

/* ============================================
   TESTIMONIALS SECTION - WITH UPDATED TEXT STYLE
   ============================================ */
.testimonials-section {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 101, 165, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-section .section-title h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

.testimonials-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.testimonials-section .section-title p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-top: 20px;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

/* Testimonial Slider Container */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Testimonial Item - Slick Slide */
.testimonial-item {
    background: var(--light-gray);
    padding: 40px 35px;
    border-radius: 15px;
    text-align: center;
    margin: 0 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 101, 165, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    outline: none;
    min-height: 350px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

.testimonial-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 101, 165, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-item:hover:before {
    opacity: 1;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 101, 165, 0.2);
}

/* ============================================
   UPDATED: TESTIMONIAL TEXT STYLES
   ============================================ */
.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--dark-gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding: 0 15px;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    text-align: center;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-family: Georgia, serif;
    opacity: 0.2;
    display: inline-block;
}

.testimonial-text:before {
    margin-right: 5px;
}

.testimonial-text:after {
    margin-left: 5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.testimonial-item:hover .author-avatar {
    border-color: var(--primary-red);
    transform: scale(1.1) rotate(5deg);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    opacity: 0.8;
    letter-spacing: 0.001em;
    word-spacing: 0.02em;
    line-height: 1.4;
}

/* Slick Slider Custom Navigation Arrows */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 48px;
    height: 48px;
    background: var(--primary-blue) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(30, 101, 165, 0.3);
}

.testimonial-slider .slick-prev {
    left: -65px;
}

.testimonial-slider .slick-next {
    right: -65px;
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: var(--primary-red) !important;
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(224, 42, 42, 0.4);
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    color: white;
    font-size: 22px;
    opacity: 1;
    font-family: 'slick';
}

.testimonial-slider .slick-prev:before {
    content: '←';
}

.testimonial-slider .slick-next:before {
    content: '→';
}

/* Slick Dots Navigation */
.testimonial-slider .slick-dots {
    bottom: -50px;
}

.testimonial-slider .slick-dots li {
    margin: 0 6px;
    width: auto;
    height: auto;
}

.testimonial-slider .slick-dots li button {
    width: 14px;
    height: 14px;
    padding: 0;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: var(--primary-blue);
    opacity: 0.3;
    transition: all 0.3s ease;
    line-height: 14px;
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--primary-red);
    opacity: 1;
    transform: scale(1.3);
}

/* Slide animations */
.slick-slide {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.slick-slide.slick-active {
    opacity: 1;
    transform: scale(1);
}

.slick-slide:focus {
    outline: none;
}

/* ============================================
   RESPONSIVE DESIGN - WITH UPDATED TEXT STYLE
   ============================================ */
@media (max-width: 1200px) {
    .company-content {
        max-width: 95%;
        min-height: 550px;
    }
    
    .company-left {
        padding: 40px 40px;
    }
    
    .company-stats {
        max-width: 95%;
    }
    
    .client-logo {
        min-width: 220px;
        height: 120px;
        padding: 20px 25px;
    }
    
    .client-logo img[alt*="Maruti"],
    .client-logo img[alt*="Tata"],
    .client-logo img[alt*="Mahindra"],
    .client-logo img[alt*="Ashok"],
    .client-logo img[alt*="Hero"],
    .client-logo img[alt*="Bajaj"],
    .client-logo img[alt*="L&T"],
    .client-logo img[alt*="JCB"],
    .client-logo img[alt*="Caterpillar"],
    .client-logo img[alt*="Volvo"],
    .client-logo img[alt*="Hyundai"],
    .client-logo img[alt*="Honda"],
    .client-logo img[alt*="Siemens"],
    .client-logo img[alt*="ABB"],
    .client-logo img[alt*="Schneider"],
    .client-logo img[alt*="Bosch"] {
        max-height: 70px;
        max-width: 140px;
    }
    
    .commitment-grid {
        gap: 20px;
    }
    
    .commitment-card {
        padding: 25px 15px;
    }
    
    .testimonial-slider .slick-prev {
        left: -50px;
    }
    
    .testimonial-slider .slick-next {
        right: -50px;
    }
}

@media (max-width: 992px) {
    .company-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .company-left {
        order: 1;
        padding: 35px 30px;
    }
    
    .company-right {
        order: -1;
        min-height: 400px;
        position: relative;
    }
    
    .company-image {
        position: relative;
        height: 100%;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .quality-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .quality-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .quality-card {
        padding: 25px 20px;
        min-height: 190px;
    }
    
    .quality-description {
        padding: 25px;
    }
    
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .clients-section {
        padding: 40px 0;
    }
    
    .clients-scroll-container {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 3%,
            black 97%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 3%,
            black 97%,
            transparent
        );
    }
    
    .clients-track {
        gap: 30px;
        animation-duration: 70s;
        padding: 15px 0;
    }
    
    .client-logo {
        min-width: 200px;
        height: 110px;
        padding: 15px 20px;
    }
    
    .client-logo img[alt*="Maruti"],
    .client-logo img[alt*="Tata"],
    .client-logo img[alt*="Mahindra"],
    .client-logo img[alt*="Ashok"],
    .client-logo img[alt*="Hero"],
    .client-logo img[alt*="Bajaj"],
    .client-logo img[alt*="L&T"],
    .client-logo img[alt*="JCB"],
    .client-logo img[alt*="Caterpillar"],
    .client-logo img[alt*="Volvo"],
    .client-logo img[alt*="Hyundai"],
    .client-logo img[alt*="Honda"],
    .client-logo img[alt*="Siemens"],
    .client-logo img[alt*="ABB"],
    .client-logo img[alt*="Schneider"],
    .client-logo img[alt*="Bosch"] {
        max-height: 65px;
        max-width: 130px;
    }
    
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-section .section-title h2 {
        font-size: 2.4rem;
    }
    
    .testimonial-slider {
        max-width: 700px;
    }
    
    .testimonial-slider .slick-prev {
        left: -40px;
    }
    
    .testimonial-slider .slick-next {
        right: -40px;
    }
    
    .testimonial-item {
        padding: 35px 25px;
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .animated-headline {
        font-size: 2.5rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
        -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.5);
        text-stroke: 1.5px rgba(0, 0, 0, 0.5);
    }
    
    .headline-text {
        -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.6);
        text-stroke: 1.5px rgba(0, 0, 0, 0.6);
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        margin-bottom: 6px;
    }
    
    .animated-subtitle {
        font-size: 1rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
        max-width: 95%;
        -webkit-text-stroke: 0.8px rgba(0, 0, 0, 0.4);
        text-stroke: 0.8px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .company-details,
    .quality-section,
    .commitment-section,
    .clients-section,
    .testimonials-section {
        padding: 30px 0;
    }
    
    .company-content {
        margin-bottom: 20px;
        max-width: 100%;
        border-radius: 10px;
    }
    
    .company-left {
        padding: 30px 25px;
    }
    
    .welcome-title h3 {
        font-size: 2rem;
        padding-left: 20px;
    }
    
    .welcome-title p {
        padding-left: 20px;
        font-size: 1.1rem;
    }
    
    .legacy-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .legacy-content {
        font-size: 1rem;
        line-height: 1.4;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
    }
    
    .legacy-content p {
        margin-bottom: 15px;
    }
    
    .company-right {
        min-height: 350px;
    }
    
    .image-overlay {
        padding: 20px 30px;
        min-height: 100px;
    }
    
    .overlay-content {
        padding-left: 15px;
        gap: 3px;
    }
    
    .overlay-text {
        font-size: 2rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .overlay-subtext {
        font-size: 1.2rem;
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }
    
    .stat-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .quality-content-wrapper {
        margin-top: 20px;
        gap: 25px;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quality-card {
        min-height: 170px;
        padding: 20px;
    }
    
    .quality-card h3 {
        font-size: 1.3rem;
    }
    
    .quality-icon {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .quality-description h3 {
        font-size: 1.5rem;
    }
    
    .quality-description p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quality-features {
        padding: 20px;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 10px 0;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .commitment-section {
        padding: 30px 0;
        background-attachment: scroll;
    }
    
    .commitment-section .section-title {
        margin-bottom: 20px;
    }
    
    .commitment-section .section-title h2 {
        font-size: 2rem;
    }
    
    .commitment-subtitle {
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .commitment-description {
        margin-bottom: 20px;
    }
    
    .commitment-description p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .commitment-card {
        padding: 25px 20px;
    }
    
    .commitment-card:hover {
        transform: translateY(-8px);
    }
    
    .commitment-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .clients-section .section-title {
        margin-bottom: 20px;
    }
    
    .clients-section .section-title h2 {
        font-size: 2rem;
    }
    
    .clients-section .section-title p {
        font-size: 1rem;
        margin-top: 10px;
    }
    
    .clients-track {
        gap: 25px;
        animation-duration: 60s;
        padding: 10px 0;
    }
    
    .client-logo {
        min-width: 180px;
        height: 100px;
        padding: 12px 15px;
    }
    
    .client-logo img[alt*="Maruti"],
    .client-logo img[alt*="Tata"],
    .client-logo img[alt*="Mahindra"],
    .client-logo img[alt*="Ashok"],
    .client-logo img[alt*="Hero"],
    .client-logo img[alt*="Bajaj"],
    .client-logo img[alt*="L&T"],
    .client-logo img[alt*="JCB"],
    .client-logo img[alt*="Caterpillar"],
    .client-logo img[alt*="Volvo"],
    .client-logo img[alt*="Hyundai"],
    .client-logo img[alt*="Honda"],
    .client-logo img[alt*="Siemens"],
    .client-logo img[alt*="ABB"],
    .client-logo img[alt*="Schneider"],
    .client-logo img[alt*="Bosch"] {
        max-height: 60px;
        max-width: 120px;
    }
    
    .slide-content {
        bottom: 30px;
        left: 20px;
        right: 20px;
        text-align: center;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 1rem;
    }
    
    .carousel-dots {
        bottom: 20px;
        right: 20px;
    }
    
    .slide-number {
        top: 20px;
        right: 20px;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-section .section-title {
        margin-bottom: 40px;
    }
    
    .testimonials-section .section-title h2 {
        font-size: 2rem;
    }
    
    .testimonials-section .section-title h2:after {
        width: 80px;
        bottom: -12px;
    }
    
    .testimonials-section .section-title p {
        font-size: 1.1rem;
        margin-top: 15px;
    }
    
    .testimonial-slider {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-slider .slick-prev {
        left: -10px;
    }
    
    .testimonial-slider .slick-next {
        right: -10px;
    }
    
    .testimonial-slider .slick-prev:before,
    .testimonial-slider .slick-next:before {
        font-size: 18px;
    }
    
    .testimonial-item {
        padding: 30px 20px;
        margin: 0 10px;
        min-height: 300px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .testimonial-text:before,
    .testimonial-text:after {
        font-size: 2rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
    
    .testimonial-slider .slick-dots {
        bottom: -40px;
    }
    
    @keyframes scrollClients {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 12px));
        }
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 80vh;
    }
    
    .animated-headline {
        font-size: 2rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
        -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.5);
        text-stroke: 1.2px rgba(0, 0, 0, 0.5);
    }
    
    .headline-text {
        -webkit-text-stroke: 1.2px rgba(0, 0, 0, 0.6);
        text-stroke: 1.2px rgba(0, 0, 0, 0.6);
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        margin-bottom: 4px;
    }
    
    .animated-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
        max-width: 100%;
        -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.4);
        text-stroke: 0.6px rgba(0, 0, 0, 0.4);
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .clients-section {
        padding: 30px 0;
    }
    
    .clients-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .clients-track {
        gap: 20px;
        animation-duration: 50s;
        padding: 10px 0;
    }
    
    .client-logo {
        min-width: 160px;
        height: 90px;
        padding: 10px 12px;
    }
    
    .client-logo img[alt*="Maruti"],
    .client-logo img[alt*="Tata"],
    .client-logo img[alt*="Mahindra"],
    .client-logo img[alt*="Ashok"],
    .client-logo img[alt*="Hero"],
    .client-logo img[alt*="Bajaj"],
    .client-logo img[alt*="L&T"],
    .client-logo img[alt*="JCB"],
    .client-logo img[alt*="Caterpillar"],
    .client-logo img[alt*="Volvo"],
    .client-logo img[alt*="Hyundai"],
    .client-logo img[alt*="Honda"],
    .client-logo img[alt*="Siemens"],
    .client-logo img[alt*="ABB"],
    .client-logo img[alt*="Schneider"],
    .client-logo img[alt*="Bosch"] {
        max-height: 50px;
        max-width: 100px;
    }
    
    .company-left {
        padding: 25px 20px;
    }
    
    .welcome-title h3 {
        font-size: 1.8rem;
        padding-left: 15px;
    }
    
    .welcome-title p {
        padding-left: 15px;
        font-size: 1rem;
    }
    
    .legacy-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .company-right {
        min-height: 300px;
    }
    
    .image-overlay {
        padding: 15px 25px;
        min-height: 90px;
    }
    
    .overlay-content:before {
        width: 3px;
    }
    
    .overlay-text {
        font-size: 1.6rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .overlay-subtext {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .quality-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .quality-grid {
        gap: 15px;
    }
    
    .quality-card {
        padding: 15px;
        min-height: 160px;
    }
    
    .quality-description {
        padding: 20px;
    }
    
    .quality-features {
        padding: 20px;
    }
    
    .commitment-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .commitment-card {
        padding: 20px;
    }
    
    .commitment-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .commitment-card h3 {
        font-size: 1.2rem;
    }
    
    .testimonials-section {
        padding: 30px 0;
    }
    
    .testimonials-section .section-title {
        margin-bottom: 30px;
    }
    
    .testimonials-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .testimonials-section .section-title p {
        font-size: 1rem;
    }
    
    .testimonial-slider {
        padding: 0 15px;
    }
    
    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        display: none !important;
    }
    
    .testimonial-item {
        padding: 25px 15px;
        min-height: 280px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 12px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonial-slider .slick-dots {
        bottom: -35px;
    }
    
    .testimonial-slider .slick-dots li button:before {
        font-size: 12px;
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 80vh;
    }
    
    .animated-headline {
        font-size: 1.8rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .animated-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.001em;
        word-spacing: 0.02em;
        line-height: 1.4;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .clients-grid,
    .quality-grid,
    .commitment-points {
        grid-template-columns: 1fr;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-content {
        bottom: 70px;
    }
    
    .carousel-dots {
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .client-logo {
        min-width: 140px;
        height: 80px;
        padding: 8px 10px;
    }
    
    .clients-track {
        gap: 15px;
    }
    
    .client-logo img[alt*="Maruti"],
    .client-logo img[alt*="Tata"],
    .client-logo img[alt*="Mahindra"],
    .client-logo img[alt*="Ashok"],
    .client-logo img[alt*="Hero"],
    .client-logo img[alt*="Bajaj"],
    .client-logo img[alt*="L&T"],
    .client-logo img[alt*="JCB"],
    .client-logo img[alt*="Caterpillar"],
    .client-logo img[alt*="Volvo"],
    .client-logo img[alt*="Hyundai"],
    .client-logo img[alt*="Honda"],
    .client-logo img[alt*="Siemens"],
    .client-logo img[alt*="ABB"],
    .client-logo img[alt*="Schneider"],
    .client-logo img[alt*="Bosch"] {
        max-height: 45px;
        max-width: 90px;
    }
    
    .testimonial-item {
        padding: 20px 12px;
        min-height: 260px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 55px;
        height: 55px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-slider .slick-dots {
        bottom: -30px;
    }
    
    .testimonial-slider .slick-dots li {
        margin: 0 4px;
    }
    
    .testimonial-slider .slick-dots li button:before {
        font-size: 10px;
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 400px) {
    .client-logo {
        min-width: 120px;
        height: 70px;
        padding: 6px 8px;
    }
    
    .clients-track {
        gap: 12px;
    }
    
    .client-logo img[alt*="Maruti"],
    .client-logo img[alt*="Tata"],
    .client-logo img[alt*="Mahindra"],
    .client-logo img[alt*="Ashok"],
    .client-logo img[alt*="Hero"],
    .client-logo img[alt*="Bajaj"],
    .client-logo img[alt*="L&T"],
    .client-logo img[alt*="JCB"],
    .client-logo img[alt*="Caterpillar"],
    .client-logo img[alt*="Volvo"],
    .client-logo img[alt*="Hyundai"],
    .client-logo img[alt*="Honda"],
    .client-logo img[alt*="Siemens"],
    .client-logo img[alt*="ABB"],
    .client-logo img[alt*="Schneider"],
    .client-logo img[alt*="Bosch"] {
        max-height: 40px;
        max-width: 80px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.preload-container {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

/* Slick Slider Custom Styles */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 40px;
    height: 40px;
    background: var(--primary-blue) !important;
    border-radius: 50%;
    transition: var(--transition);
}

.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: var(--primary-red) !important;
    transform: scale(1.1);
}

.testimonial-slider .slick-prev:before,
.testimonial-slider .slick-next:before {
    color: white;
    font-size: 20px;
}

.testimonial-slider .slick-prev {
    left: -50px;
}

.testimonial-slider .slick-next {
    right: -50px;
}

.testimonial-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-blue);
    opacity: 0.5;
    transition: var(--transition);
}

.testimonial-slider .slick-dots li.slick-active button:before {
    color: var(--primary-red);
    opacity: 1;
    transform: scale(1.5);
}

/* Smooth transitions for carousel */
.carousel-container {
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Hide scrollbar for carousel */
.hero-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-carousel::-webkit-scrollbar {
    display: none;
}

/* Animation for slide change */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide.active {
    animation: slideIn 0.8s ease forwards;
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Debug styles - if logos still don't show */
.client-logo.debug {
    border: 2px dashed red !important;
    background: rgba(255, 0, 0, 0.1) !important;
}

.client-logo.debug:before {
    content: 'Missing Image' !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    font-size: 12px;
    z-index: 10;
}

/* Optional: Add a subtle pattern overlay */
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(30, 101, 165, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(224, 42, 42, 0.02) 0%, transparent 20%);
    pointer-events: none;
    z-index: 1;
}

/* Smooth transition for slider */
.slick-track {
    transition: all 0.5s ease;
}

/* Add focus styles for accessibility */
.testimonial-slider .slick-prev:focus,
.testimonial-slider .slick-next:focus,
.testimonial-slider .slick-dots li button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}