/* -------------------------------
            Sec - 1
------------------------------- */

.service-single-sec-1-hero {
  position: relative;

  min-height: 400px;

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

  overflow: hidden;

  background: url("../images/sec-1-img-3.jpg") center center / cover no-repeat;
}

/* Overlay */

.service-single-sec-1-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));

  z-index: 1;
}

/* Content */

.service-single-sec-1-container {
  position: relative;
  z-index: 2;

  width: 100%;

  max-width: 1400px;

  padding: 0 24px;

  text-align: center;
}

.service-single-sec-1-title {
  font-family: var(--secondary-font);

  color: var(--white);

  font-size: clamp(2.25rem, 3vw, 3.5rem);

  line-height: 1.1;

  margin-bottom: 25px;
}

/* Breadcrumb */

.service-single-sec-1-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

.service-single-sec-1-breadcrumb b {
  color: var(--primary);
}

.service-single-sec-1-breadcrumb a {
  color: var(--white);

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

.service-single-sec-1-breadcrumb a:hover {
  color: var(--primary);
}

.service-single-sec-1-breadcrumb span {
  color: var(--white);
}

.service-single-sec-1-breadcrumb i {
  color: var(--primary);

  font-size: 14px;
}

.service-single-sec-1-current {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {
  .service-single-sec-1-hero {
    min-height: 330px;
  }

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

@media (max-width: 576px) {
  .service-single-sec-1-hero {
    min-height: 260px;
  }

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

  .service-single-sec-1-breadcrumb {
    gap: 10px;
  }

  .service-single-sec-1-breadcrumb a,
  .service-single-sec-1-current {
    font-size: 14px;
  }
}

/* -------------------------------
            Sec - 2
------------------------------- */
/*==========================================
    Service Single - Section 2
==========================================*/

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

.service-single-sec-2 .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/*==========================================
    Layout
==========================================*/

.service-single-sec-2-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

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

.service-single-sec-2-image {
    position: relative;
}

.service-single-sec-2-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

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

.service-single-sec-2-content h6 {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.service-single-sec-2-content h2 {
    font-family: var(--secondary-font);
    font-size: 52px;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 12px;
}

.service-single-sec-2-short-description {
    font-size: 20px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 16px;
    font-weight: 500;
	    text-align: justify;
}

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

.service-single-sec-2-description {
    color: #555;
    line-height: 1.4;
    font-size: 17px;
	    text-align: justify;
}

.service-single-sec-2-description p {
    margin-bottom: 8px;
}

.service-single-sec-2-description h2,
.service-single-sec-2-description h3,
.service-single-sec-2-description h4 {
    color: var(--black);
    margin-top: 40px;
    margin-bottom: 18px;
    font-family: var(--secondary-font);
}

.service-single-sec-2-description ul,
.service-single-sec-2-description ol {
    margin: 12px 0;
    padding-left: 25px;
	line-height: 1.2;
}

.service-single-sec-2-description li {
    margin-bottom: 12px;
}

.service-single-sec-2-description img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 30px 0;
}

.service-single-sec-2-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.service-single-sec-2-description table td,
.service-single-sec-2-description table th {
    border: 1px solid #e8e8e8;
    padding: 14px;
}

.service-single-sec-2-description table th {
    background: #fafafa;
    color: var(--black);
    text-align: left;
}

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

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 16px 36px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: .3s;
}

.theme-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
}

/*==========================================
    Tablet
==========================================*/

@media (max-width:1200px) {

    .service-single-sec-2-wrapper {
        gap: 50px;
    }

    .service-single-sec-2-content h2 {
        font-size: 44px;
    }

}

/*==========================================
    Mobile
==========================================*/

@media (max-width:991px) {

    .service-single-sec-2 {
        padding: 80px 0;
    }

    .service-single-sec-2-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-single-sec-2-image {
        order: 1;
    }

    .service-single-sec-2-content {
        order: 2;
    }

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

    .service-single-sec-2-content h2 {
        font-size: 38px;
    }

}

@media (max-width:767px) {

    .service-single-sec-2 {
        padding: 60px 0;
    }

    .service-single-sec-2 .container {
        padding: 0 16px;
    }

    .service-single-sec-2-image img {
        height: 350px;
        border-radius: 18px;
    }

    .service-single-sec-2-content h6 {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .service-single-sec-2-content h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .service-single-sec-2-short-description {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-single-sec-2-description {
        font-size: 16px;
    }

    .theme-btn {
        width: 100%;
    }

}




/*==================================
    Service Single Section 3
==================================*/

.service-single-sec-3 {
    padding: 100px 0;
    background: #fafafa;
}

.service-single-sec-3-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Heading */

.service-single-sec-3-heading {
    text-align: center;
    margin-bottom: 60px;
}

.service-single-sec-3-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-single-sec-3-title {
    font-size: 48px;
    color: var(--black);
    font-family: var(--secondary-font);
}

/* Grid */

.service-single-sec-3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */

.service-single-sec-3-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.service-single-sec-3-card:hover {
    transform: translateY(-10px);
}

.service-single-sec-3-image {
    display: block;
    overflow: hidden;
}

.service-single-sec-3-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
    display: block;
}

.service-single-sec-3-card:hover
.service-single-sec-3-image img {
    transform: scale(1.08);
}

.service-single-sec-3-content {
    padding: 30px;
}

.service-single-sec-3-card-title {
    margin-bottom: 15px;
    font-size: 28px;
    line-height: 1.3;
}

.service-single-sec-3-card-title a {
    color: var(--black);
    text-decoration: none;
}

.service-single-sec-3-card-title a:hover {
    color: var(--primary);
}

.service-single-sec-3-card-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
	    text-align: justify;
}

.service-single-sec-3-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.service-single-sec-3-btn:hover {
    gap: 14px;
}

/* Responsive */

@media (max-width:991px){

    .service-single-sec-3{
        padding:80px 0;
    }

    .service-single-sec-3-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-single-sec-3-title{
        font-size:38px;
    }

}

@media (max-width:767px){

    .service-single-sec-3{
        padding:60px 0;
    }

    .service-single-sec-3-container{
        padding:0 16px;
    }

    .service-single-sec-3-grid{
        grid-template-columns:1fr;
    }

    .service-single-sec-3-title{
        font-size:30px;
    }

    .service-single-sec-3-content{
        padding:24px;
    }

    .service-single-sec-3-card-title{
        font-size:24px;
    }

}