/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  padding: 16px;
  background-color: #f0f0f0;
  line-height: 1.6;
  color: #374151;
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none;
}

.container {
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
/* Default navbar on hero */
.navbar {
  position: fixed;
  top: 10px;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s ease;
  z-index: 999;
  background: transparent;
  gap: 10rem;
}

.navbar .nav-link {
  color: white; /* White links over hero */
  transition: color 0.3s ease;
}

/* Scrolled state */
.navbar.scrolled {
  background: white; /* set background */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 0 30px;
  top: 0px;
}
.text_highlight {
  background:  linear-gradient(90deg, #074090, #2AA348);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.navbar.scrolled .nav-link.active {
  background: linear-gradient(135deg, #22c55e, #14b8a6) !important;
  color: white !important;
}
.navbar.scrolled .nav-link {
  background: transparent !important;
  border-color: black !important;
  color: black !important;
}

.navbar.scrolled .logo-text {
  color: black !important;
}

.navbar.scrolled .cart-icon {
  background: transparent !important;
  border-color: black !important;
  color: black !important;
}

.navbar.scrolled .cart-icon svg {
  stroke: black !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 10rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 35%;
  height: auto;
  object-fit: cover;
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-link {
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(34, 197, 94, 0.3);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-icon,
.user-icon {
  position: relative;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cart-icon:hover,
.user-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cart-icon.active {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.3);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: white;
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

/* Hero Sections */
.hero,
.about-hero,
.products-hero,
.contact-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #14b8a6, #14b8a6, #0D2E62);
  border-radius: 30px 30px 0 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.floating-element {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(100px, -100px) scale(1.2);
  }
  50% {
    transform: translate(-50px, -150px) scale(0.8);
  }
  75% {
    transform: translate(-100px, 50px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  display: flex;
  z-index: 10;
  text-align: center;
  max-width: 1300px;
  padding: 9rem 4rem;
  margin-top: 10rem;
  flex-direction: column;
}
.hero-content-new {
  position: relative;
  display: flex;
  z-index: 10;
  text-align: center;
  max-width: 1300px;
  padding: 8rem 4rem;
  margin-top: 2rem;
  flex-direction: column;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: white;
  color: #374151;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #374151;
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: #374151;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3);
}

/* Sections */
.features,
.products-section,
.story-section,
.values-section,
.team-section {
  padding: 80px 0;
}

.features {
  background: #f9fafb;
}

.products-section {
  background: white;
}

.story-section {
  background: #f9fafb;
}

.values-section {
  background: white;
}

.team-section {
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
}

.section-header p {
  font-size: 20px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 48px 32px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.feature-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.product-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  height: 240px;
  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-content {
  padding: 32px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.product-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.product-info p {
  color: #6b7280;
  font-size: 14px;
}

.product-price {
  font-size: 32px;
  font-weight: 800;
  color: #22c55e;
}

.duration-selector {
  margin-bottom: 24px;
}

.duration-selector label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
}

.duration-options {
  display: flex;
  gap: 8px;
}

.duration-btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #374151;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.duration-btn.active,
.duration-btn:hover {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
}

.quantity-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.quantity-selector label {
  font-weight: 600;
  color: #374151;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quantity-btn:hover {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
}

.quantity-display {
  font-weight: 600;
  min-width: 32px;
  text-align: center;
}

.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  color: white;
  padding: 16px;
  border-radius: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.3);
}

/* Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 32px;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.story-text p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15);
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
  border-radius: 24px;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.value-card {
  padding: 48px 32px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-radius: 24px;
  border: 1px solid #bbf7d0;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 64px rgba(34, 197, 94, 0.1);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 24px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.value-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.12);
}

.team-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.team-info {
  padding: 32px;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.team-role {
  color: #22c55e;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 32px;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
}

.mission-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 32px;
}

.mission-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
}

.mission-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Contact Styles */
.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* form | info */
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}
.hero-content-contact {
  position: relative;
  display: flex;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  padding: 5rem 4rem;
  margin-top: 10rem;
  flex-direction: column;
}

/* Contact Form Styling */
.contact-form-container {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.contact-form-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: white;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #374151;
}

.contact-form .btn-primary:hover {
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
/* Container for all contact items */
.contact-info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #f9f9f9; /* Light background for contrast */
}

/* Individual contact info item styling */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 6rem;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for a more interactive feel */
.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Styling for the icon container */
.contact-icon {
  flex-shrink: 0; /* Prevents the icon from shrinking */
  width: 50px;
  height: 50px;
  background-color: #e0f2fe; /* Light blue background */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SVG icon styling */
.contact-icon svg {
  width: 28px;
  height: 28px;
  color: #0c4a6e; /* Dark blue for the icon color */
}

/* Text details container */
.contact-details {
  display: flex;
  flex-direction: column;
  color: #333; /* Darker text for readability */
}

.contact-details h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e0f2fe; /* Even darker for headings */
}

.contact-details p,
.contact-details span {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #e0f2fe;
}

.contact-details p:first-of-type {
  margin-top: 0.5rem;
}

/* Specific style for the time/response span */
.contact-details span {
  font-size: 0.85rem;
  color: #e0f2fe;
  margin-top: 0.25rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .contact-content {
    padding: 40px 1rem;
  }
  .hero-content-contact {
    padding: 1rem 1rem;
  }
  .contact-grid {
    display: block; /* stack form and info vertically */
    margin-top: 1rem;
  }

  /* Contact form container full width */
  .contact-form-container {
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
  }

  .contact-form-container h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .contact-form {
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr; /* single column */
    gap: 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 14px;
  }

  .contact-info-container {
    padding: 1rem;
    gap: 1rem;
  }

  .contact-info-item {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-details h3 {
    font-size: 1.1rem;
  }

  .contact-details p,
  .contact-details span {
    font-size: 0.9rem;
  }
  .hero-bg {
    overflow-x: hidden;
  }
}

.map-container {
  margin-top: 5rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Cart Styles */
.cart-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #22c55e, #14b8a6, #0D2E62);
  min-height: 100vh;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.cart-title-area h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.cart-title-area p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.cart-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cart-item-content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-item-image {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h3 {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.cart-item-details p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.cart-item-price {
  color: #a7f3d0;
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cart-quantity-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 16px;
}

.cart-quantity-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cart-quantity-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cart-item-total {
  text-align: right;
}

.cart-item-total-price {
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.remove-item-btn {
  color: #fca5a5;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.remove-item-btn:hover {
  color: #f87171;
}

.cart-summary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 48px;
  height: fit-content;
}

.cart-summary h2 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}

.summary-row span {
  color: white;
}

.summary-total {
  font-size: 20px;
  font-weight: 800;
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #374151;
  padding: 20px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.3);
}

.continue-shopping {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.continue-shopping:hover {
  color: white;
}

.empty-cart {
  text-align: center;
  padding: 80px 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
}

.empty-cart-icon {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.empty-cart h2 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.empty-cart p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

/* Products Page Specific */
.products-page-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #22c55e, #14b8a6, #0D2E62);
  min-height: 80vh;
}

.products-hero {
  height: 60vh;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* Toast Notification */
.toast {
  position: fixed;
  top: 120px;
  right: 24px;
  z-index: 1000;
  padding: 16px 24px;
  border-radius: 12px;
  color: white;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.toast.success {
  background: rgba(34, 197, 94, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.toast.error {
  background: rgba(239, 68, 68, 0.9);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.toast.show {
  transform: translateX(0);
}
.menu-toggle {
  display: none; /* Hide on desktop */
  cursor: pointer;
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: #374151;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Who We Are Section */
.who-we-are {
  padding: 80px 0;
  background: #ffffff;
}

.who-we-are h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 20px;
  position: relative;
}

.who-we-are h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #22c55e, #14b8a6);
  margin-top: 8px;
  border-radius: 2px;
}

.who-we-are h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #374151;
}

.who-we-are p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.who-we-are ul {
  margin: 20px 0 32px;
  padding-left: 20px;
  list-style: disc;
  color: #374151;
}

.who-we-are ul li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.who-we-are ul li strong {
  color: #111827;
}
/* Checkout Modal Overlay */
.checkout-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;

  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show modal */
.checkout-modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Box */
.checkout-modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.checkout-modal.show .checkout-modal-content {
  transform: scale(1);
}

/* Headings */
.checkout-modal-content h2 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
}

/* Form Layout */
.checkout-modal-content form {
  display: flex;
  flex-direction: column;
}

.checkout-modal-content label {
  margin-bottom: 5px;
  font-weight: 600;
}

.checkout-modal-content input {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

/* Buttons */
.checkout-modal-content .btn {
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  color: black;
  justify-content: center;
}

.checkout-modal-content .btn-primary {
  background: #28a745;
  color: #fff;
  border: none;
}

.checkout-modal-content .btn-primary:hover {
  background: #218838;
}

.checkout-modal-content .btn-outline {
  background: transparent;
  border: 1px solid #ccc;
}

.checkout-modal-content .btn-outline:hover {
  background: #f2f2f2;
}

@media (max-width: 768px) {
  .who-we-are {
    padding: 60px 20px;
  }

  .who-we-are h2 {
    font-size: 2rem;
  }

  .who-we-are p,
  .who-we-are ul li {
    font-size: 16px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px; /* Adjust this value to sit below your navbar */
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    color: #1a1a1a;
  }

  .nav-links a {
    padding: 15px;
    text-align: center;
    width: 100%;
  }

  /* This class will be added by JavaScript to show the menu */
  .nav-links.show-menu {
    display: flex;
    background: black;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .logo-text {
    display: none;
  }
  .hero-content {
    padding: 1rem 4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cart-content {
    grid-template-columns: 1fr;
  }

  .cart-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-content {
    flex-direction: column;
    text-align: center;
  }

  .cart-item-actions {
    flex-direction: column;
    width: 100%;
  }

  .features-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .navbar {
    padding: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    gap: 12px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Animation Classes */
.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);
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s infinite;
}

/* Footer */
footer {
  background-color: darkslategrey;
  color: #fff;
  padding: 80px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 50px;
}

.footer-about p {
  color: #aaa;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #22c55e;
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50px;
  height: 2px;
  background-color: #22c55e;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  color: #aaa;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 0.75rem;
  border: 1px solid #555;
  background-color: #333;
  color: #fff;
  border-radius: 8px;
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  background-color: #22c55e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #14b8a6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  text-align: center;
  padding: 0 2rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #888;
}

.legal-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.875rem;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .legal-links {
    margin-top: 1rem;
  }

  .legal-links a {
    margin-left: 0;
  }

  .legal-links a:not(:last-child) {
    margin-right: 1.5rem;
  }
}

.tech-wrapper {
  padding: 60px 20px;
  text-align: center;
}

.tech-heading {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #222;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.tech-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none; 
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  
}

.tech-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.tech-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Optional color accents */
.tech-card-green .tech-title { color: #22c55e; }
.tech-card-pink .tech-title { color: #ec4899; }
.tech-card-blue .tech-title { color: #0D2E62; }


.tech-card-green:hover {
  animation: rotateShadowGreen 2s linear infinite;
}

.tech-card-pink:hover {
  animation: rotateShadowPink 2s linear infinite;
}

.tech-card-blue:hover {
  animation: rotateShadowBlue 2s linear infinite;
}

/* Green shadow */
@keyframes rotateShadowGreen {
  0%   { box-shadow: 15px 0 10px #22c55e; }
  25%  { box-shadow: 0 15px 10px #22c55e; }
  50%  { box-shadow: -15px 0 10px #22c55e; }
  75%  { box-shadow: 0 -15px 10px #22c55e; }
  100% { box-shadow: 15px 0 10px #22c55e; }
}

/* Pink shadow */
@keyframes rotateShadowPink {
  0%   { box-shadow: 15px 0 10px #ec4899; }
  25%  { box-shadow: 0 15px 10px #ec4899; }
  50%  { box-shadow: -15px 0 10px #ec4899; }
  75%  { box-shadow: 0 -15px 10px #ec4899; }
  100% { box-shadow: 15px 0 10px #ec4899; }
}

/* Blue shadow */
@keyframes rotateShadowBlue {
  0%   { box-shadow: 15px 0 10px #0D2E62; }
  25%  { box-shadow: 0 15px 10px #0D2E62; }
  50%  { box-shadow: -15px 0 10px #0D2E62; }
  75%  { box-shadow: 0 -15px 10px #0D2E62; }
  100% { box-shadow: 15px 0 10px #0D2E62; }
}

