/* ==================
         sec 1 
   ==================*/

.about-us-sec-1 {
  position: relative;
  width: 100%;
/*   min-height: 550px; */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 136px 20px;

  /* BACKGROUND */
  background: #0b0b0b url("../images/sec-3-bg.webp") center/cover no-repeat;
  background-size: cover;

  overflow: hidden;
}

/* CONTENT */
.about-us-sec-1-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1420px;
  width: 100%;
}

/* TITLE */
.about-us-sec-1-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* BREADCRUMB */
.about-us-sec-1-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-size: clamp(14px, 1.2vw, 16px);
  color: #aaa;
}

.about-us-sec-1-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-us-sec-1-breadcrumb a:hover {
  color: #8fff9c;
}

.about-us-sec-1-breadcrumb span {
  color: #ffffff;
}




/* ==================
         sec 2 
   ==================*/
.about-us-sec-2 {
  padding: 120px 20px 120px 20px;
  border-radius: 50px 50px 0px 0px;
  margin-top: -50px;
  background: #f3f5f4;
  position: relative;
}

.about-us-sec-2-container {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

/* HEADER */
.about-us-sec-2-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-us-sec-2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  color: #000000;
}

.about-us-sec-2-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #000000;
  position: relative;
  flex: 0 0 auto;
}

.about-us-sec-2-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #000000;
  transform: translateY(-50%);
}

.about-us-sec-2-kicker span:first-child::after {
  left: 2px;
}

.about-us-sec-2-kicker span:last-child::after {
  right: 2px;
}

.about-us-sec-2-header h2 {
  font-size: clamp(2.25rem, 2.0549rem + 0.8917vw, 3.125rem);
  line-height: 1.4;
  font-weight: 600;
  color: #111;

  margin: auto;
}


.about-us-sec-2-arrow-btn {
    display: inline-flex;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    user-select: none;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    border: 1px solid #000000;
    border-radius: 30px;
	background: transparent;
}


/* ICON WRAPPER */
.about-us-sec-2-arrow-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.about-us-sec-2-arrow-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.about-us-sec-2-arrow-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}





/* RESPONSIVE */
@media (max-width: 768px) {
  .about-us-sec-2-header h2 {
    font-size: 26px;
  }

}


.about-us-sec-2 {
  padding: 120px 20px;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  background: #f3f5f4;
  position: relative;
}

.about-us-sec-2-container {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

/* HEADER */
.about-us-sec-2-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-us-sec-2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.about-us-sec-2-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  position: relative;
}

.about-us-sec-2-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #000;
  transform: translateY(-50%);
}

.about-us-sec-2-kicker span:first-child::after {
  left: 2px;
}

.about-us-sec-2-kicker span:last-child::after {
  right: 2px;
}

.about-us-sec-2-header h2 {
  font-size: clamp(2.25rem, 2.0549rem + 0.8917vw, 3.125rem);
  line-height: 1.3;
  font-weight: 700;
  color: #111;
  margin: 0;
}


/* INTRO */
.about-us-sec-2-intro {
  display: grid;
  gap: 22px;
  margin-bottom: 50px;
}

.about-us-sec-2-intro p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

.about-us-sec-2-intro strong {
  color: #111;
}

/* GRID */
.about-us-sec-2-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* CARD */
.about-us-sec-2-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid #e5e5e5;
  transition: 0.3s ease;
	text-decoration: none;
}


.about-us-sec-2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.about-us-sec-2-card h3 {
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 18px;
  color: #111;
  display: flex;
  justify-content: space-between;
}

.about-us-sec-2-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-us-sec-2-card li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #555;
  font-size: 16px;
}

.about-us-sec-2-card li:last-child {
  border-bottom: none;
}

/* FOOTER */
.about-us-sec-2-bottom {
  text-align: center;
  max-width: 950px;
  margin: auto;
}

.about-us-sec-2-bottom p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.about-us-sec-2-highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 35px;
}

.about-us-sec-2-highlight span {
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.about-us-sec-2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #79eb93, #d6ffad);
  color: #111;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.about-us-sec-2-btn:hover {
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-us-sec-2-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .about-us-sec-2 {
    padding: 90px 15px;
    border-radius: 30px 30px 0 0;
  }

  .about-us-sec-2-header {
    margin-bottom: 50px;
  }

  .about-us-sec-2-header h2 {
    font-size: 26px;
  }

  .about-us-sec-2-kicker {
    gap: 14px;
    font-size: 11px;
    line-height: 1.5;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-us-sec-2-intro p,
  .about-us-sec-2-bottom p {
    font-size: 16px;
    line-height: 1.7;
  }

  .about-us-sec-2-card {
    padding: 24px;
  }

  .about-us-sec-2-card h3 {
    font-size: 20px;
  }

  .about-us-sec-2-card li {
    font-size: 15px;
  }

  .about-us-sec-2-highlight {
    flex-direction: column;
    align-items: center;
  }
}



/* ==================
         sec 3 
   ==================*/
.about-us-sec-3 {
  padding: 120px 20px;
  position: relative;
  border-radius: 50px 50px 0px 0px;
  margin-top: -50px;

  background: #0b0b0b url("../images/sec-3-bg.webp") center/cover no-repeat;
  background-size: cover;

  overflow: hidden;
  color: #fff;
}

.about-us-sec-3::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000a8;
}

.about-us-sec-3-container {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* HEADER */
.about-us-sec-3-header {
  margin-bottom: 50px;
  display: none;
}



.about-us-sec-3-header h2 {
  font-size: clamp(2.25rem, 2.0549rem + 0.8917vw, 3.125rem);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
/* LAYOUT */
.about-us-sec-3-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}


/* GRID */
.about-us-sec-3-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.about-us-sec-3-left {
  position: sticky;
  top: 30px;
}

/* QUOTE CARD */
.about-us-sec-3-quote {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(8px);
  margin-bottom: 30px;
}

.about-us-sec-3-quote-mark {
  display: block;
  font-size: 70px;
  line-height: 0.8;
  color: #79eb93;
  margin-bottom: 20px;
}

.about-us-sec-3-quote h3 {
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.about-us-sec-3-quote p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* PROFILE */
.about-us-sec-3-profile {
  display: flex;
  align-items: center;
  gap: 18px;
}

.about-us-sec-3-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003D2B, #d6ffad);
  color: #111;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-sec-3-profile-info h4 {
  margin: 0 0 4px;
  font-size: 18px;
}

.about-us-sec-3-profile-info span {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* RIGHT SIDE */
.about-us-sec-3-right {
  display: grid;
  gap: 22px;
}

.about-us-sec-3-right p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-us-sec-3-right p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .about-us-sec-3-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-us-sec-3-left {
    position: static;
  }

}

@media (max-width: 600px) {

  .about-us-sec-3 {
    padding: 60px 20px 100px;
    border-radius: 30px 30px 0 0;
  }

  .about-us-sec-3-header {
    margin-bottom: 40px;
  }

  .about-us-sec-3-quote {
    padding: 28px;
  }

  .about-us-sec-3-quote h3 {
    font-size: 28px;
  }

  .about-us-sec-3-right p {
    font-size: 16px;
    line-height: 1.8;
  }

}



/* ==================
         sec 4 
   ==================*/
.about-us-sec-4 {
  padding: 120px 20px;
  position: relative;
  border-radius: 50px 50px 0px 0px;
  margin-top: -50px;
  background: #ffffff;
  overflow: hidden;
}

.about-us-sec-4-container {
  max-width: 1420px;
  width: 90%;
  margin: auto;
}

/* HEADER */
.about-us-sec-4-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-us-sec-4-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
}

.about-us-sec-4-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #111;
  position: relative;
  flex: 0 0 auto;
}

.about-us-sec-4-kicker-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.about-us-sec-4-kicker-dot:first-child::after {
  left: 2px;
}

.about-us-sec-4-kicker-dot:last-child::after {
  right: 2px;
}
.about-us-sec-4-title {
  font-size: clamp(2.25rem, 2.0549rem + 0.8917vw, 3.125rem);
  font-weight: 600;
  letter-spacing: 1px;
}

/* MARQUEE */
.about-us-sec-4-marquee-container {
  position: relative;
}

.about-us-sec-4-marquee-container::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, #ffffff, transparent);
  z-index: 2;
}

.about-us-sec-4-marquee-container::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: linear-gradient(270deg, #ffffff, transparent);
  z-index: 2;
}

.about-us-sec-4-marquee {
  overflow: hidden;
  position: relative;
  padding: 24px 0px;
}

/* TRACK */
.about-us-sec-4-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

/* REVERSE */
.about-us-sec-4-reverse .about-us-sec-4-track {
  animation: scroll-right 35s linear infinite;
}

/* CARDS */
.about-us-sec-4-card {
  min-width: 220px;
  height: 120px;

  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-weight: 600;
  border: 1px solid #eee;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease-in-out;
}

.about-us-sec-4-card div {
  position: relative;
  z-index: 5;
}

.about-us-sec-4-card div img {
  width: 150px;
  height: auto;
}

.about-us-sec-4-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #6ddf8a, #b6e388);
  z-index: 1;
  transform: translateX(-120%);
  opacity: 0;
  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.about-us-sec-4-card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffffd3;
  z-index: 10;
  transform: translateX(0%);

  transition:
    transform 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

.about-us-sec-4-card:hover::before {
  transform: translateX(0%);
  opacity: 1;
}

.about-us-sec-4-card:hover::after {
  transform: translateX(-120%);
}

/* ANIMATION */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* PAUSE ON HOVER */
.about-us-sec-4-marquee:hover .about-us-sec-4-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-us-sec-4-title {
    font-size: 28px;
  }

  .about-us-sec-4-card {
    min-width: 200px;
    height: 100px;
    font-size: 14px;
  }

  .about-us-sec-4-track {
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .about-us-sec-4 {
    padding: 60px 20px 80px 20px;
    border-radius: 30px 30px 0 0;
  }
}

@media (max-width: 480px) {
  .about-us-sec-4-card {
    min-width: 200px;
    height: 100px;
    font-size: 12px;
  }

  .about-us-sec-4-marquee {
    padding-bottom: 12px;
  }

  .about-us-sec-4-header {
    margin-bottom: 20px;
  }
}



/* ==================
         sec 5 
   ==================*/

.contact-sec-5 {
  background: #f6f6f6;
  padding: 120px 20px;
  position: relative;
  border-radius: 50px 50px 0px 0px;
  margin-top: -50px;
}

.contact-sec-5-container {
  max-width: 1420px;
  width: 90%;
  margin: 0 auto;
}

.contact-sec-5-head {
  text-align: center;
  margin-bottom: 40px;
}

.contact-sec-5-kicker {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin: 0 0 14px;
}

.contact-sec-5-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #111;
  position: relative;
  flex: 0 0 auto;
}

.contact-sec-5-kicker span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
}

.contact-sec-5-kicker span:first-child::after {
  left: 2px;
}

.contact-sec-5-kicker span:last-child::after {
  right: 2px;
}

.contact-sec-5-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #111;
}

.contact-sec-5-sub {
  margin: 10px auto 0;
  /* max-width: 520px; */
  color: #777;
  font-size: 14px;
  line-height: 1.65;
}

.contact-sec-5-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 272px;
  gap: 18px;
  align-items: start;
}

/* MAIN LEFT WHITE BLOCK */
.contact-sec-5-main-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-sec-5-left-panel {
  padding: 34px 50px;
  display: flex;
  align-items: center;
  /* background-image:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px); */

  height: 500px;
  position: relative;
}

.contact-sec-5-left-panel::after {
  content: "";
  background: url(../images/sec-1-overlay.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotateY(45deg);
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  filter: brightness(100%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
  opacity: 0.2;
}

.contact-sec-5-left-content {
  position: relative;
  z-index: 5;
}

.contact-sec-5-left-content h3 {
  margin: 0 0 12px;
  max-width: 300px;
  font-size: 27px;
  line-height: 1.15;
  /* letter-spacing: -0.03em; */
  color: #111;
}

.contact-sec-5-left-content p {
  margin: 0;
  max-width: 300px;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.7;
}

.contact-sec-5-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 14px 26px;
  border-radius: 14px;
  max-width: 250px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  user-select: none;

  background-color: #c8f5a8;

  transition: all 0.4s ease;
}

.contact-sec-5-btn::before {
  content: "";
  background: linear-gradient(88deg, transparent, #003D2B, transparent);
  position: absolute;
  height: 100%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 0;
  transition: transform 0.4s ease;
}

/* TEXT */
.contact-sec-5-btn-text {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  position: relative;
  z-index: 4;
}

/* ICON WRAPPER */
.contact-sec-5-btn-icon {
  width: 14px;
  height: 14px;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

/* MOVING CONTAINER (KEY PART) */
.contact-sec-5-btn-icon-box {
  display: flex;
  width: 48px;
  gap: 16px;
  transition: transform 0.4s ease;
}

/* ARROWS */
.contact-sec-5-btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* HOVER EFFECT */
.contact-sec-5-btn:hover::before {
  transform: translateX(50%);
}

/* MARQUEE */
.contact-sec-5-marquee-panel {
  padding: 14px 18px 14px 0;
  display: flex;
  align-items: stretch;
  height: 500px;
}

.contact-sec-5-marquee-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.contact-sec-5-marquee-viewport::before,
.contact-sec-5-marquee-viewport::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 2;
  pointer-events: none;
}

.contact-sec-5-marquee-viewport::before {
  top: 0;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.contact-sec-5-marquee-viewport::after {
  bottom: 0;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.contact-sec-5-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: sec5ScrollDown 16s linear infinite;
}

.contact-sec-5-marquee-panel:hover .contact-sec-5-marquee-track {
  animation-play-state: paused;
}

.contact-sec-5-testimonial {
  background: #f6f6f6;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 16px 16px 14px;
  min-height: 142px;
  flex: 0 0 auto;
}

.contact-sec-5-quote {
  font-size: 26px;
  line-height: 1;
  color: #111;
  margin-bottom: 8px;
}

.contact-sec-5-testimonial p {
  margin: 0 0 14px;
  color: #727272;
  font-size: 14px;
  line-height: 1.6;
}

.contact-sec-5-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-sec-5-user img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-sec-5-user strong {
  display: block;
  font-size: 13px;
  color: #111;
}

.contact-sec-5-user span {
  display: block;
  font-size: 12px;
  color: #8a8a8a;
}

/* RIGHT CARDS */
.contact-sec-5-right {
  display: grid;
  gap: 18px;
}

.contact-sec-5-rating-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  height: 241px;
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-sec-5-rating-card::before,
.contact-sec-5-rating-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-sec-5-rating-card::before {
  width: 92px;
  height: 92px;
  top: 6px;
  left: 6px;
}

.contact-sec-5-rating-card::after {
  width: 150px;
  height: 150px;
  right: -30px;
  top: -18px;
}

.contact-sec-5-rating-value {
  font-size: 54px;
  line-height: 1;
  font-weight: 600;
  color: #111;
  position: relative;
  z-index: 1;
}

.contact-sec-5-stars {
  margin: 12px 0 10px;
  color: #f3b42f;
  letter-spacing: 2px;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.contact-sec-5-rating-card p {
  margin: 0 0 14px;
  color: #7a7a7a;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

.contact-sec-5-logos {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 26px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-sec-5-logos svg {
  width: 30px;
  height: 30px;
}

.contact-sec-5-group-card {
  height: 241px;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    background: linear-gradient(#00351666, #003516d1), url(../images/sec-5-card-bg.avif);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-sec-5-group-card h3 {
  margin: 0;
  max-width: 150px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.contact-sec-5-avatars {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.contact-sec-5-avatars img,
.contact-sec-5-avatars button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.contact-sec-5-avatars button {
  background: #111;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
}

/* TOP -> BOTTOM LOOP */
@keyframes sec5ScrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .contact-sec-5-grid {
    grid-template-columns: 1fr;
  }

  .contact-sec-5-right {
    grid-template-columns: 1fr 1fr;
  }

  .contact-sec-5-main-card {
    height: auto;
    min-height: 430px;
  }
}

@media (max-width: 860px) {
  .contact-sec-5-main-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-sec-5-marquee-panel {
    padding: 0 18px 18px;
    min-height: 260px;
  }

  .contact-sec-5-left-panel {
    height: 400px;
  }

  .contact-sec-5-left-panel {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
}

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

  .contact-sec-5-left-panel {
    /* padding: 26px; */
  }

  .contact-sec-5-rating-card,
  .contact-sec-5-group-card {
    height: auto;
    min-height: 190px;
  }
}

@media (max-width: 500px) {
  .about-us-sec-5 {
    padding: 60px 20px 40px 20px;
    border-radius: 30px 30px 0 0;
  }
}
