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

:root {
  /* Updated color scheme to match reference image with blue theme */
  --primary-blue: #4a90e2;
  --accent-blue: #5ba3f5;
  --dark-blue: #030812;
  --darker-blue: #010204;
  --light-blue: #6bb5ff;
  --white: #ffffff;
  --light-gray: #e8e8e8;
  --gray-text: #a0a8b8;
  --card-bg: #0a1220;
}

body {
  font-family: "Vazirmatn", sans-serif;
  background-color: var(--dark-blue);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Added animated grid background like reference image */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(74, 144, 226, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 226, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50px);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(74, 144, 226, 0.2);
}

.navbar.scrolled {
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(74, 144, 226, 0.2);
}

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

.logo h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

/* Added nav-right container for search and menu */
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Added search box styles */
.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 250px;
  padding: 14px 60px 14px 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 50px;
  color: var(--white);
  font-family: "Vazirmatn", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.search-input::placeholder {
  color: var(--gray-text);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 30px rgba(74, 144, 226, 0.4);
  width: 300px;
}

.search-btn {
  position: absolute;
  left: 8px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.search-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.search-btn svg {
  width: 22px;
  height: 22px;
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

/* Added user account menu styles */
.user-account {
  position: relative;
}

.user-account-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.user-account-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.user-account-btn svg {
  width: 24px;
  height: 24px;
  color: white;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  width: 320px;
  background: var(--card-bg);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(20px);
}

.user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 15px;
  height: 15px;
  background: var(--card-bg);
  border-top: 2px solid rgba(74, 144, 226, 0.3);
  border-left: 2px solid rgba(74, 144, 226, 0.3);
  transform: rotate(45deg);
}

.user-dropdown-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.user-form-group {
  margin-bottom: 20px;
}

.user-form-group input {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  color: var(--white);
  font-family: "Vazirmatn", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.user-form-group input::placeholder {
  color: var(--gray-text);
}

.user-form-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.user-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-bottom: 15px;
}

.user-register-link {
  text-align: center;
  color: var(--gray-text);
  font-size: 14px;
}

.user-register-link a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.user-register-link a:hover {
  color: var(--light-blue);
  text-decoration: underline;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Added 3D geometric shapes like reference image */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-background::before,
.hero-background::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, rgba(91, 163, 245, 0.2) 50%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  filter: blur(40px);
}

.hero-background::before {
  width: 600px;
  height: 600px;
  top: -10%;
  right: 5%;
  animation-delay: 0s;
  box-shadow: 0 0 100px rgba(74, 144, 226, 0.6);
}

.hero-background::after {
  width: 500px;
  height: 500px;
  bottom: 10%;
  left: 10%;
  animation-delay: 5s;
  box-shadow: 0 0 80px rgba(91, 163, 245, 0.5);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

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

.hero-title {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.title-line {
  display: block;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(74, 144, 226, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-text);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 48px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  color: var(--white);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--primary-blue);
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.mouse::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-blue);
  border-radius: 2px;
  animation: scroll 2s infinite;
  box-shadow: 0 0 10px var(--primary-blue);
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* Section Styles */
section {
  padding: 120px 0;
  position: relative;
}

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

.section-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
  color: var(--white);
  text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-text);
}

/* Products Section */
.products {
  /* Changed white background to light blue-gray gradient */
  background: var(--dark-blue);
  color: var(--white);
}

.products .section-title {
  color: var(--white);
  text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}

.products .section-subtitle {
  color: var(--gray-text);
}

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

.product-card {
  /* Changed from light blue-gray to dark card background */
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(74, 144, 226, 0.2);
  position: relative;
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(91, 163, 245, 0.1));
}

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.95), rgba(91, 163, 245, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-btn {
  padding: 14px 32px;
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.product-content {
  padding: 30px;
}

.product-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  /* Changed text color to white for dark theme */
  color: var(--white);
}

.product-description {
  /* Changed text color for dark theme */
  color: var(--gray-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.product-features {
  list-style: none;
}

.product-features li {
  padding: 8px 0;
  /* Changed text color for dark theme */
  color: var(--gray-text);
  position: relative;
  padding-right: 25px;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 18px;
}

/* Features Section */
.features {
  background: var(--dark-blue);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

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

.feature-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--card-bg);
  border-radius: 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(74, 144, 226, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
  border-color: var(--primary-blue);
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
  position: relative;
  z-index: 1;
}

.feature-icon svg {
  width: 45px;
  height: 45px;
  color: white;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.feature-description {
  color: var(--gray-text);
  line-height: 1.7;
}

/* About Section */
.about {
  /* Changed white background to light blue-gray gradient */
  background: var(--dark-blue);
  color: var(--white);
}

.about .section-title {
  color: var(--white);
  text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}

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

.about-text {
  padding-left: 20px;
}

.about-description {
  /* Changed text color for dark theme */
  color: var(--gray-text);
  margin-bottom: 25px;
  line-height: 1.9;
  font-size: 17px;
}

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

.stat-item {
  text-align: center;
  padding: 30px;
  /* Changed from light to dark card background */
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.stat-label {
  /* Changed text color for dark theme */
  color: var(--gray-text);
  font-size: 15px;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
  border: 1px solid rgba(74, 144, 226, 0.2);
}

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

/* Blog Section */
.blog {
  background: var(--dark-blue);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.blog-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(74, 144, 226, 0.1);
}

.blog-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(74, 144, 226, 0.3);
  border-color: var(--primary-blue);
}

.blog-image {
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(91, 163, 245, 0.1));
}

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

.blog-card:hover .blog-image img {
  transform: scale(1.15);
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.blog-date,
.blog-category {
  font-size: 13px;
  color: var(--gray-text);
  padding: 6px 14px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 20px;
}

.blog-category {
  color: var(--primary-blue);
  background: rgba(74, 144, 226, 0.2);
}

.blog-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  /* Changed blog title color to white */
  color: var(--white);
}

.blog-excerpt {
  color: #6b7280;
  margin-bottom: 18px;
  line-height: 1.7;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-link:hover {
  color: var(--light-blue);
  gap: 12px;
}

.blog-link::after {
  content: "←";
  transition: transform 0.3s ease;
}

.blog-link:hover::after {
  transform: translateX(-5px);
}

/* Contact Section */
.contact {
  /* Changed white background to light blue-gray gradient */
  background: var(--dark-blue);
  color: var(--white);
}

.contact .section-title {
  color: var(--white);
  text-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 30px;
  /* Changed from light to dark card background */
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.contact-icon svg {
  width: 35px;
  height: 35px;
  color: white;
}

.contact-details h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  /* Changed text color to white for dark theme */
  color: var(--white);
}

.contact-details p {
  /* Changed text color for dark theme */
  color: var(--gray-text);
  line-height: 1.7;
}

.contact-form {
  /* Changed from light to dark card background */
  background: var(--card-bg);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  /* Changed from light to dark input background */
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  /* Changed text color to white */
  color: var(--white);
  font-family: "Vazirmatn", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* Added styling for select dropdown options to make text visible */
.form-group select option {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 10px;
}

.form-group select option:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
}

/* Order Section */
.order {
  background: var(--dark-blue);
  position: relative;
}

.order::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.order-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.order-info h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.order-info p {
  color: var(--gray-text);
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 30px;
}

.order-features {
  list-style: none;
  margin-bottom: 30px;
}

.order-features li {
  padding: 15px 0;
  color: var(--gray-text);
  position: relative;
  padding-right: 35px;
  font-size: 16px;
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
}

.order-features li:last-child {
  border-bottom: none;
}

.order-features li::before {
  content: "✓";
  position: absolute;
  right: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 20px;
}

.order-form {
  background: var(--card-bg);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
}

.order-form h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
  text-align: center;
}

.order-form .form-group {
  margin-bottom: 25px;
}

.order-form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  color: var(--white);
  font-family: "Vazirmatn", sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: var(--gray-text);
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

/* Added styling for order form select dropdown options */
.order-form select option {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 10px;
}

.order-form select option:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.order-form textarea {
  resize: vertical;
  min-height: 120px;
}

.order-form .btn {
  width: 100%;
  font-size: 17px;
  padding: 18px;
  margin-top: 10px;
}

/* Footer */
.footer {
  background: var(--darker-blue);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(74, 144, 226, 0.2);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

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

.footer-section {
  text-align: center;
}

.footer-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--white);
  text-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
  /* Center align footer titles */
  text-align: center;
}

.footer-description {
  color: var(--gray-text);
  line-height: 1.8;
  /* Center align footer description */
  text-align: center;
}

.footer-links {
  list-style: none;
  /* Center align footer links */
  text-align: center;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-text);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-blue);
  transform: translateX(-5px);
}

.footer-contact {
  list-style: none;
  /* Center align footer contact info */
  text-align: center;
}

.footer-contact li {
  color: var(--gray-text);
  margin-bottom: 12px;
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(74, 144, 226, 0.1);
  color: var(--gray-text);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  /* Updated responsive styles for search box */
  .nav-right {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--dark-blue);
    flex-direction: column;
    padding: 40px;
    transition: right 0.3s ease;
    gap: 30px;
  }

  .nav-right.active {
    right: 0;
  }

  .search-box {
    width: 100%;
  }

  .search-input {
    width: 100%;
  }

  .search-input:focus {
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 36px;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px;
  }

  .order-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .order-form {
    padding: 30px;
  }

  .order-info h3 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-section {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }
}

/* Added page-section class for separate pages with proper spacing */
.page-section {
  padding-top: 140px;
  min-height: 100vh;
}

/* Added styles for order form row layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--white);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  cursor: pointer;
}

.btn-large {
  padding: 20px;
  font-size: 18px;
}

.form-note {
  text-align: center;
  color: var(--gray-text);
  font-size: 14px;
  margin-top: 15px;
}

.info-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
  border-color: var(--primary-blue);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.info-icon svg {
  width: 35px;
  height: 35px;
  color: white;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

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

/* Registration Section Styles */
.register-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 80px;
}

.register-container {
  max-width: 550px;
  margin: 0 auto;
}

.register-header {
  text-align: center;
  margin-bottom: 50px;
}

.register-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(74, 144, 226, 0.3);
}

.register-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.6;
}

.register-form-wrapper {
  background: var(--card-bg);
  padding: 50px;
  border-radius: 24px;
  border: 2px solid rgba(74, 144, 226, 0.3);
  box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
  backdrop-filter: blur(20px);
}

.register-form .form-group {
  margin-bottom: 25px;
}

.register-form .form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
}

.register-form input {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(74, 144, 226, 0.2);
  border-radius: 12px;
  color: var(--white);
  font-family: "Vazirmatn", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  direction: ltr;
  text-align: right;
}

.register-form input::placeholder {
  color: var(--gray-text);
}

.register-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.verification-info {
  text-align: center;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(74, 144, 226, 0.2);
}

.verification-info .info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

.verification-info .info-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.verification-info p {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.6;
}

.verification-info strong {
  color: var(--primary-blue);
  font-weight: 700;
}

.resend-code {
  text-align: center;
  margin-top: 20px;
}

.resend-code p {
  color: var(--gray-text);
  font-size: 14px;
  margin-bottom: 8px;
}

.resend-code a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.resend-code a:hover {
  color: var(--light-blue);
  text-decoration: underline;
}

.timer {
  color: var(--gray-text);
  font-size: 14px;
}

.timer span {
  color: var(--primary-blue);
  font-weight: 700;
}

.register-footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.register-footer p {
  color: var(--gray-text);
  font-size: 15px;
}

.register-footer a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.register-footer a:hover {
  color: var(--light-blue);
  text-decoration: underline;
}

.form-note {
  text-align: center;
  color: var(--gray-text);
  font-size: 14px;
  margin-top: 20px;
}

.form-note a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.form-note a:hover {
  text-decoration: underline;
}

/* Responsive styles for registration page */
@media (max-width: 768px) {
  .register-form-wrapper {
    padding: 35px 25px;
  }

  .register-title {
    font-size: 36px;
  }

  .register-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .register-form-wrapper {
    padding: 30px 20px;
  }

  .register-title {
    font-size: 32px;
  }
}
