/* Container & Layout */
.about-section {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #4a5568;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* Image & Badge */
.image-wrapper {
  position: relative;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 170px;
  border: 1px solid #f0f0f0;
}

.experience-badge .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0b7a4b;
  line-height: 1;
  margin-bottom: 4px;
}

.experience-badge .text {
  font-size: 0.75rem;
  color: #616e7c;
  line-height: 1.3;
  font-weight: 500;
}

/* Typography */
.content-wrapper {
  display: flex;
  flex-direction: column;
}

.tagline {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0b7a4b;
  margin-bottom: 12px;
}

.heading {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 24px;
}

.heading span {
  color: #0b7a4b;
  font-style: italic;
  font-weight: 400;
}

.description {
  font-size: 0.92rem;
  color: #52606d;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e4e7eb;
  border-radius: 14px;
  padding: 14px 18px;
}

.feature-card h4 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.feature-card p {
  font-size: 0.75rem;
  color: #7b8794;
  margin: 0;
}

/* Responsiveness */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .experience-badge {
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 576px) {
  .heading {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    padding: 12px 16px;
    max-width: 140px;
  }

  .experience-badge .number {
    font-size: 1.5rem;
  }
}
/* Container Layout */
.areas-section {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.areas-header {
  margin-bottom: 35px;
}

.tagline {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #0b7a4b;
  display: block;
  margin-bottom: 8px;
}

.heading {
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.heading span {
  color: #0b7a4b;
  font-style: italic;
  font-weight: 400;
}

/* Grid Layout */
.areas-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* Radar Graphic Card */
.radar-card {
  position: relative;
  background: linear-gradient(180deg, #eaf7f1 0%, #ccecdb 100%);
  border-radius: 20px;
  height: 480px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #d1e7dd;
}

.radar-bg {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ring {
  position: absolute;
  border: 1.5px solid rgba(11, 122, 75, 0.25);
  border-radius: 50%;
}

.ring-1 { width: 80px; height: 120px; }
.ring-2 { width: 140px; height: 200px; }
.ring-3 { width: 200px; height: 280px; }
.ring-4 { width: 260px; height: 360px; }
.ring-5 { width: 320px; height: 440px; }

.center-dot {
  width: 12px;
  height: 12px;
  background-color: #0b7a4b;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 0 6px rgba(11, 122, 75, 0.2);
}

.radar-badge {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: #0f172a;
}

.badge-text span {
  display: block;
  font-size: 0.72rem;
  color: #718096;
}

/* Location Tags List */
.locations-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.location-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 25px;
  padding: 12px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.location-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #2d3748;
}

.location-item:hover {
  border-color: #0b7a4b;
  box-shadow: 0 2px 8px rgba(11, 122, 75, 0.08);
}
/* Slider Wrapper CSS */
.cl-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  border-radius: 12px;
}

.cl-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.cl-card-item {
  min-width: 100%;
  box-sizing: border-box;
}

/* Footer Controls & Dots */
.cl-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 15px;
  flex-wrap: wrap;
}

.cl-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cl-dot.cl-active {
  background-color: #111111; /* Apne brand Theme color ke mutabiq change kar sakte hain */
  width: 26px;
  border-radius: 12px;
}

/* Professional View All Reviews Button */
.cl-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background-color: #111111;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cl-view-all-btn:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cl-view-all-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.cl-view-all-btn:hover i {
  transform: translateX(4px);
}
/* Responsiveness */
@media (max-width: 992px) {
  .areas-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .radar-card {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .locations-list {
    grid-template-columns: 1fr;
  }

  .heading {
    font-size: 1.8rem;
  }
}