/* ===== EWOUR GLOBAL CSS FRAMEWORK ===== */

/* PRIMARY COLORS */
:root {
  --ewour-primary: #4caf50;
  --ewour-primary-dark: #2e7d32;
  --ewour-primary-light: #81c784;
  --ewour-secondary: #2196f3;
  --ewour-dark: #1b5e20;
  --ewour-light: #e8f5e8;
  --ewour-white: #ffffff;
  --ewour-gray-100: #f8f9fa;
  --ewour-gray-200: #e9ecef;
  --ewour-gray-300: #dee2e6;
  --ewour-gray-400: #ced4da;
  --ewour-gray-500: #adb5bd;
  --ewour-gray-600: #6c757d;
  --ewour-gray-700: #495057;
  --ewour-gray-800: #343a40;
  --ewour-gray-900: #212529;
  --ewour-footer-bg: #1b4332;
}

/* TYPOGRAPHY SCALE */
:root {
  --ewour-font-xs: 0.75rem; /* 12px */
  --ewour-font-sm: 0.875rem; /* 14px */
  --ewour-font-base: 1rem; /* 16px */
  --ewour-font-lg: 1.125rem; /* 18px */
  --ewour-font-xl: 1.25rem; /* 20px */
  --ewour-font-2xl: 1.5rem; /* 24px */
  --ewour-font-3xl: 1.875rem; /* 30px */
  --ewour-font-4xl: 2.25rem; /* 36px */
  --ewour-font-5xl: 3rem; /* 48px */
  --ewour-font-6xl: 3.75rem; /* 60px */
}

/* SPACING SCALE */
:root {
  --ewour-space-1: 0.25rem; /* 4px */
  --ewour-space-2: 0.5rem; /* 8px */
  --ewour-space-3: 0.75rem; /* 12px */
  --ewour-space-4: 1rem; /* 16px */
  --ewour-space-5: 1.25rem; /* 20px */
  --ewour-space-6: 1.5rem; /* 24px */
  --ewour-space-8: 2rem; /* 32px */
  --ewour-space-10: 2.5rem; /* 40px */
  --ewour-space-12: 3rem; /* 48px */
  --ewour-space-16: 4rem; /* 64px */
  --ewour-space-20: 5rem; /* 80px */
}

/* GLOBAL STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--ewour-gray-800);
  font-size: var(--ewour-font-base);
}

/* UTILITY CLASSES */
.ewour-primary {
  color: var(--ewour-primary) !important;
}
.ewour-primary-bg {
  background-color: var(--ewour-primary) !important;
}
.ewour-dark {
  color: var(--ewour-dark) !important;
}
.ewour-dark-bg {
  background-color: var(--ewour-dark) !important;
}
.ewour-white {
  color: var(--ewour-white) !important;
}
.ewour-white-bg {
  background-color: var(--ewour-white) !important;
}

/* COMPONENT STYLES */

/* Header Styles */
/* .header .nav-link {
  font-size: 14px;
} */
.ewour-header {
  background-color: var(--ewour-primary);
  color: var(--ewour-white);
  padding: var(--ewour-space-2) 0;
  font-size: var(--ewour-font-sm);
}

.ewour-navbar {
  background-color: var(--ewour-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: var(--ewour-space-4) 0;
}

.ewour-logo {
  max-height: 60px;
  width: auto;
}

.ewour-nav-link {
  color: var(--ewour-gray-700);
  font-weight: 500;
  font-size: var(--ewour-font-base);
  text-decoration: none;
  padding: var(--ewour-space-2) var(--ewour-space-4);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.ewour-nav-link:hover {
  color: var(--ewour-primary);
  background-color: var(--ewour-light);
}

.ewour-btn-primary {
  background-color: var(--ewour-primary);
  border-color: var(--ewour-primary);
  color: var(--ewour-white);
  font-weight: 600;
  padding: var(--ewour-space-3) var(--ewour-space-6);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.ewour-btn-primary:hover {
  background-color: var(--ewour-primary-dark);
  border-color: var(--ewour-primary-dark);
  transform: translateY(-1px);
}

/* Hero Section */
.ewour-hero {
  color: var(--ewour-white);
  padding: var(--ewour-space-20) 0;
  text-align: center;
}
.home-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/banner.webp") !important;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.ewour-hero h1 {
  font-size: var(--ewour-font-5xl);
  font-weight: 700;
  margin-bottom: var(--ewour-space-4);
}

/* Contact Section */
.ewour-contact-section {
  padding: var(--ewour-space-20) 0;
  background-color: var(--ewour-gray-100);
}

.ewour-contact-card {
  background: var(--ewour-white);
  border-radius: 12px;
  padding: var(--ewour-space-8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--ewour-space-8);
}

.ewour-contact-info {
  background: var(--ewour-white);
  border-radius: 12px;
  padding: var(--ewour-space-8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.ewour-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--ewour-space-6);
  padding-bottom: var(--ewour-space-6);
  border-bottom: 1px solid var(--ewour-gray-200);
}

.ewour-contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ewour-contact-icon {
  color: var(--ewour-primary);
  font-size: var(--ewour-font-xl);
  margin-right: var(--ewour-space-4);
  margin-top: var(--ewour-space-1);
  min-width: 24px;
}

.ewour-contact-content h6 {
  color: var(--ewour-gray-700);
  font-weight: 600;
  margin-bottom: var(--ewour-space-2);
  font-size: var(--ewour-font-base);
}

.ewour-contact-content p {
  color: var(--ewour-gray-600);
  margin: 0;
  font-size: var(--ewour-font-sm);
  line-height: 1.5;
}

/* Form Styles */
.ewour-form-control {
  border: 2px solid var(--ewour-gray-300);
  border-radius: 8px;
  padding: var(--ewour-space-4);
  font-size: var(--ewour-font-base);
  transition: all 0.3s ease;
}

.ewour-form-control:focus {
  border-color: var(--ewour-primary);
  box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
}

.ewour-form-label {
  font-weight: 600;
  color: var(--ewour-gray-700);
  margin-bottom: var(--ewour-space-2);
  font-size: var(--ewour-font-sm);
}

.ewour-btn-send {
  background-color: var(--ewour-primary);
  border: none;
  color: var(--ewour-white);
  padding: var(--ewour-space-4) var(--ewour-space-8);
  border-radius: 8px;
  font-weight: 600;
  font-size: var(--ewour-font-base);
  width: 100%;
  transition: all 0.3s ease;
}

.ewour-btn-send:hover {
  background-color: var(--ewour-primary-dark);
  transform: translateY(-1px);
}

/* Map Styles */
.ewour-map-container {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: var(--ewour-space-8);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.ewour-footer {
  background-color: var(--ewour-footer-bg);
  color: var(--ewour-white);
  padding: var(--ewour-space-16) 0 var(--ewour-space-8) 0;
}

.ewour-footer h5 {
  color: var(--ewour-white);
  font-weight: 600;
  margin-bottom: var(--ewour-space-4);
  font-size: var(--ewour-font-xl);
}

.ewour-footer p {
  color: var(--ewour-gray-300);
  font-size: var(--ewour-font-sm);
  line-height: 1.6;
}

.ewour-footer-link {
  color: var(--ewour-gray-300);
  text-decoration: none;
  font-size: var(--ewour-font-sm);
  padding: var(--ewour-space-1) 0;
  display: block;
  transition: color 0.3s ease;
}

.ewour-footer-link:hover {
  color: var(--ewour-primary-light);
}

.ewour-social-icons {
  display: flex;
  gap: var(--ewour-space-4);
  margin-top: var(--ewour-space-4);
}

.ewour-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--ewour-primary);
  color: var(--ewour-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ewour-social-icon:hover {
  background-color: var(--ewour-primary-light);
  transform: translateY(-2px);
}

/* WhatsApp Float Button */
.ewour-whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ewour-whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  color: white;
}

/* Section Titles */
.ewour-section-title {
  font-size: var(--ewour-font-3xl);
  font-weight: 700;
  color: var(--ewour-gray-800);
  margin-bottom: var(--ewour-space-8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ewour-hero h1 {
    font-size: var(--ewour-font-3xl);
  }

  .ewour-section-title {
    font-size: var(--ewour-font-2xl);
  }

  .ewour-contact-card,
  .ewour-contact-info {
    padding: var(--ewour-space-6);
  }
}

/* Header contact info */
.header-contact-info {
  font-size: var(--ewour-font-sm);
}

.header-contact-info a {
  color: var(--ewour-white);
  text-decoration: none;
  margin-right: var(--ewour-space-5);
}

.header-contact-info a:hover {
  text-decoration: underline;
}

/* Social icons in header */
.header-social {
  display: flex;
  gap: var(--ewour-space-3);
}

.header-social a {
  color: var(--ewour-white);
  font-size: var(--ewour-font-lg);
  transition: opacity 0.3s ease;
}

.header-social a:hover {
  opacity: 0.8;
}

/* Map container */
#map {
  height: 100%;
  width: 100%;
  border-radius: 12px;
}

/* ===================  About page */
.about-banner {
  background: url("https://dummyimage.com/1600x400/cccccc/000&text=About+Us+Banner")
    no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}
.about-section {
  padding: 60px 0;
}
.mission-card {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  margin-bottom: 15px;
}
.mission-card button {
  font-weight: bold;
  text-align: left;
}
.services-section {
  padding: 60px 0;
}
.service-box {
  text-align: center;
  padding: 20px;
}
.service-box i {
  font-size: 32px;
  color: #28a745;
  margin-bottom: 15px;
}
.green-movement {
  background: url("https://dummyimage.com/1600x400/28a745/ffffff&text=Join+The+Green+Movement")
    no-repeat center center/cover;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}
.testimonial {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}
.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 15px auto 10px;
}

/* home css */

:root {
  --primary-green: #4caf50;
  --dark-green: #2e7d32;
  --light-gray: #f8f9fa;
  --light-green: #81c784;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.top-bar {
  background-color: var(--primary-green);
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 10px 25px;
  font-weight: 600;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f0f0f0" width="1200" height="800"/><rect fill="%23e0e0e0" x="600" y="200" width="200" height="400"/><circle fill="%23d0d0d0" cx="300" cy="400" r="100"/><rect fill="%23c0c0c0" x="800" y="300" width="150" height="200"/></svg>');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.services-grid {
  margin-top: -80px;
  z-index: 10;
  position: relative;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-green);
}

.about-section {
  padding: 100px 0;
  /* background-color: var(--light-gray); */
}

.about-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 10px 0;
  color: #333;
}

.feature-list li i {
  color: var(--primary-green);
  margin-right: 10px;
}

.waste-collection-section {
  padding: 100px 0;
  text-align: center;
}

.waste-collection-section .section-title {
  color: var(--primary-green);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 3rem;
}

.epr-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.epr-card:hover {
  transform: translateY(-10px);
}

.epr-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.epr-content {
  padding: 2rem;
  text-align: left;
}

.epr-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.epr-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.btn-outline-success {
  border-color: var(--primary-green);
  color: var(--primary-green);
  padding: 10px 30px;
  font-weight: 600;
  border-radius: 25px;
}

.btn-outline-success:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.explore-all-btn {
  margin-top: 3rem;
}

/* EPR Card specific backgrounds */
.ewaste-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23f5f5f5" width="400" height="300"/><rect fill="%234CAF50" x="50" y="50" width="100" height="80" rx="10"/><rect fill="%23333" x="80" y="80" width="40" height="20"/><circle fill="%23666" cx="200" cy="150" r="30"/></svg>');
}

.plastic-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%232196F3" width="400" height="300"/><rect fill="%23FFC107" x="100" y="100" width="200" height="100" rx="20"/></svg>');
}

.battery-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23E91E63" width="400" height="300"/><rect fill="%234CAF50" x="150" y="120" width="100" height="60" rx="10"/></svg>');
}

.waste-services {
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  min-height: 70vh;
  color: white;
  position: relative;
  overflow: hidden;
}

.waste-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.service-icon i {
  font-size: 24px;
  color: white;
}

.request-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.pickup-form .form-control,
.pickup-form .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14px;
}

.pickup-form .form-control:focus,
.pickup-form .form-select:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25) !important;
}

.btn-submit {
  background: #000;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 30px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #333;
  transform: translateY(-2px);
}

.faq-section {
  padding: 80px 0;
}

.accordion-button {
  background: var(--primary-green);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
  background: var(--dark-green);
  color: white;
}

.accordion-button::after {
  filter: invert(1);
}

.accordion-item {
  border: none;
  margin-bottom: 10px;
}

.accordion-body {
  background: #f8f9fa;
  border-radius: 0 0 10px 10px;
}

.testimonial-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.eco-image {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.eco-image::before {
  content: "🌱";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 40px;
}

.eco-image::after {
  content: "🌍";
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 60px;
}

.section-title {
  color: #2e7d32;
  font-weight: bold;
  margin-bottom: 40px;
}

.required {
  color: #dc3545;
}

.service-item {
  text-align: center;
  margin-bottom: 30px;
}

.service-item h5 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
}

.stats-section {
  background: linear-gradient(135deg, #2e8b57 0%, #228b22 100%);
  color: white;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  margin-bottom: 30px;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.stat-text {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.95;
}

.articles-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-subtitle {
  color: #28a745;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
}

.article-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: relative;
}

.article-content {
  padding: 25px;
}

.article-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #666;
}

.article-meta i {
  margin-right: 5px;
}

.article-meta span {
  margin-right: 15px;
}

.article-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.continue-reading {
  color: #999;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}

.continue-reading:hover {
  color: #28a745;
}

.epr-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 193, 7, 0.95);
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .article-title {
    font-size: 1.1rem;
  }
}

.callback-section {
  background: linear-gradient(135deg, #4caf50, #45a049);
  color: white;
  padding: 30px 0;
}

.callback-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.phone-number {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.form-control {
  border-radius: 8px;
  border: none;
  padding: 6px 15px;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn-send {
  background: #fff;
  color: #4caf50;
  border: none;
  padding: 8px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: #f0f0f0;
  color: #45a049;
}

.footer-section {
  background: #1a2f1a;
  color: white;
  padding: 60px 0 30px 0;
}

.footer-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-text {
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4caf50;
}

.working-hours {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-icon {
  color: #4caf50;
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(76, 175, 80, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #4caf50;
  color: white;
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebea5;
  color: white;
  transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  color: #666;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .callback-title {
    font-size: 2.5rem;
  }
  .phone-number {
    font-size: 1.5rem;
  }
  .details-title {
    font-size: 1.5rem;
  }
  .logo-container {
    gap: 15px;
  }
  .logo-item {
    height: 50px;
  }
}

/* partner */
/* Arrows common style */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e0e0e0; /* light gray circle */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slick-next:hover,
.slick-prev:hover {
  background: #e0e0e0;
}

/* Left arrow */
.slick-prev {
  left: 10px; /* slider ke bahar thoda */
}

/* Right arrow */
.slick-next {
  right: 10px;
}

/* Arrow icons */
.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #333;
}

/* Left icon (angle-left) */
.slick-prev:before {
  content: "\f104"; /* FontAwesome angle-left */
}

/* Right icon (angle-right) */
.slick-next:before {
  content: "\f105"; /* FontAwesome angle-right */
}

/* ======================= Plastic recycling style ====================== */
.plastic-recycling-banner {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("../images/banner/plastic.jpg") center/cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.content-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.content-text {
  font-size: 1.1rem;
  color: #495057;
  line-height: 1.8;
  text-align: justify;
}

.content-text p {
  margin-bottom: 1.5rem;
}

.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.destruction-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover .destruction-image {
  transform: scale(1.05);
}

.highlight-text {
  background: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.company-name {
  color: #28a745;
  font-weight: 600;
}

.watermark {
  position: absolute;
  bottom: 10px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #6c757d;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  color: white;
  font-size: 1.5rem;
}

/* =============== Service list sidebar ==================== */
.service-list {
  border: 1px solid #a5a5a5;
  border-radius: 10px;
}
.service-list .service-list-item a {
  text-decoration: none;
}
.service-list-item {
  border-bottom: 1px solid #a5a5a5;
  padding: 10px 0;
}

.service-list-item a {
  padding: 0 10px;
}
.service-list .service-list-item .icon-content {
  font-size: 18px;
  color: #000;
}
.service-list .service-list-item .icon i {
  border-radius: 50%;
  color: green;
  font-size: 24px;
  margin-right: 5px;
}
.service-list .service-list-item .angle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #b8b8b8;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.service-list-item:hover {
  background-color: #dae9ff;
  border-radius: 0 0 10px 10px;
}

.service-list-item:last-child {
  border-bottom: none;
}
/* =============== Service list sidebar end ==================== */
/* =============== proposal form sidebar start ==================== */
.proposal-form {
  max-width: 500px;
  /* margin: 40px auto; */
  background-color: #e9ecef;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.proposal-form .form-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 25px;
  text-align: left;
}

.proposal-form .form-label {
  color: #6c757d;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.proposal-form .form-control {
  border: 2px solid #6c757d;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 1rem;
  background-color: white;
  margin-bottom: 15px;
}

.proposal-form .form-control:focus {
  border-color: #495057;
  box-shadow: none;
  outline: none;
}

.proposal-form .form-select {
  border: 2px solid #6c757d;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 1rem;
  background-color: white;
  margin-bottom: 15px;
}

.proposal-form .form-select:focus {
  border-color: #495057;
  box-shadow: none;
}

.proposal-form textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.proposal-form .btn-submit {
  background-color: #28a745;
  border: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px;
  width: 100%;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.2s;
}

.proposal-form .btn-submit:hover {
  background-color: #218838;
}
/* =============== proposal form sidebar end ==================== */
/* ================== plastic page faq =================*/
.plastic-page {
  background: linear-gradient(135deg, #d4f4d8 0%, #e8f5e8 50%, #f0fdf4 100%);
  min-height: 100vh;
  padding: 60px 0;
}

.plastic-page .faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.plastic-page .faq-badge {
  background-color: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}

.plastic-page .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  line-height: 1.2;
}

.plastic-page .faq-content {
  background: white;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.plastic-page .faq-item {
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.plastic-page .faq-item:last-child {
  border-bottom: none;
}

.plastic-page .faq-item:hover {
  background-color: #f9fafb;
}

.plastic-page .faq-button {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: #374151;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plastic-page .faq-button:focus {
  outline: none;
  box-shadow: none;
}

.plastic-page .faq-button .chevron {
  font-size: 1.2rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.plastic-page .faq-button[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.plastic-page .faq-answer {
  padding: 0 24px 20px 24px;
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

.plastic-page .image-section {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, #22c55e, #16a34a);
}

.plastic-page .eco-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.plastic-page .recycle-icon {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.plastic-page .recycle-icon i {
  font-size: 2rem;
  color: #16a34a;
}

@media (max-width: 768px) {
  .plastic-page .faq-title {
    font-size: 2rem;
  }

  .plastic-page .faq-button {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .plastic-page .faq-answer {
    padding: 0 20px 16px 20px;
  }

  .plastic-page .eco-image {
    height: 300px;
  }

  .plastic-page .recycle-icon {
    width: 60px;
    height: 60px;
    bottom: -15px;
    left: -15px;
  }

  .plastic-page .recycle-icon i {
    font-size: 1.5rem;
  }
}
/* ================== plastic page faq end==================== */
/* ================== cta start plastic page sidebar==================== */
.help-card {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  max-width: 400px;
  margin: 0 auto;
}

.help-card .headset-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 25px;
  position: relative;
}

.help-card .headset-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 36px;
  height: 36px;
  border: 3px solid white;
  border-radius: 50%;
  background: transparent;
}

.help-card .headset-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 45px;
  border: 3px solid white;
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  background: transparent;
}

.headset-mic {
  position: absolute;
  bottom: 15px;
  right: 8px;
  width: 20px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.headset-mic::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -2px;
  width: 8px;
  height: 7px;
  background: white;
  border-radius: 2px;
}

.help-card .help-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
  letter-spacing: -0.5px;
}

.help-card .contact-info {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.help-card .email {
  margin-bottom: 8px;
}

.help-card .phone {
  font-weight: 500;
  letter-spacing: 0.5px;
}
/* ================== cta start plastic page sidebar end==================== */

/* ======================= Plastic recycling style end  ================*/
