/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7ac03a;
    --primary-dark: #64748b;
    --secondary-color: #0f172a;
    --accent-color: #7ac03a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --dark-gray: #334155;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* TOP BAR */

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent; 
}
.top-bar {
  /*background: white;*/
  background: transparent;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.85rem;
  /*color: #64748b;*/
  color: white !important;
  padding-left: 140px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.top-bar .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  /*color: #64748b;*/
  color: white !important;
  text-decoration: none;
  transition: color 0.2s ease;
}

.top-contact:hover {
  color: #0f172a;
}

/*.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.language-selector i {
  font-size: 0.75rem;
  color: #94a3b8;
}

.search-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
}

.search-box:hover {
  border-color: #0f172a;
  color: #0f172a;
}

.btn-demo {
  background: #7ac03a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-demo:hover {
  background: #6aa832;
}*/

/*Header*/
/* Brand Logo Above Nav */
.header{
    /*align-items: center;*/
    position: sticky;
    top: 0;
    /*background: white;*/
    background: transparent !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.75rem 0;
}
/*.header.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header.scrolled .navigation-menu a { color: #0f172a !important; }
.header.scrolled .top-contact { color: #475569 !important; }
.header.scrolled .brand-logo img { filter: none; } /* Fix logo visibility */
 
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    /* Prevent scroll when mobile menu open */
    &.menu-open {
        overflow: hidden;
    }
}
…
.brand-logo {
  display: flex;
  text-align: center;
  gap: 0.5rem;
  /*width: auto;
  height: 40px;*/
  padding-left: 0;
  margin-left: 0;
  /*margin-bottom: 1rem;*/
}

.brand-logo img {
  height: 30px; /* Adjust as needed*/ 
  max-width: 100%;
  padding-left: 0;
  margin-left: 0;
  width: auto;
  justify-content: space-between;
}

.brand-logo h1 {
  font-size: 1.8rem;
  color: #339933;
  margin: 0;
  /*margin-left: 50px;*/
  font-weight: 700;
  padding-left: 0;
}
.brand-logo span {
  color: #339933;
  font-weight: 400;
}

/* === Navigation - Always Horizontal on Desktop === */
.nav {
  display: flex;
  /*flex-grow: 1;*/
  justify-content: flex-start;
  /*justify-content: space-between;*/
  align-items: center;
}

.navigation-menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  margin-left: 100px;
}

.navigation-menu a {
  text-decoration: none;
  /*color: #0f172a;*/
  color: white !important;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s ease;
  border-radius: 4px;
  /*transition: color 0.2s;*/
}

.navigation-menu a:hover {
  color: #339933;
  /*background: #f0f9ff;*/
}
.navigation-menu a:hover::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #7ac03a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.navigation-menu a:hover::after {
  transform: scaleX(1);
}


/* === Dropdown Menu for Devices === */
.dropdown {
  position: relative;
  display: inline-block;
  color: white !important;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #0f172a;
  /*text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;*/
}

.dropdown-content {
  display: none;
  position: absolute;
  /*background-color: #fff;*/
  background: rgba(0, 0, 0, 0.45); /* the 45% of the black and lets the video show through*/
  backdrop-filter: blur(8px);
  min-width: 240px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  border-radius: 12px;
  z-index: 1000;
  top: 100%;
  left: 0;
  list-style: none;
  overflow: hidden;
}
.dropbtn:hover{
    color: #339933;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content li {
  /*display: block;*/
  list-style: none;
  margin: 0;
}

.dropdown-content a {
  /*color: #334155;*/
  color: #e2e8f0;
  /*padding: 12px 20px;*/
  /*display: block;*/
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #339933;
  border-radius: 8px;
}

/*.dropdown:hover .dropdown-content {
  display: block;
}*/

/* Logo styling */
.dropdown-content img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0.8) grayscale(100%);
  transition: filter 0.3s ease;
}

.dropdown-content a:hover img {
  filter: brightness(1) grayscale(0);
}

/* Contact Button */
.contact-button{
  flex-shrink: 0;
}
.contact-button .btn-contact {
  display: inline-block;
  padding: 0.35rem 0.55rem;
  /*background: #7ac03a;*/ 
  color: white !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  margin-left: 250px;
}

.contact-button .btn-contact:hover {
  background: grey;
}
/* Hamburger (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #0f172a;
  margin: 3px 0;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    gap: 1rem;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== HERO VIDEO STYLING ===== */
.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  /* Optional: Add slight tint for better text contrast */
  filter: brightness(0.7) contrast(1.1);
  /*&::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3));
    z-index: -1;
  }*/
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); /* Darker bottom for CTA visibility */
  z-index: 1;
}
.hero-content { z-index: 2; } /* Ensure text sits above overlay */

/*.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}*/

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #64748b;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #64748b;
}

/* ===== PARTNERS CAROUSEL SECTION ===== */
.partners-carousel-section {
  padding: 3rem 1rem;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #7ac03a;
  margin-bottom: 1.5rem;
  position: relative;
}
 .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #7ac03a;
  margin: 0.75rem auto;
  border-radius: 2px;
}

/* Partners Wrapper */
.partners-wrapper {
  overflow: hidden;
  padding: 1.5rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Scroller Container */
.partners-scroller {
  display: flex;
  align-items: center;
  gap: 3rem; /* Space between logos */
  animation: scroll 30s linear infinite;
  /* Optional: Add subtle fade on edges */
  &::before,
  &::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50px;
    z-index: 1;
  }
  &::before {
    left: 0;
    background: linear-gradient(to right, #f8fafc, rgba(248, 250, 252, 0));
  }
  &::after {
    right: 0;
    background: linear-gradient(to left, #f8fafc, rgba(248, 250, 252, 0));
  }
}

/* Pause on hover */
.partners-scroller:hover {
  animation-play-state: paused;
}

/* Partner Item */
.partner-item {
  flex-shrink: 0;
  opacity: 0.6; /* Faded look */
  transition: opacity 0.3s ease;
}

.partner-item:hover {
  opacity: 0.9;
}

.partner-item img {
  height: 50px;
  width: auto;
  filter: grayscale(100%) contrast(0.8); /* Faded/grayscale effect */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-item img:hover {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

/* Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .partners-scroller {
    gap: 1.5rem;
  }

  .partner-item img {
    height: 40px;
  }
}

/* === Hamburger (Mobile Only) === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #0f172a;
  margin: 3px 0;
  transition: 0.3s;
}

/* === Responsive: Mobile Menu (Optional) === */
@media (max-width: 768px) {
  .brand-logo {
    text-align: left;
  }

  .navigation-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    padding: 2rem 0;
    gap: 1.2rem;
  }

  .navigation-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Hide dropdown on mobile (optional – simplify to single "Devices" link) */
  .dropdown-content {
    position: static;
    box-shadow: none;
    background: none;
    padding-left: 1.5rem;
  }

  .dropdown:hover .dropdown-content {
    display: none; /* Disable hover on mobile */
  }
}

/* ===== PARTNER ICONS IN DROPDOWN ===== */
.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: #4a5568;
  text-decoration: none;
  transition: all 0.2s ease;
}

.partner-icon {
  width: 36px; /*Recommended is 24px and 32 px*/
  height: 36px; /*Recommended is 24px and 32 px*/
  object-fit: contain;
  flex-shrink: 0;
}

/*.dropdown-content a:hover {
  background: #f8fafc;
  color: #1a202c;
}*/

/* Optional: Add subtle border on hover */
.dropdown-content a:hover .partner-icon {
  filter: brightness(1.2);
}

/* Hero */
/*.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    /*padding-top: 80px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}*/

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}


/* ===== "Learn More" BUTTONS ===== */
.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: transparent;
  border: none;
  color: #7ac03a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  margin-top: auto;
  /*border: 2px solid var(--primary-color);
  border-radius: 6px;*/
}

.button-secondary:hover {
  color: #339933;
  /*text-decoration: underline;*/
}

.button-secondary::after {
  content: "→";
  font-weight: bold;
  margin-left: 0.25rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Devices */
.devices {
    padding: 3rem 0;
    background-color: var(--white);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;

}

.device-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /*animation: fadeInUp 0.6s ease forwards;*/
    /*display: flex;
    flex-direction: column;*/
}

.device-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.device-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.device-media img,
.device-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.device-card:hover .device-media img,
.device-card:hover .device-media video {
    transform: scale(1.03);
}

.play-overlay,
.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.device-card:hover .play-overlay,
.device-card:hover .image-overlay {
    opacity: 1;
}

.play-overlay i,
.image-overlay i {
    color: var(--white);
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    /*width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;*/
}

.device-info {
    padding: 0.9rem;
    flex: 0 0 auto;
    /*display: flex;
    flex-direction: column;
    color: var(--secondary-color)*/
}

.device-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
}

.device-info p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (min-width: 992px) {
  .devices-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.specs span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.specs i {
    color: var(--primary-color);
}

/* FEATURES SECTION */
/*.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    margin-bottom: 0 !important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding-left: 5px;
    /*justify-content: center;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* Feature Image 
.feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-image {
  transform: scale(1.05);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Learn More Button 
.btn-secondary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
}

/* ===== SCROLLABLE FEATURES CAROUSEL ===== 
.features-carousel-container {
  position: relative;
  margin: 3rem auto;
  max-width: 1200px;
  overflow: hidden;
  padding: 0 2rem;
}

.features-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100%;
  padding: 0 2rem;
  /*padding-bottom: 1rem;
}

.feature-item {
   flex: 0 0 calc(33.333% - 1rem); /* 3 items with gap 
  scroll-snap-align: start;
  margin: 0; /* Remove extra margins 
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /*scroll-snap-align: start;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin: 1rem 1.5rem 0.5rem;
  color: var(--secondary-color);
}

.feature-item p {
  color: var(--gray-color);
  font-size: 0.95rem;
  padding: 0 1.5rem 1rem;
  line-height: 1.5;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  /*display: inline-block;
  padding: 0.6rem 1.2rem;
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}
.btn-secondary::after{
  content: "→";
  font-weight: bold;
  margin: 0 0 0 0.25rem;
}

/* Arrow Buttons 
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}
.carousel-arrow:hover {
  background: #7ac03a;
  color: white;
  border-color: #7ac03a;
}
.carousel-arrow.left-arrow {
  left: 1rem;
  transform: translateY(-50);
}

.carousel-arrow.right-arrow {
  right: 1rem;
  transform: translateY(-50);
}
.carousel-arrow i {
  font-size: 0.9rem;
  color: #64748b;
}

.carousel-arrow:hover i {
  color: white;
}
/* Responsive 
@media (max-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
   .carousel-arrow.left-arrow {
    left: -20px;
  }
  .carousel-arrow.right-arrow {
    right: -20px;
  }
}*/


/*==== FEATURES SECTION ===*/
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'DM Sans', sans-serif;
            margin-top: 0 !important;
        }

        body {
            background-color: #e6f4ff;
            padding: 0;
            overflow-x: hidden;
        }

        .container-1 {
            /*max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;*/
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .section-1{
          background: white !important;
          margin-bottom: 0 !important;
          padding-bottom: 0 !important;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 15px;
            position: relative;
           /* background: white !important;*/
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: #7ac03a;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.25rem;
            color: #475569;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
           /* background: white !important;*/
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 40px 0 60px;
            padding-left: 0 !important;
            padding-right: 0 !important;
            background: #e6f4ff;
        }

        .carousel-wrapper {
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .carousel {
            display: flex;
            gap: 30px;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            width: 100%;
        }

        .card {
            flex: 0 0 calc(33.33% - 20px);
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 70%;
            min-height: 500px;
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            width: 100%;
            height: 280px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 25px;
            position: relative;
            background: #f8fafc;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card:hover .card-image img {
            transform: scale(1.05);
        }

        .card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 15px;
        }

        .card-description {
            color: #475569;
            font-size: 0.88rem;
            line-height: 1.7;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: white;
            color: #7ac03a;
            border: 2px solid #7ac03a;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 400;
            text-decoration: none;
            transition: all 0.3s ease;
            width: fit-content;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .learn-more-btn:hover {
            background: #7ac03a;
            color: white;
            transform: translateX(5px);
        }

        .learn-more-btn::after {
            content: '→';
            margin-left: 10px;
            font-weight: bold;
        }

        /* ===== NAVIGATION BUTTONS BELOW CARDS ===== */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
        }

        .nav-btn {
            background: white;
            border: 2px solid #7ac03a;
            border-radius: 50px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .nav-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #7ac03a;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .nav-btn:hover::before {
            transform: scaleX(1);
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .nav-btn:hover svg {
            fill: white;
        }

        .nav-btn svg {
            width: 28px;
            height: 28px;
            fill: #7ac03a;
            transition: fill 0.3s ease;
        }

        .nav-btn:hover svg {
            fill: white;
        }

        .nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none;
        }

        .nav-btn:disabled:hover {
            background: white;
            transform: none;
        }

        .nav-btn:disabled:hover svg {
            fill: #7ac03a;
        }

        .nav-btn:disabled::before {
            transform: scaleX(0);
        }

        .page-indicator {
            font-size: 1rem;
            color: #475569;
            font-weight: 500;
            margin: 0 15px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .card {
                flex: 0 0 calc(33.33% - 15px);
                min-height: 450px;
            }
            
            .card-image {
                height: 250px;
            }
            
            .card-title {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .nav-btn {
                width: 50px;
                height: 50px;
            }
            
            .nav-btn svg {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 992px) {
            .card {
                flex: 0 0 calc(50% - 15px);
                min-height: 400px;
            }
            
            .card-image {
                height: 220px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .carousel {
                gap: 20px;
            }
            
            .card {
                flex: 0 0 calc(100% - 20px);
                min-height: 450px;
                padding: 25px;
            }
            
            .card-image {
                height: 220px;
            }
            
            .carousel-controls {
                flex-direction: column;
                gap: 10px;
            }
            
            .page-indicator {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.7rem;
            }
            
            .card {
                min-height: 400px;
                padding: 20px;
            }
            
            .card-image {
                height: 180px;
            }
            
            .nav-btn {
                width: 45px;
                height: 45px;
            }
            
            .nav-btn svg {
                width: 20px;
                height: 20px;
            }
            
            .page-indicator {
                font-size: 0.85rem;
            }
        }


/* ABOUT SECTION */
.about {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding-left: 20px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--gray-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    width: 100%;
}
/*video telematics on dropdown nav section*/
.section-title {
  text-align: center;
  margin: 60px 0 30px;
}

.product-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.product-card {
  text-decoration: none;
  color: #333;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.product-card img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/*Fuel sensor Photo section*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #f9fafb;
  color: #333;
  line-height: 1.6;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1.5rem;
  color: #339933;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #7ac03a; /* for the our trusted partners underline section */
  margin: 0.75rem auto;
  border-radius: 2px;
}

/* Product Grid */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

/* Product Card */
.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.5rem;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.product-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c5282;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
  text-align: center;
}

/* Product Detail Section */
/*.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 1rem;
}
.product-detail img {
  width: 220px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.product-detail div {
  flex: 1;
  min-width: 250px;
}
.product-detail h1 {
  font-size: 2rem;
  color: #1a365d;
  margin-bottom: 0.75rem;
}
.product-detail p {
  font-size: 1.05rem;
  color: #555;
}*/

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0 1rem;
  margin: 2rem auto 1.5rem;
  max-width: 800px;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tab {
  padding: 0.75rem 1.5rem;
  background: #e2e8f0;
  color: #4a5568;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
  user-select: none;
}

.tab.active {
  background: #3182ce;
  color: white;
  box-shadow: 0 4px 10px rgba(49, 130, 206, 0.3);
}

.tab:hover:not(.active) {
  background: #cbd5e0;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 1.5rem 1rem;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

.tab-content ul {
  list-style: none;
  padding-left: 1rem;
}

.tab-content li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  color: #4a5568;
  position: relative;
  padding-left: 1.5rem;
}

.tab-content li::before {
  /*content: "✓";*/
  position: absolute;
  left: 0;
  color: #38a169;
  font-weight: bold;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .product-grid {
    gap: 1.25rem;
  }

  .product-card {
    width: 100%;
    max-width: 320px;
  }

  .product-detail {
    flex-direction: column;
    text-align: center;
  }

  .tabs {
    justify-content: space-around;
  }

  .tab {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Footer */
/* ===== FOOTER STYLING ===== */
.TEQ-footer {
  background: #121212;
  color: #ffffff;
  padding: 4rem 1rem 2rem;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  /*overflow: hidden;*/
  margin-top: 0 !important;
}

/* Optional: World Map Background */
.TEQ-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://via.placeholder.com/1920x600/1e1e1e/ffffff?text=World+Map') no-repeat center;
  background-size: cover;
  opacity: 0.1;
  z-index: -1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: white;
  border-bottom: 2px solid #339933;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-column p,
.footer-column li {
  color: #cccccc;
  line-height: 1.6;
  margin: 0.5rem 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #339933;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #2d2d2d;
  border-radius: 50%;
  color: white;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #339933;
}

/* Service Logos */
.service-logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.service-item img {
  height: 30px;
  width: auto;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.service-item img:hover {
  filter: brightness(1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  margin-top: 2rem;
  color: #aaaaaa;
  font-size: 0.9rem;
}

.footer-bottom strong {
  color: #339933;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #339933;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background: #e66d00;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .social-icons {
    justify-content: center;
  }

  .service-logos {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .service-item img {
    height: 25px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}
/*.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-logo p {
    color: #94a3b8;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}*/

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation delays */
.device-card:nth-child(2),
.feature-item:nth-child(2) { animation-delay: 0.1s; }
.device-card:nth-child(3),
.feature-item:nth-child(3) { animation-delay: 0.2s; }
.feature-item:nth-child(4) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.8rem; }
    .about-content, .contact-content { grid-template-columns: 1fr; }
    .about-image { order: -1; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    .nav-menu.active { left: 0; }
    .hero-content h1 { font-size: 2.3rem; }
    .hero { height: auto; padding: 120px 0 60px; }
    .section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem; }
    .devices-grid, .features-grid { grid-template-columns: 1fr; }
    .specs { flex-direction: column; gap: 0.5rem; }
}