/* General Styles */
:root {
    --primary-color: #37A686; /* Blue */
    --secondary-color: #034C8C; /* Green */
    --accent-color: #24A6A6; /* White */
    --background-color: #FFFFFF; /* White */
    --text-color: #0D7BA6; /* Blue */
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--text-color);
}

/* Header Styles */
header {
  background-color: #FFF;
  color: #var(--accent-color);
  padding: 1px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-width: 250px;
  border-radius: 20px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

nav ul {
  list-style: none;
  display: flex;
}

nav li {
  margin-left: 25px;
  display: inline-block;
}

nav a {
  color: #034C8C;
  font-weight: bold;
  font-size: 25px;
  text-decoration: none;
}


/* Slider Styles */
.slider-container {
    position: relative;
    width: 100%;
    margin: 1px auto;
	padding: 2em;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}

.slide.active {
    display: block;
}

.slider {
    position: relative;
    width: 100%;
    height: 450px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
	background-position: center;
    display: none;
}    

        .slider-nav {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
        }

        .slider-nav button {
            background-color: var(--accent-color);
            color: #fff;
            border: none;
            padding: 5px 5px;
			border-radius: 20px;
            font-size: 20px;
			font-weight: bold;
            cursor: pointer;
        }

        .slider-nav button:hover {
            background-color: var(--secondary-color);
        }
		
#banner {
    background-color: #fff;
    padding: 20px;
    text-align: center;
}

.banner-container {
    position: relative;
    width: 100%;
    margin: 20px auto;
	padding: 2em;
	border-radius: 20px;
    background-color: #F2F2F2;
}

.banner-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    animation: banner-animation 15s infinite;
}

@keyframes banner-animation {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.banner-container img:nth-child(1) {
    animation-delay: 0s;
}

.banner-container img:nth-child(2) {
    animation-delay: 3.33s;
}

.banner-container img:nth-child(3) {
    animation-delay: 6.66s;
}

/* Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.slider-nav button {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  padding: 5px 5px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: bold
  cursor: pointer;
}

/* Services Section */
#services {
  padding: 50px 20px;

}

#services h2 {
  margin-bottom: 30px;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.active {
    display: block;
}

.service-column {
  flex-basis: 30%;
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  clear: both;
  margin: 0 auto; /* add this line */
  max-width: 1500px; /* add this line */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.service-column h3 {
  margin-bottom: 15px;
}

/* Footer Styles */
footer {
  background-color: #F2F2F2;
  color: var(--accent-color);
  padding: 1em;
  text-align: center;
  clear: both;
  margin: 0 auto; /* add this line */
}

footer a {
  color: #0D7BA6;
  text-decoration: none;
}

.social-media {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-media li {
  margin: 0 10px;
}

.social-media img {
  width: 30px;
}

/* Responsive Design (Optional) */
@media (max-width: 768px) {
  /* Adjust styles for smaller screens */
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    max-width: 1060px;
    padding: 20px;
	border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.contact-text {
    flex: 1;
    margin-right: 30px; 
}

.contact-form {
    flex: 1;
}

/* Basic styling, you can customize this further */
body {
    font-family: sans-serif;
}

h1, h2 {
    margin-bottom: 20px;
}

select {
    width: 250px;
    padding: 10px;
    margin-bottom: 15px;
}

#buildSummary {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ccc;
}