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

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

  min-height: 360px;

  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-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-sec-1-container {
  position: relative;
  z-index: 2;

  width: 100%;

  max-width: 1400px;

  padding: 0 24px;

  text-align: center;
}

.service-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-sec-1-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 18px;

  flex-wrap: wrap;
}

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

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

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s;
}

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

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

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

  font-size: 14px;
}

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

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

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

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

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

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

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

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






/* -------------------------------
            Sec - 2
------------------------------- */

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

.service-sec-2-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================
   HEADING
========================== */

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

.service-sec-2-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 20px;
  font-weight: 600;

  margin-bottom: 18px;
}

.service-sec-2-title {
  font-family: var(--secondary-font);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 900;
}

.service-sec-2-description {
  max-width: 700px;
  margin: 0 auto;

  color: #6b7280;

  font-size: 17px;
  line-height: 1.8;
}

/* ==========================
   GRID
========================== */

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

/* ==========================
   CARD
========================== */

.service-sec-2-card {
  position: relative;
  margin-bottom: 50px;
  height: 520px;
}

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

  object-fit: cover;

  border-radius: 18px;
  transition: transform 0.8s ease;
}

/* ==========================
   DARK OVERLAY
========================== */

.service-sec-2-overlay {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

/* ==========================
   GLASS CONTENT
========================== */

.service-sec-2-content {
  position: absolute;

  top: -50px;
  left: 22px;
  right: 22px;
  padding: 36px;
  border-radius: 16px;
  background: rgb(0 0 0 / 40%);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  z-index: 2;
}

.service-sec-2-card-title {
  font-family: var(--secondary-font);

  color: var(--white);

  font-size: 2rem;

  margin-bottom: 18px;
}

.service-sec-2-card-text {
  color: rgba(255, 255, 255, 0.9);

  font-size: 16px;
  line-height: 1.9;

  margin-bottom: 24px;
}

.service-sec-2-link {
  color: var(--primary);

  text-decoration: none;

  font-size: 20px;
  font-weight: 700;

  transition: 0.3s;
}

.service-sec-2-link:hover {
  color: var(--primary-light);
}

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

@media (max-width: 1200px) {
  .service-sec-2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

  .service-sec-2-card {
    height: 480px;
  }

  .service-sec-2-content {
    padding: 28px;
  }

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

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

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

  .service-sec-2-card {
    height: 420px;
  }

  .service-sec-2-content {
    /* top: 16px; */
    left: 16px;
    right: 16px;

    padding: 22px;
  }

  .service-sec-2-card-text {
    font-size: 15px;
  }
}



/* -------------------------------
            Sec - 3
------------------------------- */

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

.service-sec-3-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* ==========================
   LEFT
========================== */

.service-sec-3-subtitle {
  display: inline-block;

  color: var(--primary);

  font-size: 22px;
  font-weight: 600;

  margin-bottom: 20px;
}

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

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

  line-height: 1.1;

  color: var(--black);

  margin-bottom: 30px;
}

.service-sec-3-description {
  color: #687686;

  line-height: 1.9;

  font-size: 18px;

  margin-bottom: 40px;

  max-width: 550px;
}

/* ==========================
   FAQ
========================== */

.service-sec-3-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-sec-3-item {
  background: var(--white);

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 2px 8px rgb(0 0 0 / 27%);
}

/* Active */

.service-sec-3-item.active {
  box-shadow: none;
}

.service-sec-3-item.active .service-sec-3-question {
  background: var(--primary);
  color: var(--white);
}

.service-sec-3-item.active .service-sec-3-question i {
  color: var(--white);
  transform: rotate(180deg);
}

/* Question */

.service-sec-3-question {
  width: 100%;

  border: none;
  outline: none;

  background: var(--white);

  padding: 28px 40px;

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

  cursor: pointer;

  font-family: inherit;

  font-size: 1.3rem;
  font-weight: 600;

  color: #42526b;

  transition: 0.3s;
}

.service-sec-3-question i {
  color: var(--primary);

  transition: 0.4s;
}

/* Answer */

.service-sec-3-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.4s ease;

  background: transparent;
}

.service-sec-3-answer p {
  padding: 16px 40px 30px;
  color: #687686;
  line-height: 1.9;
  border: 1px solid #73737321;
  border-radius: 0px 0px 14px 14px;
  font-size: 17px;
}

/* Active Answer */

.service-sec-3-item.active .service-sec-3-answer {
  max-height: 300px;
}

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

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

  .service-sec-3-description {
    max-width: 100%;
  }
}

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

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

  .service-sec-3-question {
    padding: 22px 24px;

    font-size: 1.05rem;
  }

  .service-sec-3-answer p {
    padding: 12px 24px 24px;
  }
}

@media (max-width: 576px) {
  .service-sec-3-container {
    padding: 0 20px;
  }

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

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



/* -------------------------------
            Sec - 4
------------------------------- */

.service-sec-4-testimonials {
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}

/* Background Shape */

.service-sec-4-bg-shape {
  position: absolute;

  left: 0;

  top: 0;
  width: 45%;
  bottom: 0;
  height: 100%;

  background: rgba(0, 0, 0, 0.03);

  border-radius: 0 20px 20px 0;
}

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

  max-width: 1400px;
  margin: auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ==========================
   LEFT SLIDER
========================== */

.service-sec-4-slider-area {
  overflow: hidden;
}

.service-sec-4-slider {
  width: 100%;
}

.service-sec-4-slider .swiper-slide {
  height: auto;
}

.service-sec-4-card {
  background: #ff6a25;

  border-radius: 18px;

  min-height: 420px;
  height: 100%;
  padding: 45px 35px;

  text-align: center;

  color: var(--white);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-sec-4-avatar {
  width: 72px;
  height: 72px;

  border-radius: 50%;

  object-fit: cover;

  margin: 0 auto 20px;
}

.service-sec-4-stars {
  color: #ffe600;

  font-size: 18px;

  letter-spacing: 4px;

  margin-bottom: 20px;
}

.service-sec-4-name {
  font-family: var(--secondary-font);

  font-size: 2rem;

  margin-bottom: 8px;
}

.service-sec-4-role {
  display: block;

  margin-bottom: 30px;

  opacity: 0.9;
}

.service-sec-4-card p {
  line-height: 1.9;
}

/* ==========================
   RIGHT CARD
========================== */

.service-sec-4-info-card {
  width: 450px;
  height: 500px;

  border-radius: 20px;

  overflow: hidden;

  flex-shrink: 0;

  position: relative;

  background: url("../images/sec-1-img-1.avif") center center / cover;
}

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

  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55));
  backdrop-filter: blur(4px);
}

.service-sec-4-content {
  position: relative;
  z-index: 2;

  height: 100%;

  padding: 60px 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  text-align: end;
  color: var(--white);
}

.service-sec-4-subtitle {
  color: var(--primary);

  font-size: 22px;
  font-weight: 600;

  margin-bottom: 15px;
}

.service-sec-4-title {
  font-family: var(--secondary-font);
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.service-sec-4-content p {
  line-height: 1.6;
  margin-bottom: 35px;
  font-size: 14px;
}

.service-sec-4-btn {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  gap: 6px;
  color: var(--white);

  text-decoration: none;

  padding: 16px 30px;

  border-radius: 10px;

  font-weight: 600;
}

.service-sec-4-btn svg {
  width: 20px;
  height: 20px;
  transition: all 0.6s ease;
}

.service-sec-4-btn:hover svg {
  transform: translateX(4px);
}

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

@media (max-width: 1200px) {
  .service-sec-4-container {
    flex-direction: column-reverse;
  }

  .service-sec-4-slider-area,
  .service-sec-4-info-card {
    width: 100%;
    max-width: 700px;
  }

  .service-sec-4-bg-shape {
    display: none;
  }
  .service-sec-4-content {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .service-sec-4-testimonials {
    margin-bottom: 60px;
  }

  .service-sec-4-card {
    min-height: auto;
    padding: 35px 25px;
  }

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

  .service-sec-4-content {
    padding: 40px 30px;
  }

  .service-sec-4-info-card {
    height: 420px;
  }
}
