/* Reset some default styles */
body {
  margin: 0;
  padding: 0;
}

.main-image{
	background-image: url('background.jpg'); /* Replace with your actual image URL */
}

.client1-image{
	background-image: url('client1.png'); /* Replace with your actual image URL */
}

.client2-image{
	background-image: url('client2.png'); /* Replace with your actual image URL */
}

.client3-image{
	background-image: url('client3.png'); /* Replace with your actual image URL */
}

.btn {
  /* Define common styles for buttons */
  display: inline-block;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 20px;
  position: fixed;
  top: 20px;
  right: 30px;
  padding: 10px;
  text-decoration: none;
  z-index:2;
  border-radius: 5px; /* Add border radius value for rounded corners */
}

.btn-services {
  /* Define common styles for buttons */
  display: inline-block;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 20px;
  position: fixed;
  top: 20px;
  right: 180px;
  padding: 10px;
  text-decoration: none;
  z-index:2;
  border-radius: 5px; /* Add border radius value for rounded corners */
}

.btn-primary {
  /* Define styles for primary buttons */
  background-color: #ff0000; /* Add desired background color */
  color: #fff; /* Add desired text color */
}

.btn-primary:hover {
  /* Define hover styles for primary buttons */
  background-color: #ff7400; /* Add desired hover background color */
}

.service-overlay-container{
  display:none;
}
.service-overlay-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.service-overlay {
	position:relative;
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.service-overlay h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.service-overlay p {
  font-size: 26px;
  margin-bottom: 20px;
}

.service-overlay ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-overlay ul li {
  font-size: 26px;
  margin-bottom: 10px;
}

/* Overlay box close button */
.service-close-btn {
  position: absolute; /* Set position property to absolute for centering the button */
  left: 50%; /* Set left to 50% */
  transform: translateX(-50%); /* Use transform to horizontally center the button */
  bottom: 10px; /* Set desired distance from the bottom */
  font-size: 18px;
  color: #333333;
  cursor: pointer;
}

.service-close-btn:hover {
  background-color: #ffffff;
}
.lists-container {
	display: flex; /* Use flexbox layout */
}

.list-1, .list-2 {
	flex: 1; /* Distribute equal width to both lists */
}

.list-1 {
	margin-right: 10px; /* Add margin between the lists */
}
/* Styles for contact overlay */
.contact-overlay-box{
	display:none;
}
.contact-overlay {
  /* Set the contact overlay as a flex container */
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
  /* Set other styles for the overlay */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Add desired overlay color */
  z-index: 9999; /* Adjust z-index as needed */
}

/* Overlay box content */
.contact-overlay .contact-form {
  max-width: 400px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Overlay box title */
.contact-overlay .contact-form h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Overlay box form fields */
.contact-overlay .contact-form input[type="text"],
.contact-overlay .contact-form input[type="email"],
.contact-overlay .contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #333333;
}

/* Overlay box form submit button */
.contact-overlay .contact-form input[type="submit"] {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-overlay .contact-form input[type="submit"]:hover {
  background-color: #0056b3;
}

/* Overlay box close button */
.contact-overlay .close-btn {
  position: relative;
  top: 20px;
  right: 20px;
  font-size: 18px;
  color: #333333;
  cursor: pointer;
}

/* Set background image */
.bg-image {
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative; /* Added position: relative to enable z-index */
}

/* Add dark filter to background image */
.bg-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
  z-index: 1; /* Updated z-index to place the filter below the text and line */
}

/* Centered logo */
.logo {
  position: absolute;
  top: 3vw; /* Updated top to lower the logo */
  left: 50%;
  transform: translateX(-50%); /* Center the logo horizontally */
  max-width: 600px; /* Set maximum width to 300px */
  width: 33%; /* Set width to 33% of the parent container */
  z-index: 2; /* Updated z-index to place the logo above the filter */
}

.first-word{
	color: #ff0000;
	-webkit-text-stroke: 1px #fff; /* adjust outline width and color as desired */
	-moz-text-stroke: 1px #fff;
	-ms-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
}

/* Centered text overlay container */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2; /* Updated z-index to place the text above the filter */
  padding: 0 40px; /* Added padding to give some margin from the edges */
  box-sizing: border-box; /* Added box-sizing to include padding within width */
}

/* Large white text */
.overlay-text h1 {
  font-size: 6.67vw; /* Updated font-size to be 6.67vw for 2/3 the size */
  font-weight: bold; /* Added font-weight for boldness */
  font-family: sans-serif; /* Added font-family for sans-serif font */
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap; /* Prevent text from wrapping */
  margin-bottom: 10px; /* Added margin-bottom to separate from h2 */
  text-shadow: 8px 8px 5px rgba(0, 0, 0, 0.5); /* adjust shadow properties as desired */
}

/* Smaller text */
.overlay-text h2 {
  font-size: 4.44vw; /* Updated font-size to be 4.44vw for 2/3 the size */
  font-weight: bold; /* Added font-weight for boldness */
  font-family: sans-serif; /* Added font-family for sans-serif font */
  color: #fff;
  margin-top: 10px; /* Added margin-top to separate from h1 */
  white-space: nowrap; /* Prevent text from wrapping */
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5); /* adjust shadow properties as desired */
}

/* Thin red line */
.overlay-text hr {
  border: none;
  border-top: 2px solid #ff0000; /* Updated border-top with red color and increased thickness */
  width: calc(100% - 140px); /* Set width to 100% minus 140px margin on left and right */
  margin: 0 auto; /* Center the line */
  margin-top: 5px; /* Added margin-top to move the line down */
  margin-bottom: 5px; /* Added margin-bottom to move the line up */
  z-index: 2; /* Updated z-index to place the line above the filter */
}

/*Overlay Quote Text*/
.overlay-text-quote {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2; /* Updated z-index to place the text above the filter */
  padding: 0 40px; /* Added padding to give some margin from the edges */
  box-sizing: border-box; /* Added box-sizing to include padding within width */
}

.overlay-text-quote h1 {
  font-size: 6.67vw; /* Updated font-size to be 6.67vw for 2/3 the size */
  font-weight: bold; /* Added font-weight for boldness */
  font-family: sans-serif; /* Added font-family for sans-serif font */
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap; /* Prevent text from wrapping */
  margin-bottom: 10px; /* Added margin-bottom to separate from h2 */
  text-shadow: 8px 8px 5px rgba(0, 0, 0, 0.5); /* adjust shadow properties as desired */
}

.overlay-text-quote h2 {
  font-size: 1.2vw; /* Updated font-size to be 4.44vw for 2/3 the size */
  font-weight: narrow; /* Added font-weight for boldness */
  font-family: sans-serif; /* Added font-family for sans-serif font */
  color: #fff;
  margin-top: 10px; /* Added margin-top to separate from h1 */
}

.overlay-text-quote q {
  display: block;
  margin-bottom: 10px;
  font-weight: bold; /* Added font-weight for boldness */
  font-size: 2vw; /* adjust font size as desired */
  color: #fff; /* adjust color as desired */
  font-style: italic;
  margin-top: 10px; /* adjust spacing as desired */
}

/* Thin red line */
.overlay-text-quote hr {
  border: none;
  border-top: 2px solid #ff0000; /* Updated border-top with red color and increased thickness */
  width: calc(100% - 140px); /* Set width to 100% minus 140px margin on left and right */
  margin: 0 auto; /* Center the line */
  margin-top: 5px; /* Added margin-top to move the line down */
  margin-bottom: 5px; /* Added margin-bottom to move the line up */
  z-index: 2; /* Updated z-index to place the line above the filter */
}

/* CSS for the scroll down arrow with text */
.scroll-down-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.scroll-down-text {
  font-size: 18px;
  color: #fff;
  margin-bottom: 10px;
}

.scroll-down-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 1s infinite;
}

.scroll-down-arrow span {
  position: relative;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid #fff;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
