        /* General Body Styling */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            background-color: #1c1c1c;
            color: #e0e0e0;
            overflow-x: hidden;
        }

        /* Navbar Styling */
        .navbar {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            background-color: #1f1f1f;
            border-bottom: 1px solid #333;
        }

        .navbar-left {
            display: flex;
            align-items: center;
        }

        .menu-bar {
            font-size: 24px;
            cursor: pointer;
            margin-right: 10px;
            /* Space between burger and logo */
        }

        .navbar-left img {
            width: 20px;
            height: 20px;
            margin-right: 10px;
            /* Space between logo and first link */
        }

        .navbar-left a {
            text-decoration: none;
            color: #e0e0e0;
            padding: 0 10px;
            /* Space between links */
        }

        .navbar-right {
            display: flex;
            align-items: center;
            margin-left: auto;
            /* Pushes the right-side elements to the far right */
        }

        .navbar-right img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-left: 10px;
        }

        .navbar-right a {
            margin-right: 10px;
            text-decoration: none;
            color: #e0e0e0;
        }

        /* Hero Banner Styling */
        .hero-banner {
            position: relative;
            height: 400px;
            width: 100%;
            overflow: hidden;
            background-size: cover;
            background-position: center;
        }

        /* Logo Positioning on Hero Banner */
        .hero-banner .banner-logo {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 150px;
            z-index: 100;
        }

        /* Slides and Dots */
        .slides {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        /* Inner Slide Wrapper */
        .slide-inner {
            position: relative;
            height: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: left;
            padding-left: 20px;
            padding-right: 20px;
            background-size: cover;
            background-position: center;
        }

        /* Slide Content Styling */
        .slide-content {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            box-sizing: border-box;
            border-radius: 5px;
            text-align: center;
            margin-bottom: 20px;
        }

        .slide-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .slide-content a {
            display: inline-block;
            padding: 10px 20px;
            background-color: #0078D4;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }

        .slide-content a:hover {
            background-color: #005a9e;
        }

        /* Dots container styling */
        .dots {
            position: relative;
            margin-top: 5px;
            /* Adjust this value as needed */
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            z-index: 2;
            background-color: #1c1c1c;
        }


        /* Styling the dots */
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: white;
            opacity: 0.5;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            opacity: 1;
        }

        /* Pause button styling */
        .pause-button {
            margin-left: 20px;
            cursor: pointer;
            fill: white;
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .pause-button svg {
            width: 20px;
            height: 20px;
            fill: white;
        }

        .pause-button.paused svg {
            fill: white;
        }

        /* Welcome Section Styling */
        .welcome-section {
            background-color: #1c1c1c;
            /* Matches the service section */
            padding: 40px 20px;
            text-align: center;
            color: #e0e0e0;
            /* Matches the text color of the site */
        }

        .welcome-section h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: #e0e0e0;
            /* Consistent heading color */
        }

        .welcome-section p {
            font-size: 16px;
            line-height: 1.6;
            color: #b0b0b0;
            /* Slightly lighter text for readability */
            max-width: 800px;
            margin: 0 auto;
        }

        /* Sliding Menu Styling */
        .side-menu {
            width: 250px;
            height: 100%;
            background-color: #333;
            position: fixed;
            top: 0;
            left: -250px;
            z-index: 1000;
            transition: 0.3s ease;
            padding-top: 60px;
        }

        .side-menu a {
            padding: 10px 15px;
            text-decoration: none;
            font-size: 18px;
            color: #e0e0e0;
            display: block;
            transition: 0.3s;
        }

        .side-menu a:hover {
            background-color: #575757;
        }

        .side-menu .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 30px;
            margin-left: 50px;
            cursor: pointer;
        }

        #menuToggle:checked~.side-menu {
            left: 0;
        }

        /* Services Section Styling */
        .services {
            background-color: #1c1c1c;
            padding: 40px 20px;
            text-align: center;
        }

        .services h2 {
            font-size: 28px;
            margin-bottom: 40px;
            color: #e0e0e0;
        }

        .services-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            justify-items: center;
        }

        .service-box {
            background-color: #2a2a2a;
            border: 1px solid #333;
            border-radius: 8px;
            width: 100%;
            max-width: 350px;
            text-align: left;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .service-box img {
            width: 100%;
            height: auto;
        }

        .service-box-content {
            padding: 20px;
            flex: 1;
        }

        .service-box h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #e0e0e0;
        }

        .service-box p {
            font-size: 14px;
            margin-bottom: 20px;
            color: #b0b0b0;
        }

        .service-box a {
            display: inline-block;
            padding: 10px 15px;
            text-decoration: none;
            background-color: #0078D4;
            color: #ffffff;
            font-weight: bold;
            border-radius: 4px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .service-box a:hover {
            background-color: #005a9e;
        }

        /* Footer Section Styling */
        .footer {
            background-color: #1f1f1f;
            padding: 20px;
            border-top: 1px solid #333;
            margin-top: auto;
        }

        .footer-columns {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .footer-column {
            margin: 10px;
            min-width: 150px;
        }

        .footer-column h3 {
            margin-bottom: 10px;
            font-size: 16px;
            color: #e0e0e0;
        }

        .footer-column a {
            display: block;
            margin-bottom: 8px;
            text-decoration: none;
            color: #b0b0b0;
            font-size: 14px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            font-size: 12px;
            color: #b0b0b0;
            flex-wrap: wrap;
        }

        .footer-bottom a {
            margin-right: 15px;
            text-decoration: none;
            color: #b0b0b0;
        }

        /* Media Queries for Responsive Design */
        @media (max-width: 768px) {

            .navbar-left a,
            .navbar-right a {
                margin-right: 5px;
            }

            .footer-columns {
                justify-content: space-between;
            }

            .services-row {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .navbar-left,
            .navbar-right {
                width: 100%;
                justify-content: space-between;
            }

            .navbar-right {
                margin-top: 10px;
            }

            .footer-columns {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-bottom a {
                margin-bottom: 10px;
            }
        }