/* Main Styles */
@import url('https://fonts.googleapis.com/css2?family=Tajawal&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --primary-green: #155638;
  --primary-green-dark: #0f3d28;
  --primary-green-light: #1e603f;
  --text-gray: #4a5462;
  --text-dark: #111726;
  --text-light: #6a7280;
  --bg-gray: #f9fafa;
  --border-gray: #e4e7eb;
}

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

body {
  font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  /* direction: rtl; */
}

nav{
    margin-top: -25px !important;
}
.font-tajawal {
  font-family: 'Tajawal', sans-serif;
}

.font-roboto {
  font-family: 'Roboto', sans-serif;
}
.logos img{
    width: 100px;
    height: 100px;
}
.logos{
    margin-right: -4%;
}
@media (max-width: 468px) {
    .logos {
        margin-right: -3%;
    }
}
.logins{
    margin-left: -10%;
}


/* Hero Section */
.hero-section {
  background: linear-gradient(#E8E8E833), url('/assets/default/img/img/hero-sections/hero-sections.jpg');
  width: 100%;
  min-height: 100vh;
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
  z-index: 1;
}



.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: rgba(255, 255, 240, 0.7);
  pointer-events: none;
  z-index: 0;
}


.hero-stats {
  position: relative;
  z-index: 5;
}


@media (min-width: 768px) {
  .hero-section {
    background: linear-gradient(#E8E8E833), url('/assets/default/img/img/hero-sections/hero-sections.jpg');
    width: 100%;
    min-height: 100vh !important;
    background-size: 100%;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: rgba(255, 255, 240, 0.7);
    pointer-events: none;
    z-index: 0;
  }
}





/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

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

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.hover-scale {
  transition: transform 0.3s ease;
}

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

/* Custom Shadows */
.shadow-custom {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-custom-lg {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Text Gradients */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Button Styles */
.btn-primary {
  background: var(--primary-green);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(21, 86, 56, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  padding: 12px 24px;
  border: 1px solid var(--primary-green);
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

/* Card Styles */
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

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

/* Form Styles */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 15px;
  background: var(--bg-gray);
  font-size: 16px
}


/* checkout */

