/* ===============================
   CHALLENGES & SOLUTIONS HERO
================================= */
.cs-hero-section {
  position: relative;
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('../assets/images/challenges-bg.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Content */
.cs-hero-content {
  max-width: 800px;
  padding: 20px;
}

.cs-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cs-hero-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Buttons */
.cs-hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cs-btn-primary {
  background: #dc3545;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cs-btn-primary:hover {
  background: #c82333;
}

.cs-btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cs-btn-secondary:hover {
  background: #fff;
  color: #000;
}


/* ===============================
   CHALLENGES DETAILS SECTION
================================= */
.cs-details-section {
  background: #ffffff;
  padding: 80px 20px;
}

.cs-details-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.cs-details-header {
  text-align: center;
  margin-bottom: 50px;
}

.cs-details-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cs-details-header p {
  max-width: 750px;
  margin: auto;
  color: #555;
}

/* Layout */
.cs-details-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

/* Text */
.cs-item {
  margin-bottom: 25px;
}

.cs-item h3 {
  color: #dc3545;
  margin-bottom: 8px;
}

.cs-item p {
  color: #444;
  line-height: 1.6;
}

/* Images */
.cs-details-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.cs-details-images img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: 0.3s ease;
}

/* Hover */
.cs-details-images img:hover {
  transform: scale(1.05);
}



/* Layout */
.challenge-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 5px solid #dc3545;
  padding: 20px;
  background: #f9f9f9;
  transition: 0.3s;
}

/* Icon */
.challenge-icon {
  font-size: 1.8rem;
  color: #dc3545;
  min-width: 40px;
}

/* Text */
.challenge-text h3 {
  margin-bottom: 8px;
  color: #dc3545;
}

.challenge-text p {
  color: #444;
  line-height: 1.6;
}

/* Hover */
.challenge-box:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}



/* ===============================
   INSIGHT / WRITE-UP SECTION
================================= */
.insight-section {
  background: #ffffff;
  padding: 90px 20px;
}

.insight-container {
  max-width: 900px;
  margin: auto;
}

/* Header */
.insight-header {
  text-align: center;
  margin-bottom: 50px;
}

.insight-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.insight-header p {
  color: #555;
  max-width: 700px;
  margin: auto;
}

/* Content */
.insight-content {
  line-height: 1.8;
}

.insight-content p {
  margin-bottom: 20px;
  color: #444;
  font-size: 1rem;
  text-align: justify;
}



/* ===============================
   SOLUTIONS SECTION
================================= */
.solutions-section {
  background: #ffffff;
  padding: 90px 20px;
}

.solutions-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.solutions-header {
  text-align: center;
  margin-bottom: 50px;
}

.solutions-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.solutions-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.solution-card {
  position: relative;
  overflow: hidden;
}

.solution-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Overlay */
.solution-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #fff;
}

.solution-overlay h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.solution-overlay p {
  font-size: 0.85rem;
}

/* Hover */
.solution-card:hover img {
  transform: scale(1.1);
}





/* ===============================
   SOLUTIONS ALT SECTION
================================= */
.solutions-alt-section {
  background: #f8f9fa;
  padding: 90px 20px;
}

.solutions-alt-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.solutions-alt-header {
  text-align: center;
  margin-bottom: 60px;
}

.solutions-alt-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.solutions-alt-header p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* Grid */
.solutions-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Box */
.solutions-alt-box {
  background: #ffffff;
  padding: 25px;
  border-left: 5px solid #28a745;
  transition: 0.3s ease;
}

.solutions-alt-box h3 {
  margin-bottom: 10px;
  color: #28a745;
}

.solutions-alt-box p {
  color: #444;
  line-height: 1.6;
}

/* Hover */
.solutions-alt-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}


/* ===============================
   MODERN SCROLL SECTION
================================= */
.scroll-modern-section {
  background: #ffffff;
  padding: 90px 20px;
}

.scroll-modern-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* TEXT */
.scroll-modern-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.scroll-modern-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* SLIDER */
.scroll-modern-slider {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .scroll-modern-container {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .solutions-alt-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 600px) {
  .insight-header h2 {
    font-size: 2rem;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .cs-details-content {
    grid-template-columns: 1fr;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .cs-hero-title {
    font-size: 2.3rem;
  }

  .cs-hero-text {
    font-size: 1rem;
  }
}