
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background-color:#2c3e50;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
            z-index: 5;
        }

        .slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
            opacity: 0;
            z-index: 1;
        }

        .slide.active {
            opacity: 1;
            z-index: 4;
            transform: scale(1);
        }

        .content {
            position: absolute;
            z-index: 10;
            color: white;
            text-align: center;
            top: 60%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .content h1 {
            font-size: 2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 5px;
            animation: fadeInText 2s ease-out forwards;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
        }

        .content p {
            font-size: 0.8rem;
            margin-top: 20px;
            animation: fadeInText 2.5s ease-out forwards;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Subtle shadow for readability */
        }


        .btn-outline-primary {
            border: 1px solid #007bff;
            color: #007bff;
            transition: all 0.3s;
        }
        .btn-outline-primary:hover {
            background-color: #007bff;
            color: #fff;
        }
        .see-more {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-us h2, p {
            text-align: justify;
            max-width: 700px;
        }

        @keyframes fadeInText {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Slide-in effect with scaling */
        @keyframes slideIn {
            0% { opacity: 0; transform: scale(1.1); }
            100% { opacity: 1; transform: scale(1); }
        }

        .slide.active {
            animation: slideIn 1.5s ease;
        }

        /* Fix for image display */
        .slide {
            background-repeat: no-repeat;
        }

        /* Extra small devices (portrait phones, 320px and up) */
        @media (min-width: 320px) {
        /* Your styles here */
            .content h1 {
                font-size: 5rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 5px;
                animation: fadeInText 2s ease-out forwards;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
            }

            .content p {
                font-size: 0.8rem;
                margin-top: 20px;
                animation: fadeInText 2.5s ease-out forwards;
                text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Subtle shadow for readability */
            }
        }

        /* Small devices (landscape phones, 480px and up) */
        @media (min-width: 480px) {
        /* Your styles here */
        }

        /* Medium devices (tablets, 768px and up) */
        @media (min-width: 768px) {
        /* Your styles here */
        .content h1 {
                font-size: 8rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 5px;
                animation: fadeInText 2s ease-out forwards;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
            }

            .content p {
                font-size: 1.8rem;
                margin-top: 20px;
                animation: fadeInText 2.5s ease-out forwards;
                text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Subtle shadow for readability */
            }
        }

        /* Large devices (desktops, 1024px and up) */
        @media (min-width: 1024px) {
        /* Your styles here */
        .content h1 {
                font-size: 6rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 5px;
                animation: fadeInText 2s ease-out forwards;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
            }

            .content p {
                font-size: 1.8rem;
                margin-top: 20px;
                animation: fadeInText 2.5s ease-out forwards;
                text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Subtle shadow for readability */
            }
        }

        /* Extra large devices (large desktops, 1200px and up) */
        @media (min-width: 1200px) {
        /* Your styles here */
        .content h1 {
                font-size: 6rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 5px;
                animation: fadeInText 2s ease-out forwards;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
            }

            .content p {
                font-size: 1.8rem;
                margin-top: 20px;
                animation: fadeInText 2.5s ease-out forwards;
                text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Subtle shadow for readability */
            }
        }

        /* Ultra-large devices (4K monitors, 1600px and up) */
        @media (min-width: 1600px) {
        /* Your styles here */
        .content h1 {
                font-size: 10rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 5px;
                animation: fadeInText 2s ease-out forwards;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Text shadow for readability */
            }

            .content p {
                font-size: 0.8rem;
                margin-top: 20px;
                animation: fadeInText 2.5s ease-out forwards;
                text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Subtle shadow for readability */
            }
        }



        .view-all-button {
            margin-top: 30px;
            padding: 10px 20px;
            background-color: #6C63FF;
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .view-all-button:hover {
            background-color: #574bdb;
        }

        @media (max-width: 768px) {
            .clients-section h2 {
                font-size: 1.5rem;
            }

            .clients-section p {
                font-size: 0.9rem;
            }
        }



        /* Slider Controls */
        .slider-controls {
        display: flex;
        justify-content: center;
        margin-top: 20px;
        }

        .slider-controls button {
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #888;
        cursor: pointer;
        transition: color 0.3s;
        }

        .slider-controls button:hover {
        color: #444;
        }

        a {
            text-decoration: none;
        }

        .navbar .nav-link.active {
            font-weight: bold;
            border-bottom: 2px solid #f9a826;
            color: #333;
        }

        .industries-section {
            padding: 60px 0;
        }
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .industry-item {
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            text-align: center;
            transition: box-shadow 0.3s;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
        }
        .industry-item:hover {
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        .industry-item-icon img {
            max-width: 100px;
            margin-bottom: 15px;
        }
        .footer {
            padding: 40px 0;
            background-color: #333;
            color: #fff;
        }
        .footer .footer-column h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .footer-links a {
            color: #bbb;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #fff;
        }
        .footer-social a {
            color: #bbb;
            margin: 0 10px;
            font-size: 1.2rem;
        }
        .footer-social a:hover {
            color: #fff;
        }
        .navbar .nav-link.active {
            font-weight: bold;
            border-bottom: 2px solid #f9a826;
            color: #333;
        }

    /* About Us Section Styling */
    .about-us {
        max-width: 100%;
        background-color: #f0f4fa;
        position: relative;
        overflow: hidden;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        padding: 10em 10px;
        color: #333;
    }

    .about-us p {
        text-align: justify;
        width: 100%;
        padding: 2em;
    }
    .about-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: brightness(0.5);
        z-index: -1;
    }
    .about-content {
        max-width: 700px;
        margin: auto;
        background-color: #2c3e50;
        border-radius: 8px;
        padding: 40px;
        opacity: 1; /* Initially hidden */
        transform: translateY(20px); /* Initial position for animation */
        transition: opacity 0.8s ease, transform 0.6s ease; /* Smooth transition */
    }
    .about-content.visible {
        opacity: 1; /* Fade in */
        transform: translateY(0); /* Move up */
    }
    .about-content h2 {
        font-family: 'Bebas Neue', sans-serif;
    }
    .about-content p {
        font-size: 1.1rem;
        font-weight: 300;
        line-height: 1.6;
    }

    .about-us a {
        text-decoration: none;
        color: white;
        border: none;
        background: black;
        text-decoration: none;
        display: inline-block;
        color: #fff;
        padding: 10px 28px;
        margin: 10px 0;
        transition: all 0.3s ease-in-out;
    }
    .about-us a:hover {
        text-decoration: none;
        color: white;
        border: none;
        background:#F27F2F ;
        text-decoration: none;
        display: inline-block;
        color: #fff;
        padding: 10px 28px;
        margin: 10px 0;
        transition: all 0.3s ease-in-out;
    }
    .btn-primary {
        background-color: #f9a826;
        border: none;
        font-size: 1rem;
        transition: background-color 0.3s ease;
    }
    .btn-primary:hover {
        background-color: #e3961c;
    }

    /* Sentence-based animation */
    .animated-text span {
        display: block;
        opacity: 0;
        animation: fadeIn 1s ease forwards;
    }
    .animated-text span:nth-child(1) { animation-delay: 0.5s; }
    .animated-text span:nth-child(2) { animation-delay: 2s; }

    /* Keyframes for smooth fade-in */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Title Animation */
    .animated-title {
        animation: titleFadeIn 1s ease forwards;
        animation-delay: 0.5s; /* Delay to appear after page load */
    }
    @keyframes titleFadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }







    .sevice {
        text-align: center;
        padding: 80px 20px;
    }

    .sevice h1 {
        font-size: 2.25rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: #000;
    }

    .sevice p {
        font-size: 1rem;
        margin-bottom: 40px;
        color: #777;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 0 auto;
    }

    .card {
        background-color: transparent;
        text-align: center;
        padding: 40px 20px;
        border: none;
        position: relative;
    }

    .card::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 1px;
        background-color: #eaeaea;
    }

    .card::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background-color: #eaeaea;
    }

    .card:nth-child(3n)::after {
        background: none;
    }

    .card:nth-last-child(-n+3)::before {
        background: none;
    }

    .card i {
        font-size: 2.5rem;
        color: #000;
        margin-bottom: 20px;
    }

    .card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        font-weight: 600;
        color: #000;
    }

    .card p {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #555;
    }

    @media (max-width: 768px) {
        .grid {
            grid-template-columns: 1fr;
        }

        .card::after, .card::before {
            background: none;
        }

        .card {
            border-bottom: 1px solid #eaeaea;
        }

        .card:last-child {
            border-bottom: none;
        }
    }








    
    .project-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px; /* Small gap between images */
        max-width: 1200px;
        margin: 0 auto;
    }

    .project-item {
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .project-item:hover img {
        transform: scale(1.1);
    }

    .project-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.7);
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 20px;
        text-align: center;
    }

    .project-item:hover .project-card {
        opacity: 1;
    }

    .project-card h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        font-weight: 600;
        color: #fff;
    }

    .project-card p {
        font-size: 1rem;
        color: #ccc;
    }

    @media (max-width: 768px) {
        .project-grid {
            grid-template-columns: 1fr;
        }

        .project-item {
            margin-bottom: 5px;
        }
    }


    .service-description {
        padding: 10em 20px;
        text-align: center;
        background-color: white;
    }