/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.6;
  color: #333;
  font-family: "Nunito Sans", sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Updated h2 style with centered green underline */
h2 {
  font-size: 2.7rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  color: #333;
  margin-bottom: 2.5rem;
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  white-space: normal !important;
}

h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #4ad385;
}

/* Section heading alignment for specific sections */
.section-with-centered-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Multi-color heading effect */
h1 span.blue-text,
h2 span.blue-text,
h3 span.blue-text,
h4 span.blue-text {
  color: #3eb6ff;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
  color: #333;
}

.subheadline {
  font-size: 1.25rem;
  color: #252525;
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero {
  background: linear-gradient(to right, #2e2e2e, #434343); /* modern gradient */
}

/* Hero subheadline specific style */
.hero .subheadline {
  font-size: 1.6rem;
  color: white;
  font-weight: 400;
  margin-bottom: 2.5rem;
  text-transform: none;
  text-align: center;
}

.btn {
  display: inline-block;
  margin: 8px 0px 0px;
  padding: 12px 30px;
  border-radius: 34px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background-color: #4ad385;
  color: black;
  border: none;
  font-family: "Lato", sans-serif;
  letter-spacing: 0.5px;
}

.btn:hover {
  background-color: #4ad385;
  color: white;
}

section {
  padding: 80px 0;
}

.bg-white {
  background-color: white;
  color: #333;
}
.bg-light-gray {
  background-color: #f7f7f7;
  color: #333;
}

.bg-white .grid-item,
.bg-white .testimonial {
  background-color: #f7f7f7;
  color: #333;
}
.bg-light-gray .grid-item,
.bg-light-gray .testimonial {
  background-color: white;
  color: #333;
}
.bg-light-gray .contact-form {
  background-color: white;
  color: #333;
}
.bg-white .contact-form {
  background-color: #f7f7f7;
  color: #333;
}

.text-center {
  text-align: center;
}

header {
  background-color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

.header-phone {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* WhatsApp Icon Styles */
.whatsapp-icon {
  color: #25d366;
  margin-right: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* White WhatsApp icon specifically for the hero button */
.hero-buttons .whatsapp-icon {
  color: black !important;
}

/* Black WhatsApp icon for specific sections */
.cta-break .whatsapp-icon {
  color: black !important;
}

/* Update header phone style */
.header-phone {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  display: inline-flex;
  align-items: center;
}

/* Make phone numbers look clickable */
.phone-link {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

.phone-link:hover {
  color: #4ad385;
}

/* Updated Hero Section */

.hero {
  background-image: url("/api/placeholder/1600/800");
  background-color: #555;
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 200px 0 120px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

/* Two Column Layout with centered heading */
.two-column-with-centered-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.two-column {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.column {
  flex: 1;
}

/* Video Container */
.video-container {
  position: relative;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container iframe,
.video-container video {
  width: 100%;
  max-width: 640px;
  height: 360px;
  border: none;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(51, 51, 51, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.play-button:hover {
  background-color: #555;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
  color: white;
  font-size: 32px;
  margin-left: 6px;
}

/* Feature List with Icon Boxes */
.feature-list {
  list-style: none;
  margin: 30px 0;
  padding: 0;
}

.feature-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-direction: row;
}

.feature-list li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #4ad385;
  border-radius: 50%;
  color: black;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1;
}

/* ====== Partnerships Section Updates ====== */
.feature-list.horizontal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 100% !important;
  margin: 30px auto !important;
}

.feature-list.horizontal li {
  flex-direction: row;
  margin-bottom: 0 !important;
  align-items: center;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
}

.feature-list li i {
  width: 48px; /* Increased by 20% */
  height: 48px;
  font-size: 22px;
  background-color: #4ad385;
}

/* ===== Blue Icons Update ====== */
#product-highlights .grid-item i,
#dealer-benefits .grid-items i,
#industry-segments .grid-item i {
  color: #3eb6ff !important;
}

/* ===== Sector Cards Clickable ===== */
#industry-segments .grid-item {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

#industry-segments .grid-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

#industry-segments .grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Section-specific adjustments */
#why-choose .two-column .column:last-child .subheadline {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  margin-bottom: 15px;
}

#built-for-resellers .two-column .column:first-child .subheadline {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  margin-bottom: 15px;
}

/* ✅ Fix for center-aligning the misaligned subheadline */
#built-for-resellers .subheadline {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

/* Popup modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 30px;
  border-radius: 8px;
  width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.modal-btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #4ad385;
  color: black;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-btn:hover {
  background-color: #4ad385;
  color: white;
}

.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blue icons for dealer benefits section */
#dealer-benefits .grid-item i {
  color: #3eb6ff !important;
}

/* Updated Contact Form Styles */
.contact-form {
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.contact-form h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #4ad385;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 14px;
  color: #333;
  font-family: "Nunito Sans", Arial, sans-serif;
  background-color: #f9f9f9;
}

.form-control::placeholder {
  color: #888;
}

.form-control:focus {
  outline: none;
  border-color: #4ad385;
  box-shadow: 0 0 0 3px rgba(74, 211, 133, 0.2);
}

.form-submit {
  text-align: center;
  margin-top: 15px;
}

.cta-break {
  background-color: #f5f3f3;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-break h2 {
  color: #333333;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: normal;
}

.cta-break .subheadline {
  color: rgba(44, 44, 44, 0.8);
}

.four-column-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.grid-item {
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
  text-align: center;
}

.grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.grid-item i {
  font-size: 36px;
  /* color: #555; */
  margin-bottom: 20px;
}

.grid-item h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* partner logos */
.partners-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
  margin: 0 auto;
  max-width: 1200px;
}

.partners-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-logos 25s linear infinite;
}

.partner-card {
  width: 280px; /* Larger card size */
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  /* transition: all 0.4s ease; */
  /* margin: 0 10px; */
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.85;
  transition: all 0.4s ease;
}

.partner-card:hover img {
  opacity: 1;
}

/* Gradient fade effects */
.partners-container::before,
.partners-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners-container::before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.partners-container::after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

/* Animation with pauses */
@keyframes scroll {
  0%,
  16% {
    transform: translateX(0);
  }
  20%,
  36% {
    transform: translateX(calc(-280px * 1));
  } /* card width + gap */
  40%,
  56% {
    transform: translateX(calc(-280px * 2));
  }
  60%,
  76% {
    transform: translateX(calc(-280px * 3));
  }
  80%,
  96% {
    transform: translateX(calc(-280px * 4));
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-container:hover .partners-track {
  animation-play-state: paused;
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-wrapper:hover .partners-slide-track {
  animation-play-state: paused;
}

/* Add this to make sure the carousel is centered */
.partners-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* display: flex;
            justify-content: center; */
}

/* Add gradient fade effects on sides */
.partners-wrapper::before,
.partners-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}

.partners-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-140px * 6 - 40px * 5)
    ); /* Adjust based on half the items */
  }
}

/* Pause animation on hover */
.partner-logos-container:hover .partner-logos-track {
  animation-play-state: paused;
}

.testimonial-slider {
  margin: 40px auto;
  max-width: 800px;
}

.testimonial {
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.testimonial:before {
  content: '"';
  font-size: 120px;
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: serif;
  z-index: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: #333;
}

footer {
  background-color: #222;
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: left;
  /* padding-bottom: 10px; */
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 992px) {
  .two-column {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .feature-list.horizontal {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature-list.horizontal li {
    width: auto !important;
    justify-content: flex-start !important;
  }

  .four-column-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-buttons {
    justify-content: center;
  }

  #why-choose .two-column {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  #why-choose .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #why-choose .video-container {
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
  }

  #why-choose .video-container iframe {
    height: 100%;
    max-height: 480px; /* 👈 You can tweak this value to match the text column */
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 10px;
  }

  #why-choose .feature-list {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    /* display: inline-block;
                white-space: normal;
                line-height: 1.3; */
    font-size: 3.5rem;
  }

  h2 .blue-text {
    display: block;
    margin-top: 5px;
  }

  h2.section-title {
    font-size: 3.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 80%;
    max-width: 300px;
  }

  .four-column-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-column {
    margin-bottom: 20px;
  }

  .footer-column h3 {
    text-align: center;
  }

  .footer-column h3:after {
    left: 50%;
    transform: translateX(-50%);
  }
  .header-container {
    flex-direction: column;
    gap: 10px;
  }

  /* Add box shadow to grid items in mobile view */
  #product-highlights .grid-item,
  #dealer-benefits .grid-item,
  #industry-segments .grid-item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  /* Optional: Add hover effect for better interactivity */
  #product-highlights .grid-item:hover,
  #dealer-benefits .grid-item:hover,
  #industry-segments .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .video-container {
    margin: 30px;
  }

  #built-for-resellers .two-column {
    flex-direction: column; /* Puts video above image on mobile */
  }

  #why-choose .video-container,
  #built-for-resellers .video-container,
  #difference .video-container {
    display: block !important;
    width: 100%;
    margin: 20px auto;
  }

  #why-choose .feature-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    gap: 20px;
    margin-top: 20px;
  }

  #why-choose .feature-list li {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 300px;
    text-align: left;
    margin: 0 auto;
    background: transparent !important;
    border-radius: 30px;
    padding: 12px 20px;
  }

  #why-choose .feature-list li i {
    background-color: #4ad385;
    color: black;
    font-size: 18px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
  }

  #why-choose .column .btn {
    display: block;
    margin: 20px auto 0;
    text-align: center;
  }

  #why-choose .column > div {
    text-align: center !important;
    margin: 0 auto;
  }

  /* Adjust two-column layout for mobile */
  .two-column {
    flex-direction: column;
  }

  /* Ensure proper spacing */
  .column {
    width: 100%;
    padding: 0 15px;
  }

  /* Adjust video iframe sizing */
  .video-container iframe {
    height: 250px; /* Fixed height for mobile */
  }

  /* Center-align content in mobile */
  .two-column-with-centered-heading {
    text-align: center;
  }

  /* Ensure proper spacing between heading parts */
  h2 {
    font-size: 2.7rem;
    padding-bottom: 10px;
  }

  h2:after {
    bottom: 5px;
  }

  /* Horizontal feature list becomes horizontal on mobile */
  .feature-list.horizontal {
    flex-direction: column !important;
    /* flex-wrap: wrap; */
    gap: 20px;
  }

  .feature-list.horizontal li {
    width: auto !important;
    justify-content: flex-start !important;
  }

  .feature-list li {
    justify-content: center;
    margin-bottom: 20px;
  }

  /* Grid items full width on mobile */
  .four-column-grid {
    grid-template-columns: 1fr !important;
  }

  .cta-break h2 {
    font-size: 2.7rem;
  }

  #partnerships .feature-list.horizontal {
    flex-direction: column !important;
    align-items: center;
    gap: 15px;
  }

  #partnerships .feature-list.horizontal li {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin: 10px auto !important;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2{
    font-size: 2.5rem;
  }

  .contact-form h3 {
    font-size: 1.5rem;
  }

  .hero .subheadline {
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 20px;
  }

  .video-container {
    margin: 15px 0 !important;
  }

  .video-container iframe {
    height: 200px;
  }

  .feature-list.horizontal {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 20px;
  }

  .feature-list.horizontal li {
    width: auto !important;
    justify-content: flex-start !important;
  }
}

/* Contact number green */
.phone-link, 
.footer-links a[href^="https://wa.me"]
{
  color: #4ad385;
}

/* Email ID blue */
.footer-links a[href^="mailto"],
a[href^="mailto"] {
  color: #3eb6ff;
}

/* Optional hover effect if needed */
.footer-links a:hover,
a:hover {
  color: rgb(0, 0, 0);
}

.three-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  align-items: start;
}

.grid-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* Responsive: Stack columns on small devices */
@media (max-width: 768px) {
  .three-column-grid {
    grid-template-columns: 1fr;
  }
}

/* testimonial */
/* Only apply inside testimonial section */
.testimonial-section .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.testimonial-section .testimonial-item {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 10px;
  height: 400px; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease; /* Smooth transition */
  cursor: pointer; /* Pointer on hover */
}

/* Hover effect */
.testimonial-section .testimonial-item:hover {
  background-color: #f7f7f7; /* Light blue highlight */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px); /* Slight lift effect */
}

.testimonial-section .testimonial-content {
  width: 100%;
}

.testimonial-section iframe {
  max-width: 100%;
  height: 200px;
  border-radius: 10px;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .testimonial-section .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Section - Specific Styling */
#why-choose {
  padding: 80px 0;
}

#why-choose .section-header {
  margin-bottom: 50px;
}

.why-choose-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-column {
  flex: 1;
}

#why-choose .video-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 360px;
}

.why-choose-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.why-choose-features li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  gap: 15px;
}

.why-choose-features li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #4ad385;
  border-radius: 50%;
  color: black;
  font-size: 18px;
}

.why-choose-button {
  margin-left: 55px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .why-choose-content {
    gap: 40px;
  }

  #why-choose .video-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .why-choose-content {
    flex-direction: column;
  }

  #why-choose .video-container {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .why-choose-button {
    margin-left: 0;
    text-align: center;
  }

  .why-choose-features {
    margin-top: 30px;
  }
}

.hero-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* margin-top: 50px; */
}

.hero-text {
  flex: 1;
  min-width: 280px;
  /* margin-top: 120px; */
  color: white;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: fadeInRight 1.2s ease-in-out;
}

/* Base button styling */
.btn {
  display: inline-block;
  padding: 12px 20px;
  font-size: 16px;
  text-align: center;
  /** background-color: #007BFF; 
  color: white; **/
  text-decoration: none;
  
  margin: 5px;
  white-space: normal !important;
}

/* Make buttons full width and same size on small screens */
@media (max-width: 768px) {
  .why-choose-button {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0 !important;
  }

  .why-choose-button .btn {
    width: 100%;
    box-sizing: border-box;
  }
}


@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.dealer-form h3 {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.dealer-form h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #4ad385;
}

.dealer-form input,
.dealer-form textarea {
  width: 100%;
  padding: 6px 12px;
  /* margin-bottom: 15px; */
  border: 1px solid #ddd;
  font-size: 14px;
  border-radius: 30px;
  color: #333;
  font-family: "Nunito Sans", Arial, sans-serif;
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    flex-direction: column-reverse;
  }
}

  /* for Tawk.to greeting text disable */
  /* @media (max-width: 768px) {
    iframe[src*="tawk.to"] {
      bottom: 50px !important;
      right: 50px !important;
      z-index: 9999 !important;
    }
  } */


/* General two-column layout fix */
.two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.two-column .why-choose-column,
.two-column .column {
  flex: 1 1 48%;
}

/* Bullet icons and text alignment */
.why-choose-features li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 18px;
}

.why-choose-features li i {
  font-size: 18px;
  margin-right: 15px;
  color: #050505; /* Optional: brand blue */
}

/* Fix for the sign-up section bullet + button layout */
#contact .why-choose-features li {
  font-size: 18px !important;
}

#contact .why-choose-features li .btn {
  margin-top: 8px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }

  .two-column .why-choose-column,
  .two-column .column {
    flex: 1 1 100%;
  }

  .video-container iframe {
    width: 100%;
    height: auto;
  }
}

/* Align icon and text properly inside list items */
.why-choose-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}

/* Resize icons consistently */
.why-choose-features li i {
  font-size: 18px;
  min-width: 24px;
  text-align: center;
  color: #000000; /* optional: brand color */
}

/* Fix mobile layout for better spacing and stacking */
@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
    /* align-items: stretch; */
    gap: 30px;
  }

  .two-column .why-choose-column,
  .two-column .column {
    flex: 1 1 100%;
  }

  .why-choose-features li {
    font-size: 17px;
    align-items: flex-start;
  }

  .why-choose-features li i {
    margin-top: 4px;
  }

  /* Remove excess left margin from button */
  .why-choose-button {
    margin-left: 0 !important;
    text-align: left !important;
  }

  /* Ensure forms don’t get squished */
  .contact-form input,
  .contact-form button {
    width: 100%;
  }
}

/* DeepSeek */
/* Add this to your styles.css */
#built-for-resellers .two-column {
  align-items: stretch; /* This ensures vertical alignment */
}

#built-for-resellers .why-choose-column {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
  height: 100%; /* Takes full height of container */
}

#built-for-resellers .why-choose-features {
  margin-top: 30px; /* Removes any default top margin */
}

#built-for-resellers .why-choose-button {
  margin-left: 55px; /* Adjust this value to match your design */
  margin-top: 10px !important;
}

/* Mobile View */
@media (max-width: 768px) {
  #built-for-resellers .why-choose-button {
    margin-top: 10px !important;
    margin-left: 0 !important;
    padding-top: 10px;
  }
  
  #built-for-resellers .why-choose-features {
    margin-bottom: 10px !important; /* Reduced space below points */
  }
}

/* Add this to your mobile media query */
@media (max-width: 768px) {
  #why-choose .why-choose-features li i {
    width: 38px !important; /* Fixed width */
    height: 38px !important; /* Fixed height */
    border-radius: 50% !important; /* Ensures perfect circle */
    flex-shrink: 0; /* Prevents squeezing */
  }
  
  #why-choose .why-choose-features li {
    align-items: center; /* Proper vertical alignment */
  }
}

/* For the "EXCITING INCENTIVES" section bullet points */
@media (max-width: 768px) {
  #contact .why-choose-features {
    padding-left: 0; /* Remove default padding */
    margin-left: 0; /* Remove default margin */
  }
  
  #contact .why-choose-features li {
    display: flex;
    flex-direction: row; /* Horizontal layout */
    align-items: flex-start; /* Align items to top */
    gap: 12px; /* Consistent gap */
    margin-bottom: 20px;
    padding: 0;
    background: none !important; /* Remove any background */
  }
  
  #contact .why-choose-features li i {
    min-width: 24px; /* Fixed width for icons */
    margin-top: 4px; /* Slight vertical adjustment */
    font-size: 18px;
    color: #000; /* Ensure icon color */
  }
  
  #contact .why-choose-features li > div {
    flex: 1;
    text-align: left !important;
    margin: 0 !important;
  }
  
  #contact .why-choose-features li .btn {
    display: inline-block !important;
    margin: 8px 0 0 0 !important;
    width: auto !important;
    padding: 8px 16px !important;
  }
}

/* Button with WhatsApp bubble icon */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  white-space: nowrap;
  text-align: center;
  padding: 12px 20px;
  font-size: 15px;
  background-color: #4ad385;
  border-radius: 34px;
  color: black;
  text-decoration: none;
}

.whatsapp-icon-circle {
  background-color: #1d8357;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25px;
  /* flex-shrink: 0; */
}

.whatsapp-icon-circle i {
  color: white;
  font-size: 16px;
}

/* Mobile-friendly adjustment */
@media (max-width: 768px) {
  .whatsapp-button {
    flex-wrap: nowrap;
    white-space: normal;
    max-width: 100%;
    font-size: 15px;
  }
}

 /* .btn {
    padding: 12px 20px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 14px;
    margin-right: 10px;
    min-width: 140px;
    text-align: center;
  } */

  .iframe-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }

  .iframe-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: transparent;
  }

  .iframe-close {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
  }

  .iframe-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
  }

  @media (max-width: 600px) {
    .iframe-wrapper iframe {
      height: 250px;
    }

    .btn {
      width: 100%;
      margin-top: 10px;
    }
  }


  /* alignment */
@media (max-width: 768px) {
  #built-for-resellers .why-choose-features {
    padding-left: 0;
    margin-left: 0;
  }
  
  #built-for-resellers .why-choose-features li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 0;
  }
  
  #built-for-resellers .why-choose-features li i {
    min-width: 38px;
    height: 38px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4ad385;
    border-radius: 50%;
    color: black;
    flex-shrink: 0;
  }
}

/* Align incentives section bullet points like "MADE FOR DEALERS" */
#contact .why-choose-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

#contact .why-choose-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}

#contact .why-choose-features li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #4ad385;
  border-radius: 50%;
  color: black;
  font-size: 18px;
  flex-shrink: 0;
}



#built-for-resellers .why-choose-features {
  margin-bottom: 0 !important; /* Remove bottom margin */
}

#built-for-resellers .why-choose-button {
  margin-top: 0 !important; /* Remove top margin */
  margin-left: 55px; /* Keep existing left alignment */
  padding-top: 5px; /* Small padding instead of margin */
}

@media (max-width: 768px) {
  #built-for-resellers .why-choose-features {
    margin-bottom: 0 !important;
  }
  
  #built-for-resellers .why-choose-button {
    margin: 0 !important;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    /* Space between buttons */
  }
}

