/*--------------------------------
            Section 1
--------------------------------*/

.service-sec-1 {
  padding: 80px 0;
  background: var(--white);
}

.service-sec-1-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

/*=========================
        Image
=========================*/

.service-sec-1-image {
  overflow: hidden;
  border-radius: 24px;
}

.service-sec-1-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: 0.4s;
}

.service-sec-1-image:hover img {
  transform: scale(1.05);
}

/*=========================
        Content
=========================*/

.service-sec-1-tag {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 999px;

  background: rgba(26, 147, 186, 0.08);

  color: var(--primary);

  font-size: 0.9rem;

  font-weight: 600;
}

.service-sec-1-title {
  margin-top: 20px;

  font-size: 2.8rem;

  color: var(--black);

  line-height: 1.2;
}

.service-sec-1-description {
  margin-top: 24px;

  color: var(--text);

  line-height: 1.9;
}

.service-sec-1-list {
  margin-top: 35px;

  display: grid;

  gap: 18px;
}

.service-sec-1-item {
  display: flex;

  align-items: center;

  gap: 14px;

  font-weight: 500;

  color: var(--black);
}

.service-sec-1-item i {
  color: var(--primary);
}

.service-sec-1-btn {
  margin-top: 40px;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  height: 54px;

  padding: 0 30px;

  border-radius: 14px;

  background: var(--primary);

  color: #fff;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.service-sec-1-btn:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

/*=========================
        Responsive
=========================*/

@media (max-width: 992px) {
  .service-sec-1-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-sec-1 {
    padding: 60px 0;
  }

  .service-sec-1-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .service-sec-1-title {
    font-size: 1.7rem;
  }
}




/*--------------------------------
            Section 2
--------------------------------*/

.service-sec-2 {
  padding: 80px 0;
  background: var(--background);
}

.service-sec-2-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;
}

/*====================================
        Heading
====================================*/

.service-sec-2-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.service-sec-2-tag {
  display: inline-block;
  padding: 8px 18px;

  background: rgba(26, 147, 186, 0.08);
  color: var(--primary);

  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 600;
}

.service-sec-2-title {
  margin-top: 20px;

  font-size: 2.8rem;

  color: var(--black);

  line-height: 1.2;
}

.service-sec-2-description {
  margin-top: 20px;

  color: var(--text);

  line-height: 1.9;
}

/*====================================
        Service Item
====================================*/

.service-sec-2-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;

  margin-bottom: 90px;
}

.service-sec-2-service:last-child {
  margin-bottom: 0;
}

/* Alternate Layout */

.service-sec-2-reverse .service-sec-2-image {
  order: 2;
}

.service-sec-2-reverse .service-sec-2-content {
  order: 1;
}

/*====================================
        Image
====================================*/

.service-sec-2-image {
  overflow: hidden;
  border-radius: 24px;
}

.service-sec-2-image img {
  width: 100%;
  height: 420px;

  display: block;

  object-fit: cover;

  transition: 0.4s;
}

.service-sec-2-image:hover img {
  transform: scale(1.05);
}

/*====================================
        Content
====================================*/

.service-sec-2-content h3 {
  font-size: 2rem;

  color: var(--black);

  margin-bottom: 20px;
}

.service-sec-2-content p {
  color: var(--text);

  line-height: 1.9;

  margin-bottom: 30px;
}

/*====================================
        Features
====================================*/

.service-sec-2-content ul {
  list-style: none;

  display: grid;

  gap: 16px;

  margin-bottom: 35px;
}

.service-sec-2-content li {
  display: flex;

  align-items: center;

  gap: 14px;

  color: var(--black);

  font-weight: 500;
}

.service-sec-2-content li::before {
  content: "\f058";

  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  color: var(--primary);

  font-size: 1rem;
}

/*====================================
        Button
====================================*/

.service-sec-2-content a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  height: 52px;

  padding: 0 28px;

  border-radius: 14px;

  text-decoration: none;

  background: var(--primary);

  color: var(--white);

  font-weight: 600;

  transition: 0.3s;
}

.service-sec-2-content a:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/*====================================
        Responsive
====================================*/

@media (max-width: 1100px) {
  .service-sec-2-service {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-sec-2-reverse .service-sec-2-image,
  .service-sec-2-reverse .service-sec-2-content {
    order: initial;
  }

  .service-sec-2-image img {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .service-sec-2 {
    padding: 60px 0;
  }

  .service-sec-2-heading {
    margin-bottom: 50px;
  }

  .service-sec-2-title {
    font-size: 2rem;
  }

  .service-sec-2-service {
    margin-bottom: 60px;
  }

  .service-sec-2-content h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 576px) {
  .service-sec-2-title {
    font-size: 1.7rem;
  }

  .service-sec-2-content h3 {
    font-size: 1.4rem;
  }

  .service-sec-2-image img {
    height: 260px;
  }
}
