body {
            margin: 0;
            padding: 0;
            background-color: #222;
            color: #fff;
            font-family: Arial, sans-serif;
            transition: background-color 0.3s ease-in-out;
        }
        .video-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }
        video, .placeholder-image {
            object-fit: cover;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        .typing-effect-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
        }
        .typing-effect {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            color: #fff;
            font-size: 36px;
            position: relative;
            z-index: 2;
        }
        .typing-effect::after {
            content: "|";
            animation: blink 0.7s infinite;
        }
        .typing-effect::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(128, 128, 128, 0.5); /* Gray transparent background */
            z-index: -1;
        }
        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        /* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Parallax Container Styles */
.parallax-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    transform-style: preserve-3d; /* Enable 3D space for child elements */
}

.about-section {
    padding: 50px 0;
    text-align: center;
    background-color: 1B2430; /* Gray transparent background */
    color: #fff;
}

.show-about .about-section {
    display: block; /* Show the section when the show-about class is added */
}

/* Title Typing Effect */
.display {
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 4px;
}

/* Styles for services section */
.services-section {
    background-color: #f7f7f7;
    padding: 100px 0;
}

/* Styles for services section */
.services-section {
    background-color: #111;
    padding: 100px 0;
}

.service-card {
    background-color: #222;
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    font-size: 2rem;
    color: #fff;
}

/* Styles for service icons */
.service-icon {
    width: 80px; /* Adjust the width as needed */
    height: 80px; /* Adjust the height as needed */
    margin-bottom: 15px; /* Add spacing between icon and title */
}

/* Styles for service card bodies */
.service-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}


.footer-section{
    background-color: #111;
    padding: 50px 0;
    color: #fff;
}