/* Hero Section */
.hero {
  min-height: calc(100vh - -60px); /* Adjust for the navbar height */
  background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 0; /* Add top padding equal to navbar height */
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #007bff;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
}

.hero-features {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

.hero-feature {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.hero-feature-content {
  flex: 1;
}

.hero-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.hero-feature-description {
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .hero-features {
      flex-direction: column;
      padding: 2rem 1rem;
  }

  .hero-feature {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .hero-feature-icon {
      width: 60px;
      height: 60px;
  }
}

.carousel {
  overflow: hidden;
  padding: 1rem 0;
  background: #f6f9fc;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.carousel .group {
  display: flex;
  gap: 2rem;
  padding-right: 2rem;
  will-change: transform;
  animation: scrolling 20s linear infinite;
}

.carousel .card {
  flex: 0 0 auto;
  color: #1a1a1a;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: auto;
  perspective: initial;
}

.carousel .card-inner {
  transform-style: initial;
  transition: none;
  cursor: default;
}

@keyframes scrolling {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Products Section */
.products {
  padding: 6rem 2rem;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Card Styles */
.card {
  width: 300px;
  height: 400px;
  perspective: 1000px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.card-front {
  background: white;
}

.card-front img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.card-front h2 {
  padding: 20px;
  color: #333;
  font-size: 1.5rem;
}

.card-back {
  background: #1a1a1a;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
}

.card-back p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.product-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.card-cta:hover {
  transform: translateY(-2px);
}

/* Tabbed Navigation */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  color: #007bff;
}

.tab-button.active {
  color: #007bff;
  border-bottom-color: #007bff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Product Information Styles */
.product-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.product-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.product-title span {
  color: #007bff;
}

.product-subtitle {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.product-table th,
.product-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #e2e8f0;
}

.product-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #333;
}

.product-table td:first-child {
  font-weight: 600;
  background: #f8fafc;
  color: #333;
}

.product-table td {
  color: #666;
}

/* Responsive table styles */
@media (max-width: 1024px) {
  .product-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .product-info {
    padding: 2rem 1rem;
  }

  .product-table th,
  .product-table td {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .product-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #f8fafc;
  }

  .product-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .product-table th,
  .product-table td {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .product-subtitle {
    font-size: 0.9rem;
  }
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-bottom: 1px solid #e2e8f0;
}

.tab-button {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  color: #007bff;
}

.tab-button.active {
  color: #007bff;
  border-bottom-color: #007bff;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-table {
    display: block;
    overflow-x: auto;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .tab-navigation {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .tab-button {
    width: 100%;
    text-align: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 3rem;
  }

  .features {
      gap: 2rem;
  }
}

/* Call to Action Section */
/* .cta-section {
  background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(45deg, #1a1a1a, #4a4a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-description {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 123, 255, 0.4);
}

@media (max-width: 768px) {
  .cta-title {
      font-size: 2.5rem;
  }
  
  .cta-description {
      font-size: 1.125rem;
  }
  
  .cta-button {
      padding: 1rem 2.5rem;
  }
} */

/* Newsletter Subscription Styles */
.newsletter-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-input {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.consent-container {
  text-align: left;
  color: white;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0;
}

.consent-container input[type="checkbox"] {
  margin-top: 0.3rem;
}

.consent-container a {
  color: white;
  text-decoration: underline;
}

.newsletter-button {
  background: white;
  color: #007bff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-perks {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.perk-item {
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.perk-item i {
  font-size: 1.2rem;
}

/* Success Message */
.success-message {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.success-message.show {
  display: block;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .newsletter-perks {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .newsletter-title {
    font-size: 2rem;
  }
}