/* ---------------------- 
        section - 1
-------------------------*/

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

  padding: 180px 0 140px;

  background: linear-gradient(135deg, #02161b 0%, #03232a 50%, #043038 100%);

  overflow: hidden;

  margin: 10px 10px 0px;
  border-radius: 16px;
}

/* Decorative Lines */

.service-sec-1-top-line {
  position: absolute;

  top: 70px;
  right: 0;

  width: 400px;
  height: 1px;

  background: rgba(255, 255, 255, 0.08);
}

.service-sec-1-bottom-line {
  position: absolute;

  bottom: 70px;
  left: 0;

  width: 400px;
  height: 1px;

  background: rgba(255, 255, 255, 0.08);
}

.service-sec-1-container {
  width: min(1200px, 90%);
  margin: auto;

  text-align: center;

  position: relative;
  z-index: 2;
}

/* Small Label */

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

  color: #18b3b3;

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

  letter-spacing: 3px;

  margin-bottom: 25px;
}

/* Title */

.service-sec-1-title {
  color: #fff;

  font-size: clamp(60px, 8vw, 120px);

  line-height: 1;

  font-weight: 600;

  letter-spacing: -4px;

  margin-bottom: 30px;
}

/* Breadcrumb */

.service-sec-1-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 10px 24px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-sec-1-breadcrumb a {
  text-decoration: none;

  color: rgba(255, 255, 255, 0.7);
}

.service-sec-1-breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.service-sec-1-breadcrumb span:last-child {
  color: #fff;
  font-weight: 600;
}

/* Background Text */

.service-sec-1-section::before {
  content: "SERVICE";

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  font-size: clamp(180px, 22vw, 380px);

  font-weight: 700;

  color: #fff;

  opacity: 0.03;

  letter-spacing: -10px;

  pointer-events: none;

  white-space: nowrap;
}

/* Mobile */

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

  .service-sec-1-title {
    font-size: 54px;
  }

  .service-sec-1-top-line,
  .service-sec-1-bottom-line {
    width: 120px;
  }
}





/* ---------------------- 
        section - 2
-------------------------*/

.service-sec-2-section {
  padding: 140px 0 140px 0;
  background: #eef2f1;
}

.service-sec-2-container {
  width: min(1500px, 90%);
  margin: auto;
}

.service-sec-2-header {
  text-align: center;
  margin-bottom: 60px;
}

.service-sec-2-tag {
  color: #0e8a8a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}

.service-sec-2-title {
  font-size: clamp(40px, 5vw, 70px);
  color: #071c22;
  margin-top: 15px;
}

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

.service-sec-2-card {
  position: relative;

  height: 600px;

  border-radius: 30px;

  overflow: hidden;

  background: #000;
}

/* Background Slider */

.service-sec-2-bg-slider,
.service-sec-2-bg-slider .swiper-wrapper,
.service-sec-2-bg-slider .swiper-slide {
  height: 100%;
}

.service-sec-2-bg-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

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

  background: linear-gradient(
    to top,
    rgba(2, 22, 27, 0.95),
    rgba(2, 22, 27, 0.55),
    rgba(2, 22, 27, 0.15)
  );

  z-index: 2;
}

/* Content */

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

  left: 40px;
  right: 40px;
  bottom: 40px;

  z-index: 3;
}

.service-sec-2-logo {
  width: auto;
  max-width: 260px;
  height: 90px;

  object-fit: contain;

  margin-bottom: 25px;
}

.service-sec-2-company {
  color: #fff;

  font-size: 34px;

  line-height: 1.2;

  margin-bottom: 15px;
}

.service-sec-2-group {
  color: rgba(255, 255, 255, 0.75);

  font-size: 16px;

  margin-bottom: 20px;
}

.service-sec-2-role {
  display: inline-flex;

  padding: 12px 20px;

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(15px);

  color: #fff;

  font-size: 14px;
}

/* Responsive */

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

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

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

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

  .service-sec-2-content {
    left: 25px;
    right: 25px;
    bottom: 25px;
  }

  .service-sec-2-logo {
    max-width: 180px;
    height: 60px;
  }

  .service-sec-2-company {
    font-size: 24px;
  }

  .service-sec-2-role {
    font-size: 12px;
  }
	
  .service-sec-2-header {
    margin-bottom: 24px;
}
}



/* ---------------------- 
        section - 3
-------------------------*/

.service-sec-3-section {
  padding: 120px 0 0px;
  background: #eef2f1;
}

.service-sec-3-container {
  width: min(1500px, 90%);
  margin: auto;
}

.service-sec-3-block {
  margin-bottom: 80px;
}

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

.service-sec-3-block-header {
  margin-bottom: 30px;
}

.service-sec-3-company {
  color: #0e8a8a;

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

  letter-spacing: 3px;

  display: block;

  margin-bottom: 10px;
}

.service-sec-3-role {
  color: #071c22;

  font-size: 30px;
}

.service-sec-3-grid {
  display: grid;

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

  gap: 24px;
}

.service-sec-3-card {
  position: relative;

  height: 320px;

  overflow: hidden;

  border-radius: 24px;
}

.service-sec-3-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.8s ease;
}

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

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

  background: linear-gradient(
    to top,
    rgba(2, 22, 27, 0.9),
    rgba(2, 22, 27, 0.2),
    transparent
  );
}

.service-sec-3-card-content {
  position: absolute;

  left: 25px;
  bottom: 25px;

  z-index: 2;
}

.service-sec-3-card-content h4 {
  color: #fff;

  font-size: 34px;

  margin-bottom: 6px;
}

.service-sec-3-card-content span {
  color: rgba(255, 255, 255, 0.75);
}

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

  .service-sec-3-card {
    height: 260px;
  }

  .service-sec-3-role {
    font-size: 24px;
  }

  .service-sec-3-card-content h4 {
    font-size: 26px;
  }
	
  .service-sec-3-section {
    padding: 52px 0 0px;
  }

  .service-sec-3-block {
    margin-bottom: 40px;
  }
}



/* ---------------------- 
        section - 4
-------------------------*/

.service-sec-4-section {
  padding: 140px 0;
  background: #071c22;
  margin: 0px 10px;
  border-radius: 12px;
}

.service-sec-4-container {
  width: min(1500px, 90%);
  margin: auto;
}

/* Header */

.service-sec-4-header {
  text-align: center;
  margin-bottom: 70px;
}

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

  color: #1f9fa0;

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

  letter-spacing: 3px;

  margin-bottom: 18px;
}

.service-sec-4-title {
  color: #fff;

  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;
}

/* Grid */

.service-sec-4-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr;

  gap: 25px;
}

/* Featured */

.service-sec-4-featured {
  position: relative;

  min-height: 700px;

  border-radius: 30px;

  overflow: hidden;
}

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

  object-fit: cover;

  transition: 0.8s ease;
}

.service-sec-4-featured:hover .service-sec-4-featured-image {
  transform: scale(1.05);
}

/* Side */

.service-sec-4-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-sec-4-card {
  position: relative;

  flex: 1;

  min-height: 337px;

  border-radius: 30px;

  overflow: hidden;
}

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

  object-fit: cover;

  transition: 0.8s ease;
}

.service-sec-4-card:hover .service-sec-4-card-image {
  transform: scale(1.05);
}

/* Overlay */

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

  background: linear-gradient(
    to top,
    rgba(2, 22, 27, 0.95),
    rgba(2, 22, 27, 0.35),
    transparent
  );
}

/* Content */

.service-sec-4-featured-content,
.service-sec-4-card-content {
  position: absolute;

  left: 35px;
  right: 35px;
  bottom: 35px;

  z-index: 2;
}

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

  color: rgba(255, 255, 255, 0.75);

  margin-bottom: 15px;

  font-size: 14px;

  letter-spacing: 1px;
}

.service-sec-4-featured-title {
  color: #fff;

  font-size: 52px;

  line-height: 1.1;
}

.service-sec-4-card-content h4 {
  color: #fff;

  font-size: 30px;

  margin-bottom: 10px;
}

.service-sec-4-card-content span {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */

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

  .service-sec-4-featured {
    min-height: 500px;
  }

  .service-sec-4-card {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .service-sec-4-section {
	  padding: 52px 0;
  }

  .service-sec-4-title {
    font-size: 36px;
  }

  .service-sec-4-featured-title {
    font-size: 32px;
  }

  .service-sec-4-card-content h4 {
    font-size: 24px;
  }

  .service-sec-4-featured-content,
  .service-sec-4-card-content {
    left: 25px;
    right: 25px;
    bottom: 25px;
  }
	
	.service-sec-4-header {
		margin-bottom: 40px;
	}
}



/* ---------------------- 
        section - 5
-------------------------*/

.service-sec-5-section {
  padding: 140px 0;
  background: #eef2f1;
}

.service-sec-5-container {
  width: min(1500px, 90%);
  margin: auto;
}

/* Header */

.service-sec-5-header {
  text-align: center;
  margin-bottom: 70px;
}

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

  color: #0e8a8a;

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

  letter-spacing: 3px;

  margin-bottom: 18px;
}

.service-sec-5-title {
  color: #071c22;

  font-size: clamp(42px, 5vw, 72px);

  line-height: 1;
}

/* Grid */

.service-sec-5-grid {
  display: grid;

  grid-template-columns: 1fr 1fr 0.9fr;

  gap: 25px;
}

/* ==================================
   IMAGE CARDS
================================== */

.service-sec-5-card {
  position: relative;

  min-height: 600px;

  overflow: hidden;

  border-radius: 28px;

  cursor: pointer;
}

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

  object-fit: cover;

  transition: 1s ease;
}

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

.service-sec-5-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(2, 22, 27, 0.96),
    rgba(2, 22, 27, 0.45),
    transparent
  );
}

/* Content */

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

  left: 35px;
  right: 35px;
  bottom: 35px;

  z-index: 3;
}

.service-sec-5-category {
  display: inline-block;

  color: rgba(255, 255, 255, 0.75);

  font-size: 13px;

  letter-spacing: 2px;

  margin-bottom: 12px;
}

.service-sec-5-name {
  color: #fff;

  font-size: 38px;

  line-height: 1.1;
}

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

.service-sec-5-upcoming {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  padding: 40px;

  min-height: 600px;

  display: flex;
  flex-direction: column;

  background-image: url("../images/upcoming-project.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark Overlay */

.service-sec-5-upcoming::before {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(2, 22, 27, 0.75),
    rgba(2, 22, 27, 0.95)
  );

  z-index: 1;
}

/* Soft Blur */

.service-sec-5-upcoming::after {
  content: "";

  position: absolute;
  inset: 0;

  backdrop-filter: blur(2px);

  z-index: 1;
}

/* Content Above Overlay */

.service-sec-5-upcoming-tag,
.service-sec-5-upcoming-title,
.service-sec-5-list,
.service-sec-5-divider,
.service-sec-5-associate {
  position: relative;
  z-index: 3;
}

/* Watermark */

.service-sec-5-upcoming-title {
  position: relative;

  color: #fff;

  font-size: 40px;

  line-height: 1.1;

  margin-bottom: 40px;
}

.service-sec-5-upcoming-title::before {
  content: "FUTURE";

  position: absolute;

  top: -50px;
  left: 0;

  font-size: 90px;

  font-weight: 700;

  letter-spacing: -4px;

  color: rgba(255, 255, 255, 0.04);

  pointer-events: none;
}

.service-sec-5-upcoming-tag {
  color: #0e8a8a;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 20px;
}

.service-sec-5-list {
  list-style: none;

  padding: 0;
  margin: 0;
}

.service-sec-5-list li {
  color: rgba(255, 255, 255, 0.85);

  font-size: 18px;

  margin-bottom: 18px;

  position: relative;

  padding-left: 20px;
}

.service-sec-5-list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 11px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #0e8a8a;
}

.service-sec-5-divider {
  height: 1px;

  background: rgba(255, 255, 255, 0.1);

  margin: 40px 0;
}

.service-sec-5-associate {
  margin-top: auto;

  color: rgba(255, 255, 255, 0.9);

  font-size: 16px;

  line-height: 1.8;
}

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

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

  .service-sec-5-card,
  .service-sec-5-upcoming {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .service-sec-5-section {
    padding: 52px 0;
  }

  .service-sec-5-title {
    font-size: 36px;
  }

  .service-sec-5-name {
    font-size: 28px;
  }

  .service-sec-5-upcoming-title {
    font-size: 30px;
  }

  .service-sec-5-upcoming-title::before {
    font-size: 60px;
    top: -30px;
  }

  .service-sec-5-list li {
    font-size: 16px;
  }

  .service-sec-5-card,
  .service-sec-5-upcoming {
    min-height: 420px;
  }
	
  }
	.service-sec-5-header {
			margin-bottom: 40px;
	}
}
