/*==================================================
    KORAVO SOLUTIONS
    Version : 1.0
==================================================*/

/*==================================================
    SOLUTIONS
==================================================*/

.solutions {
  background: #fff;
}

/*==================================================
    BREADCRUMB
==================================================*/

.solutions-breadcrumb {
  padding: 22px 0;

  border-bottom: 1px solid var(--border);

  background: #fff;
}
/*==================================================
    HERO
==================================================*/

.solutions-hero {
  position: relative;

  overflow: hidden;

  padding: 90px 0 110px;

  background:
    radial-gradient(
      circle at top right,
      rgba(37, 99, 235, 0.1),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(16, 185, 129, 0.1),
      transparent 40%
    ),
    linear-gradient(180deg, #f8fafc, #ffffff);
}

.solutions-hero::before {
  content: "";

  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(#eef2f7 1px, transparent 1px),
    linear-gradient(90deg, #eef2f7 1px, transparent 1px);

  background-size: 40px 40px;

  opacity: 0.6;
}

.solutions-hero .container {
  position: relative;

  z-index: 2;
}

.solutions-hero__wrapper {
  display: grid;

  grid-template-columns: 1.3fr 0.7fr;

  gap: 70px;

  align-items: center;
}
.solutions-hero h1 {
  margin: 25px 0;

  font-size: 64px;

  line-height: 1.1;

  color: var(--primary);
}

.solutions-hero p {
  max-width: 700px;

  font-size: 20px;

  color: var(--gray-600);
}
/*==================================================
    SEARCH
==================================================*/

.solutions-search {
  display: flex;

  align-items: center;

  margin-top: 40px;

  padding: 10px;

  background: #fff;

  border-radius: 999px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow-lg);
}

.solutions-search input {
  flex: 1;

  border: none;

  background: none;

  font-size: 17px;
}

.solutions-search input:focus {
  outline: none;
}

.solutions-search i {
  padding: 0 22px;

  color: var(--secondary);
}

.solutions-search button {
  padding: 18px 30px;

  border: none;

  border-radius: 999px;

  background: var(--secondary);

  color: #fff;

  font-weight: 700;

  cursor: pointer;
}
/*==================================================
    TAGS
==================================================*/

.solutions-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 28px;
}

.solutions-tags a {
  padding: 10px 18px;

  border-radius: 999px;

  background: #eef4ff;

  color: var(--primary);

  font-weight: 600;

  transition: 0.3s;
}

.solutions-tags a:hover {
  background: var(--secondary);

  color: #fff;
}
/*==================================================
    HERO WIDGET
==================================================*/

.solutions-widget {
  min-height: 520px;
}

.solution-widget {
  background: #fff;

  border-radius: 30px;

  padding: 35px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow-lg);
}
/*==================================================
    SECTION
==================================================*/

.industry-solutions {
  padding: 90px 0;
}

.section-header {
  display: flex;

  justify-content: space-between;

  align-items: end;

  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--secondary);

  font-weight: 700;
}
/*==================================================
    GRID
==================================================*/

.solutions-grid {
  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));

  gap: 30px;
}
/*==================================================
    FEATURES
==================================================*/

.solution-features {
  padding: 20px 0 90px;
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}
.feature-card {
  padding: 35px;

  background: #fff;

  border-radius: 24px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow-sm);

  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card i {
  font-size: 42px;

  color: var(--secondary);

  margin-bottom: 25px;
}
.solution-card {
  background: #fff;

  border-radius: 24px;

  overflow: hidden;

  border: 1px solid var(--border);

  box-shadow: var(--shadow-sm);

  transition: 0.35s;
}

.solution-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow-lg);
}

.solution-cover {
  height: 220px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  color: #fff;
}

.solution-cover h3 {
  color: #fff;

  font-size: 30px;
}

.solution-body {
  padding: 28px;
}

.solution-body ul {
  display: flex;

  flex-direction: column;

  gap: 12px;

  margin: 20px 0;
}

.solution-footer {
  display: flex;

  justify-content: space-between;

  align-items: center;
}
/*==================================================
    CTA
==================================================*/

.solutions-cta {
  padding: 90px 0;
}

.cta-box {
  padding: 80px;

  border-radius: 32px;

  text-align: center;

  background: linear-gradient(135deg, #1e3a8a, #2563eb);

  color: #fff;
}

.cta-box h2 {
  color: #fff;

  font-size: 44px;
}

.cta-box p {
  margin: 25px 0 35px;

  opacity: 0.9;
}
/*==================================================
    RESPONSIVE
==================================================*/

@media (max-width: 992px) {
  .solutions-hero__wrapper {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .solutions-hero h1 {
    font-size: 42px;
  }
}
.solution-widget {
  background: #fff;

  border-radius: 24px;

  padding: 35px;

  border: 1px solid var(--border);

  box-shadow: var(--shadow-lg);
}

.solution-widget ul {
  display: flex;

  flex-direction: column;

  gap: 18px;

  margin-top: 25px;
}

.solution-widget li {
  padding: 16px;

  background: #f8fafc;

  border-radius: 16px;

  transition: 0.3s;
}

.solution-widget li:hover {
  transform: translateX(6px);

  background: #eef4ff;
}
