/***************************************************************************************************************
||||||||||||||||||||||||||||       GREEN WORLD MODERN ENHANCEMENTS           |||||||||||||||||||||||||||||||||||
****************************************************************************************************************
Modern design system with CSS variables, glassmorphism, gradients, and contemporary UI patterns
****************************************************************************************************************/

/* ==========================================
   MODERN DESIGN SYSTEM - CSS VARIABLES
========================================== */

:root {
  /* Primary Colors */
  --primary-green: #75b519;
  --primary-dark: #5a8f14;
  --primary-light: #8fc93a;

  /* Accent Colors */
  --accent-blue: #48c7ec;
  --accent-teal: #2dd4bf;
  --accent-emerald: #10b981;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #75b519 0%, #48c7ec 100%);
  --gradient-hero: linear-gradient(135deg, rgba(117, 181, 25, 0.9) 0%, rgba(72, 199, 236, 0.8) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);

  /* Neutrals */
  --dark-900: #0f172a;
  --dark-800: #1e293b;
  --dark-700: #334155;
  --gray-600: #475569;
  --gray-400: #94a3b8;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --white: #ffffff;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(117, 181, 25, 0.3);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   UTILITY CLASSES
========================================== */

/* Glassmorphism Effects */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.glass-effect-light {
  background: var(--glass-bg-light);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Gradient Backgrounds */
.gradient-bg {
  background: var(--gradient-primary);
}

.gradient-hero-bg {
  background: var(--gradient-hero);
}

/* Section Badges */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(117, 181, 25, 0.1);
  border: 1px solid rgba(117, 181, 25, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Section Titles */
.sec-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.sec-title span {
  color: var(--primary-green);
}

/* Text Center Utility */
.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* ==========================================
   MODERN BUTTON STYLES
========================================== */

.btn-primary-modern {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(117, 181, 25, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(117, 181, 25, 0.4);
  color: var(--white);
}

.btn-primary-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.btn-primary-modern:hover::before {
  left: 100%;
}

.btn-secondary-modern {
  background: var(--white);
  color: var(--dark-900);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary-modern:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================
   ENHANCED HERO SECTION
========================================== */

.mainswiper {
  position: relative;
  overflow: hidden;
}

.mainswiper .slide {
  position: relative;
}

/* Modern Overlay */
.mainswiper .overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

/* Animated Gradient Overlay */
.mainswiper .slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
  opacity: 0.8;
}

/* Hero Content Enhancement */
.mainswiper .slide-content {
  z-index: 3;
  max-width: 900px;
}

.mainswiper .slide-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mainswiper .slide-content p {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Buttons */
.mainswiper .slide-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.mainswiper .contact-btn,
.mainswiper .service-btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.mainswiper .contact-btn {
  background: var(--primary-green);
  border: 2px solid var(--primary-green);
  box-shadow: 0 4px 15px rgba(117, 181, 25, 0.4);
}

.mainswiper .contact-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(117, 181, 25, 0.5);
}

.mainswiper .service-btn {
  background: var(--white);
  color: var(--dark-900);
  border: 2px solid var(--white);
}

.mainswiper .service-btn:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Slide Number */
.mainswiper .slide-number {
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-size: 6rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  z-index: 2;
  pointer-events: none;
}

/* Modern Navigation Buttons */
.mainswiper .swiper-button-next,
.mainswiper .swiper-button-prev {
  width: 60px !important;
  height: 60px !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-base);
}

.mainswiper .swiper-button-next::after,
.mainswiper .swiper-button-prev::after {
  display: none;
}

.mainswiper .swiper-button-next i,
.mainswiper .swiper-button-prev i {
  font-size: 1.25rem;
  color: var(--white);
}

.mainswiper .swiper-button-next:hover,
.mainswiper .swiper-button-prev:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(117, 181, 25, 0.4);
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 10;
}

.slider-progress .progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

/* Slide Counter */
.slider-counter {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-counter .current,
.slider-counter .total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
}

.slider-counter .separator {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0.25rem;
}

/* Button Icons */
.mainswiper .contact-btn i {
  margin-left: 0.5rem;
  transition: transform var(--transition-base);
}

.mainswiper .contact-btn:hover i {
  transform: translateX(4px);
}

/* ==========================================
   MODERN FEATURES/CORE VALUES SECTION
========================================== */

.features {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.features .single-item {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.features .single-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

/* Card Shine Effect */
.features .single-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(117, 181, 25, 0.1), transparent);
  transition: left var(--transition-slow);
  pointer-events: none;
}

.features .single-item:hover::after {
  left: 100%;
}

.features .icon-box {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(117, 181, 25, 0.3);
  transition: all var(--transition-base);
}

.features .single-item:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(117, 181, 25, 0.4);
}

.features .icon-box i {
  color: var(--white);
  font-size: 2rem;
}

.features .content-box h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-900);
}

.features .content-box p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ==========================================
   ENHANCED ABOUT SECTION
========================================== */

.about-section {
  padding: 5rem 0;
  background: var(--white);
}

.about-section .single-item h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--dark-900) !important;
}

.about-section .single-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green) !important;
  margin-bottom: 1rem;
}

.about-section .single-item p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600) !important;
  margin-bottom: 1rem;
}

.about-section .single-item p.style-2 {
  color: var(--gray-600) !important;
}

.about-section .link_btn {
  margin-top: 2rem;
}

.about-section .image-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
}

.about-section .image-box:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-2xl);
}

.about-section .image-box img {
  transition: all var(--transition-slow);
}

.about-section .image-box:hover img {
  transform: scale(1.05);
}

/* About Features List */
.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafb 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.about-features .feature-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.about-features .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-features .feature-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.about-features .feature-content h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark-900) !important;
  margin-bottom: 0.25rem;
}

.about-features .feature-content p {
  font-size: 0.875rem;
  color: var(--gray-600) !important;
  margin: 0;
  line-height: 1.4;
}

/* About Image Wrapper */
.about-image-wrapper {
  position: relative;
  padding: 2rem;
}

.about-image-wrapper .main-image {
  position: relative;
  z-index: 2;
}

/* Floating Stats Badge */
.floating-stat {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-stat .stat-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-stat .stat-icon i {
  font-size: 2rem;
  color: var(--white);
}

.floating-stat .stat-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-900) !important;
  margin: 0;
  line-height: 1;
}

.floating-stat .stat-content p {
  font-size: 0.875rem;
  color: var(--gray-600) !important;
  margin: 0.25rem 0 0;
}

/* Decorative Shapes */
.about-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(117, 181, 25, 0.1) 0%, rgba(72, 199, 236, 0.1) 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
}

.about-shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(72, 199, 236, 0.15) 0%, rgba(117, 181, 25, 0.15) 100%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(30px);
}

/* Float Animation */
@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ==========================================
   MODERN PRODUCT/SERVICE SECTION
========================================== */

.our-service {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.service-list .item {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.service-list .item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-light);
}

.service-list .img_holder {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-list .img_holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.service-list .item:hover .img_holder img {
  transform: scale(1.1);
}

.service-list .overlay {
  background: var(--gradient-hero);
  opacity: 0;
  transition: all var(--transition-base);
}

.service-list .item:hover .overlay {
  opacity: 1;
}

.service-list .text {
  padding: 2rem;
  border: none;
  border-top: 3px solid var(--primary-green);
}

.service-list .text h4 a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-900);
  transition: all var(--transition-base);
}

.service-list .item:hover .text h4 a {
  color: var(--primary-green);
}

.service-list .text p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 0.75rem;
}

/* ==========================================
   STATISTICS SECTION
========================================== */

.parallax-style {
  position: relative;
  padding: 5rem 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.parallax-style .container {
  position: relative;
  z-index: 2;
}

.fact-counter .counter-column {
  text-align: center;
}

.fact-counter .item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition-base);
}

.fact-counter .item:hover {
  transform: translateY(-8px);
  background: var(--glass-bg-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fact-counter .icon-box {
  margin-bottom: 1.5rem;
}

.fact-counter .icon-box i {
  font-size: 3.5rem;
  color: var(--white);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.fact-counter .count-text {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.fact-counter .count-outer p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================
   MODERN TESTIMONIAL/MISSION-VISION
========================================== */

.testimonial {
  padding: 5rem 0;
  background: var(--white);
}

.testimonial .single-item {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafb 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.testimonial .single-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2xl);
}

.testimonial .text h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial .text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-900) !important;
  margin-bottom: 1.5rem;
}

.testimonial .text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-600) !important;
}

/* Swiper Pagination */
.testimonial .swiper-pagination {
  margin-top: 2rem;
}

.testimonial .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--gray-400);
  opacity: 1;
  transition: all var(--transition-base);
}

.testimonial .swiper-pagination-bullet-active {
  background: var(--primary-green);
  width: 32px;
  border-radius: var(--radius-full);
}

/* ==========================================
   CTA SECTION
========================================== */

.subscribe-us {
  padding: 4rem 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.subscribe-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.subscribe-us h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.subscribe-us p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================
   LATEST NEWS/BLOG SECTION
========================================== */

.latest-news {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
}

.latest-news .item {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  margin-bottom: 2rem;
}

.latest-news .item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-light);
}

.latest-news .image-box {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.latest-news .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.latest-news .item:hover .image-box img {
  transform: scale(1.1);
}

.latest-news .content-box {
  padding: 2rem;
}

.latest-news .content-box h4 a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-900);
  line-height: 1.4;
  transition: all var(--transition-base);
}

.latest-news .item:hover .content-box h4 a {
  color: var(--primary-green);
}

.latest-news .content-box p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-top: 1rem;
}

.latest-news .comments {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.latest-news .comments li {
  font-size: 0.875rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.latest-news .comments li i {
  color: var(--primary-green);
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.animate-fade-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.6s ease-out forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.6s ease-out forwards;
}

.animate-scale {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Slider Text Animations */
.mainswiper .animate-text {
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}

.mainswiper .animate-text.animate-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mainswiper .animate-text.delay-1 {
  transition-delay: 0.2s;
}

.mainswiper .animate-text.delay-2 {
  transition-delay: 0.4s;
}

/* Delay Classes */
.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

/* ==========================================
   RESPONSIVE ENHANCEMENTS
========================================== */

@media (max-width: 991px) {
  .mainswiper .slide-content h1 {
    font-size: 2.5rem;
  }

  .features .single-item {
    margin-bottom: 1.5rem;
  }

  .fact-counter .item {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767px) {
  .mainswiper .slide-buttons {
    flex-direction: column;
    align-items: center;
  }

  .mainswiper .contact-btn,
  .mainswiper .service-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.375rem 1rem;
  }
}

/* ==========================================
   ADDED SLIDER STYLES
   ========================================== */

/* Slider Layout */
.mainswiper {
    position: relative;
    height: 600px; /* Fixed height for consistency */
    width: 100%;
}

.mainswiper .swiper-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.mainswiper .image-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.mainswiper .image-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.mainswiper .auto-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.mainswiper .content-box {
    max-width: 650px;
    color: #fff;
}

.mainswiper .content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.mainswiper .content .text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
}

.mainswiper .link-box {
    margin-top: 30px;
}

/* Update slider controls positioning */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    padding: 0 15px;
}

.slider-controls .slider-counter {
    position: static; /* Override previous absolute */
}

.slider-controls .slider-progress {
    position: static; /* Override previous absolute */
    width: 200px;
    height: 4px;
    background: rgba(255,255,255,0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mainswiper {
        height: 500px;
    }
    
    .mainswiper .content h2 {
        font-size: 2.5rem;
    }
    
    .mainswiper .content .text {
        font-size: 1.1rem;
    }
    
    .slider-controls .slider-progress {
        width: 100px;
    }
}