
:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* =========================
   SECTION
========================= */
.camp-section {
  padding: 80px 0;
  background: var(--bg-light);
}

/* =========================
   TITLE
========================= */
.section-title {
  margin-bottom: 55px;
}

.section-title span {
  display: inline-block;
  background: var(--accent-red);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: 48px;
  color: var(--primary-blue);
  font-weight: 700;
  margin: 0;
}

/* =========================
   CARD
========================= */
.camp-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.camp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;

  background: linear-gradient(
    90deg,
    var(--primary-blue),
    var(--accent-red)
  );
}

/* =========================
   HEADING
========================= */
.camp-heading {
  margin-bottom: 30px;
}

.camp-heading h3 {
  color: var(--primary-blue);
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  margin: 0;
}

/* =========================
   IMAGE
========================= */
.camp-carousel .item {
  padding: 5px;
}

.camp-carousel .item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s ease;
}

.camp-carousel .item img:hover {
  transform: scale(1.03);
}

/* =========================
   PDF BUTTON
========================= */
.camp-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: var(--primary-blue);
  color: #fff;

  padding: 14px 24px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.camp-pdf-btn:hover {
  background: var(--accent-red);
  color: #fff;
}

/* =========================
   OWL NAV
========================= */
.owl-nav {
  margin-top: 25px !important;
  text-align: center;
}

.owl-nav button {
  width: 50px;
  height: 50px;

  border-radius: 50% !important;
  background: var(--primary-blue) !important;

  color: #fff !important;
  font-size: 22px !important;

  margin: 0 8px;
  transition: 0.3s ease;
}

.owl-nav button:hover {
  background: var(--accent-red) !important;
}

/* =========================
   DOTS
========================= */
.owl-dots {
  margin-top: 20px;
}

.owl-dot.active span {
  background: var(--accent-red) !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

  .camp-card {
    padding: 30px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .camp-heading h3 {
    font-size: 24px;
  }

}

@media (max-width: 768px) {

  .camp-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .camp-card {
    padding: 22px;
    border-radius: 18px;
  }

  .camp-heading {
    margin-bottom: 22px;
  }

  .camp-heading h3 {
    font-size: 20px;
  }

  .camp-carousel .item img {
    height: 240px;
  }

  .camp-pdf-btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }

}