:root {
  --primary-color: #0d9cba;
  --secondary-color: #ff6200;
  --gray-color: #4b4b4b;
  --white-color: #ffffff;
  --primary-color-50-opacity: #0d9cba26;
  --gray-color-50-opacity: #4b4b4b50;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--gray-color);
  overflow-x: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 150px;
}
.logo img {
  width: 230px;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* .nav-links a:hover {
  color: #2563eb;
} */

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--gray-color) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

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

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideUp 1s ease 0.5s forwards;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slideUp 1s ease 0.8s forwards;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideUp 1s ease 1.1s forwards;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--secondary-color);
}

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

/* Sections */
.section {
  padding: 6rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  /* color: var(--gray-color); */
  background: linear-gradient(45deg, var(--primary-color), var(--gray-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--gray-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white-color);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-color);
}

.service-card p {
  color: var(--gray-color);
  line-height: 1.6;
}

/* Product Showcase */
.product-showcase {
  background: var(--primary-color-50-opacity);
}

/* Product Tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.product-tab {
  padding: 0.75rem 1.5rem;
  background: var(--white-color);
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  color: var(--gray-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.product-tab:hover,
.product-tab.active {
  color: var(--white-color);

  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.product-tab.active {
  background: var(--secondary-color);
  border-color: #ff8800;
}
.product-tab:hover {
  background: var(--primary-color);
  border-color: #17a2b8;
}

/* Product Container */
.product-container {
  position: relative;
}

.product-content {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-content.active {
  display: grid;
  animation: fadeInUp 0.6s ease;
}

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

.product-info h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-color);
}

.product-info img {
  width: 60%;
}

.product-info p {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Screenshot Slider */
.product-screenshots {
  position: relative;
}

.screenshot-slider {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.screenshot-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  /* background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--gray-color),
    var(--secondary-color)
  ); */
}

.screenshot-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
  position: relative;
}

.screenshot-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.screenshot-slide.active {
  opacity: 1;
}

.screenshot-image {
  width: 100%;
  height: 300px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screenshot-placeholder {
  text-align: center;
  color: var(--white-color);
}

.screenshot-placeholder span {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.screenshot-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 0.5rem);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
  left: 0.25rem;
  right: 0.25rem;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #17a2b8;
  transition: all 0.3s ease;
  pointer-events: all;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: var(--white-color);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:active {
  transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

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

/* About Section */
.about {
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6200;
  display: block;
}

.stat-label {
  color: var(--gray-color);
  font-weight: 500;
}

/* Contact Section */
.contact {
  background: #1f2937;
  color: white;
}

.contact .section-title {
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  padding: 1rem 2rem;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 1rem 0;
  font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .product-content,
  .contact-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .product-tabs {
    gap: 0.5rem;
  }

  .product-tab {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .product-info h3 {
    font-size: 2rem;
  }

  .screenshot-image {
    height: 250px;
  }

  .screenshot-placeholder span {
    font-size: 2.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Initialize fade-in elements */
.fade-in {
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.contact-details {
  margin: 2rem 0;
}

.contact-details p strong {
  color: var(--secondary-color);
}

select {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
select option {
  background: #363f4b;
  color: rgba(255, 255, 255, 0.7);
}

.wide-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.wide-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.wide-card p {
  color: #64748b;
  line-height: 1.7;
}
