:root {
  --teal: #009ea7;
  --primary: #01d0ff;
  --light-gray: #e5e5e5;
  --medium-gray: #555555;
  --dark-gray: #151515;
  --almost-black: #0a0a0a;
  --accent: #f5a60c;
  --light: #ededef;
  --gray-light: #d1d1d3;
  --dark-1: #666666;
  --dark-2: #4d4d4d;
  --dark-3: #333333;
  --dark-bg: #222222;
  --black-bg: #0a0a0a;
  --vh: 1vh; /* Custom viewport height property */
}

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

body {
  line-height: 1.6;
  color: var(--light);
  background-color: var(--almost-black);
  font-family: 'Avenir', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6, .logo, .nav-links a {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header Styles */
header {
  background-color: rgba(10, 10, 10, 0.95);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 15px 0;
  background-color: rgba(10, 10, 10, 0.98);
}

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

.logo {
  display: block;
}

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

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links li:first-child {
  margin-left: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.contact-link {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.contact-link:hover {
  color: var(--accent);
}

.nav-links .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary);
  color: #000000;
  border: 2px solid var(--primary);
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 5px 0;
}

.btn:hover {
  background-color: transparent;
  color: var(--primary);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #000000;
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--accent);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--almost-black);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  margin-top: 0;
  padding-top: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2301d0ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"),
    radial-gradient(circle at 50% 50%, #222222 0%, #0a0a0a 100%);
  opacity: 1;
  z-index: 0;
}

.hero-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.hero-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 20px;
}

.hero-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.glow-effect {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.15;
  filter: blur(100px);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-image {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-light);
  margin-bottom: 30px;
  max-width: 600px;
}

/* Feature Section */
.feature-section {
  padding: 100px 0;
  background-color: var(--almost-black);
  position: relative;
  border-top: 1px solid rgba(1, 208, 255, 0.05);
  border-bottom: 1px solid rgba(1, 208, 255, 0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background-color: rgba(26, 26, 26, 0.7);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(1, 208, 255, 0.1);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(1, 208, 255, 0.3);
}

.feature-card h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--gray-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card .btn {
  align-self: flex-start;
  padding: 10px 25px;
  margin-top: auto;
}

/* Product Showcase Section */
.product-showcase {
  padding: 100px 0;
  background-color: var(--almost-black);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(1, 208, 255, 0.05);
  border-bottom: 1px solid rgba(1, 208, 255, 0.05);
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2301d0ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.product-card {
  background-color: var(--almost-black);
  border-radius: 15px;
  padding: 50px 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(1, 208, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.product-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.product-card.reverse .product-content {
  order: 2;
}

.product-card.reverse .product-image {
  order: 1;
}

.product-content h3 {
  font-size: 2.4rem;
  color: white;
  margin-bottom: 20px;
}

.product-content p {
  color: var(--gray-light);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.product-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  max-width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

.product-image .glow-effect {
  width: 250px;
  height: 250px;
}

.watermark-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: var(--almost-black);
}

.cta-container {
  background: linear-gradient(135deg, rgba(0, 158, 167, 0.1) 0%, rgba(1, 208, 255, 0.2) 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(1, 208, 255, 0.2);
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 158, 167, 0.15) 0%, transparent 70%);
  z-index: -1;
}

.cta-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Footer */
footer {
  background-color: var(--almost-black);
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-column p, .footer-column a {
  color: var(--gray-light);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-email {
  color: var(--primary) !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(237, 237, 239, 0.1);
}

.footer-bottom p {
  color: var(--gray-light);
  font-size: 14px;
}

/* Product Detail Pages */
.product-hero {
  min-height: auto;
  padding: 100px 0 60px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: var(--almost-black);
}

.product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.3)),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2301d0ff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"),
    radial-gradient(circle at 50% 50%, #222222 0%, #0a0a0a 100%);
  opacity: 1;
  z-index: 0;
}

.product-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.product-hero-content h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-hero-content p {
  font-size: 1.3rem;
  color: var(--gray-light);
  max-width: 800px;
  margin: 0 auto 40px;
}

.product-logo-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto 30px;
}

.product-logo {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.product-logo-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--primary);
  opacity: 0.15;
  filter: blur(60px);
  z-index: 1;
}

.product-feature-section {
  padding: 100px 0;
  background-color: var(--almost-black);
  position: relative;
  border-top: 1px solid rgba(1, 208, 255, 0.05);
  border-bottom: 1px solid rgba(1, 208, 255, 0.05);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.product-feature-item {
  background-color: var(--almost-black);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(1, 208, 255, 0.1);
}

.product-feature-item h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 15px;
}

.product-feature-item p {
  color: var(--gray-light);
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.faq-item {
  background-color: var(--almost-black);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(1, 208, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(1, 208, 255, 0.3);
}

.faq-item h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--gray-light);
  font-size: 1.05rem;
}

/* Integration Grid Styles */
.integration-grid, .technology-grid, .expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.integration-card, .technology-card, .expertise-card {
  background-color: var(--almost-black);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(1, 208, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover, .technology-card:hover, .expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: rgba(1, 208, 255, 0.3);
}

.integration-card h3, .technology-card h3, .expertise-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 15px;
}

.integration-card p, .technology-card p {
  color: var(--gray-light);
}

.expertise-card ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.expertise-card ul li {
  color: var(--gray-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(1, 208, 255, 0.1);
}

.expertise-card ul li:last-child {
  border-bottom: none;
}

.detailed-intro {
  margin-bottom: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.detailed-intro p {
  color: var(--gray-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

.detailed-intro p:last-child {
  margin-bottom: 0;
}

.detailed-intro strong {
  color: white;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-card {
    grid-template-columns: 1fr;
  }
  
  .product-card.reverse .product-content,
  .product-card.reverse .product-image,
  .product-content,
  .product-image {
    order: unset;
  }
  
  .product-image {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
  }
  
  .hero-image-column {
    display: none;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .cta-container {
    padding: 40px 25px;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .product-hero-content h1 {
    font-size: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .product-logo-container {
    max-width: 300px;
    margin-bottom: 20px;
  }
  
  .product-logo {
    max-height: 80px;
  }
  
  .product-logo-glow {
    width: 150px;
    height: 150px;
    filter: blur(40px);
  }
  
  body {
    padding-top: 65px;
  }
  
  .hero {
    padding-top: 40px;
  }
  
  .product-hero {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .product-card {
    padding: 30px 25px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .product-logo-container {
    max-width: 220px;
    margin-bottom: 15px;
  }
  
  .product-logo {
    max-height: 60px;
  }
}

/* Mobile Navigation */
.mobile-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-button span {
  display: block;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-button.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
  header {
    padding: 15px 0;
  }
  
  .header-content {
    padding: 0 20px;
    justify-content: flex-start;
  }
  
  .logo img {
    height: 35px;
  }
  
  .mobile-menu-button {
    display: block;
    z-index: 1001;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    margin-left: auto;
  }
  
  .mobile-menu-button span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
  }
  
  .mobile-menu-button span:nth-child(1) {
    top: 0px;
  }
  
  .mobile-menu-button span:nth-child(2) {
    top: 9px;
  }
  
  .mobile-menu-button span:nth-child(3) {
    top: 18px;
  }
  
  .mobile-menu-button.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
  }
  
  .mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  
  .mobile-menu-button.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
  }
  
  nav .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background-color: #222222;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 25px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  nav .nav-links.active {
    right: 0;
  }
  
  .nav-links li {
    margin: 0;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    font-size: 1.1rem;
    display: block;
    width: 100%;
    padding: 5px 0;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .nav-links a.contact-link {
    margin-top: 15px;
    padding: 10px 15px;
    text-align: center;
    background-color: rgba(1, 208, 255, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(1, 208, 255, 0.3);
  }
  
  body.menu-open {
    overflow: hidden;
  }
}

/* Product card (used in benefits section) specific adjustments */
.product-card .product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.product-card .product-image i {
  position: relative;
  z-index: 2;
}

.product-card .product-image .glow-effect {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(1, 208, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Use Cases Section Styles */
.use-cases-container {
  margin-top: 40px;
}

.use-case-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  padding: 30px;
  background-color: rgba(26, 26, 26, 0.6);
  border-radius: 15px;
  border: 1px solid rgba(1, 208, 255, 0.1);
  transition: all 0.3s ease;
}

.use-case-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(1, 208, 255, 0.3);
}

.use-case-icon {
  flex: 0 0 80px;
  height: 80px;
  background-color: rgba(1, 208, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.use-case-row:hover .use-case-icon {
  background-color: rgba(1, 208, 255, 0.2);
  transform: scale(1.1);
}

.use-case-content {
  flex: 1;
}

.use-case-content h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 15px;
}

.use-case-content p {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .use-case-row {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .use-case-icon {
    margin: 0 auto 15px;
  }
  
  .use-case-content h3 {
    font-size: 1.3rem;
  }
  
  .use-case-content p {
    font-size: 0.95rem;
  }
}

/* Hero Section Improvements */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero-text-column {
    padding-right: 0;
    align-items: center;
    text-align: center;
  }
  
  .hero-image-column {
    order: -1;
    margin-bottom: 30px;
  }
  
  .hero-title {
    font-size: 2.8rem;
    text-align: center;
  }
  
  .hero-subtitle {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
}

/* Product Pages Mobile Improvements */
@media (max-width: 768px) {
  .product-hero {
    padding: 80px 0 40px;
  }
  
  .product-hero-content {
    padding: 0 20px;
    text-align: center;
  }
  
  .product-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .product-hero-content p {
    font-size: 1.1rem;
  }
  
  .product-logo {
    max-width: 80%;
    height: auto;
  }
  
  .product-feature-grid {
    grid-template-columns: 1fr;
  }
  
  .product-feature-item {
    padding: 20px;
  }
  
  .product-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .product-card.reverse {
    grid-template-columns: 1fr;
  }
  
  .product-card .product-content,
  .product-card.reverse .product-content {
    padding: 0;
    order: 2;
  }
  
  .product-card .product-image,
  .product-card.reverse .product-image {
    justify-content: center;
    order: 1;
    padding: 0;
  }
  
  .product-card .product-image img {
    max-height: 180px;
  }
  
  .product-content h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .product-content p,
  .product-content ul {
    text-align: center;
  }
  
  .product-content ul {
    padding-left: 20px;
    display: inline-block;
    text-align: left;
    margin: 0 auto;
  }
  
  /* Fix for feature icons */
  .product-feature-section .product-feature-item {
    align-items: center;
    text-align: center;
  }
}

/* Contact Form Mobile Fixes */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .contact-info {
    padding-right: 0;
    text-align: center;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .contact-icon {
    margin: 0 auto 15px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-control {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Smaller Device Fixes */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .product-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
  }
  
  .feature-card, 
  .product-feature-item,
  .integration-card, 
  .technology-card, 
  .expertise-card {
    padding: 15px;
  }
  
  .cta-container {
    padding: 25px 15px;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
  
  .cta-text {
    font-size: 1rem;
  }
  
  .footer-content {
    gap: 30px;
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-column ul {
    justify-content: center;
  }
  
  /* Fix logo sizes on smaller screens */
  .logo img {
    height: 30px;
  }
  
  .product-logo {
    max-width: 70%;
  }
  
  .detailed-intro {
    padding: 15px;
  }
  
  .detailed-intro p {
    font-size: 0.95rem;
  }
}

/* Use case section mobile improvements */
@media (max-width: 768px) {
  .use-case-row {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  
  .use-case-icon {
    margin: 0 auto 15px;
  }
  
  .use-case-content h3 {
    font-size: 1.3rem;
  }
  
  .use-case-content p {
    font-size: 0.95rem;
  }
}

/* Fix for images overflowing containers on mobile */
img {
  max-width: 100%;
  height: auto;
}

/* Adjust font sizes globally for better mobile readability */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 0.95rem;
  }
}

/* Fixed position header adjustments */
@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  
  .header-content {
    padding: 0 15px;
  }
}

/* Animation optimization for mobile */
@media (max-width: 768px) {
  .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/* Fix for mobile menu height calculation */
@media (max-width: 991px) {
  nav .nav-links {
    height: 100vh; /* Fallback */
    height: calc(var(--vh, 1vh) * 100);
    /* Other existing properties */
  }
}

/* Fix for hero section height on mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
    /* Other existing properties */
  }
}

/* Add momentum-based scrolling for iOS */
.nav-links, body {
  -webkit-overflow-scrolling: touch;
}

/* Ensure buttons don't stick to edges on mobile */
.btn {
  margin: 5px 0;
}

/* Fix for mobile form elements */
input, select, textarea {
  -webkit-appearance: none;
  border-radius: 8px;
}

/* Animation triggered class */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Initial state for animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Disable animations on mobile if needed */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}

/* Product Hero Section Final Fixes */
.product-hero {
  min-height: auto;
  padding: 100px 0 60px;
  background-size: cover;
  background-position: center;
}

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

/* Product Cards Improved Layout */
.product-card {
  overflow: visible;
}

.product-card ul {
  margin-bottom: 20px;
}

.product-image .glow-effect {
  z-index: 0;
}

/* CTA Section Fixes */
.cta-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  position: relative;
  z-index: 2;
}

/* Fix for iOS input zoom */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
  
  .product-showcase {
    padding: 60px 0;
  }
  
  .product-feature-section {
    padding: 60px 0;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  /* Fix long words breaking out of containers on mobile */
  p, h1, h2, h3, h4, h5, h6, li, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
  }
}

/* Spacing and Alignment Fixes for Mobile */
@media (max-width: 480px) {
  .product-showcase, 
  .product-feature-section, 
  .cta-section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .product-hero {
    padding: 80px 0 40px;
  }
  
  .product-card {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  
  .feature-grid,
  .product-feature-grid,
  .integration-grid,
  .technology-grid,
  .expertise-grid,
  .use-cases-container {
    gap: 15px;
  }
}

.product-content ul,
.footer-column ul,
.product-feature-item ul,
.faq-item ul,
.expertise-card ul {
  list-style-position: inside;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.product-content ul li,
.footer-column ul li,
.product-feature-item ul li,
.faq-item ul li,
.expertise-card ul li {
  margin-bottom: 10px;
  padding-left: 1.5em;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  /* Fix long words breaking out of containers on mobile - Without hyphenation */
  p, h1, h2, h3, h4, h5, h6, li, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
  }
} 