@font-face {
  font-family: "Ishraq";
  src: url("/assets/font/HS-Ishraq-Bold-1.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.ishraq {
  font-family: "Ishraq" !important;
}

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

p {
  margin: 0% auto !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: var(--dark-green);
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.bg-desktop {
  display: none;
}
.bg-mobile {
  display: none;
}

@media (min-width: 992px) {
  .bg-desktop {
    display: block;
    position: absolute;
    height: 1000vh;
    width: 100%;
    z-index: -1000;
  }
}
@media (max-width: 992px) {
  .bg-mobile {
    display: block;
    position: absolute;
    height: 1000vh;
    width: 100%;
    z-index: -1000;
  }
}

/* Green Color Palette */
:root {
  --primary-green: #16a34a;
  --light-green: #aae4be;
  --dark-green: #14532d;
  --medium-green: #22c55e;
  --accent-green: #15803d;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: #005c20 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Optional line for contrast */
}

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

.nav-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
}

.nav-icon {
  font-size: 2rem;
  color: var(--primary-green);
}

.nav-menu {
  display: flex;
  gap: 5rem;
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    gap: 3rem;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--light-green);
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

@media (min-width: 768px) {
  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-green) !important;
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-green);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-green);
  border: 1px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--dark-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background: var(--light-green);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

/* /////////////// */
.cc-product-title {
  color: var(--white);
  font-size: 3rem;
  font-weight: 900;
}

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

.cc-hero-buttons {
  display: flex;
  gap: 0.5vw;
}
/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  margin: auto;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  color: var(--white);
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  font-size: 1.25rem;
  color: var(--light-green);
  max-width: 600px;
  margin: 0 auto;
}

.page-description {
  text-align: center;
  color: var(--light-green);
}

/* Features Section */
.features {
  padding: 5rem 0;
}

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

.feature-card {
  background: linear-gradient(200deg, var(--white) 0%, var(--light-green) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--light-green);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
  transition: all 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Products Preview */
.products-preview {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}

.product-showcase {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(22, 163, 74, 0.2);
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.compare-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.compare-checkbox > input {
  margin-top: -2px;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(20, 83, 45, 0.8));
  color: var(--white);
  padding: 2rem;
}

.product-info h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Statistics */
.stats {
  padding: 5rem 0;
  background: var(--primary-green);
  color: var(--white);
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Timeline */
.timeline-section {
  padding: 4rem 0.5rem;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--light-green);
  transform: translateX(-50%);
}

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

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

.timeline-year {
  background: var(--dark-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  background: var(--light-green);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Values Section */
.values {
  padding: 5rem 0;
}

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

.value-card {
  background: var(--light-green);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--light-green);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.2);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.value-icon .fa-heart {
  color: #ef4444;
}

.value-icon .fa-leaf {
  color: var(--medium-green);
}

.value-icon .fa-users {
  color: var(--primary-green);
}

.value-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 5rem 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--light-green);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.15);
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.member-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Featured Product */
.featured-product {
  padding: 5rem 0;
  background: var(--white);
}

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

.featured-badge {
  background: var(--light-green);
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.featured-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 1.5rem;
}

.featured-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars .fas {
  color: #fbbf24;
}

.rating-text {
  font-weight: 600;
  color: var(--text-light);
}

.featured-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-green);
}

.featured-image {
  position: relative;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(22, 163, 74, 0.2);
}

/* Products Section */
.products-section {
  padding: 5rem 0;
}

.category-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--white);
  color: var(--dark-green);
  box-shadow: 0 5px 15px rgba(22, 163, 74, 0.3);
}
@media (max-width: 992px) {
  .category-filter {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    gap: 10px;
    scroll-behavior: smooth;
    justify-content: flex-start; /* prevent centering */
  }

  .filter-btn {
    flex: 0 0 auto; /* Prevent buttons from shrinking */
    min-width: max-content;
  }

  /* Optional scrollbar styling (for better look) */
  .category-filter::-webkit-scrollbar {
    height: 6px;
  }

  .category-filter::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }

  .category-filter::-webkit-scrollbar-track {
    background: transparent;
  }
}

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

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.2);
}

.product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.product-badge.best-seller {
  background: #ef4444;
}

.product-badge.premium {
  background: #8b5cf6;
}

.product-badge.organic {
  background: var(--medium-green);
}

.product-badge.new {
  background: #3b82f6;
}

.product-badge.artisan {
  background: #f97316;
}

.product-badge.healthy {
  background: #06b6d4;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.25rem !important;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.rating-number {
  font-weight: 600;
  color: var(--text-light);
  margin-left: 0.5rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary-green);
}

.product-sizes {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.size-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: block;
}

.sizes {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size {
  background: var(--light-green);
  color: var(--primary-green);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-btn {
  width: 100%;
}

/* Contact Info */
.contact-info {
  padding: 5rem 0;
}

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

.contact-carddd {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--light-green);
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
}

.contact-carddd:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(22, 163, 74, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.contact-detail {
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
}

.contact-sub {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.form-card {
  background: var(--light-green);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(22, 163, 74, 0.1);
  border: 1px solid var(--light-green);
}

.form-header {
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.form-description {
  color: var(--text-light);
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-submit {
  margin-top: 1rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.map-card,
.faq-card {
  background: var(--light-green);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(22, 163, 74, 0.1);
  border: 1px solid var(--light-green);
}

.map-title,
.faq-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.map-placeholder {
  background: var(--dark-green);
  height: 200px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.map-content {
  text-align: center;
  color: var(--primary-green);
}

.map-content i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.map-text {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.map-address {
  font-size: 0.9rem;
}

.map-btn {
  width: 100%;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: var(--primary-green);
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Footer */
.footer {
  background: var(--dark-green);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: 0%;
    top: 40px;
    flex-direction: column;
    background-color: #005c20 !important;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    z-index: 12330;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }

  .nav-menu.active {
    max-height: 500px; /* Adjust based on content height */
    opacity: 1;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle span {
    background-color: white;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

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

  .featured-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 50px;
  }

  .timeline-year {
    left: 20px;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: 100%;
    margin-left: 0 !important;
  }

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

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

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

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

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0.5rem 1rem;
  }

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

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

  .section-title {
    font-size: 1.75rem;
  }

  .featured-title {
    font-size: 1.75rem;
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
  }
}


/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

/* ///////////////////////////////////////// */

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(0.7rem + 1vw);
  text-align: center;
}

.logo {
  width: calc(13rem + 13vw);
  margin-top: -25px;
  opacity: 0;
  transform: scale(0.8);
}

.search-wrapper {
  opacity: 0;
  transform: scale(0.8);
}

/* Animate only when .animate class is added */
.logo.animate,
.search-wrapper.animate {
  animation: zoomFadeIn 1s ease-out forwards;
}

@keyframes zoomFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero .slide > h1 {
  font-size: calc(1.7rem + 1.5vw);
  line-height: 2.5rem;
  padding: 0 2rem;
  color: white;
}

.slide {
  overflow: hidden;
  padding: 15px 0;
}

.hero-images {
  position: absolute;
  width: calc(7rem + 10vw) !important;
}
.shir {
  bottom: 50px;
  right: 10vw;
  width: calc(6rem + 8vw) !important;
}
.qsht {
  top: 70px;
  right: 60px;
  width: calc(6rem + 8vw) !important;
}
.avemast {
  left: 10vw;
  top: 70px;
  width: calc(10em + 13vw) !important;
}
.lbn {
  left: 5vw;
  bottom: 25px;
}

@media (max-width: 768px) {
  .shir {
    bottom: 0px;
    right: 0px;
  }
  .qsht {
    top: 70px;
    right: 0px;
  }
  .avemast {
    left: 0px;
    top: 50px;
  }
  .lbn {
    left: -10px;
    bottom: -20px;
    width: calc(8em + 13vw) !important;
  }
}

/* ///////////////////////////////////////// */

.cc-product-section {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.cc-product-section {
  flex-direction: column;
}

.cc-showcase {
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 4vw; */
  align-items: center;
  position: relative;
  padding: 0 1rem;
}

.cc-info {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.cc-info-pos {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  position: absolute;
}

.cc-header {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.cc-content {
  text-align: center;
}

.cc-title,
.cc-title-ar {
  font-size: calc(0.5rem + 2.5vw);
  color: #ffffff;
  line-height: 1.1;
  font-weight: 900;
}

.cc-icon i {
  font-size: calc(0.5rem + 2vw) !important;
}

.cc-label {
  font-size: calc(0.1rem + 0.8vw);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
}

.cc-label-ar {
  letter-spacing: 0px !important;
  font-family: "Ishraq" !important;
}

.cc-title-ar {
  margin: 0% !important;
  display: flex;
  justify-content: end;
}

.cc-specs {
  display: flex;
  align-items: center;
}

.vertical-border {
  height: 5vw;
  width: 0.3vw;
  background-color: #ffffff;
  margin: 0 1vw;
}

.cc-spec {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  transition: all 0.3s ease;
}

.cc-spec i {
  font-size: 2.3rem;
  color: rgb(255, 255, 255);
}

.cc-btn {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: rgb(255, 255, 255);
  padding: calc(0.3rem + 0.3vw) 5vw;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid white;
}

.cc-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.cc-btn:hover::before {
  left: 100%;
}

.cc-btn:active {
  transform: translateY(-1px);
}

.cc-image-wrap-right {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  width: 100%;
}

.cc-image-wrap-left {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  width: 100%;
}

.cc-image {
  max-width: 70%;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(34, 197, 94, 0.15));
  transition: all 0.4s ease;
}

@media (max-width: 600px) {
  .cc-image {
    max-width: 100%;
  }
}

/* ////////////////////////////// */

.cc-hero {
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.cc-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  color: white;
}

.cc-hero-title {
  font-size: calc(2rem + 1vw);
}

.bggg {
  width: 100%;
  position: absolute;
  z-index: -1000000;
}

/* ///////////////////////// */
/* Preloader Container */
.preloader {
  position: fixed;
  inset: 0;
  background-color: #005c20 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

/* Hide Animation */
.preloader-hide {
  opacity: 0;
  pointer-events: none;
}

/* Preloader Content */
.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Spinner Animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1.5rem;
}

/* Text */
.preloader-text {
  color: white;
  font-size: 1rem;
}

/* Spin Keyframes */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ///////////////////////////// */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.language-switcher i {
  font-size: 1.2rem;
}

.language-switcher select {
  padding: 5px 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: inherit;
  background: #fff;
  color: #333;
  cursor: pointer;
}

/* Hide Google Translate branding and frame */
iframe.goog-te-banner-frame,
.goog-te-gadget span,
.goog-logo-link {
  display: none !important;
}
body {
  top: 0px !important;
}

/* ///////////////////////// */

.horizontal-border {
  border-top: 0.5vw solid #ffffff;
}

/* ///////////////////////// */

.d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Language Dropdown Styles */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 118px;
  cursor: pointer;
  transition: all 0.3s ease;

  font-size: 1.5rem;
  font-weight: 500;
}

.language-btn:active {
  transform: translateY(0);
}

.language-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.current-language {
  flex: 1;
  text-align: left;
  transition: all 0.3s ease;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.language-btn.active .dropdown-arrow {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  overflow: hidden;
}

.language-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option.active {
  background-color: var(--primary-green);
  color: white;
}

.language-option.active:hover {
  background-color: var(--primary-green);
}

.flag-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.language-name {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Animation for dropdown appearance */
@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dropdownSlideOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .language-btn {
    padding: 0.6rem 0.8rem;
  }

  .language-menu {
    right: 0;
    min-width: 140px;
  }

  .current-language {
    display: none;
  }

  .language-btn {
    justify-content: center;
  }

  .d-flex {
    flex-direction: row-reverse;
    gap: 1vw;
  }
}
