:root {
  --primary: #00a859;
  --primary-dark: #008048;
  --secondary: #0066cc;
  --accent: #ffc107;
  --dark: #1a3e34;
  --light: #f5f9f7;
  --text: #333333;
  --gray: #e0e7e3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Font Awesome fixes */
.fas, .fab, .far, .fa {
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
}

body {
  font-family: "Roboto", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background-color: var(--light);
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--dark);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 50px 0;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-header p {
  max-width: 700px;
  margin: 30px auto 0;
  color: #666;
  font-size: 1.1rem;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.logo-icon i {
  color: white;
  font-size: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text span:first-child {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.logo-text span:last-child {
  font-size: 0.8rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
  background: var(--accent);
}

.mobile-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 62, 52, 0.3);
}

.hero-content {
  max-width: 800px;
  text-align: center;
  color: white;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--light);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 25px;
  background: rgba(0, 168, 89, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* About Section */
.lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.divider-line {
  height: 1px;
  background-color: var(--gray);
  margin: 50px auto;
  width: 80%;
}

.mission-section {
  text-align: center;
  margin-bottom: 50px;
}

.section-subheader {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.section-subheader::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
}

.mission-statement {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}

.why-section {
  margin-bottom: 50px;
}

.sub-section {
  margin-bottom: 30px;
}

.sub-section h4 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.mission-values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.mission-card {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.values-integrated {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.value-pillar {
  background: var(--light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.value-pillar h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Services Section */
/*.services {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./../images/storage.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: white;
  background-attachment: fixed;
}*/
.services {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./../images/storage.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: white;
  /* Remove fixed attachment for mobile */
  background-attachment: scroll;
  /* Add min-height to ensure visibility */
  min-height: 100vh;
  /* Add fallback background color */
  background-color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-header {
  padding: 25px;
  border-bottom: 1px solid var(--gray);
  position: relative;
}

.service-header h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-header i {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
}

.service-content {
  padding: 25px;
}

.service-content ul {
  list-style: none;
}

.service-content li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #666;
}

.service-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
}

.service-footer {
  padding: 0 25px 25px;
  text-align: center;
}

/* OEM Section */
.oem-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.oem-feature {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.oem-feature h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.oem-feature ul {
  list-style: none;
}

.oem-feature li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.oem-feature li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Market Opportunity Section */
.opportunity-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.opportunity-content {
  flex: 1;
  min-width: 300px;
}

.opportunity-highlights {
  flex: 1;
  min-width: 300px;
  background: var(--light);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--dark);
}

.highlight-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--gray);
}

.highlight-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.highlight-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 168, 89, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.highlight-icon i {
  color: var(--primary);
  font-size: 1.5rem;
}

.highlight-header h3 {
  font-size: 1.4rem;
}

/* Digital Transformation Section */
.digital-transformation {
  background: white;
}

.digital-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.digital-feature {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.digital-feature h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.digital-feature ul {
  list-style: none;
}

.digital-feature li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.digital-feature li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  height: 280px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-content h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.team-position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

/* Contact Section */

#responseMessage,
#responseNewsMessage {
  margin-top: 20px;
  padding: 15px;
  border-radius: 4px;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Loader Styles */
.loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

button.loading {
  color: transparent;
}

button.loading .loader {
  display: block;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Disable form during submission */
.form-disabled {
  opacity: 0.7;
  pointer-events: none;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
}

.contact-info {
  background: var(--light);
  border-radius: 8px;
  padding: 0px 40px 40px 40px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 30px;
  color: #666;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  background: rgba(0, 168, 89, 0.1);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 5px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  position: relative;
}

.submit-button:hover {
  background-color: var(--secondary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: rgba(0, 168, 89, 0.1);
  color: var(--primary);
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.map-container {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: var(--dark);
  color: white;
  padding: 80px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.footer-logo span:first-child {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.footer-logo span:last-child {
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-about p {
  margin-bottom: 20px;
  color: #a0aec0;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-bottom a {
  color: #a0aec0;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-newsletter h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-newsletter h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-newsletter p {
  color: #a0aec0;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px 0 0 8px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: white;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0 25px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  position: relative;
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0aec0;
  font-size: 0.9rem;
}

/* Add to your existing CSS */
.services-slider {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.service-slide {
  min-width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
  display: none;
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background-color: var(--primary);
}

/* Digital Transformation Section - Mobile Carousel */
.digital-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.digital-feature {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.digital-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.digital-feature h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.digital-feature ul {
  list-style: none;
}

.digital-feature li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.digital-feature li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

/* Mobile Carousel Styles */
.digital-carousel {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.digital-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.digital-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.digital-carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 15px;
  display: none;
}

.digital-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.digital-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.digital-carousel-dot.active {
  background-color: var(--primary);
}

/* OEM Services Section - Mobile Carousel */
.oem-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.oem-feature {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.oem-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.oem-feature h4 {
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.oem-feature ul {
  list-style: none;
}

.oem-feature li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.oem-feature li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

/* Mobile Carousel Styles */
.oem-carousel {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.oem-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.oem-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.oem-carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 15px;
  display: none;
}

.oem-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.oem-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.oem-carousel-dot.active {
  background-color: var(--primary);
}

/* Features Section - Mobile Carousel */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--light);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 25px;
  background: rgba(0, 168, 89, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
}

/* Mobile Carousel Styles */
.features-carousel {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.features-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.features-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.features-carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 15px;
  display: none;
}

.features-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.features-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.features-carousel-dot.active {
  background-color: var(--primary);
}

/* Team Section - Mobile Carousel */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  height: 280px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-content {
  padding: 25px;
  text-align: center;
}

.team-content h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.team-position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.team-content p {
  color: #666;
  font-size: 0.95rem;
}

/* Mobile Carousel Styles */
.team-carousel {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.team-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.team-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.team-carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 15px;
  display: none;
}

.team-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.team-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  cursor: pointer;
  transition: all 0.3s;
}

.team-carousel-dot.active {
  background-color: var(--primary);
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #333;
  color: white;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  display: none;
}

#cookie-consent button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 15px;
  margin-left: 10px;
  cursor: pointer;
}

main {
  padding-top: 100px;
  padding-bottom: 50px;
}

.legal-container {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 40px;
}

h1 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 32px;
}

h2 {
  color: var(--primary);
  margin: 30px 0 15px;
  font-size: 24px;
}

h3 {
  margin: 25px 0 10px;
  font-size: 20px;
  color: var(--primary-dark);
}

p {
  margin-bottom: 15px;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

.last-updated {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .team-grid {
    display: none;
  }

  .team-carousel {
    display: block;
  }

  .team-card {
    margin: 0 10px;
  }

  .team-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    display: none;
  }

  .features-carousel {
    display: block;
  }

  .feature-card {
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .oem-features {
    display: none;
  }

  .oem-carousel {
    display: block;
  }

  .oem-feature {
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .digital-features {
    display: none;
  }

  .digital-carousel {
    display: block;
  }

  .digital-feature {
    margin: 0 10px;
  }
}

@media (max-width: 768px) {
  .services {
    /* Use a simpler background approach for mobile */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url("./../images/storage.png") no-repeat center center / cover;
    /* Ensure the element has dimensions */
    height: auto;
    padding: 60px 0;
  }

  .services-grid {
    display: none;
  }

  .services-slider {
    display: block;
  }
}

/* Responsive Styles */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 20px;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    height: auto;
    padding: 150px 0 100px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mission-values-container {
    flex-direction: column;
  }

  .mission-card {
    min-width: 100%;
  }

  .opportunity-container {
    flex-direction: column;
  }

  .opportunity-highlights {
    margin-top: 30px;
  }

  .map-container {
    height: 300px;
    margin-bottom: 30px;
  }

  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 10px 12px;
  }

  .submit-button {
    width: 100%;
  }

  .map-container {
    height: 250px;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 1.5rem;
  }
}

/* Animation styles */
@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

[data-animate] {
  opacity: 0;
}

.animate-right {
  animation: slideInFromRight 0.8s ease-out forwards;
}

.animate-left {
  animation: slideInFromLeft 0.8s ease-out forwards;
}

.feature-card,
.service-card,
.oem-feature,
.highlight-item,
.stat-item,
.team-card {
  animation-delay: calc(var(--animation-order) * 0.1s);
}

.desktop-only {
  display: inline-block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}