:root {
            --primary-light: #DEEEA9;
            --primary: #DBE581;
            --primary-dark: #CCE681;
            --accent: #FAAE40;
  --accent-orange: #FAAE40;       /* Orange accent */
    --accent-loly: #ffaf3b;       /* Orange accent */

  --accent-light: #CCE681; 
  --accent-no:#c5d790; 
  --accent-yes:#eef7d6; 
  --accent-green:#aad52c; 
  --accent-empty:#fff; 





   /* Light green accent */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
}

/* Base Background */
body {
  background-color: #f8f9fa;
}

/* Navbar with glass effect */
.navbar {
  background: rgba(255, 255, 255, 0.9) !important;

              background: url('/assets/img/des.png') no-repeat center center;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.navbar-brand, 
.navbar-nav .nav-link {
  font-weight: bold;
  color: #333 !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0;
  color: #333;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  color: #555;
}

/* Button Customizations */
.btn-primary {
  background-color: var(--secondary-light);
  border-color: var(--accent-orange);
  color: #333;
}
.btn-primary:hover {
  background-color: #c5d46b;
  border-color: #b9c95f;
}
.btn-orange {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
}
.btn-orange:hover {
  background-color: #e89d30;
  border-color: #dc932a;
}

/* Services Section Cards with glass effect */
.services {
 background: var(--accent-yes);
  padding: 60px 0;
  font-family: 'Cairo', 'Segoe UI', sans-serif;

}
.services .card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px;
   box-shadow: 1px 1px 2px 3px var(--accent-orange) ;
           border-color: var(--accent-orange) !important;

}
.services .card:hover {
  transform: translateY(-5px);
   box-shadow: 1px 1px 2px 3px var(--accent-orange) ;
           border-color: var(--accent-orange) !important;

}
.services .card-img-top {
  height: 150px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.services .card-title {
  color: #333;
}

/* Why Us Section */
.why-us {
  background-color: var(--accent-yes);
  padding: 60px 0;
}
.why-us .feature-box {
  text-align: center;
  padding: 25px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: transform 0.3s ease;
  box-shadow:  2px 2px 3px 4px var(--accent-orange) ;
}
.why-us .feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.why-us .bi {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--accent-orange);
}
.why-us h5 {
  color: var(--accent-orange);
}

/* Figures Section */
.figures {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-light));
  font-family: 'Cairo', 'Segoe UI', sans-serif;
                                                
}
.figures .figure-item h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #FAAE40;
      border: 2px solid orange; /* White outline */

}
.figures .figure-item p {
  margin: 0;
  font-weight: 500;
  color: #FAAE40;

}



/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
  color: #333;
  padding: 40px 0;
}
footer a {
  color: #333;
  text-decoration: none;
}
footer a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}
.social-icons a {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-orange);
}
.social-icons a:hover {
  color: var(--accent-orange);
}
.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}

/* Logo Positioning */
.navbar-logo {
  position: absolute;
  left: 20px;
  bottom: -20px;
  z-index: 10;
}
.navbar-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  background-color: white;
}

/* Sustainability Section */
.sustainability-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
}
.section-header {
  margin-bottom: 3rem;
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Card Styling */
.sustainability-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: none;
  display: flex;
  flex-direction: column;
}
.sustainability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.card-header {
  background: transparent;
  border-bottom: none;
  padding: 0 0 1.5rem 0;
  margin-bottom: 1rem;
}
.card-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-header i {
  margin-right: 10px;
  font-size: 1.8rem;
  color: var(--accent-orange);
}

/* Scrollable Content */
.scrollable-posts {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 1.5rem;
}
.scrollable-posts::-webkit-scrollbar {
  width: 6px;
}
.scrollable-posts::-webkit-scrollbar-track {
  background: rgba(241, 241, 241, 0.3);
  border-radius: 10px;
}
.scrollable-posts::-webkit-scrollbar-thumb {
  background: var(--accent-orange);
  border-radius: 10px;
}
.scrollable-posts::-webkit-scrollbar-thumb:hover {
  background: #e89d30;
}

/* Mini Card Styling */
.mini-card {
  display: flex;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-orange);
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.mini-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--secondary-light);
}
.mini-card-icon {
  font-size: 1.5rem;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-orange);
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}
.mini-card-content {
  flex-grow: 1;
}
.mini-card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #333;
}
.mini-card-date {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.5rem;
  display: block;
}
.mini-card-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

/* Button Styling */
.view-all-btn {
  background: var(--accent-orange);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(244, 165, 64, 0.3);
}
.view-all-btn:hover {
  background: #e89d30;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 165, 64, 0.4);
}

/* Video Section Styling */
#videos {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  margin: 2rem auto;
  padding: 2rem 0;
  border: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.video-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #333;
}
.video-title img {
  max-width: 30px;
}

/* Glass Effect Styling */
.glass-effect {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: none;
}
.glass-effect:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Card Title */
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  margin: 5px;
}
.card-text {
  color: #555;
  font-size: 0.9rem;
  transition: all 0.3s ease;
    margin: 5px;

}
.glass-effect:hover .card-title {
  color: var(--accent-orange);
}
.glass-effect:hover .card-text {
  color: #333;
}

/* Button Styling */
.video-btn-primary {
  background-color: var(--accent-orange);
  border: none;
  padding: 8px 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  color: white;
}
.video-btn-primary:hover {
  background-color: #e89d30;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(244, 165, 64, 0.4);
}
.video-btn-outline-light {
  border: 2px solid var(--secondary-light);
  color: #333;
  transition: all 0.3s ease;
}
.video-btn-outline-light:hover {
  background-color: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
}

/* Team Section Styling */
.team-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}
.team-title {
  color: #333;
}

/* Glass Card Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  padding: 1.5rem;
}
.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.team-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 2px solid var(--accent-orange);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.team-member-name {
  color: #333;
}
.team-member-role {
  color: var(--accent-orange);
}
.team-member-desc {
  color: #555;
}
.team-btn-outline {
  border: 2px solid var(--secondary-light);
  color: #333;
  transition: all 0.3s ease-in-out;
}
.team-btn-outline:hover {
  background: var(--secondary-light);
  color: #333;
}

/* Modal Glass Effect */
.glass-modal {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
}

/* Services Slider Section */
.services-slider-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--accent-light), var(--primary-light));
}
.services-slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}
.services-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
  scrollbar-width: none;
  /* Force horizontal layout */
  flex-wrap: nowrap;
  flex-direction: row;
}

/* RTL specific adjustments */
[dir="rtl"] .services-slider {
  direction: rtl;
}

/* LTR specific adjustments to fix vertical display issue */
[dir="ltr"] .services-slider {
  direction: ltr;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.services-slider::-webkit-scrollbar {
  display: none;
}
.service-card {
  scroll-snap-align: start;
  flex: 0 0 240px;
  min-width: 240px;
  height: 280px;
  perspective: 1000px;
  /* Prevent shrinking */
  flex-shrink: 0;
}

/* Force service cards to display horizontally in LTR */
[dir="ltr"] .service-card {
  display: inline-block;
  vertical-align: top;
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
}
.service-card:hover .card-inner {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-orange), #e89d30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.4rem;
}
.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.8rem;
  text-align: center;
}
.service-description {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
}
.hover-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(244, 174, 64, 0.9), rgba(244, 174, 64, 0.8));
  color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover .hover-content {
  opacity: 1;
}
.full-description {
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.9rem;
  text-align: center;
  color: white;
}
.service-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.service-link:hover {
  transform: translateX(5px);
  color: #333;
}
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #333;
}
.slider-nav:hover {
  background: var(--accent-orange);
  color: white;
}
.slider-nav.prev {
  left: -20px;
}
.slider-nav.next {
  right: -20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  .sustainability-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .card-header h3 {
    font-size: 1.3rem;
  }
  .service-card {
    flex: 0 0 200px;
    height: 250px;
  }
  .slider-nav {
    width: 35px;
    height: 35px;
  }
  .slider-nav.prev {
    left: 5px;
  }
  .slider-nav.next {
    right: 5px;
  }
}


:root {
  --primary-light: #DEEEA9;       /* Light green */
  --secondary-light: #DBE581;     /* Medium light green */
  --accent-orange: #FAAE40;       /* Orange accent */
  --accent-light: #CCE681;        /* Light green accent */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
}

.news-section {
    padding: 2.5rem 0;
    background-color: var(--primary-light);
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-light));
}

.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.375rem !important;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

.mini-card {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.mini-card.hover-effect:hover {
    background-color: var(--secondary-light);
}

.mini-card:last-child {
    border-bottom: none;
}

.icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrollable-posts::-webkit-scrollbar {
    width: 4px;
}

.scrollable-posts::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scrollable-posts::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
    border-radius: 10px;
}

.scrollable-posts::-webkit-scrollbar-thumb:hover {
    background: var(--accent-light);
}

.view-all-btn {
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.view-all-btn:hover {
    letter-spacing: 0.5px;
}

.btn-xs {
    font-size: 0.75rem;
    line-height: 1.2;
    border-radius: 0.2rem;
}

