/* ==========================================================================
   Civic Clean Resources LLP - Stylesheet (CSS3)
   Aesthetic Identity: Modern Environmental Engineering (Deep Green & Tech Teal)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --primary-color: #1B5E20; /* Deep Forest Green */
  --primary-hover: #144317;
  --secondary-color: #00ACC1; /* Tech Teal */
  --secondary-hover: #00838F;
  --dark-color: #263238; /* Charcoal Slate */
  --light-bg: #F8F9FA;
  --body-text: #455A64;
  --border-light: #ECEFF1;
  --accent-gold: #FFB300;
  
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Base resets & typography */
body {
  font-family: var(--font-sans);
  color: var(--body-text);
  background-color: var(--light-bg);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  color: var(--dark-color);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F1F1;
}
::-webkit-scrollbar-thumb {
  background: #CFD8DC;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #90A4AE;
}

/* Navigation bar styling */
.custom-navbar {
  transition: var(--transition-smooth);
  padding: 1.25rem 0;
  border-b: 1px solid transparent;
}

.custom-navbar.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(15px);
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}

.navbar-brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color) !important;
  letter-spacing: -0.5px;
}

.navbar-brand-logo span {
  color: var(--secondary-color);
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--dark-color) !important;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(27, 94, 32, 0.05);
}

.btn-procurement {
  background-color: var(--primary-color);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 10px rgba(27, 94, 32, 0.2);
  transition: var(--transition-smooth);
}

.btn-procurement:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 94, 32, 0.3);
}

/* Custom layout classes */
.section-padding {
  padding: 6.5rem 0;
}

.section-subtitle {
  color: var(--secondary-color);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-family: var(--font-mono);
  display: block;
}

.section-title {
  font-size: 2.25rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

/* Hero Slider styling */
.hero-swiper {
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 600px;
}

.hero-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s ease-out;
}

.swiper-slide-active .hero-slide-bg {
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 24, 39, 0.85) 40%, rgba(17, 24, 39, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(27, 94, 32, 0.2);
  border: 1px solid rgba(27, 94, 32, 0.4);
  color: #81C784;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-desc {
  font-size: 1.125rem;
  color: #B0BEC5;
  max-width: 650px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.btn-custom {
  padding: 0.875rem 1.75rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
}

.btn-primary-custom:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.3);
}

.btn-secondary-custom {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-custom:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-2px);
  color: #fff;
}

/* Custom Swiper Controls */
.swiper-button-next, .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff !important;
  transition: var(--transition-smooth);
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 1.1rem !important;
  font-weight: 800;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  width: 10px;
  height: 10px;
  transition: var(--transition-smooth);
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color) !important;
  width: 28px !important;
  border-radius: 5px !important;
}

/* Statistics Banner styling */
.stats-banner-container {
  margin-top: -3.5rem;
  position: relative;
  z-index: 20;
}

.stats-card-wrapper {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 2rem 1.5rem;
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.stat-item:last-child {
  border-right: none;
}

@media (max-width: 991px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #78909C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

/* Feature boxes Choose Us */
.choice-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(236, 239, 241, 0.8);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.choice-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-light);
}

.icon-box-primary {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(27, 94, 32, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Services section cards */
.service-card {
  background-color: #fff;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 380px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 94, 32, 0.15);
}

.service-card-top h3 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.service-card-top p {
  font-size: 0.875rem;
  color: var(--body-text);
  line-height: 1.6;
}

.service-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  width: 100%;
  background: transparent;
  border-left: none;
  border-right: none;
  border-bottom: none;
  text-align: left;
}

.service-card-link i {
  transition: transform 0.3s ease;
}

.service-card-link:hover {
  color: var(--secondary-color);
}

.service-card-link:hover i {
  transform: translateX(4px);
}

/* Tab Navigation for Services Page Details */
.vertical-service-tabs {
  border: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 1rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.vertical-service-tab-btn {
  border: none;
  background: none;
  text-align: left;
  padding: 1rem 1.25rem;
  width: 100%;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--body-text);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.vertical-service-tab-btn:last-child {
  margin-bottom: 0;
}

.vertical-service-tab-btn.active, .vertical-service-tab-btn:hover {
  background-color: rgba(27, 94, 32, 0.05);
  color: var(--primary-color);
}

.vertical-service-tab-btn.active {
  border-left: 4px solid var(--primary-color);
  border-radius: 4px 12px 12px 4px;
}

.service-details-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem;
  height: 100%;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 900;
}

.process-timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--border-light);
}

.process-step {
  position: relative;
  padding-bottom: 1.5rem;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-step::before {
  content: '';
  position: absolute;
  left: calc(-1.5rem - 6px);
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary-color);
}

.process-step-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.5;
}

/* Portfolio Filters & Grid */
.filter-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.filter-btn {
  background: none;
  border: 1px solid var(--border-light);
  color: var(--body-text);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(27, 94, 32, 0.15);
}

.project-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-img-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-cover: cover;
  transition: transform 0.5s ease;
}

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

.project-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: var(--primary-color);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.project-card-content {
  padding: 1.5rem;
}

.project-card-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  line-height: 1.35;
}

.project-card-desc {
  font-size: 0.85rem;
  color: var(--body-text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-project-detail {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
}

.btn-project-detail:hover {
  color: var(--secondary-color);
}

/* Before / After Slider Component */
.comparison-slider-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.comparison-slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.comparison-slider-before {
  z-index: 10;
  width: 50%;
}

.comparison-slider-after {
  z-index: 5;
}

.comparison-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background-color: #fff;
  z-index: 20;
  cursor: ew-resize;
  transform: translateX(-2px);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.comparison-slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.comparison-label {
  position: absolute;
  bottom: 1rem;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 15;
  letter-spacing: 0.5px;
}

.comparison-label-before {
  left: 1rem;
}

.comparison-label-after {
  right: 1rem;
}

/* Gallery Grid */
.gallery-filter-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.gallery-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.gallery-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38, 50, 56, 0.9) 0%, rgba(38, 50, 56, 0) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-text h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.gallery-overlay-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Accordion (FAQ) styling */
.custom-accordion {
  background: none;
}

.accordion-item-custom {
  background-color: #fff;
  border-radius: 16px !important;
  border: 1px solid var(--border-light) !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.accordion-item-custom:hover {
  border-color: rgba(27, 94, 32, 0.15);
}

.accordion-button-custom {
  background: none !important;
  color: var(--dark-color) !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem !important;
  border: none !important;
  box-shadow: none !important;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-button-custom.collapsed .accordion-icon {
  transform: rotate(0deg);
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--primary-color);
  font-size: 1.15rem;
}

.accordion-button-custom:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.accordion-collapse-custom {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body-custom {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
}

/* Team section */
.team-card {
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-img-wrapper {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}

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

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.team-designation {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.team-bio {
  font-size: 0.8rem;
  color: var(--body-text);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.team-meta {
  font-size: 0.75rem;
  color: #78909C;
  border-top: 1px solid var(--border-light);
  padding-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.team-socials {
  margin-top: 0.75rem;
  display: flex;
  gap: 12px;
}

.team-socials a {
  color: #90A4AE;
}

.team-socials a:hover {
  color: var(--primary-color);
}

/* Contact / Forms styling */
.form-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.form-label-custom {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #546E7A;
  margin-bottom: 0.5rem;
}

.form-control-custom {
  background-color: #F8F9FA !important;
  border: 1.5px solid #CFD8DC !important;
  border-radius: 12px !important;
  padding: 0.75rem 1rem !important;
  font-size: 0.9rem !important;
  color: var(--dark-color) !important;
  transition: var(--transition-smooth) !important;
  box-shadow: none !important;
}

.form-control-custom:focus {
  background-color: #fff !important;
  border-color: var(--primary-color) !important;
}

/* Footers */
.custom-footer {
  background-color: #1A2327;
  color: #CFD8DC;
  font-size: 0.85rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.5px;
}

.footer-brand span {
  color: var(--secondary-color);
}

.footer-links-header {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  list-style: none;
  padding-left: 0;
}

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

.footer-links-list a {
  color: #90A4AE;
}

.footer-links-list a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

/* Modals */
.custom-modal-content {
  border-radius: 24px !important;
  border: none !important;
  box-shadow: var(--shadow-lg) !important;
  overflow: hidden;
}

.custom-modal-header {
  background-color: var(--dark-color);
  color: #fff;
  border: none !important;
  padding: 1.5rem 2rem !important;
}

.custom-modal-header .btn-close {
  filter: invert(1);
}

.custom-modal-body {
  padding: 2.25rem 2rem !important;
}

/* Custom CSS animations and utility triggers */
.text-accent {
  color: var(--secondary-color);
}

.text-primary-color {
  color: var(--primary-color);
}

.font-mono-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Swiper styling customization */
.swiper {
  --swiper-theme-color: var(--secondary-color) !important;
}

/* Custom testimonial slider overlay */
.testimonial-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  font-size: 8rem;
  font-family: Georgia, serif;
  color: rgba(27, 94, 32, 0.04);
  line-height: 1;
}

/* Notification Toast */
.custom-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background-color: var(--dark-color);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.custom-toast-success {
  border-left: 4px solid var(--secondary-color);
}