/* ---------------------- 
        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;
  }
}



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

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

.sec-4-container {
  width: min(1300px, 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: 30px;
  }

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

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

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



/* ---------------------- 
        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: 80px 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: 40px 0 140px 0;
  background: #eef2f1;
}

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

.sec-6-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  border-radius: 8px;
  color: #1f9fa0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.sec-6-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.sec-6-image {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 28px;
}

.sec-6-image-badge {
  position: absolute;
  left: 30px;
  bottom: 30px;

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

  padding: 14px 22px;

  border-radius: 14px;

  font-weight: 600;

  color: #071c22;
}

.sec-6-title {
  font-size: 60px;
  line-height: 1.05;
  color: #071c22;
  margin-bottom: 30px;
}

.sec-6-text {
  color: #52656b;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 17px;
}

.sec-6-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}

.sec-6-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.sec-6-card-dark {
  background: #01262d;
}

.sec-6-card::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(#bbf9ff, transparent, transparent);
  top: -400px;
  right: -400px;
  opacity: 0.4;
}

.sec-6-card-dark::after {
  background: radial-gradient(#02778d, transparent, transparent);
}

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

.sec-6-card-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-6-card-title {
  font-size: 30px;
  margin-bottom: 15px;
  color: #071c22;
}

.sec-6-card-dark .sec-6-card-title {
  color: #fff;
}

.sec-6-card-text {
  color: #52656b;
  line-height: 1.8;
}

.sec-6-card-dark .sec-6-card-text {
  color: #cccccc;
}

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

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

  .sec-6-bottom {
    grid-template-columns: 1fr;
  }

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

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

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

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