@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
}

:root {
  --accent-color: #93272C; 
  --primary-color: #00B160; 
}

body {
  font-family: "poppins", "sans-serif";
  color: black;
  background-color: white;
}

html {
  scroll-behavior: smooth;
}

/* Transition */

a,
.btn {
  transition: all 300ms ease;
}

nav {
  margin-left: 60px;
  margin-right: 60px;
}

section {
  margin-left: 40px;
  margin-right: 40px;
}

/* Desktop Nav */

header {
  position: fixed;
  width: 100%;
  padding: 10px 0;
  top: 0;
  background-color: white; /* Set the background to black */
  z-index: 1000; /* Ensures it stays above other content */
  box-shadow: gray 0px 2px 4px; /* Adds a shadow for depth */
}

nav,
.nav-links {
  display: flex;
}

.nav-links {
  margin: auto;
}

nav {
  justify-content: space-between;
  align-items: center;
  height: 10vh;
}

.nav-links {
  gap: 2rem;
  list-style: none;
  font-size: 1.2em;
}

a {
  color: #93272C;
  text-decoration: none;
  text-decoration-color: #00B160;
}

a:hover {
  color: black;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: #00B160;
}

.minimal-anchor {
  color: inherit; /* Inherit color from parent element */
  text-decoration: none; /* Remove underline */
  font-weight: normal; /* Normal font weight */
  font-size: inherit; /* Inherit font size from parent element */
  transition: none; /* Remove transition effects */
}

.minimal-anchor:hover {
  text-decoration: none; /* Add underline on hover */
  color: #93272C;
}

.logo {
  font-size: 2rem;
}

.logo img {
  width: 180px;
  height: auto;
}

.logo:hover {
  cursor: default;
}

.logo img {
  width: 180px;
  height: auto;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  padding: 0 20px;
}

.nav-left,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-center {
  flex: 1;
  justify-content: center;
}

.nav-right {
  justify-content: flex-end;
}

.call-us-btn .call-us-button {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  color: #93272C;
  text-decoration: none;
  font-size: 1.1rem;
}

/* Hamburger Menu */
/* Sidebar Menu */
#hamburger-nav {
  display: none; /* Hidden by default */
  position: relative;
}

.hamburger-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 5px;
}

.hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #93272C;
  transition: all 0.3s ease;
}

.hamburger-icon.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.sidebar {
  position: fixed;
  top: 0;
  right: -250px; /* Hidden by default (off-screen to the right) */
  width: 250px;
  height: 100%;
  background-color: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2); /* Shadow on the left side */
  transition: all 0.3s ease;
  z-index: 1000;
}

.sidebar.active {
  right: 0; /* Slide in when active */
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}

.menu-links li {
  margin-bottom: 20px;
}

.menu-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #00B160;
}

/* Show hamburger menu on smaller screens */
@media (max-width: 768px) {
  #desktop-nav {
    display: none;
  }

  #hamburger-nav {
    display: block;
  }
}

/* Carousal */

#poster {
  /* margin-top: 90px; */
  margin-left: 0px;
  margin-right: 0px;
}
.carousel-img {
  object-fit: cover; /*Ensures images fit well without distortion */
  height: 800px;
  width: 100%;
}

.carousel-caption {
  text-align: left; /* Ensures text is left-aligned */
  left: 8%; /* Pushes the caption a bit to the left */
  right: 50%; /* Prevents default centering */
  bottom: 40%; /* Adjusts vertical positioning */
  margin: auto;
}
.carousel-caption h5 {
  font-size: 3rem;
  font-weight: bold;
}
.carousel-caption p {
  font-size: 1.2rem;
}

.carousel-control-prev {
  width: 11%;
}

.carousel-control-next {
  width: 11%;
}

.learn-more {
  color: white;
  background-color: #00bd39;
  padding: 10px;
  width: 200px;
  border-radius: 30px;
  border: none;
}

.learn-more:hover {
  box-shadow: 0 0 8px #00bd39; /* Glow effect */
  background-color: white;
  color: #00bd39;
}

main {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 20px; /* Add padding to the main section */
  background-color: white; /* Light gray background for the main section */
}

main section {
  margin-top: 50px;
}

/* Showcase */

h2 {
  color: #93272C;
  font-size: 36px;
  font-weight: bold;
  margin-top: 20px;
}
hr {
  border: 0;
  border-top: 6px solid #00B160;
  border-radius: 5px;
  width: 25%;
  opacity: initial;
  margin-bottom: 40px;
}

/* Showcase Section */
#showcase {
  padding: 50px 20px; /* Add padding for spacing */
}

#showcase h2 {
  font-size: 2.5rem; /* Larger font size for the heading */
  color: #93272C; /* Primary color for the heading */
  font-weight: bold;
  margin-bottom: 20px;
}

#showcase hr {
  border: 0;
  border-top: 4px solid #00B160; /* Green underline */
  width: 50%; /* Short underline */
}

.showcase-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}

.showcase-item {
  text-align: center;
  padding: 20px;
  background-color: #ffffff; /* White background for each item */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.showcase-image {
  width: 100%; /* Make images responsive */
  height: auto;
  border-radius: 8px; /* Optional: Add rounded corners */
  margin-bottom: 15px; /* Add spacing below the image */
}

.elementor-icon-box-title a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333; /* Darker text color */
  text-decoration: none;
}

.elementor-icon-box-title a:hover {
  color: #93272C; /* Change color on hover */
}

.showcase-text {
  font-size: 1rem;
  color: #666; /* Lighter text color */
  margin-bottom: 20px;
  line-height: 1.6; /* Improve readability */
}

.elementor-button-wrapper {
  margin-top: 15px;
}

.elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #00B160; /* Green button background */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.elementor-button:hover {
  background-color: white;
  color: #00B160;
  box-shadow: 0 0 8px #00B160; /* Glow effect */
}

.elementor-button-icon {
  margin-right: 8px;
}

/* services */

/* Service List Items */
.service-list-item {
  display: flex;
  justify-content: space-between; /* Space between the two columns */
  gap: 20px; /* Add spacing between the columns */
}

.service-list-item ul {
  list-style: none; /* Remove default bullet points */
  padding: 0;
}

.service-list-item li {
  position: relative;
  padding-left: 25px; /* Add space for the checkmark */
  margin-bottom: 10px; /* Add spacing between list items */
  font-size: 1rem; /* Adjust font size */
  color: #333; /* Text color */
}

.service-list-item li::before {
  content: "✔"; /* Add checkmark icon */
  position: absolute;
  left: 0;
  top: 0;
  color: #00B160; /* Green color for the checkmark */
  font-size: 1.2rem; /* Adjust size of the checkmark */
  line-height: 1; /* Align the checkmark vertically */
}

/* choose us section */

.chooseUs-image {
  width: 100%; /* Make images responsive */
  height: auto;
  border-radius: 8px; /* Optional: Add rounded corners */
  margin-bottom: 15px; /* Add spacing below the image */
}

/* clients */

.customer-logos .slick-slide {
  padding: 0 10px; /* Horizontal gap of 20px total (10px on each side) */
  box-sizing: border-box;
}

.customer-logos {
  margin: 0 -10px; /* Negate inner padding to maintain container alignment */
}

/* Slick slide wrapper for each client */
.customer-logos .card {
  width: 250px; /* Fixed width */
  height: 150px; /* Fixed height */
  padding: 1.5rem;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  background: #fff;
  margin: 10px; /* Add margin for spacing */
  cursor: pointer;
  display: flex; /* Use flexbox */
  flex-direction: column; /* Stack items vertically */
  justify-content: space-between; /* Distribute space */
  align-items: center;
}

.card-body {
  text-align: center;
  display: flex;
  align-items: flex-end; /* Stick title to bottom */
}

.customer-logos .card:hover {
  transform: scale(1.05);
}

.customer-logos {
  padding: 30px 0;
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.client-item {
  text-align: center;
  padding: 20px;
  height: 150px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.client-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

.slick-track {
  display: flex !important;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slide {
  height: auto;
  margin: 0 15px;
}

@media (max-width: 768px) {
  .customer-logos {
    padding: 15px 0;
  }

  .client-item {
    padding: 10px;
  }

  .client-img {
    max-width: 140px;
  }
}

/* Video Section */
#poster {
  position: relative;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.video-container {
  position: relative;
  height: 100vh;
  width: 100%;
}

#myVideo {
  position: absolute;
  top: 50px;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.video-text {
  color: white;
  max-width: 600px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.video-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #00B160;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #93272C;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  color: white;
}

/* Footer */
footer {
  background-color: #0d1b2a;
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  margin: 0;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  margin-left: 40px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: bold;
}

.footer-nav,
.where {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.where h6 {
  color: white;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
  color: white;
  text-underline-offset: 0.5rem;
}

.line hr {
  position: relative;
  margin-top: 50px;
  border: none;
  border-top: 1px solid #ffffff;
  width: 100%;
  opacity: 0.5;
}

.footer-copyright {
  position: relative;
  font-size: 12px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  footer {
    height: auto;
    padding: 30px 15px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo img {
    margin-left: 0;
  }

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .where h6 {
    font-size: 18px;
  }

  .line hr {
    margin-top: 30px;
  }
}

/* Privacy Policy Styles */
.privacy-policy {
  padding: 60px 0;
}

.privacy-policy h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  text-align: start;
  color: var(--accent-color);
}

.privacy-policy-hr {
  width: 60%;
  height: 4px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 2px;
}

.privacy-quick-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.privacy-quick-nav li a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #fff;
  border: 1px solid black;
  border-radius: 20px;
  color: black;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.privacy-quick-nav li a:hover {
  background-color: black;
  color: white;
}

.privacy-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  border: none;
  overflow: hidden;
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.privacy-card-body {
  padding: 2rem;
}

.privacy-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: black;
  position: relative;
  padding-bottom: 15px;
}

.orange-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: black;
  border-radius: 1.5px;
}

.privacy-card-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-card-text:last-child {
  margin-bottom: 0;
}

.privacy-icon {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 1.5rem;
  text-align: center;
}
