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

.sec-1-hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  padding: 10px;
  overflow: hidden;
}

.sec-1-main-slider {
  border-radius: 12px;
}

.sec-1-main-slider,
.sec-1-main-slider .swiper-wrapper,
.sec-1-main-slider .swiper-slide {
  height: 100%;
}

.sec-1-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.sec-1-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-1-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 20, 25, 0.85) 0%,
    rgba(0, 20, 25, 0.55) 40%,
    rgba(0, 20, 25, 0.15) 100%
  );
  z-index: 1;
}

.sec-1-content {
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 700px;
}

.sec-1-subtitle {
  display: inline-block;
  color: #0ba8a8;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.sec-1-title {
  color: #fff;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.sec-1-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 22px;
  line-height: 1.7;
  max-width: 600px;
  text-align: justify;
}

.sec-1-btn {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  background: #0e8a8a;
  gap: 16px;
  padding: 4px 4px 4px 40px;
  border-radius: 66px;
  font-size: 18px;
}

.sec-1-btn span {
  color: #fff;
  font-weight: 600;
}

.sec-1-btn-icon {
  width: 50px;
  height: 50px;
  background: #042f33;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-1-btn-icon svg {
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}

.sec-1-btn:hover .sec-1-btn-icon svg {
  transform: rotate(45deg);
}

.sec-1-prev,
.sec-1-next {
  position: absolute;
  top: 50%;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
}

.sec-1-prev {
  left: 35px;
}

.sec-1-next {
  right: 35px;
}

.sec-1-thumb-slider {
  position: absolute;
  width: 370px;
  z-index: 20;
  bottom: 120px;
  margin-left: 0px !important;
  left: 36px;
}

.sec-1-thumb-slider .swiper-slide {
  width: 80px !important;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.sec-1-thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #fff;
}

.sec-1-thumb-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-1-explore-circle {
  position: absolute;
  right: 130px;
  bottom: 50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  z-index: 20;
}

.sec-1-circle-arrow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 70px;
}

.sec-1-circle-arrow svg {
  width: 50px;
  height: 50px;
}

.sec-1-circle-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  animation: sec-1-rotate 15s linear infinite;
}

@keyframes sec-1-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .sec-1-title {
    font-size: 60px;
  }

  .sec-1-content {
    left: 40px;
    right: 40px;
  }

  .sec-1-explore-circle {
    display: none;
  }

  .sec-1-prev,
  .sec-1-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .sec-1-title {
    font-size: 50px;
  }

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

  .sec-1-prev,
  .sec-1-next {
    width: 50px;
    height: 50px;
  }

  .sec-1-btn-icon {
    width: 40px;
    height: 40px;
  }

  .sec-1-btn {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .sec-1-thumb-slider .swiper-slide {
    width: 50px !important;
    height: 50px;
    margin-right: 8px !important;
  }

  .sec-1-thumb-slider {
    width: 230px;
    bottom: 66px;
    left: 18px;
  }

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



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

.sec-2-section {
  padding: 90px 0;
  overflow: hidden;
}

.sec-2-container {
  width: 100%;
}

.sec-2-badge {
  width: fit-content;
  margin: 0 auto 70px;

  padding: 14px 32px;

  border: 1px solid #d8dfe2;
  border-radius: 100px;

  font-size: 18px;
  font-weight: 600;
  color: #1d2939;
}

.sec-2-badge span {
  color: #18a3a5;
}

.sec-2-slider {
  position: relative;
  overflow: hidden;
}

.sec-2-track {
  display: flex;
  align-items: center;
  gap: 28px;

  width: max-content;

  animation: sec-2-marquee 30s linear infinite;
}

.sec-2-slider:hover .sec-2-track {
  animation-play-state: paused;
}

.sec-2-card {
  flex-shrink: 0;

  width: 350px;
  height: 180px;
  background: #ffffff9c;
  border-radius: 8px;

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

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.sec-2-card img {
  width: 180px;
  height: auto;
  object-fit: contain;
  filter: brightness(0.6);
  opacity: 0.8;
  transition: all 0.6s ease-in-out;
}

.sec-2-card:hover img {
  filter: brightness(0.4);
  opacity: 1;
}

@keyframes sec-2-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 14px));
  }
}

/* Edge Fade */

.sec-2-slider::before,
.sec-2-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 300px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.sec-2-slider::before {
  left: 0;
  background: linear-gradient(to right, #ecf0f0 0%, transparent 100%);
}

.sec-2-slider::after {
  right: 0;
  background: linear-gradient(to left, #ecf0f0 0%, transparent 100%);
}

@media (max-width: 992px) {
  .sec-2-badge {
    font-size: 18px;
    padding: 12px 24px;
  }

  /* .sec-2-card {
    width: 240px;
    height: 120px;
  } */

  .sec-2-slider::before,
  .sec-2-slider::after {
    width: 150px;
  }
}

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

  /* .sec-2-card {
    width: 200px;
    height: 100px;
  } */

  /* .sec-2-card img {
    width: 130px;
  } */
}




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

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

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

/* ======================
   ROW 1
====================== */

.sec-3-row-1 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 24px;
}

.sec-3-right {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 24px;
}

/* ======================
   ROW 2
====================== */

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

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

.sec-3-card,
.sec-3-team-card,
.sec-3-video {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.sec-3-card {
  min-height: 340px;
  padding: 32px;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sec-3-card-1 {
  /* min-height: 420px; */
}

.sec-3-card-number {
  position: absolute;
  top: 30px;
  right: 30px;

  font-size: 18px;
  font-weight: 700;
  color: #41565d;
}

.sec-3-icon {
  width: 78px;
  height: 78px;

  border-radius: 50%;
  background: #edf1f0;

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

  font-size: 32px;
}

.sec-3-icon svg {
  stroke: #0e8a8a;
  width: 40px;
  height: 40px;
}

.sec-3-card-label {
  font-size: 16px;
  color: #52656b;
  margin-bottom: 10px;
}

.sec-3-card-value {
  font-size: 50px;
  line-height: 1;
  color: #071c22;
}

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

.sec-3-content {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  /* justify-content: center; */
}

.sec-3-tag {
  display: inline-block;
  width: fit-content;

  padding: 12px 18px;

  background: #fff;
  border-radius: 8px;

  color: #1f9fa0;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;

  margin-bottom: 24px;
}

.sec-3-title {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 500;
  color: #071c22;
  margin-bottom: 32px;
}

.sec-3-link {
  display: flex;
  align-items: center;
  gap: 14px;

  width: fit-content;

  text-decoration: none;
  color: #071c22;

  font-weight: 600;
}

.sec-3-link-icon {
  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: #071c22;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}

.sec-3-link:hover .sec-3-link-icon {
  transform: rotate(45deg);
  background: #18a3a5;
}
/* ======================
   VIDEO
====================== */

.sec-3-video {
  position: relative;
  min-height: 340px;
}

.sec-3-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-3-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border: none;
  border-radius: 50%;
  background: rgb(255 255 255 / 0%);
  font-size: 30px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  color: #fff;
}

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

.sec-3-team-card {
  position: relative;
  min-height: 340px;
}

.sec-3-team-bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

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

  background: rgba(14, 150, 150, 0.65);
}

.sec-3-team-members {
  position: absolute;
  top: 25px;
  left: 25px;

  display: flex;
  align-items: center;
}

.sec-3-team-members img,
.sec-3-team-plus {
  width: 58px;
  height: 58px;

  border-radius: 50%;

  border: 3px solid #fff;

  margin-right: -12px;
}

.sec-3-team-plus {
  background: #071c22;
  color: #fff;

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

  font-size: 28px;
}

.sec-3-team-text {
  position: absolute;
  left: 25px;
  bottom: 25px;

  max-width: 300px;
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
}

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

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

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

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

  .sec-3-content {
    padding-left: 0px;
  }
}

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

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

@media (max-width: 768px) {
  .sec-3-title {
    font-size: 32px;
  }

  .sec-3-card-value {
    font-size: 60px;
  }

  .sec-3-team-text {
    font-size: 32px;
  }
	
	.sec-3-section{
	   padding: 52px 0;
	}
}



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

.sec-4-section {
  padding: 120px 0 120px 0;
  overflow: hidden;
}

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

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */

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

  padding: 12px 20px;

  background: #ffffff;

  border-radius: 8px;

  color: #1f9fa0;

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

  letter-spacing: 2px;

  margin-bottom: 25px;
}

.sec-4-title {
  font-size: 64px;
  line-height: 1.1;
  color: #071c22;

  margin-bottom: 16px;
}

.sec-4-name {
  font-size: 42px;
  font-weight: 700;
  color: #071c22;

  margin-bottom: 12px;
}

.sec-4-position {
  font-size: 22px;
  color: #1f9fa0;

  margin-bottom: 8px;
}

.sec-4-divider {
  width: 120px;
  height: 3px;

  background: #1f9fa0;

  margin-bottom: 30px;
}

.sec-4-description {
  font-size: 18px;
  line-height: 1.4;

  color: #52656b;
  text-align: justify;
  margin-bottom: 20px;
}

.sec-4-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  background: #0e8a8a;
  gap: 16px;
  padding: 4px 4px 4px 40px;
  border-radius: 66px;
  font-size: 18px;
}

.sec-4-btn span {
  color: #fff;
  font-weight: 600;
}

.sec-4-btn-icon {
  width: 50px;
  height: 50px;
  background: #042f33;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec-4-btn-icon svg {
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}

.sec-4-btn:hover .sec-4-btn-icon svg {
  transform: rotate(45deg);
}

/* RIGHT */

.sec-4-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.sec-4-image-bg {
  position: absolute;

  width: 420px;
  height: 520px;

  background: linear-gradient(
    135deg,
    rgba(31, 159, 160, 0.18),
    rgba(31, 159, 160, 0.04)
  );

  border-radius: 40px;

  backdrop-filter: blur(10px);

  transform: rotate(-6deg);
}

.sec-4-image {
  position: relative;

  width: 420px;
  height: 520px;

  object-fit: cover;

  border-radius: 40px;

  z-index: 2;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .sec-4-container {
    gap: 50px;
  }

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

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

  .sec-4-image-wrapper {
    order: -1;
  }

  .sec-4-image,
  .sec-4-image-bg {
    width: 100%;
    max-width: 450px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .sec-4-title {
    font-size: 38px;
  }

  .sec-4-name {
    font-size: 30px;
  }

  .sec-4-position {
    font-size: 18px;
  }

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

  .sec-4-image,
  .sec-4-image-bg {
    height: 420px;
  }

  .sec-4-btn-icon {
    width: 40px;
    height: 40px;
  }

  .sec-4-btn {
    font-size: 14px;
  }
	
  .sec-4-section {
	  padding: 40px 0 40px 0;
  }
}



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

.sec-5-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #02161b, #01262d);
  overflow: hidden;
  margin: 0px 10px;
  border-radius: 12px;
}

.sec-5-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 320px;

  background: url("../images/sect-5-overlay-img.svg");
  background-repeat: no-repeat;
}

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

  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 16px;

  position: relative;
  z-index: 2;
}

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

.sec-5-left {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

  padding: 10px 18px;

  border-radius: 8px;

  background: rgba(31, 159, 160, 0.08);

  color: #1f9fa0;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;

  margin-bottom: 24px;
}

.sec-5-title {
  color: #fff;

  font-size: 56px;
  line-height: 1.08;

  font-weight: 600;

  margin-bottom: 35px;
}

.sec-5-title span {
  color: rgba(255, 255, 255, 0.45);
}

/* BUTTON */

.sec-5-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;

  background: #0e8a8a;

  padding: 4px 4px 4px 32px;

  border-radius: 66px;

  font-size: 16px;
}

.sec-5-btn span {
  color: #fff;
  font-weight: 600;
}

.sec-5-btn-icon {
  width: 50px;
  height: 50px;

  background: #042f33;

  color: #fff;

  border-radius: 50%;

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

.sec-5-btn-icon svg {
  width: 20px;
  height: 20px;

  transition: all 0.4s ease;
}

.sec-5-btn:hover .sec-5-btn-icon svg {
  transform: rotate(45deg);
}

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

.sec-5-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sec-5-card {
  display: grid;
  grid-template-columns: 1fr 260px;

  gap: 40px;

  padding: 24px 24px 24px 50px;
  border-radius: 12px;

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

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

  backdrop-filter: blur(10px);

  transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  will-change: transform, opacity, filter;
  max-width: 850px;
}

.sec-5-card:hover {
  transform: translateY(-5px);

  border-color: rgba(31, 159, 160, 0.4);
}

.sec-5-icon {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: rgba(31, 159, 160, 0.08);

  color: #1f9fa0;

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

  font-size: 28px;

  margin-bottom: 20px;
}

.sec-5-card-title {
  color: #fff;

  font-size: 30px;
  line-height: 1.2;

  font-weight: 600;
}

.sec-5-card-description {
  color: rgba(255, 255, 255, 0.65);

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

  margin-bottom: 18px;
}

.sec-5-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

  font-size: 15px;

  margin-bottom: 12px;

  position: relative;

  padding-left: 18px;
}

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

  position: absolute;

  left: 0;
  top: 8px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #1f9fa0;
}

.sec-5-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin: 30px 0;
  max-width: 430px;
  text-align: justify;
}

.sec-5-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 35px;
}

.sec-5-feature {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sec-5-feature h4 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
}

.sec-5-feature p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

/* Project Cards */

.sec-5-card {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  max-width: none;
}

.sec-5-card-image {
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.sec-5-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec-5-card-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #021d228c, #021d2354);
  top: 0;
  left: 0;
}

.sec-5-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec-5-card-tag {
  color: #1f9fa0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: none;
}

.sec-5-card-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.sec-5-card-subtitle {
  color: #cfe3e5;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

.sec-5-card-description {
  margin-bottom: 20px;
  line-height: 1.8;
}

.sec-5-card-link {
  color: #1f9fa0;
  text-decoration: none;
  font-weight: 600;
}

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

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

  .sec-5-left {
    position: relative;
    top: auto;
  }
}

@media (max-width: 992px) {
  .sec-5-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

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

  .sec-5-card {
    padding: 16px;
  }

  .sec-5-card-title {
    font-size: 24px;
  }

  .sec-5-btn {
    font-size: 14px;
  }

  .sec-5-btn-icon {
    width: 40px;
    height: 40px;
  }
}



/* ---------------------- 
        section - 6
-------------------------*/

.sec-6-section {
      padding: 20px 0 140px;
  background: #eef2f1;
}

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

/* Tag */

.sec-6-tag {
  display: inline-block;

  padding: 10px 18px;

  background: #ffffff;

  border-radius: 8px;

  color: #0e8a8a;

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

  letter-spacing: 2px;

  margin-bottom: 50px;
}

/* Top */

.sec-6-top {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;
}

/* Image */

.sec-6-image-wrap {
  position: relative;
}

.sec-6-image {
  width: 100%;
  height: 700px;

  object-fit: cover;

  border-radius: 30px;
}

.sec-6-image-badge {
  position: absolute;

  left: 30px;
  bottom: 30px;

  padding: 14px 24px;

  border-radius: 14px;

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

  backdrop-filter: blur(10px);

  color: #071c22;

  font-weight: 600;
}

/* Content */

.sec-6-title {
  color: #071c22;

  font-size: clamp(42px, 4vw, 68px);

  line-height: 1.05;

  margin-bottom: 30px;

  letter-spacing: -2px;
}

.sec-6-text {
  color: #52656b;

  font-size: 18px;

  line-height: 2;

  margin-bottom: 20px;
}

/* ==========================
   VISION MISSION
========================== */

.sec-6-bottom {
  margin-top: 100px;

  display: flex;
  flex-direction: column;

  gap: 30px;
}

.sec-6-philosophy-card {
  display: grid;

  grid-template-columns: 140px 1fr;

  gap: 40px;

  padding: 50px;

  background: #ffffff;

  border-radius: 0 30px 30px 0;

  border: 1px solid rgba(7, 28, 34, 0.06);

  transition: all 0.4s ease;

  position: relative;
}

.sec-6-philosophy-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: #0e8a8a;

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

.sec-6-philosophy-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

/* Number */

.sec-6-philosophy-number {
  font-size: 90px;

  line-height: 1;

  font-weight: 700;

  color: rgba(14, 138, 138, 0.12);
}

/* Label */

.sec-6-philosophy-label {
  display: inline-block;

  color: #0e8a8a;

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

  letter-spacing: 3px;

  margin-bottom: 15px;
}

/* Title */

.sec-6-philosophy-title {
  color: #071c22;

  font-size: 42px;

  line-height: 1.15;

  margin-bottom: 20px;

  font-weight: 600;
}

/* Text */

.sec-6-philosophy-text {
  color: #52656b;

  font-size: 17px;

  line-height: 1.9;

  margin-bottom: 16px;

  max-width: 900px;
}

.sec-6-philosophy-text:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 1200px) {
  .sec-6-top {
    gap: 50px;
  }

  .sec-6-image {
    height: 600px;
  }
}

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

  .sec-6-image {
    height: 500px;
  }

  .sec-6-title {
    font-size: 44px;
  }

  .sec-6-philosophy-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec-6-philosophy-number {
    font-size: 60px;
  }

  .sec-6-philosophy-title {
    font-size: 30px;
  }
}

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

  .sec-6-image {
    height: 400px;
  }

  .sec-6-title {
    font-size: 34px;
  }

  .sec-6-text {
    font-size: 16px;
  }

  .sec-6-philosophy-card {
    padding: 30px;
  }

  .sec-6-philosophy-title {
    font-size: 24px;
  }

  .sec-6-philosophy-text {
    font-size: 15px;
  }
	
	.sec-6-tag{
		    margin-bottom: 16px;
	}
	
	.sec-6-top {
        gap: 20px;
    }
	
	.sec-6-title , .sec-6-text  {
		    margin-bottom: 12px;
	}
	
	.sec-6-bottom {
    	margin-top: 24px;
	}
}



/* ---------------------- 
        section - 7
-------------------------*/

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

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

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

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

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

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

.sec-7-card {
  position: relative;

  height: 600px;

  border-radius: 30px;

  overflow: hidden;

  background: #000;
}

/* Background Slider */

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

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

/* Overlay */

.sec-7-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 */

.sec-7-content {
  position: absolute;

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

  z-index: 3;
}

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

  object-fit: contain;

  margin-bottom: 25px;
}

.sec-7-company {
  color: #fff;

  font-size: 34px;

  line-height: 1.2;

  margin-bottom: 15px;
}

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

  font-size: 16px;

  margin-bottom: 20px;
}

.sec-7-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) {
  .sec-7-grid {
    grid-template-columns: 1fr;
  }

  .sec-7-card {
    height: 500px;
  }
}

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

  .sec-7-card {
    height: 420px;
  }

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

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

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

  .sec-7-role {
    font-size: 12px;
  }
}



/* ---------------------- 
        section - 8
-------------------------*/

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

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

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

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

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

.sec-8-company {
  color: #0e8a8a;

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

  letter-spacing: 3px;

  display: block;

  margin-bottom: 10px;
}

.sec-8-role {
  color: #071c22;

  font-size: 30px;
}

.sec-8-grid {
  display: grid;

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

  gap: 24px;
}

.sec-8-card {
  position: relative;

  height: 320px;

  overflow: hidden;

  border-radius: 24px;
}

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

  object-fit: cover;

  transition: 0.8s ease;
}

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

.sec-8-overlay {
  position: absolute;
  inset: 0;

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

.sec-8-card-content {
  position: absolute;

  left: 25px;
  bottom: 25px;

  z-index: 2;
}

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

  font-size: 34px;

  margin-bottom: 6px;
}

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

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

  .sec-8-card {
    height: 260px;
  }

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

  .sec-8-card-content h4 {
    font-size: 26px;
  }
	
  .sec-8-section {
	padding: 52px 0;
  }
	
  .sec-8-block {
    margin-bottom: 40px;
  }
}




/* ---------------------- 
        section - 9
-------------------------*/

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

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

/* Header */

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

.sec-9-tag {
  display: inline-block;

  color: #1f9fa0;

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

  letter-spacing: 3px;

  margin-bottom: 18px;
}

.sec-9-title {
  color: #fff;

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

  line-height: 1;
}

/* Grid */

.sec-9-grid {
  display: grid;

  grid-template-columns: 1.5fr 1fr;

  gap: 25px;
}

/* Featured */

.sec-9-featured {
  position: relative;

  min-height: 700px;

  border-radius: 30px;

  overflow: hidden;
}

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

  object-fit: cover;

  transition: 0.8s ease;
}

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

/* Side */

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

.sec-9-card {
  position: relative;

  flex: 1;

  min-height: 337px;

  border-radius: 30px;

  overflow: hidden;
}

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

  object-fit: cover;

  transition: 0.8s ease;
}

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

/* Overlay */

.sec-9-overlay {
  position: absolute;
  inset: 0;

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

/* Content */

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

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

  z-index: 2;
}

.sec-9-role {
  display: inline-block;

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

  margin-bottom: 15px;

  font-size: 14px;

  letter-spacing: 1px;
}

.sec-9-featured-title {
  color: #fff;

  font-size: 52px;

  line-height: 1.1;
}

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

  font-size: 30px;

  margin-bottom: 10px;
}

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

/* Responsive */

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

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

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

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

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

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

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

  .sec-9-featured-content,
  .sec-9-card-content {
    left: 25px;
    right: 25px;
    bottom: 25px;
  }
	
  .sec-9-header {
    margin-bottom: 36px;
  }
}


/* ---------------------- 
        section - 10
-------------------------*/

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

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

/* Header */

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

.sec-10-tag {
  display: inline-block;

  color: #0e8a8a;

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

  letter-spacing: 3px;

  margin-bottom: 18px;
}

.sec-10-title {
  color: #071c22;

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

  line-height: 1;
}

/* Grid */

.sec-10-grid {
  display: grid;

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

  gap: 25px;
}

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

.sec-10-card {
  position: relative;

  min-height: 600px;

  overflow: hidden;

  border-radius: 28px;

  cursor: pointer;
}

.sec-10-image {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 1s ease;
}

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

.sec-10-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 */

.sec-10-content {
  position: absolute;

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

  z-index: 3;
}

.sec-10-category {
  display: inline-block;

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

  font-size: 13px;

  letter-spacing: 2px;

  margin-bottom: 12px;
}

.sec-10-name {
  color: #fff;

  font-size: 38px;

  line-height: 1.1;
}

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

.sec-10-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 */

.sec-10-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 */

.sec-10-upcoming::after {
  content: "";

  position: absolute;
  inset: 0;

  backdrop-filter: blur(2px);

  z-index: 1;
}

/* Content Above Overlay */

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

/* Watermark */

.sec-10-upcoming-title {
  position: relative;

  color: #fff;

  font-size: 40px;

  line-height: 1.1;

  margin-bottom: 40px;
}

.sec-10-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;
}

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

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 3px;

  margin-bottom: 20px;
}

.sec-10-list {
  list-style: none;

  padding: 0;
  margin: 0;
}

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

  font-size: 18px;

  margin-bottom: 18px;

  position: relative;

  padding-left: 20px;
}

.sec-10-list li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 11px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #0e8a8a;
}

.sec-10-divider {
  height: 1px;

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

  margin: 40px 0;
}

.sec-10-associate {
  margin-top: auto;

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

  font-size: 16px;

  line-height: 1.8;
}

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

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

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

@media (max-width: 768px) {
  .sec-10-section {
    padding: 0px 0 90px;
  }

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

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

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

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

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

  .sec-10-card,
  .sec-10-upcoming {
    min-height: 420px;
  }
	
  .sec-10-header {
    margin-bottom: 40px;
  }
	
	.sec-10-section {
		padding: 0px 0 52px;
	}
}

