/* Futuristic Form Styling */
.futuristic-form {
  font-family: "Orbitron", sans-serif; /* Digital-style font */
  color: #0f0; /* Green text for matrix effect */
}

/* Styling for Form Groups */
.form-group {
  margin-bottom: 15px;
}

/* Label Styling */
.form-label {
  display: block;
  margin-bottom: 5px;
}

/* Input Field Styling */
.form-input {
  width: 100%;
  padding: 10px;
  background: #000;
  border: 1px solid #0f0;
  color: #0f0;
  font-size: 16px;
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 10px #0f0; /* Neon glow effect */
}

/* Submit Button Styling with Animation */
.submit-btn {
  background: linear-gradient(270deg, #09f, #f09);
  background-size: 400% 400%;
  animation: GradientAnimation 8s ease infinite;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: transform 0.2s;
}

.submit-btn:hover {
  transform: scale(1.1);
}

.submit-btn:active {
  transform: scale(0.9);
}

@keyframes GradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow: 0 0 7px #ffda44, 0 0 10px #ffda44, 0 0 21px #ffda44, 0 0 42px #cda434, 0 0 82px #cda434, 0 0 92px #cda434, 0 0 102px #cda434, 0 0 151px #cda434;
    color: #ffda44;
  }
  20%,
  24%,
  55% {
    text-shadow: none;
    color: #333; /* Dimmed colour */
  }
}

.neon-title {
  font-size: 2rem; /* Adjust size as needed */
  color: #ffda44; /* Gold color */
  text-align: center;
  animation: flicker 1.5s infinite alternate; /* Adjust timing as desired */
}

.customer-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates three columns */
  grid-gap: 20px; /* Space between the columns and rows */
  padding: 20px; /* Padding around the entire grid */
}

.review {
  background: #f9f9f9; /* Light background for the review */
  padding: 15px; /* Padding inside each review box */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Modern box shadow */
  border-radius: 5px; /* Rounded corners for the boxes */
  margin-bottom: 20px; /* Space below each review */
}

.gold-stars {
  background-color: #0bb77d; /* Green background */
  color: white; /* White color for the stars */
  padding: 2px; /* Padding to create space around the stars */
  border-radius: 0px; /* Rounded corners of the background */
  box-shadow: 0 0 2px #ffd700, /* Gold glow effect */ 0 0 2px #ffd700, 0 0 2px #ffd700;
  margin-right: 5px; /* Space after the stars */
}

/* Mobile view */
@media (max-width: 768px) {
  .customer-reviews {
    grid-template-columns: 1fr; /* Creates a single column for mobile */
  }
}

.review {
  background: #f9f9f9; /* Light background for the review */
  padding: 15px; /* Padding inside each review box */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Modern box shadow */
  border-radius: 5px; /* Rounded corners for the boxes */
  margin-bottom: 20px; /* Space below each review */
}

.gold-stars {
  background-color: #0bb77d; /* Green background */
  color: white; /* White color for the stars */
  padding: 2px; /* Padding to create space around the stars */
  border-radius: 0px; /* Rounded corners of the background */
  box-shadow: 0 0 2px #ffd700, /* Gold glow effect */ 0 0 2px #ffd700, 0 0 2px #ffd700;
  margin-right: 5px; /* Space after the stars */
}

/* General icon styling */
.contact-icon {
  font-size: 30px;
  margin-right: 5px;
  vertical-align: middle;
}

/* WhatsApp specific styling */
#header .header-nav-top .nav > li > span .fa-whatsapp {
  color: #25d366;
  font-size: 1.3em;
}
#footer {
  width: 100vw; /* Full viewport width */
  margin-left: calc(-50vw + 50%); /* Center relative to viewport */
  padding: 0; /* Remove default padding */
  background: #212529; /* Maintain background */
  border-top: 4px solid #212529;
  font-size: 0.9em;
  margin-top: 50px;
  position: relative;
  clear: both;
}

#footer .footer-ribbon {
  background: #999;
  position: absolute;
  margin: -20px 0 0 0;
  padding: 10px 20px 6px 20px;
  left: 20px; /* Moves it 20px from the left edge */
}

#footer .footer-copyright {
  width: 100vw; /* Full width for copyright section */
  margin-left: calc(-50vw + 50%);
  background: #1c2023;
}

#footer .row {
  margin-left: 0; /* Remove Bootstrap’s negative margins */
  margin-right: 0;
  width: 100%; /* Ensure rows span full width */
}

/* Optional: Add padding to content if it touches edges */
#footer .row > .col {
  padding-left: 100px;
  padding-right: 100px;
}

.owl-carousel {
  width: 100vw; /* Ensures the carousel itself spans the full viewport width */
  margin-left: calc(-50vw + 50%); /* Centers the carousel relative to the viewport */
}

.owl-item {
  width: 100vw; /* Makes each slide full-width to match the carousel */
}

/* Optional: Add padding to content inside slides if needed */
.owl-item .row {
  margin-left: 15px; /* Adds left padding to content */
  margin-right: 15px; /* Adds right padding to content */
  width: auto; /* Allows the row to stretch naturally within the slide */
}

@media (max-width: 991px) {
  /* ===== Move Header Nav Left ===== */
  #header .header-nav {
    display: flex;
    align-items: center;
    transform: translateX(-100px);
  }

  /* ===== Move Header Nav Top Left ===== */
  #header .header-nav-top {
    display: flex;
    align-self: stretch;
    align-items: center;
    transform: translateX(-50px);
  }

  /* ===== Shrink and Move Logo Left ===== */
  #header .header-logo img {
    z-index: 1;
    transform: scale(0.6) translateX(-30px);
  }

  /* ===== Move Main Nav Left and Remove Padding ===== */
  #header .header-nav-main nav {
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
    margin-left: -170px;
    margin-right: -70px;
    transition: ease all 500ms;
    transform: translateX(-70px);
  }
}

/* Chatbot Styles */
#chatbot {
  z-index: 1000;
}

#chatbot-toggle {
  background-color: #76bc37;
}

#chatbot-toggle:hover {
  background-color: #5f9c2d;
}

#chatbot-window {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#chatbot-window:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
}

#chatbot-window .bg-green-500 {
  background-color: #76bc37;
}

#chatbot-window .bg-green-100 {
  background-color: #e6f0d8;
}

#chatbot-send {
  background-color: #76bc37;
}

#chatbot-send:hover {
  background-color: #5f9c2d;
}

#chatbot-messages .chatbot-user p {
  background-color: #e5e7eb;
}

#chatbot-messages .chatbot-bot p {
  background-color: #e6f0d8;
}

#chatbot-input:focus {
  --tw-ring-color: #76bc37;
}
