:root {
  --accent-color: #30ABEC;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.container-fluid, .main, .header, .footer {
  padding: 0;
  margin: 0;
}

.main {
  width: 100%;
}

/* Hero Section */
.hero {
  width: 100%;
  min-height: 75vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  height: 70vh; /* Adjust this value for your preferred height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-overlay {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 20px;
  color: #fff;
}

.testimonial-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 500px;
  color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.btn-get-started, .btn-watch-video {
  margin: 0 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .swiper-slide {
    height: 50vh; /* Adjust height for smaller screens */
  }

  .testimonial-item {
    height: 50vh; /* Adjust testimonial item height for mobile view */
    padding: 20px; /* Reduce padding on smaller screens */
  }

  .content-overlay h1 {
    font-size: 1.5rem; /* Reduce font size for mobile view */
    line-height: 1.2;
  }

  .btn-get-started, .btn-watch-video {
    padding: 10px 20px; /* Adjust button padding for mobile */
    font-size: 1rem; /* Reduce button text size */
  }
}

/* Logo and Company Name */
.logo {
  text-align: left;
}

.logo img {
  max-height: 55px;
}

.logo .sitename {
  font-size: 14px;
  margin-top: 5px;
  color: #666;
}

/* Carousel Styles */
.carousel-item {
  height: 100vh;
  min-height: 300px;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease-in-out;
}

.carousel-inner {
  height: 100%;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: block;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: black;
  border-radius: 50%;
  padding: 10px;
}

.info-wrap {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    margin-bottom: 20px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
