/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}
.lang-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

.lang-form select {
  appearance: none;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  padding: 0.6rem 2.4rem 0.6rem 1.2rem; /* biroz kattaroq joy */
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  outline: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23333' stroke-width='2' viewBox='0 0 24 24'><path stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* Hover effekti */
.lang-form select:hover {
  border-color: #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Focus holati */
.lang-form select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Optionlar */
.lang-form option {
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.4rem 0;
}

/* 📱 Mobil ekranlar uchun optimizatsiya */
@media (max-width: 600px) {
  .lang-form {
    justify-content: center;
  }

  .lang-form select {
    width: 60%;
    min-width: 100px; /* matn sig‘ishi uchun */
    font-size: 1.1rem; /* biroz kattaroq matn */
    padding: 0.7rem 2.2rem 0.7rem 1.2rem;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  padding-bottom: 8px;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 0.6rem 0;
}
.nav-logo a{
    color: #064add;
    font-size: 28px;
    font-weight: 700;
    list-style: none;
    text-decoration: none;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 14px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #064add;
}
.hamburger {
  display: none; /* faqat desktopda yashirin bo‘ladi */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

/* Har bir chiziq (bar) uchun uslub */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  width: 30px;
  height: 25px;
  z-index: 2000;
}

/* Uchta chiziq */
.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #000; /* kontrast rang */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  position: relative;
  background: url("/static/images/fon/main_img.jpeg") center/cover no-repeat;
  color: white;
  overflow: hidden;
  margin-top: 70px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(5, 150, 105, 0.1) 0%,
    rgba(4, 120, 87, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #fff;
  color: #064add;
}

.btn-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #064add;
}

.btn-outline {
  background: transparent;
  color: #064add;
  border-color: #064add;
}

.btn-outline:hover {
  background: #064add;
  color: #fff;
}

.hero-image {
  display: none;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #046bf1 0%, #0953c4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 100px 0;
}

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

.features-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item i {
  color: #064add;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #6b7280;
  line-height: 1.6;
}

.features-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: #fff;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta .btn i {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background: #1e63c4;
  color: #fff;
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #064add;
  margin-bottom: 1rem;
}

.footer-logo i {
  margin-right: 0.5rem;
  font-size: 1.8rem;
}

.footer-section p {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #374151;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #064add;
  transform: translateY(-2px);
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #064add;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-item i {
  color: #064add;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .header{
    padding: 15px 15px;
    height: 100px;
}
  .navbar{
    padding: 0;
}
  .nav-logo a{
   font-size: 22px; 
}
  .nav-menu {
    position: fixed;
    left: 0;
    top: 55px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transform: translateX(-100%);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 120px 20px 120px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

  .features-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .company-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 1rem;
    padding: 0 10px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-tabs .tab-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tab-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    min-width: 100%;
  }

  .news-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero::before {
    background: linear-gradient(
      45deg,
      rgba(6, 115, 216, 0.2) 0%,
      rgba(4, 45, 120, 0.2) 100%
    );
  }

  .product-info {
    padding: 1.5rem;
  }

  .product-title {
    font-size: 1.8rem;
  }

  .article-title {
    font-size: 1.8rem;
  }

  .article-header,
  .article-content,
  .article-footer {
    padding: 1.5rem;
  }

  .article-image {
    margin: 0 1.5rem 1.5rem;
  }

  .article-author {
    padding: 1rem;
  }

  .author-avatar {
    width: 50px;
    height: 50px;
  }

  .action-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .spec-item {
    padding: 0.75rem;
  }

  .info-badge {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .step {
    padding: 1rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .sidebar-widget {
    padding: 1.5rem;
  }

  .thumbnail-images {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .thumbnail {
    height: 60px;
  }
}

/* Pet-themed Enhancements */
.nav-logo i.fa-paw {
  animation: pawPulse 2s ease-in-out infinite;
}

@keyframes pawPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Service card hover effects for pet theme */
.service-card:hover .service-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(3, 43, 155, 0.3);
}

/* Veterinary-specific color variations */
.service-icon i.fa-heartbeat {
  color: #ef4444;
}

.service-icon i.fa-user-md {
  color: #064add;
}

/* Enhanced button hover effects */
.btn-primary:hover {
  background: #f0fdf4;
  color: #1145b4;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(4, 73, 202, 0.2);
}

/* Product card enhancements */
.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(4, 73, 202, 0.15);
}

/* Hero section text shadow enhancement */
.hero h1,
.hero p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Footer improvements */
.footer {
  background: linear-gradient(135deg, #1f2937 0%, #1145b4 100%);
}

.footer-logo i.fa-paw {
  animation: pawPulse 3s ease-in-out infinite;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Product Detail Page Enhanced Styles */
.product-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Asosiy katta rasm */
.main-image {
  position: relative;
  width: 100%;
  max-width: 400px; /* maksimal kenglik */
}

.main-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Badge (masalan “Yangi”, “Chegirma” va h.k.) */
.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: crimson;
  color: white;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
}

/* Kichik tumnlar (thumbnail) */
.thumbnail-images {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail-images img {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.thumbnail-images img.active,
.thumbnail-images img:hover {
  border: 2px solid #007bff;
  transform: scale(1.05);
}
.product-detail {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.product-gallery-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #064add;
}

.product-gallery-info p {
  margin: 0.5rem 0;
  color: #6b7280;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-gallery-info i {
  color: #064add;
}

.image-zoom {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.main-image:hover .image-zoom {
  opacity: 1;
}

.image-zoom:hover {
  background: white;
  transform: scale(1.1);
}

.image-zoom i {
  color: #064add;
  font-size: 1.2rem;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* Har bir spec uchun kartochka */
.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f6f9fc;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  min-width: 120px;
}

/* Hover effekti */
.spec-item:hover {
  background: #eef4ff;
  border-color: #cddfff;
}

/* Belgining o‘zi */
.spec-item i {
  color: #007bff; /* Ko‘k ptichka */
  font-size: 14px;
}

/* Sarlavha (chap qismi) */
.spec-label {
  font-weight: 600;
}

/* Qiymat (o‘ng qismi) */
.spec-value {
  margin-left: 4px;
  color: #555;
}
.product-pricing {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  padding: 2rem;
  border-radius: 20px;
  margin: 2rem 0;
  border: 2px solid #a7f3d0;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #064add;
}

.original-price {
  font-size: 1.5rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

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

.stock-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.stock-status.available {
  color: #064add;
}

.stock-status.unavailable {
  color: #ef4444;
}

.delivery-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.delivery-info i {
  color: #064add;
}

.product-actions {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(5, 44, 150, 0.1);
  margin-top: 2rem;
}

.quantity-selector {
  margin-bottom: 2rem;
}

.quantity-selector label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #374151;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.qty-btn {
  width: 45px;
  height: 45px;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  border-color: #064add;
  color: #064add;
  background: #f0fdf4;
}

#quantity {
  width: 80px;
  height: 45px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: 100%;
  justify-content: center;
  gap: 0.75rem;
}

.btn-large i {
  font-size: 1.2rem;
}

/* Product Tabs Enhancement */
.product-tabs {
  margin-top: 6rem;
}

.tab-buttons {
  display: flex;
  gap: 0;
  border-bottom: 3px solid #f3f4f6;
  margin-bottom: 3rem;
  background: white;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn {
  flex: 1;
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #6b7280;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn:hover {
  background: #f0fdf4;
  color: #064add;
}

.tab-btn.active {
  background: #064add;
  color: white;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #1145b4;
}

.tab-content {
  background: white;
  padding: 3rem;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid #064add;
  display: inline-block;
}

.tab-panel h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2937;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tab-panel h4 i {
  color: #064add;
  font-size: 1.2rem;
}

.tab-panel ul {
  margin: 1rem 0 2rem 2rem;
  list-style: none;
}

.tab-panel ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
}

.tab-panel ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #064add;
  font-weight: bold;
}

.usage-section {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  border-left: 5px solid #064add;
}

.composition-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.composition-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.composition-table tr:nth-child(even) {
  background: #f8fafc;
}

.composition-table tr:hover {
  background: #f0fdf4;
}

.molecular-info {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid #a7f3d0;
  margin-top: 2rem;
}

/* Reviews Section Enhancement */
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 20px;
}

.overall-rating {
  text-align: center;
}

.rating-score {
  font-size: 4rem;
  font-weight: 700;
  color: #064add;
  margin-bottom: 1rem;
}

.rating-stars {
  margin-bottom: 1rem;
}

.rating-stars i {
  color: #064add;
  font-size: 1.5rem;
  margin: 0 0.1rem;
}

.rating-count {
  color: #6b7280;
  font-weight: 500;
}

.rating-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-bar span:first-child {
  min-width: 50px;
  font-weight: 500;
}

.rating-bar span:last-child {
  min-width: 40px;
  text-align: right;
  font-weight: 500;
  color: #6b7280;
}

.bar {
  flex: 1;
  height: 8px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #064add 0%, #064add 100%);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.review-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #064add;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info strong {
  color: #1f2937;
  font-size: 1.1rem;
}

.review-date {
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: block;
}

.review-rating i {
  color: #175bee;
  font-size: 1.1rem;
}

.review-item p {
  line-height: 1.6;
  color: #374151;
}

/* Related Products Enhancement */
.related-products {
  background: #f8fafc;
  padding: 80px 0;
}

.related-products .products-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.related-products h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 3rem;
}

.step-number {
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: #1f2937;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.highlight-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #064add;
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem 0;
}

.highlight-box h4 {
  color: #92400e;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-box i {
  color: #064add;
}

.highlight-box p {
  color: #78350f;
  margin: 0;
  line-height: 1.6;
}

.article-gallery {
  margin: 3rem 0;
}

.article-gallery h4 {
  color: #1f2937;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(8, 65, 223, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.article-footer {
  padding: 3rem;
  border-top: 1px solid #f3f4f6;
  background: #f8fafc;
}

.article-tags {
  margin-bottom: 2rem;
}

.article-tags h4 {
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  background: #064add;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.tag:hover {
  background: #1145b4;
  transform: translateY(-2px);
}

.share-section h4 {
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  color: white;
}

.share-btn.facebook {
  background: #1877f2;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.telegram {
  background: #0088cc;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* News Sidebar Enhancements */
.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.sidebar-widget h3 {
  color: #1f2937;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 1rem;
}

.recent-news-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.recent-news-item:hover {
  background: #f8fafc;
  border-radius: 10px;
  padding: 1rem;
  margin: 0 -1rem;
}

.recent-news-item:last-child {
  border-bottom: none;
}

.recent-news-image {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-news-content h4 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.recent-news-content h4 a {
  color: #374151;
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-news-content h4 a:hover {
  color: #064add;
}

.recent-news-date {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
}

.categories-list {
  list-style: none;
  padding: 0;
}

.categories-list li {
  margin-bottom: 0.75rem;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #374151;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.categories-list a:hover {
  background: #f0fdf4;
  color: #064add;
  transform: translateX(5px);
}

.categories-list span {
  background: #e5e7eb;
  color: #6b7280;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  font-weight: 500;
}

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

.newsletter-form input {
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #064add;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #f0fdf4;
  transform: translateX(5px);
}

.contact-item i {
  color: #064add;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-item span {
  color: #374151;
  font-weight: 500;
}

/* About Page Enhancements */
.about-overview {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

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

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mission-points {
  margin: 3rem 0;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(9, 32, 235, 0.1);
  transition: all 0.3s ease;
}

.mission-point:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(12, 51, 226, 0.15);
}

.mission-point i {
  color: #064add;
  font-size: 2rem;
  margin-top: 0.5rem;
  min-width: 40px;
}

.mission-point h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.mission-point p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(11, 49, 216, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(8, 57, 218, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #064add;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: #6b7280;
  font-weight: 500;
}

.about-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(13, 100, 230, 0.2);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(17, 20, 231, 0.3) 0%,
    rgba(14, 75, 241, 0.3) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image:hover .image-overlay {
  opacity: 1;
}

.play-button {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #064add;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.play-button:hover {
  transform: scale(1.1);
}

/* Achievements Section */
.achievements {
  padding: 100px 0;
  background: #f8fafc;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.achievement-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #064add 0%, #064add 100%);
}

.achievement-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2);
}

.achievement-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #064add 0%, #064add 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1) rotateY(10deg);
}

.achievement-icon i {
  font-size: 2.5rem;
  color: white;
}

.achievement-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.achievement-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.achievement-year {
  display: inline-block;
  background: linear-gradient(135deg, #064add 0%, #064add 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Values Section Enhancement */
.values {
  padding: 100px 0;
  background: white;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.value-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  border: 2px solid #a7f3d0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(17, 72, 223, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.value-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.value-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(14, 66, 238, 0.2);
  border-color: #064add;
}

.value-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #064add 0%, #1145b4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-icon i {
  font-size: 2.5rem;
  color: white;
}

.value-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Team Section */
.team {
  padding: 100px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.member-photo {
  height: 300px;
  overflow: hidden;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
  transform: scale(1.1);
}

.member-info {
  padding: 2rem;
}

.member-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.member-position {
  color: #064add;
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Timeline */
.history {
  padding: 100px 0;
  background: #f8fafc;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #064add;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: #064add;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  flex: 1;
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #6b7280;
  line-height: 1.6;
}

/* Products Page */
.product-categories {
  padding: 50px 0;
  background: #f8fafc;
  margin-top: 70px;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: #fff;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #064add;
  color: #fff;
  border-color: #064add;
}

.products {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
  height: fit-content;
}

.product-card.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(13, 72, 233, 0.2);
}

/* Enhanced Product Card Styling */
.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #064add 0%, #1145b4 100%);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
  z-index: 2;
}

.product-info {
  padding: 2.5rem 2rem;
}

.product-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #064add;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.product-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.product-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.product-specs span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  border: 1px solid #e5e7eb;
}

.product-specs i {
  color: #064add;
  font-size: 1rem;
}

.product-info .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.product-info .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(11, 80, 230, 0.25);
}

.product-features {
  padding: 100px 0;
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #064add 0%, #064add 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* News Page */
.news {
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: fit-content;
}

.news-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(14, 36, 231, 0.2);
}

.news-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-height: 400px;
}

.news-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.news-card.featured .news-image {
  height: auto;
  min-height: 400px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
  z-index: 2;
}

.news-content {
  padding: 2.5rem 2rem;
}

.news-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.news-date {
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-date::before {
  content: "📅";
  font-size: 1rem;
}

.news-category {
  color: #064add;
  font-weight: 600;
  background: #ecfdf5;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #a7f3d0;
}

.news-card h2,
.news-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-card.featured h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.news-content p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #064add;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.75rem 1.5rem;
  border: 2px solid #064add;
  border-radius: 25px;
  background: transparent;
}

.read-more:hover {
  background: #064add;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(13, 62, 223, 0.25);
}

.read-more i {
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(5px);
}

/* News Responsive Design */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .news-card.featured {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .news-card.featured .news-image {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .news-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .news-content {
    padding: 2rem 1.5rem;
  }

  .news-card h2,
  .news-card h3 {
    font-size: 1.3rem;
  }

  .news-card.featured h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-image {
    height: 250px;
  }

  .news-content {
    padding: 1.5rem;
  }

  .news-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .read-more {
    width: 100%;
    justify-content: center;
  }
}

/* Gallery Page */
.gallery-filters {
  padding: 50px 0;
  background: #f8fafc;
  margin-top: 70px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: #fff;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: #064add;
  color: #fff;
  border-color: #064add;
}

.gallery {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  color: white;
  padding: 2rem;
}

.gallery-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.gallery-content p {
  opacity: 0.9;
}

/* Partners Page */
.partners-overview {
  padding: 100px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.partner-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.partner-logo {
  width: 120px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 10px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.partner-card p {
  color: #6b7280;
  line-height: 1.6;
}

.partnership-benefits {
  padding: 100px 0;
  background: #f8fafc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1d60f0 0%, #064add 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
  color: #fff;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Additional Manufacturing Styles */
.manufacturing-overview {
  padding: 100px 0;
}

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

.manufacturing-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
}

.manufacturing-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.manufacturing-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.manufacturing-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.production-lines {
  padding: 100px 0;
  background: #f8fafc;
}

.lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.line-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.line-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #064add 0%, #1145b4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.line-icon i {
  font-size: 2rem;
  color: #fff;
}

.line-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.line-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.line-card ul {
  list-style: none;
  padding: 0;
}

.line-card li {
  color: #6b7280;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.line-card li::before {
  content: "•";
  color: #064add;
  position: absolute;
  left: 0;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: 0;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 0.6rem 0;
    transform: translateX(-100%);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 120px 20px 120px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

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

  .features-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .company-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Product Detail Responsive */
  .product-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-info {
    padding: 2rem;
  }

  .product-title {
    font-size: 2rem;
  }

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

  .product-info-badges {
    grid-template-columns: 1fr;
  }

  .tab-buttons {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tab-btn {
    flex: none;
    min-width: calc(50% - 0.25rem);
    padding: 1rem;
    font-size: 0.9rem;
  }

  .tab-content {
    padding: 2rem;
  }

  .thumbnail-images {
    grid-template-columns: repeat(2, 1fr);
  }

  /* News Detail Responsive */
  .news-detail-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .article-header {
    padding: 2rem;
  }

  .article-title {
    font-size: 2.2rem;
  }

  .article-author {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .article-actions {
    justify-content: center;
  }

  .article-image,
  .article-content,
  .article-footer {
    margin: 0 2rem;
    padding: 2rem;
  }

  .article-image {
    margin: 0 2rem 2rem;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .share-buttons {
    justify-content: center;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .step-number {
    margin: 0 auto;
  }

  .news-sidebar {
    order: -1;
  }
}

@media (max-width: 600px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .company-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 60px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    min-width: auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0;
  }

  .timeline-content {
    margin: 0;
    margin-left: 1rem;
  }

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

  .page-header h1 {
    font-size: 2rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .company-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .category-filters {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .product-specs {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.card-description {
  font-size: 1rem;
  color: #4b5563;
  margin: 0.5rem 0;
}

.btn1 {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn1:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* === Modal === */
.modal {
  display: none;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal.modal-open {
  display: flex;
}

.modal-content {
  background: white;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  animation: slideIn 0.4s ease-out forwards;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}
.activities-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.activity-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.activity-image {
  flex: 1;
  max-width: 50%;
  max-height: 400px;
  overflow: hidden;
  cursor: pointer;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-text {
  flex: 1;
  padding: 24px;
  overflow: auto;
  max-height: 400px;
  border-left: 1px solid #eee;
  background-color: #fdfdfd;
}

.activity-text h1 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #111827;
}

.activity-text p {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.modal-open {
  display: flex;
}

.modal-content {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
}

#closeModal {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

/* ====== Mobil uchun umumiy sozlamalar ====== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 99;
        transform: translateX(-100%);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-item {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #333;
        transition: all 0.3s ease;
    }

    /* Nav logotipi va menyu orasini joylashtirish */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 20px;
    }
}

/* ====== Telefon (max 768px) uchun kartalar ====== */
@media (max-width: 768px) {
    .card-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 14px;
    }

    .btn1 {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ====== Juda kichik ekranlar (max 480px) uchun ====== */
@media (max-width: 480px) {
    .nav-logo span {
        font-size: 18px;
    }

    .card {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .activities-container {
        padding: 20px 10px;
    }

    .activity-card {
        gap: 15px;
    }

    .activity-text h1 {
        font-size: 20px;
    }

    .activity-text p {
        font-size: 14px;
        line-height: 1.6;
    }

    #closeModal {
        font-size: 28px;
        top: 10px;
        right: 15px;
    }
}
@media (max-width: 768px) {
	.hero{
	  margin-top: 80px;
	}
	.hero-content{
	  padding: 120px 20px 100px;
	}
}
@media (max-width: 480px) {
	.hero{
	  margin-top: 90px;	
	}
	.hero-title{
	  font-size: 2rem;
	}
	.hero-description{
	  font-size: 0.95rem;
	}
}
@media (max-width: 768px) {
  .about-overview {
    margin-top: 90px; /* header mobil holatda kattaroq bo‘lgani uchun */
  }

  .about-content {
    padding: 120px 20px 100px; /* pastga joy qoldirish uchun moslashtirilgan */
  }
}

@media (max-width: 480px) {
  .about-overview {
    margin-top: 90px; /* juda kichik ekranda ham to‘liq ko‘rinsin */
  }

}
@media (max-width: 768px) {
  .manufacturing-overview {
    margin-top: 50px; /* header mobil holatda kattaroq bo‘lgani uchun */
  }
}
@media (max-width: 768px) {
  .manufacturing-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .category-filters {
    padding: 1rem 1rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .category-filters{
   padding: 1rem 1rem;
   }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
