/* ================= MAIN CONTENT ================= */
.adc-main {
  padding: 60px 20px;
  background: #ffffff;
}

.adc-card-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.adc-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s ease;
}

.adc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ICON */
.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: #555;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* TEXT */
.adc-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.adc-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.card-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  border: 1px solid #555;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: #555;
  color: #fff;
}

/* PRIMARY CTA */
.card-btn.primary {
  background: #25D366;
  color: #fff;
  border: none;
}
.card-btn.primary:hover {
  background: #1ebe5d;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .adc-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .adc-card-grid {
    grid-template-columns: 1fr;
  }
}



/* ================= HERO ================= */
.adc-hero {
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  padding: 60px 20px 60px;
}

.adc-hero-wrap {
  max-width: 1250px;
  margin: auto;
  text-align: center;
}

.adc-hero h1 {
  font-size: 38px;
  font-weight: 600;
  color: #000;
}

.adc-hero p {
  margin-top: 14px;
  font-size: 16px;
  color: #555;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid #555;
  color: #555;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.hero-btn.primary {
  background: #555;
  color: #fff;
}

.hero-btn:hover {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .adc-hero h1 {
    font-size: 28px;
  }
}


/* ================= SLIDER SECTION ================= */
/* ================= SLIDER ================= */
.adc-slider-section {
  padding: 90px 20px;
  background: #fafafa;
}

.slider-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 45px;
  color: #111;
}

/* WRAPPER */
.slider-wrapper {
  max-width: 1250px;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.slider-track {
  display: flex;
  gap: 32px;
  padding: 10px 0 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.slider-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.slider-track .box {
  min-width: 280px;
  height: 180px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
  transition: transform .3s ease, box-shadow .3s ease;
}

.slider-track .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

/* TITLE */
.slider-track .title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  border-radius: 0 0 18px 18px;
}

/* REMOVE ARROWS ON DESKTOP */
.slider-btn {
  display: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .slider-track .box {
    min-width: 230px;
    height: 150px;
  }
}
