/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2, h3 {
    margin: 0;
    padding: 0;
}

/* Image Slider */
.full-screen-slider {
    position: relative;
    overflow: hidden;
    height: 600px; /* Adjust as needed */
}

.slide {
    background-size: cover;
    background-position: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: left;
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black hue with 50% opacity */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2; /* Ensures content is above the black hue */
}

.slide-content p {
    font-size: 3rem;
    width: 700px;
    padding-left: 20px;
    font-weight: bold;
}

@media screen and (max-width: 800px) {
  .slide-content p {
    width: auto;
    padding-left: 20px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #007bff; /* Active dot color */
}

/* Dynamic Services Section */
.services-section {
    padding: 60px 20px;
    background: #f8f9fa;
    text-align: center;
}

.services-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item {
    background: #e9ecef;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 400px;
    box-sizing: border-box;
    text-align: center;
}

.service-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.service-item p {
    font-size: 1em;
    color: #555;
}

/* Effortless Integration Section */
.effortless-integration {
    padding: 60px 20px;
    background: #e9ecef; /* Light background color */
    text-align: center;
}

.integration-content {
    max-width: 800px;
    margin: 0 auto;
}

.integration-content h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.integration-content p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

blockquote {
    font-size: 1.5em;
    color: #777;
    border-left: 4px solid #333;
    padding-left: 20px;
    margin: 0 auto;
    max-width: 600px;
    font-style: italic;
}


.quote {
    background-color: #f8f9fa;
    font-size: 1em;
    color: #777;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
    font-style: italic;
}

/* Software Solutions for Your Business Section */
.software-solutions {
    padding: 60px 20px;
    background: #e9ecef; /* Light gray background */
    text-align: center;
}

.software-solutions h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.solutions-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.solution-item {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 400px;
    box-sizing: border-box;
    text-align: center;
}

.solution-item h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.solution-item p {
    font-size: 1em;
    color: #555;
}
