html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    background-color: black;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: black;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6347;
}

#hero {
    background-color: #000;
    color: white;
    text-align: center;
    height: 400px;
    position: relative;
    padding: 5px;
}

#hero .hero-image {
    background: url('images/home/header.jpg') no-repeat center center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 1200px;
    height: 400px;
}

#hero .hero-content {
    position: relative;
    z-index: 1;
}

.cta-button {
    background: #ff6347;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e5533c;
}

#services {
    padding: 5px 5px 5px 5px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.service {
    margin: 5px 5px 5px 5px;
    padding: 5px;
    background: black;
    border-radius: 5px;
}

/* Flex container for slider and text */
.slider-content {
    display: flex;
    align-items: center;
    gap: 5px;
    text-align: left;
    padding: 5px 5px 5px 5px;
    color: #fff;
}

/* Image slider styles */
.custom-image-slider {
    width: 60%; /* Adjust width as desired */
    height: 500px;
    position: relative;
    overflow: hidden;
}

/* Text and button container */
.text-content {
    width: 35%; /* Adjust width as needed */
}

.text-content h2 {
    text-align: center;
}

.cta-button {
    display: inline-block;
    margin-top: 15px;
}

/* Slider images */
.slider-before, .slider-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-after {
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: white;
    cursor: ew-resize;
    left: 50%;
    z-index: 2;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.slider-handle::before,
.slider-handle::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.slider-handle::before {
    left: -24px;
    border-right: 16px solid #fff;
}

.slider-handle::after {
    right: -24px;
    border-left: 16px solid #fff;
}

#about	{
	margin: 0; /* Remove any default margin */
    padding: 5px 5px 5px 5px;
    background-color: #333;
    color: #fff;
    text-align: center;
}
#contact	{
	margin: 0; /* Remove any default margin */
    padding: 5px 5px 5px 5px;
    background-color: #333;
    color: #fff;
    text-align: center;
}
#footer	{
	margin: 0; /* Remove any default margin */
    padding: 5px 5px 5px 5px;
    background-color: #333;
    color: #fff;
    text-align: center;
}
