  body {
            font-family: Arial, sans-serif;
            color: white;
            background-color: black;
            margin: 0;
            padding-top: 60px; /* Space for fixed header */
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        header {
            background-color: black;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000; /* Ensure header is above other content */
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: red; /* Logo text color */
            margin-top: 10px;
        }

        nav {
            display: flex;
            margin: 10px 0; /* Space between logo and nav */
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }

        .nav-links a:hover {
            color: red;
        }

        #carousel-section {
            width: 100%;
            margin-top: 60px; /* Space below the fixed header */
            padding: 20px 0;
            background-color: black;
        }

        #carousel {
            position: relative;
            width: 100%;
            height: 300px; /* Adjust height as needed */
            overflow: hidden;
        }

        #carousel .carousel-inner {
            display: flex;
            width: 100%;
            transition: transform 0.5s ease-in-out;
        }

        #carousel .carousel-item {
            min-width: 100%;
        }

        #carousel img {
            width: 100%;
            height: auto;
            display: block;
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
            z-index: 1000;
        }

        .carousel-control.prev {
            left: 10px;
        }

        .carousel-control.next {
            right: 10px;
        }

        #services, #contact {
            background-color: black;
            padding: 20px;
        }

        #services h2, #contact h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        .service, .contact-info div {
            margin-bottom: 20px;
        }

        .service img {
            width: 100%;
            height: auto;
        }

        .service h3 {
            color: red;
        }

        .service p, .contact-info a {
            margin: 5px 0;
        }

        #contact h2 {
            color: red; /* Red color for the contact heading */
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .contact-info div {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-info a {
            color: white; /* White color for contact details */
            text-decoration: none;
            font-size: 18px;
        }

        .contact-info a:hover {
            color: red; /* Change to red on hover */
        }

        .contact-info i {
            font-size: 24px;
            color: white; /* White color for icons */
        }

        footer {
            background-color: black;
            color: white;
            text-align: center;
            padding: 10px;
            position: relative; /* Footer moves with the content */
            width: 100%;
            bottom: 0;
        }

        /* Add space between services and contact sections */
        #services {
            margin-bottom: 40px;
        }