        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Outfit", sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #111827;
            background: #f8fafc;
        }

        :root {
            --primary: #ff6b00;
            --secondary: #1f2937;
            --light: #f8fafc;
            --white: #ffffff;
            --dark: #111827;
            --gray: #6b7280;
        }

        .section-padding {
            padding: 100px 0;
        }

        .btn-custom {
            background: var(--primary);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: 0.4s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-custom:hover {
            background: #e55f00;
            color: #fff;
            transform: translateY(-3px);
        }

        .btn-outline-custom {
            border: 2px solid #fff;
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            transition: .4s;
        }

        .btn-outline-custom:hover {
            background: #fff;
            color: #111;
        }

        /* Navbar */

        .navbar {
            padding: 2px 0;
            background: #fefeff;
        }

        .navbar-brand {
            color: #fff;
            font-size: 28px;
            font-weight: 700;
        }

        .navbar-brand span {
            color: var(--primary);
        }

        .navbar-nav .nav-link {
            color: #030303;
            margin-left: 20px;
            font-weight: 500;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        /* Hero */

        .hero-section {
            min-height: 100vh;
            background:
                linear-gradient(rgba(17, 24, 39, 0.85),
                    rgba(17, 24, 39, 0.85)),
                url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=1974&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: #fff;
        }

        .hero-section h1 {
            font-size: 45px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 18px;
            color: #d1d5db;
            margin-bottom: 35px;
        }

        .hero-img img {
            width: 100%;
            border-radius: 20px;
        }

        /* About */

        .about-img img {
            width: 100%;
            border-radius: 20px;
        }

        .section-title span {
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title h2 {
            font-size: 30px;
            font-weight: 700;
            margin-top: 10px;
            margin-bottom: 20px;
        }

        .section-title p {
            color: var(--gray);
            line-height: 1.8;
        }

        /* Counter */

        .counter-section {
            background: var(--secondary);
            color: #fff;
            padding: 80px 0;
        }

        .counter-box {
            text-align: center;
        }

        .counter-box h3 {
            font-size: 50px;
            color: var(--primary);
            font-weight: 700;
        }

        .counter-box p {
            margin-top: 10px;
        }

        /* Services */

        .service-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px 30px;
            transition: .4s;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card i {
            font-size: 45px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--gray);
        }

        /* Why Us */

        .why-us {
            background: #fff;
        }

        .feature-box {
            text-align: center;
            padding: 30px;
        }

        .feature-box i {
            width: 80px;
            height: 80px;
            background: rgba(255, 107, 0, 0.1);
            color: var(--primary);
            border-radius: 50%;
            line-height: 80px;
            font-size: 35px;
            margin-bottom: 20px;
        }

        /* Brands */

        .brand-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: .4s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
        }

        .brand-card:hover {
            transform: translateY(-8px);
        }

        .brand-card img {
            width: 100px;
            margin-bottom: 20px;
        }

        /* CTA */

        .cta-section {
            background:
                linear-gradient(rgba(255, 107, 0, 0.9),
                    rgba(255, 107, 0, 0.9)),
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2070&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            padding: 100px 0;
        }

        .cta-section h2 {
            font-size: 50px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* FAQ */

        .accordion-button:not(.collapsed) {
            background: var(--primary);
            color: #fff;
        }

        /* Footer */

        footer {
            background: #111827;
            color: #d1d5db;
            padding-top: 80px;
        }

        footer h5 {
            color: #fff;
            margin-bottom: 25px;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 12px;
        }

        footer ul li a {
            color: #d1d5db;
            text-decoration: none;
        }

        footer ul li a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            margin-top: 50px;
            padding: 20px 0;
            text-align: center;
        }

        /* Responsive */

        @media(max-width:992px) {

            .hero-section h1 {
                font-size: 45px;
            }

            .section-title h2 {
                font-size: 34px;
            }
        }

        @media(max-width:768px) {

            .hero-section {
                text-align: center;
                padding: 120px 0;
            }

            .hero-section h1 {
                font-size: 38px;
            }

            .cta-section h2 {
                font-size: 35px;
            }
        }

/* ===================================
   Modern About Section CSS
=================================== */

.about-style-one{
    position:relative;
    background:#f8fafc;
    overflow:hidden;
}

.about-image-wrapper{
    position:relative;
    padding-right:40px;
}

.about-main-img{
    position:relative;
    z-index:2;
}

.about-main-img img{
    width:100%;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

/* Floating Card */

.experience-card {
    position: absolute;
    bottom: 0px;
    left: -41px;
    background: #ff6b00;
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    z-index: 5;
    width: 184px;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.35);
}

.experience-card h3{
    font-size:50px;
    font-weight:700;
    margin-bottom:5px;
}

.experience-card span{
    font-size:16px;
    line-height:1.5;
    display:block;
}

/* Background Shape */

.about-shape{
    position:absolute;
    width:250px;
    height:250px;
    background:#1f2937;
    border-radius:40px;
    top:-30px;
    right:0;
    z-index:1;
}

/* Content */

.about-content-area{
    padding-left:30px;
}

.sub-heading{
    display:inline-block;
    color:#ff6b00;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:20px;
    position:relative;
}

.sub-heading::before{
    content:'';
    position:absolute;
    width:50px;
    height:2px;
    background:#ff6b00;
    left:0;
    bottom:-8px;
}

.about-content-area h2{
    font-size: 30px;
    line-height:1.3;
    font-weight:700;
    color:#111827;
    margin-bottom:25px;
}

.about-text{
    color:#6b7280;
    line-height:1.9;
    font-size:17px;
    margin-bottom:35px;
}

/* Features */

.about-feature-list{
    margin-bottom:40px;
}

.single-feature{
    display:flex;
    gap:20px;
    margin-bottom:25px;
    background:#fff;
    padding:20px;
    border-radius:18px;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.single-feature:hover{
    transform:translateY(-5px);
}

.feature-icon{
    min-width:70px;
    height:70px;
    background:rgba(255,107,0,0.12);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    font-size:30px;
    color:#ff6b00;
}

.feature-content h5{
    font-size:20px;
    font-weight:600;
    margin-bottom:8px;
    color:#111827;
}

.feature-content p{
    margin:0;
    color:#6b7280;
    line-height:1.7;
}

/* Button */

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#111827;
    color:#fff;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.about-btn:hover{
    background:#ff6b00;
    color:#fff;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:992px){

    .about-content-area{
        padding-left:0;
    }

    .about-main-img img{
        height:500px;
    }

    .about-content-area h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .about-main-img img{
        height:400px;
    }

    .experience-card{
        width:180px;
        padding:20px;
        left:10px;
    }

    .experience-card h3{
        font-size:38px;
    }

    .about-content-area h2{
        font-size:30px;
    }

    .single-feature{
        flex-direction:column;
    }

}
/* ===================================
   Cement Solutions Section CSS
=================================== */

.cement-solutions-section{
    background:#eef2c9;
    position:relative;
    padding:40px 0;
    overflow:hidden;
}

/* Heading */

.section-heading-area{
    margin-bottom:30px;
}

.section-subtitle{
    display:inline-block;
    background:rgba(255,107,0,0.12);
    color:#ff6b00;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-main-title{
    font-size:52px;
    font-weight:700;
    color:#111827;
    margin-bottom:20px;
}

.section-description{
    color:#6b7280;
    line-height:1.9;
    font-size:17px;
}

/* Cards */

.cement-service-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    position:relative;
    transition:0.5s;
    height:100%;
    box-shadow:0 15px 50px rgba(0,0,0,0.08);
}

.cement-service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 70px rgba(0,0,0,0.15);
}

.active-card{
    margin-top:40px;
}

/* Image */

.service-image{
    position:relative;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.6s;
}

.cement-service-card:hover .service-image img{
    transform:scale(1.1);
}

/* Gradient Overlay */

.service-image::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to top,
    rgba(17,24,39,0.65),
    transparent);
    left:0;
    top:0;
    z-index:1;
}

/* Content */

.service-content{
    padding:35px;
    position:relative;
}

/* Floating Icon */

.service-icon{
    width:80px;
    height:80px;
    background:#ff6b00;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:-40px;
    right:30px;
    box-shadow:0 15px 35px rgba(255,107,0,0.35);
}

.service-icon i{
    font-size:34px;
    color:#fff;
}

/* Heading */

.service-content h4{
    font-size: 22px;
    font-weight:700;
    margin-bottom:18px;
    color:#111827;
}

.service-content p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:28px;
}

/* Button */

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#ff6b00;
    font-weight:600;
    transition:0.4s;
}

.service-btn:hover{
    gap:16px;
    color:#111827;
}

/* Decorative Shape */

.cement-solutions-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,107,0,0.08);
    border-radius:50%;
    top:-150px;
    right:-100px;
}

.cement-solutions-section::after{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(17,24,39,0.05);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

/* Responsive */

@media(max-width:992px){

    .section-main-title{
        font-size:40px;
    }

    .active-card{
        margin-top:0;
    }

}

@media(max-width:768px){

    .section-main-title{
        font-size:32px;
    }

    .service-image img{
        height:220px;
    }

    .service-content{
        padding:28px;
    }

}
/* ===================================
   Modern Products Section CSS
=================================== */

.modern-products-section{
    background:#f8fafc;
    position:relative;
    overflow:hidden;
    padding:40px 0;
}

/* Background Shapes */

.modern-products-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,107,0,0.08);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.modern-products-section::after{
    content:'';
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(17,24,39,0.05);
    border-radius:50%;
    bottom:-100px;
    left:-80px;
}

/* Heading */

.products-heading{
    position:relative;
    z-index:2;
}

.product-subtitle{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,107,0,0.12);
    color:#ff6b00;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.products-heading h2{
    font-size: 32px;
    font-weight:700;
    line-height:1.3;
    color:#111827;
    margin-bottom:20px;
}

.products-heading p{
    color:#6b7280;
    line-height:1.9;
    font-size:17px;
}

/* Cards */

.product-card-modern{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    transition:0.5s;
    height:100%;
    position:relative;
    z-index:2;
    box-shadow:0 15px 50px rgba(0,0,0,0.06);
}

.product-card-modern:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 70px rgba(0,0,0,0.14);
}

/* Active Card */

.active-product{
    transform:translateY(-20px);
    border:2px solid #ff6b00;
}

/* Image */

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.6s;
}

.product-card-modern:hover .product-image img{
    transform:scale(1.1);
}

/* Overlay */

.product-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to top,
    rgba(17,24,39,0.85),
    transparent);
    top:0;
    left:0;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-bottom:25px;
    opacity:0;
    transition:0.5s;
}

.product-card-modern:hover .product-overlay{
    opacity:1;
}

/* Button */

.view-btn{
    background:#ff6b00;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.4s;
}

.view-btn:hover{
    background:#fff;
    color:#111827;
}

/* Content */

.product-content{
    padding:35px;
}

/* Tag */

.product-tag{
    display:inline-block;
    background:rgba(255,107,0,0.1);
    color:#ff6b00;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:18px;
}

/* Heading */

.product-content h4{
    font-size:28px;
    font-weight:700;
    color:#111827;
    margin-bottom:18px;
}

.product-content p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:28px;
}

/* Footer */

.product-footer{
    border-top:1px solid #e5e7eb;
    padding-top:22px;
}

/* Link */

.product-link{
    text-decoration:none;
    color:#ff6b00;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:0.4s;
}

.product-link:hover{
    gap:16px;
    color:#111827;
}

/* Responsive */

@media(max-width:992px){

    .products-heading h2{
        font-size:40px;
    }

    .active-product{
        transform:none;
    }

}

@media(max-width:768px){

    .products-heading h2{
        font-size:32px;
    }

    .product-image img{
        height:220px;
    }

    .product-content{
        padding:28px;
    }

    .product-content h4{
        font-size:24px;
    }

}
