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

.sec-1 {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  display: flex;
}

/* ===================================
   Background
=================================== */

.sec-1-bg {
  position: absolute;
  inset: 0;
}

.sec-1-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  opacity: 0;
  transition: opacity 1.5s ease;
}

/* Replace with your images */

.sec-1-slide:nth-child(1) {
  background-image: url("../images/sec-1-img-1.png");
}

.sec-1-slide:nth-child(2) {
  background-image: url("../images/sec-1-img-2.jpg");
}

.sec-1-slide:nth-child(3) {
  background-image: url("../images/sec-1-img-3.jpg");
}

.sec-1-slide.active {
  opacity: 1;
}

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

  background: linear-gradient(rgba(10, 25, 35, 0.75), rgba(10, 25, 35, 0.6));
}

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

.sec-1-container {
  position: relative;
  z-index: 5;

  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;

  height: 100%;

  padding: 16px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sec-1-subtitle {
  width: max-content;

  color: white;

  letter-spacing: 3px;
  text-transform: uppercase;

  font-size: 0.9rem;

  padding: 10px 18px;

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

  backdrop-filter: blur(10px);

  border-radius: 50px;
}

.sec-1-title {
  margin-top: 22px;

  color: white;

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

  line-height: 1.1;

  max-width: 750px;
}

.sec-1-title span {
  color: var(--primary-light);
  text-transform: uppercase;
}

.sec-1-description {
  margin-top: 25px;

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

  font-size: 1.1rem;

  line-height: 1.9;

  max-width: 720px;
}

.sec-1-buttons {
  display: flex;
  gap: 18px;

  margin-top: 45px;
}

.sec-1-btn-primary {
  text-decoration: none;

  background: var(--primary);

  color: white;

  padding: 16px 34px;

  border-radius: 50px;

  transition: 0.35s;
}

.sec-1-btn-primary:hover {
  background: var(--primary-dark);

  transform: translateY(-4px);
}

.sec-1-btn-secondary {
  text-decoration: none;

  color: white;

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

  padding: 16px 34px;

  border-radius: 50px;

  backdrop-filter: blur(10px);

  transition: 0.35s;
}

.sec-1-btn-secondary:hover {
  background: white;

  color: var(--black);
}

/* ===================================
   Responsive
=================================== */

@media (max-width: 900px) {
  .sec-1-title {
    font-size: 3rem;
  }

  .sec-1-description {
    font-size: 1rem;
  }

  .sec-1-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .sec-1-subtitle {
    display: none;
  }

  .sec-1 {
    min-height: 578px;
  }

  .sec-1-btn-secondary {
    display: none;
  }
}







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

.sec-2 {
  padding: 100px 0;
}

.sec-2-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

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

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

  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;

  text-transform: uppercase;
}

.sec-2-title {
  margin-top: 18px;

  font-size: 3rem;
  line-height: 1.2;

  color: var(--black);
}

.sec-2-title span {
  color: var(--primary);
}

.sec-2-description {
  margin-top: 25px;

  color: var(--text);

  line-height: 1.9;

  font-size: 1.05rem;
}

/* ==========================
   Features
========================== */

.sec-2-features {
  margin-top: 35px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sec-2-feature {
  padding: 16px 18px;

  background: white;

  border: 1px solid var(--border);

  border-radius: 12px;

  font-weight: 600;

  transition: 0.3s;
}

.sec-2-feature:hover {
  border-color: var(--primary);

  transform: translateY(-4px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

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

.sec-2-button {
  display: inline-flex;

  margin-top: 40px;

  padding: 16px 34px;

  text-decoration: none;

  color: white;

  background: var(--primary);

  border-radius: 50px;

  transition: 0.35s;
}

.sec-2-button:hover {
  background: var(--primary-dark);

  transform: translateY(-3px);
}

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

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

.sec-2-image img {
  width: 100%;

  display: block;

  border-radius: 24px;

  object-fit: cover;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Decorative Card */

.sec-2-image::after {
  content: "15+ Years of Trusted Service";

  position: absolute;

  left: -35px;
  bottom: 40px;

  background: var(--primary);

  color: white;

  padding: 18px 24px;

  border-radius: 16px;

  font-weight: 700;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* ==========================
   Responsive
========================== */

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

    gap: 50px;
  }

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

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

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

  .sec-2-image::after {
    left: 20px;
    bottom: 20px;
  }
}



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

.sec-3 {
  padding: 100px 0;

  background: white;
}

.sec-3-container {
  width: calc(100% - 40px);
  max-width: 1400px;

  margin: auto;
}

/*==========================
    Header
===========================*/

.sec-3-header {
  display: flex;
  justify-content: space-between;
  align-items: end;

  margin-bottom: 50px;

  gap: 20px;
}

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

  font-size: 0.9rem;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.sec-3-title {
  margin-top: 14px;

  font-size: 2.8rem;

  color: var(--black);
}

.sec-3-view {
  text-decoration: none;

  color: var(--primary);

  font-weight: 700;

  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.sec-3-view:hover {
  color: var(--primary-dark);
}

.sec-3-view svg {
  width: 16px;
  height: 16px;
  transition: all 0.4s ease;
}

.sec-3-view:hover svg {
  transform: translateX(4px);
}

/*==========================
    Card
===========================*/

.sec-3-card {
  background: white;

  border: 1px solid var(--border);

  border-radius: 18px;

  overflow: hidden;

  transition: 0.35s;
}

.sec-3-image {
  height: 260px;

  overflow: hidden;

  background: #f6f8fa;
}

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

  object-fit: cover;

  transition: 0.5s;
}

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

.sec-3-name {
  padding: 22px;

  text-align: center;

  color: var(--black);

  font-size: 1.15rem;
}

/*==========================
    Swiper
===========================*/

.sec-3-slider {
  overflow: hidden;
}

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

.sec-3-slider .swiper-slide {
  text-decoration: none;
  color: inherit;
  display: block;
}

/*==========================
    Responsive
===========================*/

@media (max-width: 768px) {
  .sec-3-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .sec-3-image {
    height: 220px;
  }
}



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

.sec-4 {
  padding: 100px 0;
}

.sec-4-container {
  width: calc(100% - 40px);
  max-width: 1400px;

  margin: auto;
}

/*==========================
    Header
==========================*/

.sec-4-header {
  text-align: center;

  margin-bottom: 70px;
}

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

  font-size: 0.9rem;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-weight: 700;
}

.sec-4-title {
  margin-top: 18px;

  font-size: 2.8rem;

  color: var(--black);
}

/*==========================
    List
==========================*/

.sec-4-list {
  display: flex;

  flex-direction: column;
}

.sec-4-item {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 40px;

  padding: 38px 10px;

  text-decoration: none;

  color: inherit;

  border-bottom: 1px solid var(--border);

  transition: 0.35s;
}

.sec-4-item:first-child {
  border-top: 1px solid var(--border);
}

.sec-4-item:hover {
  padding-left: 25px;

  background: #f8fbfc;
}

.sec-4-left {
  display: flex;

  align-items: flex-start;

  gap: 35px;
}

.sec-4-number {
  font-size: 1.6rem;

  color: var(--primary);

  font-weight: 700;

  min-width: 45px;
}

.sec-4-name {
  font-size: 1.7rem;

  color: var(--black);
}

.sec-4-text {
  margin-top: 10px;

  max-width: 700px;

  line-height: 1.8;

  color: var(--text);
}

.sec-4-arrow {
  font-size: 1.2rem;

  color: var(--primary);

  transition: 0.35s;

  display: none;
}

.sec-4-item:hover .sec-4-arrow {
  transform: translateX(10px);
}

/*==========================
    Responsive
==========================*/

@media (max-width: 768px) {
  .sec-4-arrow {
    display: none;
  }

  .sec-4-left {
    flex-direction: column;

    gap: 15px;
  }

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

  .sec-4-name {
    font-size: 1.4rem;
  }
}



/* -------------------------------
            Sec - 5
------------------------------- */

.sec-5 {
  padding: 100px 0;

  background: var(--white);
}

.sec-5-container {
  width: calc(100% - 40px);
  max-width: 1400px;

  margin: auto;
}

/*=========================
    Header
=========================*/

.sec-5-header {
  max-width: 720px;

  margin: 0 auto 60px;

  text-align: center;
}

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

  font-size: 0.9rem;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-weight: 700;
}

.sec-5-title {
  margin-top: 18px;

  font-size: 2.8rem;

  color: var(--black);
}

.sec-5-description {
  margin-top: 18px;

  line-height: 1.8;

  color: var(--text);
}

/*=========================
    Grid
=========================*/

.sec-5-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 25px;
}

/*=========================
    Card
=========================*/

.sec-5-card {
  position: relative;

  padding: 35px;

  background: var(--background);

  border: 1px solid var(--border);

  border-radius: 20px;

  transition: 0.35s;

  overflow: hidden;
}

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

  border-color: var(--primary);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.sec-5-number {
  width: 60px;
  height: 60px;

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

  border-radius: 50%;

  background: var(--primary);

  color: white;

  font-size: 1.1rem;

  font-weight: 700;

  margin-bottom: 25px;
}

.sec-5-name {
  font-size: 1.5rem;

  color: var(--black);
}

.sec-5-text {
  margin-top: 18px;

  line-height: 1.8;

  color: var(--text);
}

/* Decorative Circle */

.sec-5-card::before {
  content: "";

  position: absolute;

  width: 140px;
  height: 140px;

  border-radius: 50%;

  background: rgba(26, 147, 186, 0.05);

  top: -70px;
  right: -70px;

  transition: 0.4s;
}

.sec-5-card:hover::before {
  transform: scale(1.3);
}

/*=========================
    Responsive
=========================*/

@media (max-width: 768px) {
  .sec-5-title {
    font-size: 2rem;
  }

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



/* -------------------------------
            Sec - 6
------------------------------- */

.sec-6 {
  padding: 100px 0;

  background: #f8fbfc;
}

.sec-6-container {
  width: calc(100% - 40px);

  max-width: 1400px;

  margin: auto;
}

.sec-6-content {
  display: grid;

  grid-template-columns: 1fr 520px;

  gap: 70px;

  align-items: center;
}

/*==========================
    Left
==========================*/

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

  font-size: 0.9rem;

  letter-spacing: 3px;

  text-transform: uppercase;

  font-weight: 700;
}

.sec-6-title {
  margin-top: 18px;

  font-size: 2.8rem;

  color: var(--black);
}

.sec-6-description {
  margin-top: 20px;

  line-height: 1.8;

  color: var(--text);

  max-width: 600px;
}

.sec-6-info {
  margin-top: 45px;

  display: flex;

  flex-direction: column;

  gap: 22px;
}

.sec-6-item {
  display: flex;

  gap: 20px;

  align-items: flex-start;

  text-decoration: none;

  color: inherit;
}

.sec-6-icon {
  width: 60px;

  height: 60px;

  border-radius: 16px;

  background: rgba(26, 147, 186, 0.12);

  display: flex;

  justify-content: center;

  align-items: center;

  color: var(--primary);

  font-size: 22px;

  transition: 0.35s;
}

.sec-6-item:hover .sec-6-icon {
  background: var(--primary);

  color: white;
}

.sec-6-item h4 {
  margin-bottom: 8px;

  font-size: 1.15rem;

  color: var(--black);
}

.sec-6-item p {
  line-height: 1.7;

  color: var(--text);
}

/*==========================
    Form
==========================*/

.sec-6-form {
  background: white;

  padding: 45px;

  border-radius: 24px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  display: flex;

  flex-direction: column;

  gap: 20px;
}

.sec-6-form input,
.sec-6-form textarea {
  width: 100%;

  padding: 16px 18px;

  border: 1px solid var(--border);

  border-radius: 12px;

  outline: none;

  font-size: 1rem;

  transition: 0.3s;
}

.sec-6-form input:focus,
.sec-6-form textarea:focus {
  border-color: var(--primary);
}

.sec-6-form textarea {
  resize: none;
}

.sec-6-form button {
  border: none;

  cursor: pointer;

  padding: 16px;

  border-radius: 12px;

  background: var(--primary);

  color: white;

  font-size: 1rem;

  font-weight: 600;

  transition: 0.3s;
}

.sec-6-form button:hover {
  opacity: 0.9;
}

/*==========================
    Responsive
==========================*/

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

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

  .sec-6-title {
    font-size: 2rem;
  }

  .sec-6-form {
    padding: 30px;
  }
}
