/*======================================================
Sectors
======================================================*/

.sectors-section {
  padding: 110px 0;

  background: #fff;
}

.sector-card {
  background: #fff;

  padding: 35px 25px;

  text-align: center;

  border-radius: 18px;

  border: 1px solid #ececec;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.sector-card:hover {
  transform: translateY(-8px);

  border-color: #ba1515;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.sector-card i {
  font-size: 38px;

  color: #ba1515;

  margin-bottom: 20px;

  transition: 0.35s;
}

.sector-card:hover i {
  transform: scale(1.15);
}

.sector-card h5 {
  font-size: 18px;

  font-weight: 700;

  line-height: 1.5;

  margin: 0;

  color: #222;
}

@media (max-width: 991px) {
  .sectors-section {
    padding: 90px 0;
  }
}

@media (max-width: 576px) {
  .sector-card {
    padding: 30px 20px;
  }

  .sector-card i {
    font-size: 32px;
  }

  .sector-card h5 {
    font-size: 16px;
  }
}

/* ============================================================================ */
/*==========================================
Intro
==========================================*/

.sectors-intro {
  padding: 110px 0;
}

.sectors-intro h2 {
  font-size: 42px;

  font-weight: 800;

  margin: 20px 0;
}

.sectors-intro p {
  font-size: 17px;

  line-height: 1.9;

  color: #666;
}

/*==========================================
Cards
==========================================*/

.sector-grid {
  padding: 0 0 120px;
}

.sector-card {
  display: block;

  border-radius: 22px;

  overflow: hidden;

  background: #fff;

  text-decoration: none;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  height: 100%;
}

.sector-card:hover {
  transform: translateY(-8px);
}

.sector-card img {
  width: 100%;

  height: 240px;

  object-fit: cover;
}

.sector-content {
  padding: 30px;
}

.sector-content h3 {
  font-size: 26px;

  font-weight: 700;

  color: #111;

  margin-bottom: 15px;
}

.sector-content p {
  color: #666;

  line-height: 1.8;

  margin: 0;
}
/*==================================================
Sector Details
==================================================*/

.sector-detail {
  padding: 110px 0;
}

.sector-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  transition: 0.35s;
}

.sector-image:hover {
  transform: scale(1.02);
}

.sector-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ba1515;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.sector-detail h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
}

.sector-detail p {
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 35px;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-tags span {
  padding: 10px 18px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.sector-tags span:hover {
  background: #ba1515;
  color: #fff;
  border-color: #ba1515;
}

@media (max-width: 991px) {
  .sector-detail {
    padding: 80px 0;
  }

  .sector-detail h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .sector-detail h2 {
    font-size: 28px;
  }

  .sector-detail p {
    font-size: 16px;
  }
}

/*==========================================
Why Agile
==========================================*/

.why-sectors {
  padding: 120px 0;

  background: #fff;
}

.why-card {
  background: #fff;

  padding: 40px 30px;

  border-radius: 22px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  text-align: center;

  height: 100%;

  transition: 0.35s;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card i {
  font-size: 44px;

  color: #ba1515;

  margin-bottom: 25px;
}

.why-card h4 {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 15px;
}

.why-card p {
  color: #666;

  line-height: 1.8;

  margin: 0;
}
