@charset "utf-8";

        body { margin: 0; padding: 0; background-color: #e3e3db; 
        background: linear-gradient(180deg, #b8c6cc 0%, #d1d9dd 100%);
        overflow-x: hidden; 
        }

        .reveal {
            position: relative;
            opacity: 0;
            transition: all 0.8s ease-out;
            will-change: transform, opacity;
        }
        .reveal-up { transform: translateY(50px); }
        .reveal-left { transform: translateX(-50px); }
        .reveal-right { transform: translateX(50px); }

        .reveal.active {
            opacity: 1;
            transform: translate(0, 0);
        }

        .hero {
            height: 600px;
            display: flex;
            align-items: center;
            padding: 0 10%;
            color: white;
            position: relative;
            overflow: hidden;
            background-color: #000; 
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active { opacity: 1; }

        .slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
        }

        .hero-wave {
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            line-height: 0;
            z-index: 5;
        }

        .hero-wave svg {
            display: block;
            width: 100%;
            height: 270px; 
            fill: #e3e3db;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin-top: 3px;
        }

        .hero-content h1 {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-style: italic;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.2;
            margin-bottom: 75px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .hero-btns { display: flex; gap: 20px; }

        .hero-btns a {
            font-family: 'Lora', serif;
            font-weight: 700;
            font-style: italic;
            padding: 12px 40px;
            text-decoration: none;
            border-radius: 10px; 
            font-size: 16px;
            transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            min-width: 150px;
        }

        .btn-purple { background: #36168F; color: #f5f3f5; }
        .btn-red { background: #cf1111; color: #f5f3f5; }

        .hero-btns a:hover {
            transform: translateY(-5px);
            background-color:#E3E3DB;
            color: #36168F;
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Sections Layout */
        .section-header { text-align: center; padding: 80px 0 40px; background-color: #e3e3db; }
        
        .section-header h2 { 
            font-family: 'Lora', serif; 
            font-weight: 600; 
            font-size: 40px; 
            color: #000; 
            display: flex;                 
            align-items: center;        
            justify-content: center;    
            gap: 15px;                  
        } 
        
        .section-header h2 span { 
            font-family: 'Lora', serif;
            color: #cf1111; 
            font-weight: 700; 
            font-size: 80px;              
            font-style: italic; 
            line-height: 1;              
        } 

        .what-do-we-do-header h2 {
            display: flex;
            flex-direction: column; 
            align-items: center;
            gap: 0;
            line-height: 0.8;
            margin-top: 100px;
            margin-bottom: 120px;
            font-family: 'Lora', serif;
            font-weight: 700;
            font-style: italic;
            
        }

        .what-do-we-do-header .line-one {
            font-size: 55px;
            color: #000000 !important; 
            margin-left: -80px; 
            font-family: 'Lora', serif;
            font-weight: 700;
            font-style: italic;
        }

        .what-do-we-do-header .line-two {
            font-size: 55px;
            color: #cf1111 !important; 
            margin-left: 220px; 
            font-family: 'Lora', serif;
            font-weight: 700;
            font-style: italic;
        }

        .what-do-we-do-header .bigger-do {
            font-size: 75px; 
            display: inline-block;
            color: inherit; 
            font-family: 'Lora', serif;
            font-weight: 700;
            font-style: italic;
        }

        .split-images {
            display: grid;
            grid-template-columns: 1fr 2.2fr;
            height: 550px;
            width: 100%;
        }

        .img-left { 
            background: url('../image/Home Page/polished floor (1).jpg') center/cover no-repeat; 
        }
        .img-right { 
            background: url('../image/Home Page/woman cleaning home1.jpg') center/cover no-repeat; 
        }

        .stat-bar {
            display: flex;
            width: 80%;
            max-width: 1100px;
            margin: -100px auto 80px 420px; 
            z-index: 20;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .stat-box { 
            flex: 1; 
            padding: 25px 20px; 
            text-align: center; 
            font-family: 'Alegreya', serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            -webkit-font-smoothing: antialiased;
        }

        .dark-box { background: #050a30; color: white; } 
        .light-box { background: #f5f5f5; color: #000; } 

        .stat-box p { 
            margin: 0; 
            font-size: 18px; 
            font-family: 'Alegreya', serif; 
            font-weight: 500;
            line-height: 1.2;
        }
        
        .stat-box h3 { 
            margin: 5px 0 0; 
            font-size: 35px; 
            font-family: 'Alegreya', serif;
            font-weight: 500;
            line-height: 1;
        }

        .stat-box .hence-text {
            font-family: 'Alegreya', serif;
            font-size: 18px; 
            font-weight: 500;
            margin-right: 8px;
            display: inline-block;
            vertical-align: middle;
        }

        .light-box h3 { 
            color: #cf1111; 
            font-size: 100px; 
            font-style: normal; 
            line-height: 0.85; 
            font-weight: 500;
            margin: 0;
        }
        
        .light-box p { 
            font-weight: 700; 
            color: #000; 
            font-size: 22px; 
            margin-top: 5px;
        }

        .services-container {
            display: flex;
            justify-content: center;
            max-width: 100%;
            margin: 100px 0 100px;
            gap: 0;

        }

        .service-card {
            padding: 100px 40px 60px;
            flex: 1;
            text-align: center;
            min-height: 480px;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 0.4s ease, z-index 0s;
        }

        .service-card:hover {
            transform: translateY(-15px);
            z-index: 10;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        .dark-card { background: #050a30; color: #F5F3F5; }
        .light-card { background: #f0f1f5; color: #000000; }

        .icon-num {
            position: absolute;
            top: -100px; 
            left: 20px;
            width: 45px;
            height: 45px;
            background: #e3e3db;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 15;
            font-family: 'Lora', serif;
            font-style: italic;
            font-weight: 700;
            font-size: 24px;
            color: #000;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            border: none;
        }

        .icon-circle {
            position: absolute;
            top: -65px;
            left: 50%;
            transform: translateX(-50%);
            width: 130px;
            height: 130px;
            background: #36168F; 
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 11;
        }

        .icon-circle img { 
            width: 88%; 
            height: auto; 
            object-fit: contain;
        }

        .service-card h3 {
            font-family: 'Gentium Plus', serif;
            font-size: 23px;
            font-style: italic;
            font-weight: 700; 
            margin-bottom: 66px;
        }

        .service-card p {
            font-family: 'Alegreya', serif;
            font-size: 21px;
            line-height: 1.2;
            margin-bottom: 12px;
            font-style: normal;
        }
        
        .industries-section {
            padding: 60px 0 100px;
            position: relative;
            text-align: center;
            overflow: visible; 
        }

        .industries-header {
            position: relative;
            margin-bottom: 60px;
            display: inline-block;
            width: 100%;
        }

        .industries-header::before {
            content: "WE SERVE";
            position: absolute;
            top: -35px; 
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Lora', serif;
            font-size: 230px;
            font-weight: 700;
            color: rgba(0, 0, 0, 0.04);
            white-space: nowrap;
            z-index: 0; 
            letter-spacing: 15px;
            pointer-events: none; 
        }

        .industries-header h2 {
            position: relative;
            z-index: 2; 
            margin: 0;
            display: flex;
            flex-direction: column;
            line-height: 0.9;
            font-family: 'Lora', serif;
        }

        .industries-header h2 .text-industries {
            font-size: 55px;
            color: #000;
            font-weight: 700;
            margin-left: -140px; 
            margin-bottom: 30px;
            font-style: italic;
            font-family: 'Lora', serif;
        }

        .industries-header h2 .text-we-serve {
            font-size: 55px;
            color: #cf1111;
            font-style: italic;
            font-weight: 700;
            margin-left: 140px; 
            font-family: 'Lora', serif;
        }

        .industries-slider-container {
            display: flex;
            align-items: stretch;
            justify-content: flex-start;
            gap: 20px;
            padding: 20px 0;
            position: relative;
            z-index: 2;
            overflow: hidden;
            width: 100%;
        }

        .slider-track {
            display: flex;
            gap: 20px;
            animation: scroll 20s linear infinite;
            width: max-content;
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-240px * 5 - 20px * 5)); } 
        }

        .industry-card {
            background: white;
            width: 240px;
            flex-shrink: 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 280px;
        }

		
		
        .industry-card:hover {
            transform: scale(1.05);
        }

        .industry-image {
            width: 100%;
            height: 160px;
            background-color: #f5f3f5;
            background-size: cover;
            background-position: center;
            flex-shrink: 0;
        }

        .industry-info {
            padding: 20px 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            text-align: center;
        }

        .industry-info h4 {
            font-family: 'Gentium Plus', serif;
            font-style: italic;
            font-size: 18px;
            margin: 0 0 8px 0;
            font-weight: 700;
        }

        .industry-info p {
            font-family: 'Alegreya', serif;
            font-size: 12px;
            margin: 0;
            color: black;
            line-height: 1.3;
        }
        
.industries-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden; 
    padding: 40px 0;
    z-index: 2;
}

.slider-track {
    display: flex;
    width: max-content; 
    animation: infiniteScroll 30s linear infinite; 
    will-change: transform; 
}

.industry-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 280px;
    margin: 0 15px; 
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
		
        .strengths-section {
            padding: 40px 0 100px;
            text-align: center;
        }

        .strengths-header {
            margin-bottom: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .strengths-header .top-line {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 5px; 
            margin-left: -380px;
        }

        .strengths-header .highlight-text {
            font-family: 'Lora', serif;
            font-size: 40px;
            font-weight: 700;
            color: #000;
        }

        .strengths-header .key-text {
            font-family: 'Lora', serif;
            font-size: 65px;
            font-weight: 700;
            font-style: italic;
            color: #cf1111;
        }

        .strengths-header .strengths-text {
            font-family: 'Lora', serif;
            color: #cf1111;
            font-weight: 700;
            font-size: 120px;
            line-height: 0.8;
            margin: 0;
            margin-right: -180px;
            font-style: italic;
        }

        .strengths-grid {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .strength-card {

            background: #f5f3f5; 
            flex: 1;
            padding: 40px 15px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center; 
            justify-content: center;
            min-height: 200px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease;
        }

        .strength-card:hover {
            transform: translateY(-5px);
            background-color: #ffffff;
        }

        .strength-card .big-num {
            font-family: 'Gentium Plus', serif;
            font-style: italic;
            font-weight: 700;
            font-size: 60px;
            line-height: 1;
            display: flex;
            align-items: baseline; 
            justify-content: center;
        }

        .strength-card .big-num .years-down {
            font-size: 30px;
            margin-left: 2px;
            font-family: 'Gentium Plus', serif;
            font-style: italic;
            display: inline-block;
            transform: translateY(8px); 
        }

        .strength-card h4 {
            font-family: 'Gentium Plus', serif;
            font-style: italic;
            font-size: 35px;
            font-weight: 700;
            margin: 0;
            color: #000;
        }

        .strength-card p {
            font-family: 'Gentium Plus', serif;
            font-style: italic;
            font-size: 18px;
            margin: 2px 0 0 0;
            color: #000000;
        }

        @media (max-width: 900px) {
            .strengths-header h2 span { font-size: 60px; }
            .strengths-grid { flex-direction: column; align-items: center; }
            .strength-card { width: 80%; }
            .split-images { grid-template-columns: 1fr; height: auto; }
            .img-left, .img-right { height: 250px; }
            .stat-bar { flex-direction: column; width: 90%; margin-top: -30px; margin-left: auto; margin-right: auto; }
            .services-container { flex-direction: column; padding: 100px 20px 0; gap: 100px; }
            .service-card { width: 100%; min-height: auto; }
            .what-do-we-do-header .line-one, .what-do-we-do-header .line-two { margin-left: 0; font-size: 40px; }
            .industries-slider-container { flex-direction: column; align-items: center; }
            .industry-card { width: 80%; }
        }


@media (max-width: 1024px) {
    .stat-bar { 
        margin: -50px auto 80px auto; 
        width: 90%; 
    }
    
    .what-do-we-do-header .line-one, 
    .what-do-we-do-header .line-two { 
        margin-left: 0 !important; 
        text-align: center;
    }
    
    .strengths-header .top-line { margin-left: 0; }
    .strengths-header .strengths-text { margin-right: 0; font-size: 80px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 28px; }
    .hero-btns { flex-direction: column; gap: 10px; }
    
    .section-header h2 { flex-direction: column; font-size: 24px; }
    .section-header h2 span { font-size: 50px; }

    .industries-header::before { font-size: 100px; top: 0; }
    .industries-header h2 .text-industries, 
    .industries-header h2 .text-we-serve { margin-left: 0; font-size: 32px; }

    .service-card { padding-top: 80px; }
    .icon-num { top: -30px; left: 20px; }
}


@media (max-width: 1024px) {
    .stat-bar {
        margin: -50px auto 50px auto !important;
        width: 90%;
        flex-direction: column; 
    }

    .what-do-we-do-header .line-one, 
    .what-do-we-do-header .line-two {
        margin-left: 0 !important;
        text-align: center;
        font-size: 35px;
    }

    .strengths-header .top-line { margin-left: 0 !important; }
    .strengths-header .strengths-text { margin-right: 0 !important; font-size: 60px; }
}




.stat-box.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.stat-box.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stat-box.reveal p, 
.stat-box.reveal h3, 
.stat-box.reveal .hence-text {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.stat-box.reveal.active p, 
.stat-box.reveal.active h3, 
.stat-box.reveal.active .hence-text {
    opacity: 1;
    transition-delay: 0.8s;
}



.service-card.reveal {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.service-card.reveal.active:nth-child(1) {
    transition-delay: 0.2s;
}

.service-card.reveal.active:nth-child(2) {
    transition-delay: 0.5s;
}

.service-card.reveal.active:nth-child(3) {
    transition-delay: 0.8s;
}

.service-card.reveal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}



.service-card.reveal {
    opacity: 0;
    transform: scale(0.7) translateY(40px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.service-card.reveal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}


.service-card {
    transition: all 1.2s ease-out; 
}

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.4s; 
}

.service-card:nth-child(3) {
    transition-delay: 0.7s; 
}

@media (max-width: 900px) {
    /* Disable the sliding animation */
    .slider-track {
        animation: none !important;
        display: flex;
        flex-wrap: wrap; /* Stack cards vertically */
        justify-content: center;
        width: 100% !important;
        transform: none !important;
    }

    .industries-slider-container {
        overflow: visible;
    }

    .industry-card {
        width: 90%; /* Make cards wider on mobile */
        margin: 10px auto;
    }

    /* Hide the giant "WE SERVE" background text on mobile */
    /* This text is 230px wide and definitely causes the "sideways" movement */
    .industries-header::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .strengths-header .top-line {
        margin-left: 0 !important;
        justify-content: center;
    }

    .strengths-header .strengths-text {
        margin-right: 0 !important;
        font-size: 60px; /* Smaller font for mobile screens */
    }
}
