.e-con > .e-con-inner {
  max-width: 1300px !important;
}
.feature-list-li-clr {
  color: white !important;
}
.iti__selected-flag {
  border-radius: 16px;
}
.iti {
  width: 100%;
  margin-bottom: 10px;
}
.iti input {
  width: 100% !important;
}
.rt-contact-info .contact-list li {
  color: #fffffe !important;
}
.pub-dte-text {
  color: white !important;
}
.btn-text {
  color: #1a1a1a !important;
}
.section-title-wrapper .top-sub-title {
  color: #b2c2c0 !important;
}
.rt-opening-hour .opening-items .opening-day {
  color: #ffffff !important;
}
.rt-opening-hour .opening-items .opening-hour {
  color: #ffffff !important;
}
#masthead {
  transition: all 0.3s ease;
}
.ds-section {
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}

.ds-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #cbd5e1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

.ds-section::after {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.ds-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
  text-align: center;
}

.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eff6ff;
  border: 1px solid #ffb000;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11.5px;
  font-weight: 500;
  color: #ffb000;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.5s ease both;
}

.ds-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffb000;
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.5);
  }
}

.ds-header {
  margin: 0 auto 64px auto;
  text-align: center;
  animation: fadeUp 0.6s ease 0.08s both;
}

.ds-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #0f172a;
  margin-bottom: 16px;
}

.ds-title span {
  background: #006d5b;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ds-subtitle {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  font-weight: 300;
}

.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width: 860px) {
  .ds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ds-grid {
    grid-template-columns: 1fr;
  }
}

.ds-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  cursor: default;
  animation: fadeUp 0.6s ease both;
  transition:
    transform 0.38s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.38s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.38s ease;
}

.ds-card:nth-child(1) {
  animation-delay: 0.12s;
}

.ds-card:nth-child(2) {
  animation-delay: 0.2s;
}

.ds-card:nth-child(3) {
  animation-delay: 0.28s;
}

.ds-card:nth-child(4) {
  animation-delay: 0.36s;
}

.ds-card:nth-child(5) {
  animation-delay: 0.44s;
}

.ds-card:nth-child(6) {
  animation-delay: 0.52s;
}

.ds-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ffb000, #006d5b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 20px 20px 0 0;
}

.ds-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ds-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 16px 40px rgba(37, 99, 235, 0.14),
    0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: rgba(37, 99, 235, 0.22);
}

.ds-card:hover::before {
  transform: scaleX(1);
}

.ds-card:hover::after {
  opacity: 1;
}

.ds-card:hover .ds-icon {
  transform: scale(1.13) rotate(-5deg);
}

.ds-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}

.ds-icon svg {
  width: 26px;
  height: 26px;
}

.ic-blue {
  background: #006d5b;
}

.ic-purple {
  background: #006d5b;
}

.ic-green {
  background: #006d5b;
}

.ds-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.ds-card-body {
  font-size: 14px;
  color: #64748b;
  line-height: 1.72;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .ds-section {
    padding: 68px 16px;
  }

  .ds-card {
    padding: 28px 22px;
  }

  .ds-header {
    margin-bottom: 44px;
  }
  .ds-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .ds-section {
    padding: 52px 14px;
  }

  .ds-card {
    padding: 24px 18px;
  }
}

/*================ hero section csss ========================*/
.serv-hero-sec {
  background: linear-gradient(135deg, #006d5b, #1a1a1a);
  padding: 160px 105px 70px 80px;
  border-radius: 0 0 48px 48px;
  position: relative;
  overflow: hidden;
}


.serv-hero-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(168, 233, 47, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 233, 47, 0.09) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
     pointer-events: none; /* ye add karo */
}

.serv-hero-sec-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1250px;
  margin: 0 auto;
}
.serv-hero-sec-tick-box{
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 28px;
    padding: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 650px;
    width: 100%;
    box-sizing: border-box;
}

.serv-hero-sec-tick-box h3{
    color: #fff;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 20px;
    max-width: 500px;
}

.serv-hero-sec-tick-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.serv-hero-sec-tick-list li{
    display: flex;
    align-items: center;
    gap: 14px;
}

.serv-hero-sec-tick-list li i{
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(0, 201, 167, 0.18);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.serv-hero-sec-tick-list li span{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

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

    .serv-hero-sec-tick-box{
        padding: 28px;
        border-radius: 24px;
    }

    .serv-hero-sec-tick-box h3{
        font-size: 30px;
        margin-bottom: 24px;
    }

    .serv-hero-sec-tick-list li span{
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px){

    .serv-hero-sec-tick-box{
        padding: 22px;
        border-radius: 20px;
    }

    .serv-hero-sec-tick-box h3{
        font-size: 24px;
        margin-bottom: 20px;
    }

    .serv-hero-sec-tick-list{
        gap: 14px;
    }

    .serv-hero-sec-tick-list li{
        align-items: flex-start;
    }

    .serv-hero-sec-tick-list li span{
        font-size: 16px;
        line-height: 1.5;
    }

    .serv-hero-sec-tick-list li i{
        width: 24px;
        height: 24px;
        min-width: 24px;
        font-size: 11px;
        margin-top: 2px;
    }
}

.serv-hero-sec-left {
  flex: 1;
  min-width: 0;
  padding-top: 10px;
}

.serv-hero-sec-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 18px;
  max-width: 600px;
}

.serv-hero-sec-desc {
  font-size: 18px;

  color: #f3f3f3;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 600px;
}

.serv-hero-sec-features {
  list-style: none;
  margin: 0 0 0px;
  padding: 0;
}

.serv-hero-sec-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #f3f3f3 !important;
  margin-bottom: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.serv-hero-sec-list-div {
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  width: 500px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-sizing: border-box;
}
.serv-hero-sec-check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ratings */
.serv-hero-sec-ratings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.serv-hero-sec-rating-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 28px;
}

.serv-hero-sec-rating-item + .serv-hero-sec-rating-item {
  padding-left: 28px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.45);
}

.serv-hero-sec-rating-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.serv-hero-sec-rating-score {
  font-size: 14px;
  font-weight: 700;
  color: #1a2535 !important;
  line-height: 18px;
}

.serv-hero-sec-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  line-height: 15px;
}

.serv-hero-sec-star {
  color: #f5a623 !important;
  font-size: 15px;
}

.serv-hero-sec-star-half {
  color: #f5a623;
  font-size: 15px;
  opacity: 0.55;
}

.serv-hero-sec-review-count {
  font-size: 12px;
  color: #2a3a50;
  margin-left: 3px;
}

.serv-hero-sec-g-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.serv-hero-sec-jd-logo {
  width: 30px;
  height: 30px;
  background: #006d5b;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

/* right form */
.serv-hero-sec-right {
  flex-shrink: 0;
  width: 420px;
  max-width: 100%;
}

.serv-hero-sec-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px 25px 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
}

.serv-hero-sec-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.5;
}

.serv-hero-sec-field {
  margin-bottom: 5px;
}
.serv-hero-sec-two-field {
  display: flex;
  gap: 5px;
}
.serv-hero-sec-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.serv-hero-sec-label span {
  color: #e00;
}
.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 14px;
}

.serv-hero-sec-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd !important;
  border-radius: 30px;
  font-size: 14px;
  color: #333 !important;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
  font-family: var(--font);
}

.serv-hero-sec-input:focus {
  border-color: #006d5b;
}

.serv-hero-sec-input::placeholder {
  color: #aaa;
}

.serv-hero-sec-phone-row {
  display: flex;
  gap: 8px;
}

.serv-hero-sec-country-select {
  padding: 11px 10px;
  border: 1.5px solid #ddd;
  border-radius: 30px !important;
  font-size: 14px;
  color: #333;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  outline: none;
  flex-shrink: 0;
  font-family: var(--font);
}

.serv-hero-sec-phone-input {
  flex: 1;
}

.serv-hero-sec-cta-btn {
  width: 100%;
  padding: 14px;
  background: #006d5b;
  color: #fff;
  border: none;
  border-radius: 35px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
  letter-spacing: 0.3px;
  font-family: var(--font);
}
.btn-text-mobpop{
  color: #fff !important;
}

.serv-hero-sec-cta-btn:hover {
  background: #005548;
}

.serv-hero-sec-consent {
  font-size: 11.5px;
  color: #000000;
  text-align: center;
  margin-top: 12px;
  line-height: 1.55;
}
.btn-text-serv {
  color: 000000 !important;
  font-weight: 800;
}
.serv-hero-sec-consent a {
  color: #e8732a;
  text-decoration: none;
  font-weight: 500;
}

/* updated ticker */
.serv-hero-sec-ticker-wrap {
  max-width: 1280px;
  margin: 30px auto 0;
}

.serv-hero-sec-ticker {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  border-left: 5px solid #006d5b;
}

.serv-hero-sec-ticker-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 0 18px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.serv-hero-sec-shield-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #006d5b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 6px 18px rgba(236, 29, 79, 0.35); */
}

.serv-hero-sec-shield-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.serv-hero-sec-ticker-label-text {
  font-size: 14px;
  font-weight: 700;
  color: #006d5b;
  white-space: nowrap;
}

.serv-hero-sec-ticker-items {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.serv-hero-sec-ticker-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  transform: translateX(0);
  will-change: transform;
}

.serv-hero-sec-ticker-item {
  flex: 1 1 calc(25% - 14px);
  min-width: 0;
  height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f3f3f3;
  color: #404040 !important;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.serv-hero-sec-ticker-item-icon {
  color: #006d5b !important;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 800;
}

.serv-hero-sec-ticker-item-num {
  color: #006d5b;
  font-weight: 800;
}

/* laptop */
@media (max-width: 1100px) {
  .serv-hero-sec {
    padding: 40px 40px 60px;
  }

  .serv-hero-sec-inner {
    gap: 32px;
  }

  .serv-hero-sec-right {
    width: 390px;
  }

  .serv-hero-sec-ticker-item {
    font-size: 11.5px;
    padding: 0 14px;
  }
}

/* tablet */
@media (max-width: 991px) {
  .serv-hero-sec {
    padding: 40px 24px 50px;
    border-radius: 0 0 36px 36px;
  }

  .serv-hero-sec-inner {
    flex-direction: column;
    gap: 30px;
  }

  .serv-hero-sec-left,
  .serv-hero-sec-right {
    width: 100%;
    max-width: 100%;
  }

  .serv-hero-sec-desc {
    max-width: 100%;
  }
  .intro-text h2 span {
    font-size: 24px !important;
  }
  .intro-text p span {
    font-size: 16px !important;
  }
  .intro-text span {
    font-size: 16px !important;
  }
  .intro-text p{
    font-size: 16px;
  }

  .serv-hero-sec-form-card {
    padding: 26px 22px;
  }

  .serv-hero-sec-ticker {
    border-radius: 26px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .serv-hero-sec-ticker-label {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0 0 12px 0;
  }

  .serv-hero-sec-ticker-track {
    width: max-content;
  }

  .serv-hero-sec-ticker-item {
    flex: 0 0 auto;
    min-width: max-content;
  }
}

/* mobile */
@media (max-width: 767px) {
  .serv-hero-sec {
    padding: 100px 15px 34px;
    border-radius: 0 0 24px 24px;
  }
  .intro-text p span {
    font-size: 16px !important;
  }

  .serv-hero-sec-inner {
    gap: 24px;
  }

  .serv-hero-sec-left {
    padding-top: 0;
  }

  .serv-hero-sec-title {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 14px;
    font-weight: 700;
  }

  .serv-hero-sec-desc {
    font-size: 16px !important;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .serv-hero-sec-list-div {
    width: 100%;
  }

  .serv-hero-sec-feature-item {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    gap: 8px;
  }

  .serv-hero-sec-check-icon {
    width: 20px;
    height: 20px;
  }

  .serv-hero-sec-ratings {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .serv-hero-sec-rating-item {
    width: 100%;
    padding-right: 0;
  }

  .serv-hero-sec-rating-item + .serv-hero-sec-rating-item {
    padding-left: 0;
    border-left: none;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .serv-hero-sec-rating-score {
    font-size: 13px;
  }

  .serv-hero-sec-review-count {
    font-size: 11px;
  }

  .serv-hero-sec-right {
    width: 100%;
  }

  .serv-hero-sec-form-card {
    padding: 20px 16px 18px;
    border-radius: 14px;
  }

  .serv-hero-sec-form-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .serv-hero-sec-label {
    font-size: 12px;
  }

  .serv-hero-sec-input,
  .serv-hero-sec-country-select {
    height: 46px;
    font-size: 14px;
  }

  .serv-hero-sec-phone-row {
    gap: 8px;
  }

  .serv-hero-sec-country-select {
    width: 88px;
    min-width: 88px;
    padding: 0 8px;
  }

  .serv-hero-sec-cta-btn {
    padding: 13px 14px;
    font-size: 14px;
    line-height: 1.4;
  }

  .serv-hero-sec-consent {
    font-size: 11px;
    line-height: 1.5;
  }

  .serv-hero-sec-ticker-wrap {
    margin: 20px 0 0;
  }

  .serv-hero-sec-ticker {
    padding: 12px;
    gap: 12px;
    border-radius: 18px;
    background: #f7f7f7;
  }

  .serv-hero-sec-ticker-label {
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
  }

  .serv-hero-sec-shield-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .serv-hero-sec-shield-icon svg {
    width: 16px;
    height: 16px;
  }

  .serv-hero-sec-ticker-label-text {
    font-size: 13px;
  }

  .serv-hero-sec-ticker-track {
    gap: 10px;
  }

  .serv-hero-sec-ticker-item {
    height: 34px;
    padding: 0 14px;
    font-size: 11.5px;
  }

  .serv-hero-sec-ticker-item-icon {
    font-size: 13px;
  }
}

/* extra small mobile */
@media (max-width: 480px) {
  .serv-hero-sec {
    padding: 100px 15px 28px;
  }

  .serv-hero-sec-title {
    font-size: 28px;
    font-weight: 700;
  }

  .serv-hero-sec-form-card {
    padding: 18px 14px 16px;
  }

  .serv-hero-sec-phone-row {
    flex-direction: column;
  }

  .serv-hero-sec-country-select {
    width: 100%;
    min-width: 100%;
  }

  .serv-hero-sec-input,
  .serv-hero-sec-country-select,
  .serv-hero-sec-cta-btn {
    width: 100%;
  }

  .serv-hero-sec-ticker-item {
    font-size: 11px;
    padding: 0 12px;
  }
}
/*------------ main container — all classnames start with serv-cont-sec -------------------*/
.serv-cont-sec-wrapper {
  max-width: 1350px;
  margin: 0 auto;
  padding: 40px 24px;
  box-sizing: border-box;
}

.serv-cont-sec {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

.serv-cont-sec-left {
  flex: 0 0 65%;
  max-width: 65%;
  /* overflow: hidden;  */
}
.serv-cont-sec-left-serv {
  flex: 0 0 65%;
  max-width: 65%;
  /* overflow: hidden;  */
}
.authore-publish-date{
  display: flex;
    gap: 20px;
}

.serv-cont-sec-right {
  flex: 0 0 30%;
  max-width: 30%;
  width: 100%;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 18px;
  color: #183b63;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.18);
  border: 1px solid #dce6f2;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* =========================
   STICKY TABS
========================= */
.serv-cont-sec-tabs-wrap {
  position: sticky;
  top: 75px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 12px 0 16px;
  margin-bottom: 18px;
}

.serv-cont-sec-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  background: #f7f7f7;
  border: 1px solid #d2d2d2;
  border-radius: 999px;
  padding: 8px;
  scroll-behavior: smooth;
}

.serv-cont-sec-tabs::-webkit-scrollbar {
  display: none;
}

.serv-cont-sec-tab-link {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: #000000;
  padding: 10px 18px;
  border-radius: 999px;
  background: transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1;
}

.serv-cont-sec-tab-link:hover {
  background: #efefef;
  color: #183b63;
}

.serv-cont-sec-tab-link.active {
  background: #06594B;
  color: #ffffff;
  /* box-shadow: 0 8px 18px rgba(255, 152, 0, 0.22); */
}

.serv-cont-sec-tab-arrow {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #bcbcbc;
  background: #ffffff;
  color: #4e4e4e;
  font-size: 14px !important;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 5px 10px !important;
}

.serv-cont-sec-tab-arrow:hover {
  background: #f7f7f7;
  color: #183b63;
}

.serv-cont-sec-anchor-section {
  scroll-margin-top: 110px;
  margin-bottom: 20px;
  scroll-margin-top: 160px;
}
.serv-cont-sec-left * {
  max-width: 100%;
  box-sizing: border-box;
  text-align: start !important;
}
.serv-cont-sec-left-serv * {
  max-width: 100%;
  box-sizing: border-box;
  text-align: start !important;
  justify-content: space-between;
}
.serv-cont-sec-left img {
  max-width: 100%;
  height: auto;
  display: block;
}
.serv-cont-sec-left-serv img {
  max-width: 100%;
  height: auto;
  display: block;
}
.serv-cont-sec-left h1 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  color: #1c5a99;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.serv-cont-sec-left-serv h1 {
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  color: #1c5a99;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.serv-cont-sec-table-container table {
  margin: 0px !important;
}
.serv-cont-sec-table-container  table th{
    border: 2px solid #e1e1e1;
    padding: 8px;
    text-align: center !important;
      font-size: 18px;
}
.serv-cont-sec-table-container table td{
    font-size: 18px;
}
.serv-cont-sec-anchor-section li {
  font-family: var(--font) !important;
}
.serv-cont-sec-table-tr {
  background-color: #006d5b;
}
.table-txt-center{
  text-align: center !important;
}

.table thead tr{
      background: #006D5B;
}
.wp-block-list li {
  font-family: var(--font) !important;
  font-size: 16px !important;
  color: #000000 !important;
  line-height: 1.6 !important;
}
.intro-text p {
  font-family: var(--font) !important;
  font-size: 16px !important;
  color: #000000 !important;
  line-height: 1.6 !important;
}
.intro-text h3 span {
  color: #000000 !important;
}
.intro-text div h2{
  margin-bottom: 10px !important;
}
.intro-text div h1{
  margin-bottom: 10px !important;
}

.intro-text p span {
  font-size: 18px !important;
}
.intro-text span strong a{
 font-size: 18px !important;
}
 .intro-text strong a{
    font-size: 18px !important;
  }
  .intro-text h3 strong span{
      font-size: 20px !important;
  } 
  .intro-text strong span{
      font-size: 18px !important;
  } 

.serv-cont-sec-left .intro-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2c4b66;
  margin-bottom: 32px;
  padding: 0;
  font-weight: 450;
  background: transparent;
  border: 0;
}
.serv-cont-sec-left-serv .intro-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2c4b66;
  margin-bottom: 20px;
  padding: 0;
  font-weight: 450;
  background: transparent;
  border: 0;
}
body {
  color: #101010 !important;
}
.dun-conten-css p,
li,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}
.dun-conten-css p,
li,
span {
  color: #000000;
}
p,
span,
a,
li {
  font-size: 18px;
}
@media(max-width:991px){
  p,
span,
a,
li {
  font-size: 16px;
}
}

.serv-cont-sec-left h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  margin: 0;
  color: #0e2a38;
  line-height: 1.2;
}
.serv-cont-sec-left-serv h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  /* margin: 0; */
  color: #181818;
  line-height: 1.2;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 38px;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 1px solid #e6edf4;
  box-sizing: border-box;
}

.feature-card strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #006d5b;
  display: block;
  margin-bottom: 8px;
  line-height: 1.4;
}

.feature-card p {
  color: #414141;
  line-height: 1.6;
  font-size: 0.92rem;
  margin: 0;
}

.serv-cont-sec-table-container {
  margin: 0px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #eef3f8;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 700px;
}
/* .serv-tble-th {
  background-color: #006d5b !important;
} */

.comparison-table th {
  background: #006d5b;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  font-size: 0.85rem;
  border-bottom: 1px solid #dce7ef;
  line-height: 1.4;
}

.comparison-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #eef3f8;
  color: #1f3f54;
  vertical-align: top;
  line-height: 1.55;
  text-align: left;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  background-color: #fbfefd;
  font-weight: 600;
}

.serv-cont-sec-contact-banner {
  background: #006d5b;
  border-radius: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  color: white;
  gap: 16px;
  margin: 12px 0 20px 0;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.1);
}

.banner-text {
  flex: 1 1;
}

.banner-text h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  color: #ffb000;
  line-height: 1.3;
}

.banner-text p {
  font-size: 0.9rem;
  opacity: 0.92;
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
  color: white !important;
}

.banner-btn {
  background: #ffb347;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0a2e3f;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.banner-btn:hover {
  background: #ffa01e;
  transform: translateY(-2px);
}

.serv-cont-sec-right h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
  color: #111;
  line-height: 1.35;
}

.serv-cont-sec-right .sub-form {
  font-size: 1rem;
  font-weight: 600;
  color: #006d5b;
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #484849;
  line-height: 1.4;
}

.input-row {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 40px;
  border: 1px solid #d5dee8;
  transition: 0.2s;
  overflow: hidden;
}

.input-row:focus-within {
  border-color: #ffb347;
}

.country-code {
  padding: 10px 12px;
  font-weight: 500;
  color: #183b63;
  border-right: 1px solid #d5dee8;
  font-size: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.input-row input {
  background: transparent;
  border: none;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: #183b63;
  width: 100%;
  outline: none;
  min-width: 0;
}

.input-row input::placeholder,
.form-group input::placeholder {
  color: #8a96a3;
  font-size: 16px;
}
.number-input {
  border: 1px solid #d5dee800 !important;
}
.form-group input:not(.special-input) {
  width: 100%;
  background: #fff;
  border: 1px solid #d5dee8;
  border-radius: 40px;
  padding: 10px 14px;
  color: #183b63;
  font-size: 0.82rem;
  outline: none;
  transition: 0.2s;
  box-sizing: border-box;
}

.form-group input:focus {
  border-color: #ec9403;
}

.btn-consult {
  width: 100%;
  margin: auto;
  background: #ffb000;
  border: none;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 40px;
  color: #020202 !important;
  margin-top: 6px;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  text-align: center;
  line-height: 1.4;
}

.btn-consult:hover {
  background: #ffb000;
  color: #000;
  transform: translateY(-1px);
}

.safe-note {
  font-size: 0.65rem;
  margin-top: 12px;
  opacity: 0.75;
  line-height: 1.5;
  text-align: center;
  color: #000000;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   LARGE TABLET
========================= */
@media (max-width: 1199px) {
  .serv-cont-sec {
    gap: 28px;
  }

  .serv-cont-sec-right {
    flex: 0 0 300px;
    max-width: 300px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
  .serv-cont-sec-wrapper {
    padding: 32px 20px;
  }

  .serv-cont-sec {
    flex-direction: column;
    gap: 30px;
  }

  .serv-cont-sec-left,
  .serv-cont-sec-right {
    width: 100%;
    max-width: 100%;
  }
  .serv-cont-sec-left-serv{
    width: 100%;
    max-width: 100%;
  }

  .serv-cont-sec-right {
    position: static;
    top: unset;
    flex: 1 1 100%;
    margin: 0;
    border-radius: 18px;
  }

  .serv-cont-sec-tabs-wrap {
    top: 80px;
    padding-top: 8px;
  }

  .serv-cont-sec-contact-banner {
    padding: 20px 22px;
  }

  .banner-text h4 {
    font-size: 1.2rem;
  }

  .banner-text p {
    max-width: 100%;
  }

  .comparison-table {
    min-width: 650px;
  }
  .serv-cont-sec-table-container table td{
    font-size: 16px;
}
 .intro-text h3 strong span{
      font-size: 18px;
  } 
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .serv-cont-sec-wrapper {
    padding: 24px 15px;
  }

  .serv-cont-sec-tabs-wrap {
    gap: 8px;
    margin-bottom: 16px;
  }

  .serv-cont-sec-tabs {
    padding: 6px;
    gap: 8px;
  }

  .serv-cont-sec-tab-link {
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .serv-cont-sec-tab-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .serv-cont-sec-anchor-section {
    scroll-margin-top: 95px;
  }

  .serv-cont-sec-left h1 {
    font-size: 1.55rem;
    margin-bottom: 14px;
  }
  .serv-cont-sec-left-serv h1 {
    font-size: 1.55rem;
    margin-bottom: 14px;
  }

  .serv-cont-sec-left .intro-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }
  .serv-cont-sec-left-serv .intro-text {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .serv-cont-sec-left h2 {
    font-size: 1.15rem;
    margin: 2px 0 2px;
  }
  .serv-cont-sec-left-serv h2 {
    font-size: 28px;
    margin: 2px 0 2px;
  }

  .feature-card {
    padding: 16px;
    border-radius: 16px;
  }

  .feature-card strong {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .serv-cont-sec-table-container {
    border-radius: 18px;
    margin: 22px 0 28px;
  }

  .comparison-table {
    min-width: 600px;
    font-size: 0.8rem;
  }
  .serv-cont-sec-table-container  table th{
      font-size: 16px;
}

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }

  .serv-cont-sec-contact-banner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .banner-text,
  .banner-btn {
    width: 100%;
  }

  .banner-text h4 {
    font-size: 1.08rem;
  }

  .banner-text p {
    font-size: 16px;
  }

  .banner-btn {
    text-align: center;
    white-space: normal;
    padding: 12px 18px;
  }

  .serv-cont-sec-right {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .serv-cont-sec-right h3 {
    font-size: 1.4rem;
  }

  .serv-cont-sec-right .sub-form {
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.72rem;
  }

  .form-group input:not(.special-input),
  .input-row input {
    font-size: 0.8rem;
  }

  .country-code {
    font-size: 0.72rem;
    padding: 10px 10px;
  }

  .btn-consult {
    font-size: 0.8rem;
    padding: 12px 14px;

  }

  .safe-note {
    font-size: 0.63rem;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
  .serv-cont-sec-tabs-wrap {
    gap: 6px;
    margin-bottom: 16px;
    padding-top: 6px;
    display: none;
  }

  .serv-cont-sec-tabs {
    padding: 6px;
    gap: 8px;
  }

  .serv-cont-sec-tab-link {
    font-size: 0.8rem;
    padding: 9px 12px;
  }

  .serv-cont-sec-tab-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .serv-cont-sec-tabs-wrap {
    gap: 5px;
  }

  .serv-cont-sec-tabs {
    padding: 5px;
    gap: 6px;
  }

  .serv-cont-sec-tab-link {
    font-size: 0.76rem;
    padding: 8px 11px;
  }

  .serv-cont-sec-tab-arrow {
    width: 30px;
    height: 30px;
    min-width: 28px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .serv-cont-sec-wrapper {
    padding: 20px 15px;
  }

  .serv-cont-sec {
    gap: 24px;
  }

  .serv-cont-sec-tab-link {
    font-size: 13px !important;
    padding: 9px 12px;
  }

  .serv-cont-sec-left h1 {
    font-size: 1.4rem;
    line-height: 1.25;
  }
  .serv-cont-sec-left-serv h1 {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .serv-cont-sec-left .intro-text {
    font-size: 0.88rem;
  }
  .serv-cont-sec-left-serv .intro-text {
    font-size: 0.88rem;
  }

  .serv-cont-sec-left h2 {
    font-size: 1.05rem;
    text-align: left;
  }
  .serv-cont-sec-left-serv h2 {
    font-size: 28px;
    text-align: left;
  }

  .feature-card {
    padding: 14px;
  }

  .feature-card strong {
    font-size: 0.95rem;
  }

  .feature-card p {
    font-size: 16px;
  }

  .serv-cont-sec-contact-banner {
    padding: 16px 14px;
    gap: 14px;
  }

  .banner-text h4 {
    font-size: 1rem;
  }

  .banner-text p {
    font-size: 0.84rem;
  }

  .serv-cont-sec-right {
    padding: 16px 12px;
  }

  .serv-cont-sec-right h3 {
    font-size: 1.2rem;
  }

  .serv-cont-sec-right .sub-form {
    font-size: 0.8rem;
  }

  .country-code {
    font-size: 0.68rem;
    padding: 10px 8px;
  }

  .input-row {
    border-radius: 16px;
  }

  .form-group input:not(.special-input) {
    border-radius: 16px;
    padding: 10px 12px;
  }

  .btn-consult {
    border-radius: 30px;
    font-size: 0.78rem;
  }

  .safe-note {
    font-size: 0.6rem;
  }
}

/*--------------------- faq section css --------------------------*/
.faq-sec {
  padding: 50px 15px;
  background: #ececec;
}

.faq-sec-container {
  max-width: 900px;
  margin: auto;
}

.faq-sec-heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111827;
}

.faq-sec-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-sec-item {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.faq-sec-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  border: none;
  outline: none;
  background: #006d5b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-sec-question:hover {
  background: #006d5b;
}

.faq-sec-icon {
  font-size: 20px;
  transition: 0.3s;
}

.faq-sec-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.faq-sec-answer p {
  padding: 15px 0;
  color: #4b5563;
  line-height: 1.6;
}

.faq-sec-item.active .faq-sec-answer {
  max-height: 200px;
}

.faq-sec-item.active .faq-sec-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-sec-heading {
    font-size: 26px;
  }

  .faq-sec-question {
    font-size: 14px;
  }
}

/* ============== SERV RELATED SERVICES SECTION ============== */
.serv-related-services-sec {
  padding: 80px 0;
  background-color: #d4fdf7;
  position: relative;
}

.serv-related-services-sec-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading & Description */
.serv-related-services-sec-header {
  text-align: center;
  margin-bottom: 60px;
}

.serv-related-services-sec-heading {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  line-height: 1.2;
}

.serv-related-services-sec-description {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Slider Container */
.serv-related-services-sec-slider {
  position: relative;
  padding: 0 50px; /* Space for arrows */
}

.serv-related-services-sec-swiper .swiper-slide {
  height: auto;
  padding: 10px 10px;
}

/* Card Styles */
.serv-related-services-sec-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.serv-related-services-sec-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.serv-related-services-sec-card-image {
  height: 240px;
  overflow: hidden;
}

.serv-related-services-sec-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.serv-related-services-sec-card:hover
  .serv-related-services-sec-card-image
  img {
  transform: scale(1.08);
}

.serv-related-services-sec-card-content {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.serv-related-services-sec-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 14px;
  line-height: 1.3;
  text-align: center;
}

.serv-related-services-sec-card-description {
  color: #64748b;
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

/* Button with Slide Effect */
.serv-related-services-sec-card-button {
  position: relative;
  overflow: hidden;
  background-color: #1f2937;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  text-align: center;
  width: 100%;
}

.serv-related-services-sec-card-button .serv-related-services-sec-button-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffb000;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 1;
}

.serv-related-services-sec-card-button span {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.serv-related-services-sec-card-button:hover
  .serv-related-services-sec-button-slide {
  transform: translateX(0);
}

.serv-related-services-sec-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.serv-related-services-sec-arrow:hover {
  background: #ffb000;
  color: white;
  border-color: #ffb000;
  transform: translateY(-50%) scale(1.1);
}

.serv-related-services-sec-prev {
  left: 10px;
}

.serv-related-services-sec-next {
  right: 10px;
}

.serv-related-services-sec-arrow svg {
  width: 20px;
  height: 20px;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .serv-related-services-sec {
    background-color: #e8f5f3;
  }
  .serv-related-services-sec-card {
    background: #006d5b;
  }
  .serv-related-services-sec-heading {
    color: #00030c;
  }
  .serv-related-services-sec-description {
    color: #2f2f2f;
  }
  .serv-related-services-sec-card-title {
    color: #f1f5f9;
  }
  .serv-related-services-sec-card-description {
    color: #94a3b8;
  }
  .serv-related-services-sec-card-button {
    background-color: #f8fafc;
    color: #0f172a;
  }
  .serv-related-services-sec-arrow {
    background: #ffb000;
    border-color: #ffb000;
    color: #e2e8f0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .serv-related-services-sec {
    padding: 60px 0;
  }
  .serv-related-services-sec-heading {
    font-size: 32px;
  }
  .serv-related-services-sec-card-image {
    height: 200px;
  }
  .serv-related-services-sec-slider {
    padding: 0 40px;
  }
}

/*================= blogs page cards section css ==========================*/
.blg-pge-card-sec {
  padding: 70px 20px;
  background: #f8f8f8;
  overflow: hidden;
}

.blg-pge-card-sec__container {
  max-width: 1350px;
  margin: 0 auto;
}

.blg-pge-card-sec__heading-wrap {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}

.blg-pge-card-sec__heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  margin: 0 0 14px;
}

.blg-pge-card-sec__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  margin: 0;
}

.blg-pge-card-sec__slider-wrap {
  position: relative;
  padding: 0 60px;
}

.blg-pge-card-sec__slider {
  overflow: hidden;
}

.blg-pge-card-sec__card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blg-pge-card-sec__img-link {
  display: block;
  overflow: hidden;
}

.blg-pge-card-sec__img {
  width: 100%;
  height: 240px !important;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blg-pge-card-sec__card:hover .blg-pge-card-sec__img {
  transform: scale(1.06);
}

.blg-pge-card-sec__card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blg-pge-card-sec__card-title {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 14px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: calc(1.4em * 3);
}

.blg-pge-card-sec__card-title a {
  color: #111111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blg-pge-card-sec__card-title a:hover {
  color: #111111;
}

.blg-pge-card-sec__card-text {
  font-size: 15px;
  line-height: 1.75;
  color: #666666;
  margin: 0 0 18px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: calc(1.75em * 3);
}

.blg-pge-card-sec__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 18px;
  font-size: 14px;
  color: #777777;
}

.blg-pge-card-sec__author,
.blg-pge-card-sec__date {
  font-weight: 500;
  color: #1a1a1a !important;
}

.blg-pge-card-sec__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d0d0d0;
}

.blg-pge-card-sec__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  background: #006d5b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  width: fit-content;
}

.blg-pge-card-sec__btn:hover {
  transform: scale(0.94);
  background: #025547;
  color: #ffffff;
}

.blg-pge-card-sec__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  color: #111111;
}

.blg-pge-card-sec__nav:hover {
  background: #006d5b;
  color: #ffffff;
  transform: translateY(-50%) scale(0.95);
}

.blg-pge-card-sec__nav svg {
  width: 20px;
  height: 20px;
}

.blg-pge-card-sec__nav--prev {
  left: 0;
}

.blg-pge-card-sec__nav--next {
  right: 0;
}

.blg-pge-card-sec .swiper-slide {
  height: auto;
}

.blg-pge-card-sec .swiper-wrapper {
  align-items: stretch;
}

/* Tablet */
@media (max-width: 991px) {
  .blg-pge-card-sec {
    padding: 60px 18px;
  }

  .blg-pge-card-sec__heading {
    font-size: 34px;
  }

  .blg-pge-card-sec__slider-wrap {
    padding: 0 50px;
  }

  .blg-pge-card-sec__img {
    height: 220px;
  }

  .blg-pge-card-sec__card-body {
    padding: 20px 20px 22px;
  }

  .blg-pge-card-sec__card-title {
    font-size: 20px;
    line-height: 1.4;
    min-height: calc(1.4em * 3);
  }

  .blg-pge-card-sec__card-text {
    min-height: calc(1.75em * 3);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .blg-pge-card-sec {
    padding: 50px 15px;
  }

  .blg-pge-card-sec__heading-wrap {
    margin-bottom: 28px;
  }

  .blg-pge-card-sec__heading {
    font-size: 28px;
  }

  .blg-pge-card-sec__desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .blg-pge-card-sec__slider-wrap {
    padding: 0 38px;
  }

  .blg-pge-card-sec__img {
    height: 200px;
  }

  .blg-pge-card-sec__card-body {
    padding: 18px 18px 22px;
  }

  .blg-pge-card-sec__card-title {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 12px;
    min-height: calc(1.45em * 3);
  }

  .blg-pge-card-sec__card-text {
    font-size: 14px;
    line-height: 1.7;
    min-height: calc(1.7em * 3);
  }

  .blg-pge-card-sec__meta {
    font-size: 13px;
    gap: 8px;
  }

  .blg-pge-card-sec__btn {
    width: 100%;
  }

  .blg-pge-card-sec__nav {
    width: 40px;
    height: 40px;
  }

  .blg-pge-card-sec__nav--prev {
    left: -2px;
  }

  .blg-pge-card-sec__nav--next {
    right: -2px;
  }
}

@media (max-width: 480px) {
  .blg-pge-card-sec__slider-wrap {
    padding: 0 34px;
  }

  .blg-pge-card-sec__heading {
    font-size: 24px;
  }

  .blg-pge-card-sec__img {
    height: 190px !important;
  }

  .blg-pge-card-sec__card {
    border-radius: 14px;
  }

  .blg-pge-card-sec__card-body {
    padding: 16px 16px 20px;
  }

  .blg-pge-card-sec__card-title {
    font-size: 17px;
  }
}

/*============= blogs page first section css ===================*/

.blog-dett-pge-sec {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 40px 70px 60px;
  display: flex;
  gap: 30px;
  /* align-items: flex-start; */
  /* overflow-x: hidden; */
}

.blog-dett-pge-sec *,
.blog-dett-pge-sec *::before,
.blog-dett-pge-sec *::after {
  box-sizing: border-box;
}

.blog-dett-pge-sec__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
  max-width: 1230px;
  margin: auto;
}

.blog-dett-pge-sec__left,
.blog-dett-pge-sec__right {
  min-width: 0;
}

/* HERO IMAGE */
.blog-dett-pge-sec__hero-img-only {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-dett-pge-sec__hero-img-only img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.blog-dett-pge-sec__hero-content {
  margin-top: 0;
  margin-bottom: 30px;
}

.blog-dett-pge-sec__hero-title {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-dett-pge-sec__hero-desc {
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  font-family: var(--font);
}

/* LEFT COLUMN */
.blog-dett-pge-sec__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-dett-pge-sec__tag {
  font-size: 13px;
  font-weight: 700;
  color: #006d5b;
}

.blog-dett-pge-sec__date {
  font-size: 13px;
  color: #000000;
}

.blog-dett-pge-sec__title {
  font-size: 38px;
  line-height: 1.18;
  color: #111;
  margin-bottom: 22px;
  overflow-wrap: break-word;
}

.blog-dett-pge-sec__authors {
 display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 0px;
    padding-bottom: 10px;
  /* border-bottom: 1px solid #e4eeeb; */
  justify-content: space-between;
}
.blog-dett-pge-sec__social {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e4eeeb;
}

.blog-dett-pge-sec__author {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.blog-dett-pge-sec__author-photo-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #dfe9e5;
}

.blog-dett-pge-sec__author-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-dett-pge-sec__author-info {
  line-height: 1.45;
  min-width: 0;
}

.blog-dett-pge-sec__author-label {
  font-size: 12px;
  color: #000000;
  display: block;
  margin-bottom: 2px;
}

.blog-dett-pge-sec__author-name {
  font-size: 14px;
  font-weight: 700;
  color: #006d5b;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-dett-pge-sec__author-role {
  font-size: 12px;
  color: #555;
  display: block;
  margin-top: 2px;
  overflow-wrap: break-word;
}

.blog-dett-pge-sec__author-badge {
  font-size: 11px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.auth-icons {
  color: #006d5b;
  background: white;
}

.blog-dett-pge-sec__verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #1d9bf0;
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  flex-shrink: 0;
}

/* TABLE */
.blog-dett-pge-sec__table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e0ece9;
  margin-bottom: 32px;
  background: #fff;
  width: 100%;
  max-width: 100%;
}

.blog-dett-pge-sec__table-title {
  font-size: 22px;
  color: #111;
  padding: 20px 20px 16px;
  background: #fff;
  border-bottom: 1px solid #e0ece9;
}

.blog-dett-pge-sec__table-scroll {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 340px;
  background: #fff;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.blog-dett-pge-sec__table-scroll::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.blog-dett-pge-sec__table-scroll::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.blog-dett-pge-sec__table-scroll::-webkit-scrollbar-thumb {
  background: #006d5b;
  border-radius: 4px;
}

.blog-dett-pge-sec__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}

.blog-dett-pge-sec__table thead th {
  background: #006d5b;
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
}

.blog-dett-pge-sec__table tbody tr {
  border-bottom: 1px solid #edf4f2;
  transition: background 0.15s;
}

.blog-dett-pge-sec__table tbody tr:hover {
  background: #f0f9f6;
}

.blog-dett-pge-sec__table tbody td {
  padding: 14px 16px;
  color: #333;
  vertical-align: top;
  line-height: 1.55;
}

.blog-dett-pge-sec__table tbody td:first-child {
  font-weight: 700;
  color: #006d5b;
  white-space: nowrap;
}

/* CTA */
.blog-dett-pge-sec__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #006d5b;
  border-radius: 40px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.blog-dett-pge-sec__cta-left {
  max-width: 50%;
  min-width: 0;
}

.blog-dett-pge-sec__cta-left p {
  font-size: 24px !important;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-dett-pge-sec__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-dett-pge-sec__cta-btn-text {
  color: #005fcc !important;
  font-size: 20px !important;
  font-weight: 500;
}
.blog-dett-pge-sec__cta-btn-text1 {
  color: #006d5b !important;
  font-size: 20px !important;
  font-weight: 500;
}
.blog-dett-pge-sec__cta-btn-icon1 {
  color: #005fcc;
  font-size: 20px;
}
.blog-dett-pge-sec__cta-btn-icon2 {
  color: #006d5b;
  font-size: 20px;
}
.blog-dett-pge-sec__cta-btn {
  background: #fff;
  padding: 16px 16px;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  text-align: center;
}

.blog-dett-pge-sec__cta-btn:hover {
  transform: scale(1.06);
}

.blog-dett-pge-sec__cta-right-img {
  width: 260px;
  max-width: 100%;
  flex-shrink: 0;
  position: absolute;
  right: 35px;
  bottom: 0px;
}

.blog-dett-pge-sec__cta-right-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* RIGHT COLUMN */
.blog-dett-pge-sec__right {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* =========================
SEARCH + TABS SIDEBAR
========================= */

.blog-dett-pge-sec__sidebar-news {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 10px;
}

.blog-dett-pge-sec__search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.blog-dett-pge-sec__search-box input {
  width: 100%;
  height: 45px;
  border: 1px solid #ddd !important;
  border-radius: 10px;
  padding: 0 18px;
  font-size: 15px;
  outline: none;
}

.blog-dett-pge-sec__search-box button {
  width: 55px;
  min-width: 55px;
  height: 45px;
  border: none;
  border-radius: 10px;
  background: #006d5b;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.blog-dett-pge-sec__search-box:hover button {
  background: #ffb000;
  color: #1f1f1f;
}

/* TABS */

.blog-dett-pge-sec__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.blog-dett-pge-sec__tab-btn {
  flex: 1;
  height: 45px;
  background: #006d5b !important;
  border-radius: 8px;
  color: white !important;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.blog-dett-pge-sec__tab-btn :hover {
  background: #ffb000 !important;
  color: #000;
}

.blog-dett-pge-sec__tab-btn.active {
  background: #ffb000 !important;
  color: #161616 !important;
}

/* CONTENT */

.blog-dett-pge-sec__tab-content {
  display: none;
}

.blog-dett-pge-sec__tab-content.active {
  display: block;
}

/* NEWS ITEM */

.blog-dett-pge-sec__news-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.blog-dett-pge-sec__news-img {
 width: 95px !important;
    height: 70px !important;
    min-width: 95px !important;
    flex-shrink: 0;
    border-radius: 2px;
    overflow: hidden;
}

.blog-dett-pge-sec__news-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.blog-dett-pge-sec__news-content {
  flex: 1;
  min-width: 0;
}

.blog-dett-pge-sec__news-content h4 {
  font-size: 16px !important;
  line-height: 1.4;
  margin: 0 0 8px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-dett-pge-sec__news-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  color: #777;
  font-size: 13px;
}
.blog-dett-pge-sec__news-meta span {
  font-size: 13px;
}
.blog-dett-pge-sec__news-item a.d-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-decoration: none;
}

/* MOBILE */

@media (max-width: 768px) {
  .blog-dett-pge-sec__sidebar-news {
    padding: 15px;
  }

  .blog-dett-pge-sec__tabs {
    gap: 8px;
  }

  .blog-dett-pge-sec__tab-btn {
    font-size: 14px;
    height: 42px;
  }

  .blog-dett-pge-sec__news-item {
    gap: 12px;
  }

  .blog-dett-pge-sec__news-img {
    width: 75px;
    height: 75px;
    min-width: 75px;
  }

  .blog-dett-pge-sec__news-content h4 {
    font-size: 17px;
  }
  .blog-dett-pge-sec__cta-right-img {
    right: 5px;
  }
  .blog-dett-pge-sec__cta-btn-icon1 {
    font-size: 13px;
  }
  .blog-dett-pge-sec__cta-btn-icon2 {
    font-size: 13px;
  }
}
.blog-dett-pge-sec__form-card,
.blog-dett-pge-sec__toc,
.blog-dett-pge-sec__categories {
  width: 100%;
  max-width: 100%;
}

.blog-dett-pge-sec__form-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e0ece9;
  box-shadow: 0 4px 24px rgba(0, 109, 91, 0.07);
}

.blog-dett-pge-sec__form-title {
  font-size: 20px;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}

.blog-dett-pge-sec__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-dett-pge-sec__form-field {
  margin-bottom: 12px;
  min-width: 0;
}

.blog-dett-pge-sec__form-field input,
.blog-dett-pge-sec__form-field select {
  width: 100%;
  max-width: 100%;
  padding: 11px 14px !important;
  border: 1.5px solid #dde8e5;
  border-radius: 30px !important;
  font-family: var(--font);
  font-size: 14px;
  color: #222;
  background: #fafcfb;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.blog-dett-pge-sec__form-field input::placeholder {
  color: #aaa;
}

.blog-dett-pge-sec__form-field input:focus,
.blog-dett-pge-sec__form-field select:focus {
  border-color: #006d5b;
  box-shadow: 0 0 0 3px rgba(0, 109, 91, 0.1);
  background: #fff;
}

.blog-dett-pge-sec__form-phone {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  width: 100%;
}

.blog-dett-pge-sec__form-phone .blog-dett-pge-sec__form-field {
  margin-bottom: 0;
}

.blog-dett-pge-sec__form-phone .blog-dett-pge-sec__form-field:first-child {
  flex: 0 0 74px;
}

.blog-dett-pge-sec__form-phone .blog-dett-pge-sec__form-field:last-child {
  flex: 1 1 auto;
  min-width: 0;
}

.blog-dett-pge-sec__select-wrap {
  position: relative;
}

.blog-dett-pge-sec__select-wrap::after {
  content: "\f107";
  font-family: var(--font);
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #006d5b;
  pointer-events: none;
  font-size: 13px;
}

.blog-dett-pge-sec__form-note {
  font-size: 11px;
  color: #353434;
  line-height: 1.5;
  margin-bottom: 16px;
}

.blog-dett-pge-sec__form-note a {
  color: #006d5b;
  text-decoration: underline;
}

.blog-dett-pge-sec__form-submit {
  width: 100%;
  padding: 13px;
  background: #ffb000 !important;
  color: #020202;
  border: none;
  border-radius: 30px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-text-blg {
  color: #141414 !important;
}

.blog-dett-pge-sec__form-submit:hover {
  background: #005546;
  transform: translateY(-1px);
}

/* TOC */
.blog-dett-pge-sec__toc {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e0ece9;
  box-shadow: 0 2px 12px rgba(0, 109, 91, 0.05);
}

.blog-dett-pge-sec__toc-title {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.blog-dett-pge-sec__toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0;
  margin: 0;
}

.blog-dett-pge-sec__toc-list li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 7px;
  transition:
    background 0.15s,
    color 0.15s;
  line-height: 1.4;
}

.blog-dett-pge-sec__toc-list li a i {
  margin-top: 2px;
  color: #006d5b;
  flex-shrink: 0;
}

.blog-dett-pge-sec__toc-list li a:hover {
  background: #f0f9f6;
  color: #006d5b;
}

.blog-dett-pge-sec__toc-active a {
  color: #006d5b !important;
  font-weight: 700;
}

/* CATEGORIES */
.blog-dett-pge-sec__categories {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e0ece9;
  box-shadow: 0 2px 12px rgba(0, 109, 91, 0.05);
}

.blog-dett-pge-sec__categories-title {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
}

.blog-dett-pge-sec__categories-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-dett-pge-sec__category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  border: 1px solid #e4eeeb;
  text-decoration: none;
  transition:
    background 0.15s,
    border-color 0.15s;
  cursor: pointer;
  min-width: 0;
}

.blog-dett-pge-sec__category-item:hover {
  background: #f0f9f6;
  border-color: #006d5b;
}

.blog-dett-pge-sec__category-item span:first-child {
  font-size: 13px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.blog-dett-pge-sec__category-item span:first-child i {
  color: #006d5b;
}

.blog-dett-pge-sec__category-count {
  font-size: 12px;
  color: #888;
  background: #f2f2f2;
  border-radius: 20px;
  padding: 2px 8px;
  font-weight: 700;
  flex-shrink: 0;
}
.wp-block-heading {
  font-size: 24px !important;
}

/* TABLET */
@media (max-width: 991px) {
  .blog-dett-pge-sec {
    padding: 50px 18px 40px;
  }

  .blog-dett-pge-sec__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .blog-dett-pge-sec__right {
    position: static;
    order: 2;
  }

  .blog-dett-pge-sec__left {
    order: 1;
  }

  .blog-dett-pge-sec__title {
    font-size: 30px;
  }

  .blog-dett-pge-sec__table-title {
    font-size: 18px;
  }

  .blog-dett-pge-sec__cta {
    padding: 24px;
  }

  .blog-dett-pge-sec__cta-left {
    max-width: calc(100% - 220px);
  }

  .blog-dett-pge-sec__cta-right-img {
    width: 200px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .blog-dett-pge-sec {
    padding: 30px 15px;
  }

  .blog-dett-pge-sec__inner {
    gap: 22px;
  }

  .blog-dett-pge-sec__meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .blog-dett-pge-sec__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .blog-dett-pge-sec__authors {
   flex-direction: row;
        gap: 14px;
        margin-bottom: 5px;
        padding-bottom: 5px;
  }

  .blog-dett-pge-sec__author {
    align-items: flex-start;
  }

  .blog-dett-pge-sec__hero-img-only {
    margin-bottom: 16px;
  }

  .blog-dett-pge-sec__hero-img-only img {
    height: 220px;
  }

  .blog-dett-pge-sec__hero-title {
    font-size: 22px;
  }

  .blog-dett-pge-sec__hero-desc {
    font-size: 16px;
    line-height: 1.7;
  }
  .wp-block-heading {
    font-size: 20px !important;
  }

  .blog-dett-pge-sec__form-row {
    grid-template-columns: 1fr;
  }

  .blog-dett-pge-sec__form-card {
    padding: 18px 14px;
  }

  .blog-dett-pge-sec__form-title {
    font-size: 17px;
  }

  .blog-dett-pge-sec__form-phone {
    flex-wrap: nowrap;
  }

  .blog-dett-pge-sec__form-phone .blog-dett-pge-sec__form-field:first-child {
    flex: 0 0 68px;
  }

  .blog-dett-pge-sec__cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 16px;
    gap: 18px;
  }

  .blog-dett-pge-sec__cta-left {
    max-width: 100%;
    width: 100%;
  }

  .blog-dett-pge-sec__cta-left p {
    font-size: 18px !important;
    margin-bottom: 14px;
  }

  .blog-dett-pge-sec__cta-buttons {
    width: 100%;
  }

  .blog-dett-pge-sec__cta-btn {
    width: 60%;
    font-size: 13px;
    padding: 10px 10px;
  }
  .blog-dett-pge-sec__cta-btn-text1 {
    font-size: 14px !important;
  }

  .blog-dett-pge-sec__cta-right-img {
    width: 100%;
    max-width: 120px;
    margin: 0 auto;
  }

  .blog-dett-pge-sec__table-title {
    font-size: 15px;
    padding: 14px 14px 12px;
  }

  .blog-dett-pge-sec__table {
    font-size: 13px;
    min-width: 560px;
  }

  .blog-dett-pge-sec__table thead th,
  .blog-dett-pge-sec__table tbody td {
    padding: 10px 12px;
  }

  .blog-dett-pge-sec__toc,
  .blog-dett-pge-sec__categories {
    padding: 16px;
  }
  .blog-dett-pge-sec__cta-btn-text {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .blog-dett-pge-sec__hero-img-only img {
    height: 180px;
  }

  .blog-dett-pge-sec__title {
    font-size: 22px;
  }

  .blog-dett-pge-sec__hero-title {
    font-size: 20px;
  }

  .blog-dett-pge-sec__hero-desc {
    font-size: 16px;
  }
  .intro-text a {
    font-size: 16px !important;
  }
  .intro-text p strong{
    font-size: 16px;
  }
  .intro-text strong a{
    font-size: 16px;
  }
  .serv-cont-sec-table-container table tr td {
    font-size: 16px !important;
  }

  .blog-dett-pge-sec__form-phone {
    gap: 6px;
  }

  .blog-dett-pge-sec__form-phone .blog-dett-pge-sec__form-field:first-child {
    flex: 0 0 62px;
  }

  .blog-dett-pge-sec__table {
    min-width: 520px;
  }
  .blg-insight-sec-content p span {
    font-size: 13px !important;
  }
}

.form-select-p select {
  width: 100%;
  padding: 8px !important;
  border-radius: 50px !important;
  color: #939393;
  font-size: 14px;
}

.serv-new-blgs-sec {
  padding: 70px 40px;
  background: #f6f8fb;
  font-family: var(--font);
  overflow: hidden;
}

.serv-new-blgs-sec-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* HEADER */
.serv-new-blgs-sec-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px;
  gap: 20px;
}

.serv-new-blgs-sec-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #ffb03f;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.serv-new-blgs-sec-title {
  font-size: 34px;
  font-weight: 800;
  color: #18233d;
  line-height: 1.2;
  margin: 0;
}

.serv-new-blgs-sec-viewall {
  border: 2px solid #ffb000;
  color: #ffb000;
  background: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.serv-new-blgs-sec-viewall:hover {
  background: #ffb03f;
  color: #000000;
  transform: translateY(-3px);
}

/* SWIPER */
.serv-new-blgs-sec-swiper {
  padding-bottom: 80px !important;
   overflow-y: visible !important;
}
.serv-new-blgs-sec-swiper .swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 30px !important;
}
.serv-new-blgs-sec-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* CARD */
.serv-new-blgs-sec-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: all 0.35s ease;
  border: 1px solid #edf0f5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.serv-new-blgs-sec-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* IMAGE FIXED HEIGHT */
.serv-new-blgs-sec-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.serv-new-blgs-sec-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.5s ease; */
  border-radius: 10px;
}

/* .serv-new-blgs-sec-card:hover .serv-new-blgs-sec-card-img-wrap img {
  transform: scale(1.08);
} */

/* BODY */
.serv-new-blgs-sec-card-body {
  padding: 0px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* TITLE */
.serv-new-blgs-sec-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #0e0e0e;
  line-height: 1.4;
  margin-bottom: 14px;

  min-height: 56px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* DESCRIPTION 2 LINE FIX */
.serv-new-blgs-sec-card-excerpt {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 22px;

  min-height: 52px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* BUTTON BOTTOM */
.serv-new-blgs-sec-card-readmore {
  margin-top: auto;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  width: fit-content;

  padding: 10px 18px;
  border-radius: 30px;

  background: #ffb000;
  color: #000000 !important;

  font-size: 14px !important;
  font-weight: 800;
  text-decoration: none;

  transition: all 0.3s ease;
}

.serv-new-blgs-sec-card-readmore svg {
  transition: transform 0.3s ease;
}

.serv-new-blgs-sec-card-readmore:hover {
  background: #ffb03f;
  color: #fff;
}

.serv-new-blgs-sec-card-readmore:hover svg {
  transform: translateX(4px);
}

/* PAGINATION */
.serv-new-blgs-sec-swiper .swiper-pagination {
  bottom: 0 !important;
}

.serv-new-blgs-sec-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d7e2 !important;
  opacity: 1;
  transition: all 0.3s ease;
}

.serv-new-blgs-sec-swiper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 20px;
  background: #ffb03f !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .serv-new-blgs-sec {
    padding: 55px 20px;
  }

  .serv-new-blgs-sec-title {
    font-size: 28px;
  }

  .serv-new-blgs-sec-card-img-wrap {
    height: 220px;
  }
  .serv-new-blgs-sec-card-excerpt {
  font-size: 16px;
}
}

@media (max-width: 580px) {
  .serv-new-blgs-sec {
    padding: 45px 14px;
  }

  .serv-new-blgs-sec-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .serv-new-blgs-sec-title {
    font-size: 28px;
  }

  .serv-new-blgs-sec-card-img-wrap {
    height: 210px;
  }

  .serv-new-blgs-sec-card-body {
    padding: 20px;
  }

  .serv-new-blgs-sec-card-title {
    font-size: 18px;
  }
}
/*-------------- about hero section css------------------- */
.abot-sec-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.abot-sec-hero-cont {
  max-width: 1200px;
  margin: auto;
}

/* Background image */
.abot-sec-hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.abot-sec-hero-bg img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Green overlay */
.abot-sec-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgb(0 120 90) 0%,
    rgb(0 120 90 / 71%) 40%,
    rgb(0 120 90 / 47%) 70%,
    rgb(5 91 70 / 55%) 100%
  );
}

/* Content */
.abot-sec-hero-content {
  position: relative;
  z-index: 2;
  padding-left: 80px;
  color: #fff;
}

.abot-sec-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.abot-sec-hero-breadcrumb {
  font-size: 16px;
  opacity: 0.9;
}

.abot-sec-hero-breadcrumb span {
  margin: 0 6px;
  color: white !important;
}

.abot-sec-hero-breadcrumb .active {
  color: #f4b400;
}
@media (max-width: 1024px) {
  .abot-sec-hero {
    height: 30vh;
    margin-top: 110px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .abot-sec-hero {
    height: 40vh;
    margin-top: 70px;
  }

  .abot-sec-hero-content {
    padding-left: 20px;
  }

  .abot-sec-hero-title {
    font-size: 30px;
  }
}

/* ========== SECTION ========== */
.about-us-cont-sec {
  padding: 70px 30px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ========== LEFT: IMAGE GRID ========== */
.about-us-cont-sec__images {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.about-us-cont-sec__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about-us-cont-sec__img-top {
  grid-column: 1 / -1;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
}

.about-us-cont-sec__img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-us-cont-sec__img-bl,
.about-us-cont-sec__img-br {
  border-radius: 14px;
  overflow: hidden;
  height: 190px;
}

.about-us-cont-sec__img-bl img,
.about-us-cont-sec__img-br img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats badge */
.about-us-cont-sec__badge {
  position: absolute;
  bottom: -18px;
  left: 60px;
  background: #f5c842;
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 5;
  min-width: 200px;
}

.about-us-cont-sec__badge-icon {
  width: 48px;
  height: 48px;
  position: relative;
}

.about-us-cont-sec__badge-icon svg {
  width: 48px;
  height: 48px;
}

.about-us-cont-sec__badge-text {
  display: flex;
  flex-direction: column;
}

.about-us-cont-sec__counter {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.about-us-cont-sec__counter-label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-top: 2px;
}

/* dot pattern */
.about-us-cont-sec__dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100px;
  height: 90px;
  background-image: radial-gradient(circle, #ccc 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 0;
  opacity: 0.5;
}

/* ========== RIGHT: CONTENT ========== */
.about-us-cont-sec__content {
  flex: 1;
}

.about-us-cont-sec__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2d7a5b;
  margin-bottom: 14px;
  display: block;
}

.about-us-cont-sec__heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #0f2b1e;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-us-cont-sec__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
  text-align: justify;
}

/* Features list */
.about-us-cont-sec__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 30px;
  margin-bottom: 30px;
}

.about-us-cont-sec__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.about-us-cont-sec__feature-icon {
  width: 36px;
  height: 36px;
  background: #fff8e7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c49a00;
  font-size: 15px;
  flex-shrink: 0;
}

/* Bottom row: CTA + video thumb */
.about-us-cont-sec__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* CTA Button */
.about-us-cont-sec__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: #1b5e40;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.35s ease;
  z-index: 0;
  cursor: pointer;
  border: none;
}

.about-us-cont-sec__btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: #f5c842;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.about-us-cont-sec__btn:hover::after {
  height: 100%;
}

.about-us-cont-sec__btn:hover {
  color: #1a1a1a;
}

.about-us-cont-sec__btn i {
  transition: transform 0.3s ease;
}

.about-us-cont-sec__btn:hover i {
  transform: translateX(4px);
}

/* Video Thumbnail */
.about-us-cont-sec__video-thumb {
  position: relative;
  width: 120px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
}

.about-us-cont-sec__video-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.about-us-cont-sec__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s;
}

.about-us-cont-sec__play-btn:hover {
  background: rgba(0, 0, 0, 0.4);
}

.about-us-cont-sec__play-btn i {
  width: 38px;
  height: 38px;
  background: #1b5e40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  padding-left: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    background 0.3s;
}

.about-us-cont-sec__play-btn:hover i {
  transform: scale(1.1);
  background: #f5c842;
  color: #1a1a1a;
}

/* ========== VIDEO OVERLAY ========== */
.about-us-cont-sec__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: aboutFadeIn 0.3s ease;
}

.about-us-cont-sec__overlay.active {
  display: flex;
}

@keyframes aboutFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.about-us-cont-sec__overlay-inner {
  position: relative;
  width: 90%;
  max-width: 860px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: aboutSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes aboutSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.about-us-cont-sec__overlay-inner iframe,
.about-us-cont-sec__overlay-inner video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.about-us-cont-sec__close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition:
    color 0.2s,
    transform 0.2s;
}

.about-us-cont-sec__close-btn:hover {
  color: #f5c842;
  transform: rotate(90deg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-us-cont-sec {
    flex-direction: column;
    gap: 60px;
    padding: 50px 30px;
  }
  .about-us-cont-sec__images,
  .about-us-cont-sec__content {
    max-width: 100%;
    flex: unset;
    width: 100%;
  }
  .about-us-cont-sec__images {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .about-us-cont-sec {
    padding: 40px 16px;
    gap: 50px;
  }
  .about-us-cont-sec__img-top {
    height: 180px;
  }
  .about-us-cont-sec__img-bl,
  .about-us-cont-sec__img-br {
    height: 140px;
  }

  .about-us-cont-sec__badge {
    left: 10px;
    bottom: -22px;
    padding: 10px 16px;
    min-width: 170px;
  }
  .about-us-cont-sec__counter {
    font-size: 22px;
  }

  .about-us-cont-sec__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-us-cont-sec__heading {
    font-size: 24px;
  }

  .about-us-cont-sec__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us-cont-sec__video-thumb {
    width: 100%;
    height: 160px;
  }
}

.abot-why-us-sec {
  background: #eef4f2;
  padding: 60px 20px 20px 20px;
}

.abot-why-us-sec-container {
  max-width: 1270px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.abot-why-us-sec-left {
  flex: 1;
}

.abot-why-us-sec-subtitle {
  color: #0c7a63;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.abot-why-us-sec-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.abot-why-us-sec-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.abot-why-us-sec-tab {
  padding: 10px 18px;
  border: none;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  color: #006d5b;
}
.abot-why-us-sec-tab:hover {
  color: #f9fafa;
}

.abot-why-us-sec-tab.active {
  background: #f4a300;
  color: #000;
}

.abot-why-us-sec-content {
  display: none;
}

.abot-why-us-sec-content.active {
  display: block;
}

.abot-why-us-sec-content p {
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.abot-why-us-sec-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.abot-why-us-sec-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.abot-why-us-sec-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #006d5b;
}

.abot-why-us-sec-chart {
  display: flex;
  align-items: center;
  gap: 15px;
}

.abot-why-us-sec-chart .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: conic-gradient(#0c7a63 0% 70%, #f4a300 70% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
}

.abot-why-us-sec-chart.alt .circle {
  background: conic-gradient(#f4a300 0% 67%, #ddd 67% 100%);
}

.abot-why-us-sec-right {
  flex: 1;
}

.abot-why-us-sec-right img {
  width: 100%;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .abot-why-us-sec-container {
    flex-direction: column;
  }
}

.about-us-cont-sec {
  padding: 70px 10px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-us-cont-sec__images {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.about-us-cont-sec__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about-us-cont-sec__img-top {
  grid-column: 1 / -1;
  border-radius: 16px;
  overflow: hidden;
  height: 240px;
}

.about-us-cont-sec__img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-us-cont-sec__img-bl,
.about-us-cont-sec__img-br {
  border-radius: 14px;
  overflow: hidden;
  height: 190px;
}

.about-us-cont-sec__img-bl img,
.about-us-cont-sec__img-br img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats badge */
.about-us-cont-sec__badge {
  position: absolute;
  bottom: -18px;
  left: 60px;
  background: #f5c842;
  border-radius: 14px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  z-index: 5;
  min-width: 200px;
}

.about-us-cont-sec__badge-icon {
  width: 48px;
  height: 48px;
  position: relative;
}

.about-us-cont-sec__badge-icon svg {
  width: 48px;
  height: 48px;
}

.about-us-cont-sec__badge-text {
  display: flex;
  flex-direction: column;
}

.about-us-cont-sec__counter {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.about-us-cont-sec__counter-label {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-top: 2px;
}

/* dot pattern */
.about-us-cont-sec__dots {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100px;
  height: 90px;
  background-image: radial-gradient(circle, #ccc 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 0;
  opacity: 0.5;
}

/* ========== RIGHT: CONTENT ========== */
.about-us-cont-sec__content {
  flex: 1;
}

.about-us-cont-sec__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2d7a5b;
  margin-bottom: 14px;
  display: block;
}

.about-us-cont-sec__heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #0f2b1e;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-us-cont-sec__desc {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Features list */
.about-us-cont-sec__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 30px;
  margin-bottom: 30px;
}

.about-us-cont-sec__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  cursor: default;
}
.about-us-cont-sec__feature span {
  transition: color 0.25s;
}
.about-us-cont-sec__feature:hover span {
  color: #1b5e40;
}

.about-us-cont-sec__feature-icon {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #e8c84a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c49a00;
  font-size: 17px;
  flex-shrink: 0;
  transition:
    background 0.25s,
    color 0.25s;
}
.about-us-cont-sec__feature:hover .about-us-cont-sec__feature-icon {
  background: #f5c842;
  color: #1a1a1a;
}

/* Bottom row: CTA + video thumb */
.about-us-cont-sec__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 4px;
}

/* CTA Button */
.about-us-cont-sec__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  background: #1b5e40;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.35s ease;
  z-index: 0;
  cursor: pointer;
  border: none;
}

.about-us-cont-sec__btn::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: #f5c842;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.about-us-cont-sec__btn:hover::after {
  height: 100%;
}

.about-us-cont-sec__btn:hover {
  color: #1a1a1a;
}

.about-us-cont-sec__btn i {
  transition: transform 0.3s ease;
}

.about-us-cont-sec__btn:hover i {
  transform: translateX(4px);
}

.about-us-cont-sec__video-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  min-height: 200px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.about-us-cont-sec__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-us-cont-sec__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s;
}

.about-us-cont-sec__play-btn:hover {
  background: rgba(0, 0, 0, 0.4);
}

.about-us-cont-sec__play-btn i {
  width: 38px;
  height: 38px;
  background: #1b5e40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  padding-left: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s,
    background 0.3s;
}

.about-us-cont-sec__play-btn:hover i {
  transform: scale(1.1);
  background: #f5c842;
  color: #1a1a1a;
}

.about-us-cont-sec__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: aboutFadeIn 0.3s ease;
}

.about-us-cont-sec__overlay.active {
  display: flex;
}

@keyframes aboutFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about-us-cont-sec__features-row {
  display: flex;
  gap: 25px;
}

.about-us-cont-sec__overlay-inner {
  position: relative;
  width: 90%;
  max-width: 860px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: aboutSlideUp 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes aboutSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.about-us-cont-sec__overlay-inner iframe,
.about-us-cont-sec__overlay-inner video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.about-us-cont-sec__close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition:
    color 0.2s,
    transform 0.2s;
}

.about-us-cont-sec__close-btn:hover {
  color: #f5c842;
  transform: rotate(90deg);
}

@media (max-width: 1024px) {
  .about-us-cont-sec {
    flex-direction: column;
    gap: 60px;
    padding: 50px 30px;
  }
  .about-us-cont-sec__images,
  .about-us-cont-sec__content {
    max-width: 100%;
    flex: unset;
    width: 100%;
  }
  .about-us-cont-sec__images {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  .about-us-cont-sec {
    padding: 40px 16px;
    gap: 50px;
  }
  .about-us-cont-sec__img-top {
    height: 180px;
  }
  .about-us-cont-sec__img-bl,
  .about-us-cont-sec__img-br {
    height: 140px;
  }

  .about-us-cont-sec__badge {
    left: 10px;
    bottom: -22px;
    padding: 10px 16px;
    min-width: 170px;
  }
  .about-us-cont-sec__counter {
    font-size: 22px;
  }

  .about-us-cont-sec__features-row {
    flex-direction: column;
  }
  .about-us-cont-sec__features-right {
    width: 100%;
    height: 200px;
  }

  .about-us-cont-sec__heading {
    font-size: 24px;
  }

  .about-us-cont-sec__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-us-cont-sec__video-thumb {
    width: 100%;
    height: 160px;
  }
}
.about-us-cont-sec__video-input-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px;
  text-align: center;
  color: #fff;
  gap: 16px;
}
.about-us-cont-sec__video-input-screen > i {
  font-size: 54px;
  color: #f5c842;
}
.about-us-cont-sec__video-input-screen p {
  font-size: 16px;
  color: #ccc;
}
.about-us-cont-sec__input-row {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 560px;
}
.about-us-cont-sec__input-row input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: 2px solid #444;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
}
.about-us-cont-sec__input-row input:focus {
  border-color: #f5c842;
}
.about-us-cont-sec__input-row button {
  padding: 12px 22px;
  background: #1b5e40;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.25s,
    color 0.25s;
}
.about-us-cont-sec__input-row button:hover {
  background: #f5c842;
  color: #1a1a1a;
}
#aboutVideoError {
  color: #ff6b6b;
  font-size: 13px;
  min-height: 18px;
}

.about-counter-sec {
  width: 100%;
  margin: 0 auto;
  background: #0c7a63;
  transition: all 0.2s ease;
  overflow: hidden;
}

.about-counter-sec-inner {
  max-width: 1350px;
  padding: 3rem 2rem;
  margin: auto;
}

.about-counter-sec-headline {
  text-align: center;
  margin-bottom: 3rem;
}

.about-counter-sec-headline h2 {
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1e2a3e, #0f2b3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff;
  letter-spacing: -0.02em;
}

.about-counter-sec-headline p {
  color: #fff;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-weight: 500;
  opacity: 0.85;
}

.about-counter-sec-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.8rem;
  row-gap: 2.5rem;
}

.about-counter-sec-card {
  flex: 1 1 180px;
  min-width: 160px;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  padding: 1.5rem 0.8rem;
  border-radius: 2rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.2s;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.about-counter-sec-card:hover {
  transform: translateY(-6px);
  background: white;
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
  border-color: rgba(100, 108, 255, 0.2);
}

.about-counter-sec-number {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(125deg, #0b2b40, #1e4a6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  font-family: var(--font);
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}

.about-counter-sec-suffix {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(125deg, #0b2b40, #1e4a6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-counter-sec-unit {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(125deg, #0b2b40, #1e4a6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-counter-sec-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1f3b4a;
  letter-spacing: 0.3px;
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.85;
}

@media (min-width: 640px) {
  .about-counter-sec-label {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  .about-counter-sec-number {
    font-size: 3.8rem;
  }
  .about-counter-sec-suffix,
  .about-counter-sec-unit {
    font-size: 2.2rem;
  }
}

.about-counter-sec-number span {
  display: inline-block;
}

@media (max-width: 768px) {
  .about-counter-sec-inner {
    padding: 2rem 1.2rem;
  }
  .about-counter-sec-grid {
    gap: 1.2rem;
    justify-content: center;
  }
  .about-counter-sec-card {
    flex: 1 1 160px;
    min-width: 140px;
    padding: 1.2rem 0.5rem;
  }
  .about-counter-sec-number {
    font-size: 2.6rem;
  }
  .about-counter-sec-suffix,
  .about-counter-sec-unit {
    font-size: 1.6rem;
  }
}

@media (max-width: 550px) {
  .about-counter-sec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }
  .about-counter-sec-card {
    min-width: auto;
  }
  .about-counter-sec-number {
    font-size: 2.4rem;
  }
  .about-counter-sec-suffix,
  .about-counter-sec-unit {
    font-size: 1.5rem;
  }
  .about-counter-sec-headline h2 {
    font-size: 1.5rem;
  }
}

.about-counter-sec-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #2b7a62, #55c2a3);
  margin: 0.8rem auto 0;
  border-radius: 4px;
}

.about-counter-sec-note {
  text-align: center;
  margin-top: 2.2rem;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 500;
  opacity: 0.7;
}

.about-testi-sec {
  padding: 60px 0;
  background: #fff;
  font-family: var(--font);
}
.abt-testi-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.abt-testi-left {
  min-width: 240px;
  max-width: 260px;
  flex-shrink: 0;
  padding-top: 8px;
}
.abt-testi-badge {
  font-size: 11px;
  font-weight: 700;
  color: #2aa68a;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.abt-testi-left h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0d2b2b;
  line-height: 1.22;
  margin: 0 0 14px;
}
.abt-testi-left p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}
.abt-testi-right {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.abt-testi-swiper {
  width: 100%;
  cursor: grab;
}
.abt-testi-swiper:active {
  cursor: grabbing;
}
.abt-testi-card {
  background: #edf5f3;
  border-radius: 14px;
  padding: 26px 22px 20px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  height: 100%;
}
.abt-testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.abt-testi-stars span {
  color: #f5a623;
  font-size: 17px;
}
.abt-testi-quote {
  font-size: 13px;
  color: #374151;
  line-height: 1.65;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  height: calc(1.5em * 3);
}
.abt-testi-author {
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 2;
}
.abt-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #b8d9d3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #1a6b5a;
  flex-shrink: 0;
}
.abt-testi-author-info h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #0d2b2b;
  margin: 0 0 2px;
}
.abt-testi-author-info p {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}
.abt-testi-bigquote {
  position: absolute;
  bottom: -14px;
  right: 10px;
  font-size: 110px;
  color: rgba(42, 166, 138, 0.1);
  font-family: var(--font);
  line-height: 1;
  user-select: none;
  z-index: 1;
}
.swiper-slide {
  height: auto;
  display: flex;
}

@media (max-width: 900px) {
  .abt-testi-inner {
    flex-direction: column;
    gap: 28px;
  }
  .abt-testi-left {
    min-width: unset;
    max-width: 100%;
  }
  .abt-testi-left h2 {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .about-testi-sec {
    padding: 36px 0;
  }
  .abt-testi-left h2 {
    font-size: 22px;
  }
  .abt-testi-card {
    padding: 20px 16px 18px;
  }
}
.abt-testi-right {
  overflow: visible;
}

.about-partners-sec {
  padding: 40px 0 50px;
  background: #fff;
  font-family: var(--font);
  text-align: center;
}
.abt-partners-tagline {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 36px;
}
.abt-partners-tagline strong {
  color: #111827;
  font-weight: 700;
}
.abt-partners-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.abt-partners-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s ease;
  filter: grayscale(100%) opacity(0.45);
  cursor: pointer;
}
.abt-partners-logo:hover {
  filter: grayscale(0%) opacity(1);
}
.abt-partners-logo img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.abt-partners-logo svg {
  height: 32px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .abt-partners-grid {
    gap: 28px 36px;
  }
  .abt-partners-logo img {
    height: 26px;
  }
  .abt-partners-logo svg {
    height: 26px;
  }
}
@media (max-width: 480px) {
  .abt-partners-grid {
    gap: 24px 28px;
  }
  .abt-partners-logo img {
    height: 22px;
  }
  .abt-partners-logo svg {
    height: 22px;
  }
}

.cont-form-sec {
  padding: 60px 20px;
  background: #f8f9fa;
}

.cont-form-sec-wrapper {
  max-width: 1270px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* LEFT */
.cont-form-sec-left {
  flex: 1;
}

.cont-form-sec-map iframe {
  border-radius: 10px;
}

.cont-form-sec-info {
  margin-top: 20px;
}

.cont-form-sec-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}

.cont-form-sec-info-item i {
  color: #006d5b;
  font-size: 18px;
}

.cont-form-sec-right {
  flex: 0.7;
  display: flex;
  justify-content: center;
}

.cont-form-sec-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cont-form-sec-form input,
.cont-form-sec-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
}

.cont-form-sec-form input:focus,
.cont-form-sec-form textarea:focus {
  border-color: #28a745;
}

/* BUTTON */
.cont-form-sec-btn {
  background: #006d5b;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cont-form-sec-btn::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffc107;
  z-index: -1;
  transition: 0.4s;
}

.cont-form-sec-btn:hover::before {
  top: 0;
}

.cont-form-sec-btn:hover {
  color: #000;
}

@media (max-width: 992px) {
  .cont-form-sec-wrapper {
    flex-direction: column;
  }
}

.cont-form-sec-left {
  flex: 1;
}
.cont-form-sec-info-title {
  margin: 0px;
}

.cont-form-sec-form-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cont-form-sec-form input,
.cont-form-sec-form textarea {
  background: #f9f9f9;
}
.abot-sec-cards-sec {
  padding: 15px 20px 40px 20px;
  background: #eef4f2;
}

.abot-sec-cards-sec-container {
  max-width: 1270px;
  margin: auto;
}

.abot-sec-cards-sec-heading {
  text-align: center;
  margin-bottom: 50px;
}

.abot-sec-cards-sec-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.abot-sec-cards-sec-heading p {
  color: #666;
  max-width: 600px;
  margin: auto;
}

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

.abot-sec-cards-sec-card {
  background: #fff;
  padding: 25px 25px 25px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  position: relative;
}

.abot-sec-cards-sec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.abot-sec-cards-sec-icon {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.abot-sec-cards-sec-icon i {
  color: #006d5b;
  font-size: 20px;
}

.abot-sec-cards-sec-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.abot-sec-cards-sec-card p {
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

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

@media (max-width: 576px) {
  .abot-sec-cards-sec-grid {
    grid-template-columns: 1fr;
  }

  .abot-sec-cards-sec-heading h2 {
    font-size: 26px;
  }
}

.abot-slide-cards-sec {
  padding: 80px 20px;
  background: #f8f9fa;
}

.abot-slide-cards-sec-container {
  max-width: 1270px;
  margin: auto;
}

/* Header */
.abot-slide-cards-sec-header {
  text-align: center;
  margin-bottom: 50px;
}

.abot-slide-cards-sec-header h2 {
  font-size: 36px;
  font-weight: 700;
}

/* Rows */
.abot-slide-cards-sec-row {
  display: grid;
  gap: 25px;
  margin-bottom: 25px;
  margin-top: 20px;
}

/* Row 1 → 2 cards center */
.abot-slide-cards-sec-row-top {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: auto;
}

/* Row 2 → 3 cards */
.abot-slide-cards-sec-row-bottom {
  grid-template-columns: repeat(3, 1fr);
}

/* Card */
.abot-slide-cards-sec-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;

  /* Equal Height Trick */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 220px;
}

.abot-slide-cards-sec-card:hover {
  transform: translateY(-8px);
}

/* Icon */
.abot-slide-cards-sec-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e6f4ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abot-slide-cards-sec-icon i {
  font-size: 24px;
  color: green;
}

.abot-slide-cards-sec-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.abot-slide-cards-sec-card p {
  font-size: 14px;
  color: #555;
  text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
  .abot-slide-cards-sec-row-top,
  .abot-slide-cards-sec-row-bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .abot-slide-cards-sec-row-top,
  .abot-slide-cards-sec-row-bottom {
    grid-template-columns: 1fr;
  }

  .abot-slide-cards-sec-header h2 {
    font-size: 26px;
  }
}

.term-condi-sec {
  padding: 60px 20px;
  background: #f3f4f6;
}

.term-condi-sec-container {
  max-width: 1270px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-top: 100px;
}

/* Title */
.term-condi-sec-title {
  font-size: 32px;
  font-weight: 700;
  color: #2d1b3d;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

/* Intro */
.term-condi-sec-intro {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Block */
.term-condi-sec-block {
  margin-bottom: 25px;
}

.term-condi-sec-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

/* List */
.term-condi-sec-block ul {
  padding-left: 0;
  list-style: none;
}

.term-condi-sec-block li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Icon */
.term-condi-sec-block li i {
  color: #006d5b;
  margin-top: 3px;
  font-size: 14px;
}

/* Tablet */
@media (max-width: 768px) {
  .term-condi-sec-container {
    padding: 25px;
  }

  .term-condi-sec-title {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .term-condi-sec {
    padding: 40px 15px;
  }

  .term-condi-sec-container {
    padding: 20px;
    margin-top: 150px;
  }

  .term-condi-sec-title {
    font-size: 22px;
  }
}

.footer-submenu-dropdown {
  position: relative;
}
.elementor-5771
  .elementor-element.elementor-element-7080ac2
  .finwave-navigation
  ul
  li
  a {
  color: #ffffff !important;
}
.elementor-5771
  .elementor-element.elementor-element-92ff330
  .rt-contact-info
  .contact-list
  li.phone-no
  a {
  color: #ffffff !important;
}
.elementor-5771
  .elementor-element.elementor-element-92ff330
  .rt-contact-info
  .contact-list
  li
  a {
  color: #ffffff !important;
}

.elementor-5771
  .elementor-element.elementor-element-d40ca48
  .finwave-navigation
  ul
  li
  a {
  font-weight: 500;
  color: #ffffff !important;
}
/* .footer-submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;

  z-index: 999;
}

.footer-submenu-item {
  list-style: none;
}

.footer-submenu-item a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: #006d5b !important;
  text-decoration: none;
  transition: 0.2s;

  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}

.footer-submenu-item a:hover {
  background: #ecfdf5;
  color: #006d5b;
  padding-left: 20px;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
}

.footer-submenu-item a:hover::after {
  display: none !important;
}

.footer-submenu-dropdown:hover .footer-submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .footer-submenu-list {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .footer-submenu-dropdown.active .footer-submenu-list {
    display: block;
  }
} */

.blog-list-sec {
  padding: 80px 0;
  background-color: #f9fafb;
}

.blog-list-sec-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 13px;
}

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

.blog-list-sec-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.blog-list-sec-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
}

/* Grid */
.blog-list-sec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

/* Card Styles */
.blog-list-sec-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.blog-list-sec-card:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.blog-list-sec-card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-list-sec-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-list-sec-card:hover .blog-list-sec-card-image img {
  transform: scale(1.08);
}

.blog-list-sec-card-content {
  padding: 28px 24px;
}

.blog-list-sec-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-sec-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-list-sec-card-button {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background-color: #006d5b;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-list-sec-card-button:hover {
  background-color: #fbbf24;
  color: #1f2937;
  transform: translateY(-2px);
}

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

  .blog-list-sec-title {
    font-size: 2.1rem;
  }

  .blog-list-sec-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-list-sec-card-image {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .blog-list-sec-container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .e-con.e-flex > .e-con-inner {
    flex-wrap: nowrap !important;
  }
  .mobile-dnone {
    display: none !important;
  }
  .site-branding {
    width: 150px !important;
  }
  .elementor-94 .elementor-element.elementor-element-708e74c {
    --padding-top: 100px !important;
  }
}

.blg-adv-hero-sec {
  position: relative;
  height: 60vh;
  min-height: 540px;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(45deg, #035044, #02382f);
}

/* Background Image */
.blg-adv-hero-sec-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.blg-adv-hero-sec-bg img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Overlay */
.blg-adv-hero-sec-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.75);
  z-index: 2;
}

/* Content */
.blg-adv-hero-sec-container {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
}

/* Badge */
.blg-adv-hero-sec-badge {
  display: inline-block;
  border: 1px solid #f5c842;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #f5c842;
}

.blg-adv-hero-sec-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: white;
}

/* Description */
.blg-adv-hero-sec-desc {
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 10px;
  max-width: 750px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Expanded */
.blg-adv-hero-sec-desc.active {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* Read More Button */
.blg-adv-readmore-btn {
  background: transparent;
  border: none;
  color: #f5c842;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  font-weight: 500;
}

.blg-adv-readmore-btn:hover {
  text-decoration: underline;
  background: transparent;
}

.blg-adv-hero-sec-meta {
  font-size: 14px;
  color: #bbb;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .blg-adv-hero-sec-title {
    font-size: 36px;
  }

  .blg-adv-hero-sec-desc {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .blg-adv-hero-sec {
    height: auto;
    padding: 80px 0 20px 0;
    min-height: 400px;
  }

  .blg-adv-hero-sec-title {
    font-size: 26px;
  }

  .blg-adv-hero-sec-desc {
    font-size: 16px;
  }

  .blg-adv-hero-sec-meta {
    font-size: 12px;
  }
}
/*-------------------- Floating Button ----------------*/
.mob-bottm-float-btn-sec-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 999;
  padding: 10px 20px;
  background-color: white;
}

.mob-bottm-float-btn-sec-btn {
  width: 100%;
  padding: 12px;
  background: #006d5b;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
}

/* Popup */
.mob-bottm-float-btn-sec-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9999;
}

.mob-bottm-float-btn-sec-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* Form Box */
.mob-bottm-float-btn-sec-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 90%;
  max-width: 400px;

  background: #fff;
  border-radius: 12px;
  padding: 20px;

  animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Close */
.mob-bottm-float-btn-sec-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

/* Text */
.mob-bottm-float-btn-sec-box h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.mob-bottm-float-btn-sec-box p {
  font-size: 13px;
  margin-bottom: 10px;
}

/* Form */
.mob-bottm-float-btn-sec-box input,
.mob-bottm-float-btn-sec-box textarea,
.mob-bottm-float-btn-sec-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 8px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 13px;
}

.mob-bottm-float-btn-sec-phone {
  display: block;
  /* gap: 6px; */
}
@media (max-width: 767px) {
  .elementor-5741 .elementor-element.elementor-element-662ddf7 {
    --justify-content: right !important;
  }
}

.mob-bottm-float-btn-sec-phone select {
  width: 25%;
}

.mob-bottm-float-btn-sec-phone input {
  width: 75%;
}

.mob-bottm-float-btn-sec-submit {
  width: 100%;
  padding: 12px;
  background: #0b6e4f;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .mob-bottm-float-btn-sec-wrapper {
    display: block;
  }
}

.serv-lnk-secc {
  background: #ffffff;
  padding: 30px 20px;
  text-align: center;
}

.serv-lnk-secc-container {
  max-width: 1200px;
  margin: auto;
}

.serv-lnk-secc-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.serv-lnk-secc-subtitle {
  font-size: 15px;
  color: #000000;
  margin-bottom: 40px;
}

.serv-lnk-secc-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 25px;

  text-align: left;
}

.serv-lnk-secc-list li {
  margin: 0;
}

.serv-lnk-secc-list a {
  text-decoration: none;
  color: #0f6aff;
  font-size: 15px !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.serv-lnk-secc-list a:hover {
  color: #0f6aff;
}

/* hidden */
.serv-lnk-secc-more {
  display: none;
}

/* button */
.serv-lnk-secc-btn-wrap {
  margin-top: 30px;
}

.serv-lnk-secc-btn {
  border: 1px solid #006d5b;
  background: transparent;
  color: #006d5b;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
}

.serv-lnk-secc-btn:hover {
  background: #006d5b;
  color: #fff;
}

@media (max-width: 768px) {
  .serv-lnk-secc-list {
    grid-template-columns: 1fr;
  }
}

.author-deta-secc {
  background: #ececec00;
  padding: 5px 5px;
  border-bottom: 1px solid #eaeaea;
}

.author-deta-secc-container {
  /* max-width: 1200px; */
  /* margin: auto; */
  display: flex;
  gap: 15px;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
  border-radius: 16px;
  /* box-shadow: 0 10px 30px rgb(0 0 0 / 18%); */
}

.author-deta-secc-img img {
  width: 80px;
  height: 80px !important;
  border-radius: 20%;
  object-fit: cover;
  object-position: top;
}

.author-deta-secc-img {
  width: 80px;
  height: 80px;
  min-width: 80px;
  overflow: hidden;
  border-radius: 20%;
}
.author-deta-date-div {
  padding: 0px 20px;
}

/* Content */
.author-deta-secc-label-auth-date {
  font-size: 13px !important;
  /* letter-spacing: 1px; */
  color: #000000;
  font-weight: 700;
  text-align: left;
  line-height: 18px;
}
.author-deta-secc-label {
  font-size: 12px !important;
  letter-spacing: 1px;
  color: #0d4a3a;
  font-weight: 600;
  text-align: left;
}

.author-deta-secc-name {
  margin: 5px 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #006d5b;
}
.author-deta-secc-text-icon {
  color: #006d5b;
}
.author-deta-secc-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 0px;
}

/* Social Icon */
.author-deta-secc-social {
  display: inline-block;
  margin-top: 12px;
  font-size: 20px;
  color: #0a66c2;
  transition: 0.3s;
}

.author-deta-secc-social:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .author-deta-secc-container {
    flex-direction: row;
    text-align: center;
    align-items: center;
    gap: 15px;
    padding: 10px 0px;
  }
  .author-deta-secc-label-auth-date {
    font-size: 11px !important;
  }
  .serv-cont-sec-left-serv *{
    padding-bottom: 10px;
  }
  .author-deta-date-div {
    padding: 0px 0px;
  }
  .author-deta-secc-img img {
    width: 120px;
    height: 120px;
  }

  .author-deta-secc-text {
    text-align: justify;
  }
  .author-deta-secc-label {
    display: flex;
    justify-content: left;
  }
}

/*------------------------ new css for homepage --------------------------------*/

.hero11 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(168, 233, 47, 0.22),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f4faf4 100%);
  padding: 75px 0 20px;
}

.hero11::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 233, 47, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 233, 47, 0.1) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  pointer-events: none;
}

.hero-grid11 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
}
.hero-sec11 {
  padding: 60px 15px 20px 15px;
    max-width: 1300px;
    margin: auto;
}
.eyebrow11 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  background: #006d5b;
  border: 1px solid #dde8df;
  border-radius: 999px;
  color: white;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
}
.pulse11 {
  width: 10px;
  height: 8px;
  border-radius: 50%;
  background: #ffb000;
  box-shadow: 0 0 0 6px rgba(168, 233, 47, 0.18);
}
.hero11 h1 {
  font-size: clamp(28px, 5.4vw, 60px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  max-width: 760px;
  margin-bottom: 24px;
}
.hero-text11 {
  color: #000000;
  font-size: 18px;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 32px;
}
.actions11 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-proof11-wrap{
    max-width: 610px;
    overflow: hidden;
    position: relative;
}

.hero-proof11{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    width: 100%;
    margin-bottom: 30px;
}

.proof-card11{
    min-width: 0;
    background: rgba(255,255,255,.88);
    border: 1px solid #dde8df;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(15,23,42,.05);
    text-align: center;
}

.hero-proof11:hover{
    animation-play-state: paused;
}

@keyframes heroProofSlide{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(calc(-50% - 7px));
    }
}

@media(max-width:768px){
    .proof-card11{
        min-width: 140px;
    }
}

.proof-card11 strong {
  display: block;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 8px;
    color: #006d5b;
    text-align: center;
}

.proof-card11 span {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  display: block;
  margin: 0;
  padding: 0;
}

@media (max-width:768px){
  .proof-card11{
    flex: 0 0 150px;
  }
  .hero-proof11-wrap {
    /* max-width: 300px; */
    margin: auto;
}
 .hero-proof11 {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        width: 100%;
    }
}


@media (max-width: 768px) {
  .proof-card11 {
    text-align: center;
        padding: 15px;
  }
  .proof-card11 strong {
    text-align: center;
        font-size: 18px;
  }
  .proof-card11 span {
    line-height: 20px !important;
    text-align: center;
        font-size: 12px;
  }
 .actions11 {
    justify-content: center;
}
}


.hero-visual11 {
  position: relative;
  min-height: 540px;
}

.main-panel11 {
  position: absolute;
  inset: 24px 0 auto 0;
  border-radius: 34px;
  background: #006d5b;
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  color: white;
   padding:0;
    min-height:540px;
    overflow:hidden;
}
/* .main-panel11::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: -80px;
  background: #006d5b;
  filter: blur(60px);
  border-radius: 50%;
} */
.panel-top11,
.task11 {
  position: relative;
  z-index: 0;
}
.panel-top11 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}
.dots11 {
  display: flex;
  gap: 7px;
}
.dots11 i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  display: block;
}
.panel-label11 {
  color: #d7e6d5;
  font-size: 13px;
  font-weight: 750;
}
.panel-title11 {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  max-width: 380px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.task11 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 14px;
}
.task-row11 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}
.task-row11 span {
  color: #d7e6d5 !important;
}
.bar11 {
  height: 8px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  overflow: hidden;
}
.bar11 em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #ffb000;
}
.float-card11 {
  position: absolute;
  right: -50px;
  bottom: -100px;
  width: 250px;
  background: white;
  border: 1px solid #dde8df;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  padding: 22px;
}
.float-card11 strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
  color: black;
}
.float-card11 span {
  color: #000000;
  font-size: 14px;
}
.float-card11 .small-line11 {
  margin-top: 14px;
  height: 8px;
  border-radius: 99px;
  background: #e5e7eb;
  overflow: hidden;
}
.float-card11 .small-line11 i {
  display: block;
  width: 72%;
  height: 100%;
  background: #ffb000;
}
.btn-light11 {
  background: white;
  border-color: #dde8df;
  color: #0b1f17;
  border: 1px solid #c3c3c3;
}
.btn-light11:hover {
  border-color: #000;
  transform: translateY(-2px);
}
.hero-slider11 {
    width: 100%;
    height: 540px;
    min-height: 540px;
    border-radius: 34px;
    overflow: hidden;
    padding: 0px !important;
}
.main-panel11 .hero-slider11.swiper {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 540px !important;
}
.hero-slider11 .hero-pagination11 {
    position: absolute !important;

    top: 0px !important;
    left: 20px !important;
    margin-top: 25px !important;

    right: auto !important;
    bottom: auto !important;

    width: auto !important;

    z-index: 50 !important;

    display: flex !important;
    align-items: center;
    gap: 6px;
}

/* Normal bullet */
.hero-slider11 .hero-pagination11 .swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;

    margin: 0 !important;

    background: #ffffff !important;
    opacity: 0.4 !important;

    border-radius: 50%;

    transition: all 0.3s ease;
}

/* Active bullet */
.hero-slider11 .hero-pagination11 .swiper-pagination-bullet-active {
    width: 15px !important;
    background: #ffb000 !important;
    opacity: 1 !important;
    border-radius: 20px;
}

.hero-slider11 .swiper-wrapper,
.hero-slider11 .swiper-slide{
    height: 100%;
}

.hero-slider11 .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hero-pagination11{
    position:absolute !important;
    top:20px !important;
    left:20px !important;
    right:auto !important;
    bottom:auto !important;
    width:auto !important;
    z-index:10;
}

.hero-pagination11 .swiper-pagination-bullet{
    width:10px;
    height:10px;
    opacity:1;
    background:rgba(255,255,255,.4);
}

.hero-pagination11 .swiper-pagination-bullet-active{
    background:#fff;
}

.trust-strip {
  padding: 22px 0;
  border-block: 1px solid #dde8df;
  background: #ffb000;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px 20px;
}
.trust-strip-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #07130e;
  line-height: 1;
}
.tick {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #006d5b;
  color: #f4faf4 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.split-section {
  background: #e9faf7;
  padding: 50px 10px;
}
.section-kicker {
  color: #006d5b;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
  font-family: var(--font);
}
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0px 60px;
  align-items: center;
}

.image-object {
  border-radius: 34px;
  /* background: linear-gradient(145deg, #eaf8d3, #ffffff); */
  background: #006d5b;
  min-height: 460px;
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  position: relative;
  overflow: hidden;
  border: 1px solid #dde8df;
}
.image-object1 {
  border-radius: 34px;
  /* background: linear-gradient(145deg, #eaf8d3, #ffffff); */
  background: #006d5b;
  min-height: 450px;
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  position: relative;
  overflow: hidden;
  border: 1px solid #dde8df;
    
}
.mob-image-obj{
    display: none;
    margin-bottom: 10px;
}
.desk-image-obj{
display: block;
}

@media (max-width: 768px){
    .mob-image-obj{
        display: block;
    }
      .desk-image-obj {
    display: none;
  }
}
.doc-stack {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 70px;
  display: grid;
  gap: 18px;
}
.doc-stack1 {
  position: absolute;
  left: 42px;
  right: 42px;
  top: 50px;
  display: grid;
  gap: 18px;
}
.doc-card {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}
.doc-card b {
  display: block;
  margin-bottom: 4px;
}
.doc-card span {
  color: #000000;
  font-size: 14px;
}
.badge {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1fbd8;
  color: #24420b;
  font-weight: 800;
  font-size: 12px;
}
.badge101 {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1fbd8;
  color: #24420b;
  font-weight: 800;
  font-size: 12px;
  width: 160px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .badge101 {
    width: auto;
  }
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #344054;
  font-weight: 700;
}

.split-copy ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 28px 0 30px;
  padding-left: 0px;
}
.split-copy li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 768px) {
 .split-copy li {
  font-size: 16px;
}
}

.section-head11 p,
.text-muted {
  color: #000000;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 400;
}
.section-cont11 {
  padding: 60px 0;
}
.section-head11 {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}
.services-grid11 > a {
  display: flex;
  text-decoration: none;
}

.services-grid11 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.card11 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 24px;
  padding: 28px;
  transition: 0.22s ease;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.card11:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  border-color: #006d5b;
}
.icon {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  background: #d6fdf7;
  color: #006d5b;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font);
}
.serv-icon {
  width: 80px;
  height: 50px;
  border-radius: 17px;
  background: #d6fdf7;
  color: #006d5b;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--font);
}
.card11 p {
  color: #000000;
  font-size: 15.5px !important;
  line-height: 1.75;
  margin-bottom: 5px;
}
.btn-dark {
  background: #ffb000;
  color: black;
  border: 1px solid #ffb000;
}
.btn-dark:hover {
  background: #006d5b;
  color: white;
  transform: translateY(-2px);
  border: 1px solid #fff;
}

.process11 {
  background: linear-gradient(45deg, #044e42, #02453a);
  color: white;
  position: relative;
  overflow: hidden;
}
.process11 .section-head11 p {
  color: #d7e6d5;
}
.steps-grid11 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card11 {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 25px;
}
.step-no11 {
  color: #ffb000;
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 10px;
  font-family: var(--font);
}
.step-card11 p {
  color: #d7e6d5;
  margin-bottom: 5px;
}
.process-cont11 {
  padding: 90px 0;
}
.process-head11 {
  font-size: 40px;
  font-weight: 900;
  color: white;
  text-transform: capitalize;
  max-width: 800px;
  margin: auto;
  padding-bottom: 15px;
}
.process-h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 5px;
}

.why-cont11 {
  padding: 70px 0;
}
.principles-grid11,
.blogs-grid11 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.why-h2 {
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 900;
}
.why-h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.test-cont11 {
  padding: 80px 0;
}

.testimonials-grid11 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card11 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 24px;
  padding: 28px;
  transition: 0.22s ease;
}
.testimonial-card11:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  border-color: #006d5b;
}
.stars11 {
  color: #f5c542;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 16px;
}
.testimonial-text11 {
  color: #344054;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.client-row11 {
  display: flex;
  align-items: center;
  gap: 14px;
}
.client-avatar11 {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #d6fdf7;
  color: #24420b;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.client-row11 strong {
  display: block;
  line-height: 1.2;
  color: #006d5b;
}
.client-row11 span {
  color: #647067;
  font-size: 13px;
}

.brand-sec11 {
  padding: 60px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');



.eco-item {
  font-family: 'Manrope', sans-serif !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  background: #006B59;
  padding: 5px 10px;
  border-radius: 10px;
  color: white;
}

.logo-marquee11 {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track11 {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

.logo-track11 img {
  height: 40px !important;
  max-width: 120px !important;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(100%) !important;
  opacity: 0.58 !important;
  transition: all 0.3s ease !important;
}

.logo-track11 img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* .logo-marquee11:hover .logo-track11 {
  animation-play-state: paused;
} */

.blog-cont-11 {
  padding: 70px 20px;
}

.blog-card11 {
  border: 1px solid #dde8df;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  transition: 0.22s ease;
}
.blog-card11:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
}
.blog-img11 {
  height: 170px;
  background: linear-gradient(135deg, #eaf8d3, #f4faf4);
  position: relative;
}
.blog-img11::after {
  content: "Article";
  position: absolute;
  left: 18px;
  top: 18px;
  background: white;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #24420b;
}
.blog-body11 {
  padding: 22px;
}
.blog-meta11 {
  font-family: var(--font);
  color: #055146;
}

.faq11 {
  background: #f4faf4;
  padding: 50px 10px;
}
.faq-wrap11 {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #dde8df;
}
.faq-item11 {
  padding: 24px 0;
  border-bottom: 1px solid #dde8df;
}
.faq-item11 strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: black;
}
.faq-item11 p {
  color: #647067;
}

.final-cta11 {
  padding: 0 0 60px;
  background: #f4faf4;
}
.cta-box11 {
  border-radius: 34px;
  background: linear-gradient(135deg, #006d5b, #034137);
  color: white;
  padding: 76px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box11 h2 {
  color: white;
}
.cta-box11 p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #e9f8c8;
  font-size: 18px;
}
.cta-box11 .actions {
  justify-content: center;
  display: flex;
  gap: 30px;
}
.btn-light {
  background: white !important;
  border-color: #dde8df !important;
  color: #0b1f17 !important;
}
.btn-light:hover {
  background: white !important;
  border-color: #dde8df !important;
  color: #0b1f17 !important;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-grid11 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .hero-grid,
  .split,
  .privacy-grid {
    grid-template-columns: 1fr;
  }
  .hero-sec11 {
    padding: 40px 20px 10px 20px;
    text-align: center;
  }
  .hero-visual {
    min-height: 500px;
  }
  .services-grid,
  .principles-grid,
  .blogs-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .eco-item{
    font-size: 12px;
  }
  .hero-grid11{
    gap: 25px;
  }
  .hero-text11{
    max-width: none;
  }
  .hero11 {
    padding: 75px 0 60px;
}
}
@media (max-width: 640px) {
  .hero11 {
    padding: 65px 0px 50px;
  }
  .cta-box11 p{
    font-size:16px ;
  }
  .hero-grid11 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .split-section {
    padding: 25px 10px;
  }
  .section-kicker {
    margin-bottom: 5px;
  }
  .brand-sec11 {
    padding: 30px 0px;
  }
  .eyebrow11 {
    font-weight: 600 !important;
    font-size: 13px;
    line-height: 1.2;
    padding: 5px 13px;
    gap: 20px;
  }
  .actions11 {
    justify-content: center;
  }
  .trust-strip-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .btn {
    width: 100%;
  }
  .hero-card33 {
    padding: 20px !important;
  }
  .hero-card33 h2 {
    font-size: 20px;
  }
  .hero-checks33 div {
    font-size: 16px;
  }
  .image-object {
    min-height: 410px;
  }
  .image-object1 {
    min-height: 480px;
  }
  .doc-stack1 {
    left: 25px;
    right: 25px;
    top: 25px;
  }
  .main-panel11 .hero-slider11.swiper {
    height: 350px !important;
}
.hero-slider11 {
    
    height: 350px;
    min-height: 350px;
}

  .split {
    gap: 20px 60px;
  }
  .section-cont11 {
    padding: 20px 10px;
  }
  .process-cont11 {
    padding: 20px 0;
  }
  .process-head11 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  .why-cont11 {
    padding: 50px 0;
  }
  .cta-box11 .actions {
    flex-direction: column;
  }
  .why-h2 {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 900;
    line-height: 1.2;
  }
  h1 {
    font-size: 42px;
  }
  .hero-text11 {
    font-size: 16px;
  }
  .actions .btn {
    width: 100%;
  }
  .split-copy p {
    font-size: 16px;
  }
  .check-list li {
    font-size: 16px;
  }
  .section-head11 p,
  .text-muted {
    font-size: 16px;
  }
  .card11 p {
    font-size: 16px !important;
  }
  .step-card11 p {
    font-size: 16px;
  }

  .hero-proof11,
  .services-grid11,
  .principles-grid11,
  .steps-grid11,
  .trust-strip-grid11,
  .blogs-grid11,
  .testimonials-grid11 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-visual11 {
    min-height: 350px;
  }
  .main-panel11 {
    inset: 0;
    min-height: 350px;
    /* padding: 15px; */
  }
  .panel-title11 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .float-card11 strong{
        font-size: 24px;
  }
  .float-card11 span {
    font-size: 16px;
}
  .float-card11 {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: -185px;
    width: auto;
  }
  .doc-stack {
    left: 20px;
    right: 20px;
    top: 30px;
  }
}
.btn-arrow{
      margin-left: 10px;
    font-size: 13px;
}

@media (max-width: 980px) {
  .testimonials-grid11 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .testimonials-grid11 {
    grid-template-columns: 1fr;
  }
  .doc-card span {
    font-size: 11px;
    line-height: 1.2;
        text-align: center;
  }
}

.faq-adv-secc {
  display: flex;
  gap: 60px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 60px 30px;
  align-items: flex-start;
}

/* ===== LEFT STICKY SIDE ===== */
.faq-adv-secc__left {
  flex: 0 0 500px;
  position: sticky;
  top: 130px;
}
.faq-adv-secc__left1 {
  flex: 0 0 500px;
  position: sticky;
  top: 200px;
}
@media (max-width: 768px) {
  .faq-adv-secc__left1 {
    flex: unset !important;
    width: 100%;
    position: static !important;
    text-align: center;
  }
  .cta-box66 h2 {
    font-size: 30px;
  }
}

.faq-adv-secc__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.faq-adv-secc__desc {
  font-size: 18px;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 18px;
}
.faq-adv-secc__desc-serv {
  font-size: 18px;
  color: #000000;
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ===== RIGHT ACCORDION SIDE ===== */
.faq-adv-secc__right {
  flex: 1;
  min-width: 0;
}

.faq-adv-secc__item {
  border-bottom: 1px solid #dddddd;
}

.faq-adv-secc__item:first-child {
  border-top: 1px solid #dddddd;
}

.faq-adv-secc__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  background: transparent !important;
}

.faq-adv-secc__question-text {
  font-size: 20px;
  font-weight: 700;
  color: #006d5b !important;
  line-height: 1.4;
}
.faq-adv-secc__question-text-serv {
  font-size: 20px;
  font-weight: 700;
  color: #006d5b !important;
  line-height: 1.4;
}

.faq-adv-secc__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #006d5b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.faq-adv-secc__icon svg {
  transition: transform 0.3s ease;
}

.faq-adv-secc__item.faq-adv-secc__item--open .faq-adv-secc__icon {
  background: #006d5b;
  border-color: #006d5b;
  transform: rotate(180deg);
}

.faq-adv-secc__item.faq-adv-secc__item--open .faq-adv-secc__icon svg path {
  stroke: #ffffff;
}

.faq-adv-secc__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s ease;
}

.faq-adv-secc__item.faq-adv-secc__item--open .faq-adv-secc__answer {
  max-height: 400px;
}

.faq-adv-secc__answer-inner {
  padding: 0 4px 20px;
  font-size: 18px;
  color: #000000;
  line-height: 1.75;
}
.faq-adv-secc__answer-inner-serv {
  padding: 0 4px 20px;
  font-size: 18px;
  color: #000000;
  line-height: 1.75;
}

/* ===== TABLET ===== */
@media (max-width: 900px) {
  .faq-adv-secc {
    flex-direction: column;
    gap: 36px;
    padding: 40px 20px;
  }

  .faq-adv-secc__left {
    flex: none;
    width: 100%;
    position: static;
    text-align: center;
  }

  .faq-adv-secc__title {
    font-size: 28px;
  }
  .faq-adv-secc__answer-inner-serv {
  font-size: 16px;

}
}

@media (max-width: 560px) {
  .faq-adv-secc {
    padding: 30px 15px;
    gap: 24px;
  }

  .faq-adv-secc__title {
    font-size: 24px;
  }

  .faq-adv-secc__desc {
    font-size: 16px;
  }
  .faq-adv-secc__desc-serv {
    font-size: 16px;
  }

  .faq-adv-secc__question-text-serv {
    font-size: 18px;
  }
  .faq-adv-secc__question-text {
    font-size: 20px;
  }
  .faq-adv-secc__answer-inner{
    font-size: 16px;
  }
}

.new-adv-cta-secc {
  position: relative;
  background: #e8fcf9;
  border-radius: 16px;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px auto;
  /* overflow: hidden; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.new-adv-cta-secc-icon {
  margin-right: 5px;
}

.new-adv-cta-secc__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 540px;
}

.new-adv-cta-secc__title {
  font-size: 28px;
  font-weight: 800;
  color: #272727;
  line-height: 1.3;
}

.new-adv-cta-secc__desc {
  font-size: 16px;
  color: #000;
  line-height: 1.65;
}

.new-adv-cta-secc__buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: 8px;
}

.new-adv-cta-secc__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.18s,
    box-shadow 0.18s,
    background 0.18s;
}

.new-adv-cta-secc__btn--primary {
  background: #ffb000;
  color: #111111;
  width: 200px;
  border-radius: 30px;
}
.new-adv-cta-secc__btn--primary:hover {
  background: #006d5b;
  color: white;
  box-shadow: 0 6px 20px rgba(15, 45, 82, 0.28);
  transform: translateY(-2px);
}

.new-adv-cta-secc__btn--secondary {
  background: #006d5b;
  color: #ffffff;
  width: 200px;
  border-radius: 30px;
}
.new-adv-cta-secc__btn--secondary:hover {
  background: #ffb000;
  color: #000;

  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 45, 82, 0.2);
}

.new-adv-cta-secc__btn--tertiary {
  background: #ffb000;
  color: #000;
}
.new-adv-cta-secc__btn--tertiary:hover {
  background: #006d5b;
  color: white;
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.32);
  transform: translateY(-2px);
}

.new-adv-cta-secc__right {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  right: 10px;
  bottom: 0;
}

.new-adv-cta-secc__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 860px) {
  .new-adv-cta-secc {
    padding: 36px 32px;
    gap: 28px;
  }
  .new-adv-cta-secc__right {
    width: 200px;
  }
  .new-adv-cta-secc__title {
    font-size: 22px;
  }
  .new-adv-cta-secc__buttons {
    flex-direction: column;
  }
  .new-adv-cta-secc__btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .new-adv-cta-secc {
    flex-direction: column-reverse;
    padding: 32px 24px;
    text-align: center;
    align-items: center;
  }
  .new-adv-cta-secc__left {
    order: 1;
    max-width: 100%;
    align-items: center;
  }
  .new-adv-cta-secc__right {
    order: 1;
    width: 180px;
    position: relative;
  }
  .new-adv-cta-secc__buttons {
    flex-direction: column;
    width: 100%;
  }
  .new-adv-cta-secc__btn {
    width: 100%;
  }
  .new-adv-cta-secc__title {
    font-size: 20px;
  }
}

.foot-social-sec {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 5px;
}

.foot-social-sec__link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffb000;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.foot-social-sec__link:hover {
  transform: translateY(-3px);
  background: #ffb000;
  color: #000;
}
.elementor-5771
  .elementor-element.elementor-element-92ff330
  .rt-contact-info
  .contact-list
  li.phone-no
  a {
  font-size: 16px !important;
}
.elementor-5771
  .elementor-element.elementor-element-92ff330
  .rt-contact-info
  .contact-list
  li {
  margin: 0px 0px 5px 0px !important;
}

/* ================================
   FOOT FIX BANNER
================================ */

.foot-fix-banner-sec {
  position: fixed;
  opacity: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: block;
}

/* CLOSE BUTTON */
.foot-fix-banner-sec__close {
  position: absolute;
  top: 3px;
  right: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: #ffffff00;
  color: #dde8df;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* box-shadow: 0 6px 18px rgba(0,0,0,0.18); */
  transition: all 0.3s ease;
  z-index: 2;
}

.foot-fix-banner-sec__close i {
  font-size: 18px;
}

.foot-fix-banner-sec__container {
  margin: auto;
  background: #006d5b;
  padding: 14px 40px;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.foot-fix-banner-sec__cont-inner {
  max-width: 1300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: auto;
}

.foot-fix-banner-sec__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.foot-fix-banner-sec__img {
  width: 110px;
  flex-shrink: 0;
  position: relative;
}

.foot-fix-banner-sec__img img {
  width: 100%;
  display: block;
  height: 150px !important;
  position: absolute;
  object-fit: contain;
  bottom: -65px;
}

.foot-fix-banner-sec__content {
  color: #fff;
}

.foot-fix-banner-sec__small {
  display: block;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.95;
  letter-spacing: 0.5px;
  color: white !important;
}

.foot-fix-banner-sec__title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
  max-width: 480px;
  color: white !important;
}

.foot-fix-banner-sec__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.foot-fix-banner-sec__btn {
  min-width: 190px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  color: #0d6efd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0 22px;
}

.foot-fix-banner-sec__btn:hover {
  transform: translateY(-2px);
}

.foot-fix-banner-sec__btn--whatsapp {
  color: #25d366;
}

.foot-fix-banner-sec__btn i {
  font-size: 22px;
}

/* DESKTOP ONLY */
@media (max-width: 991px) {
  .foot-fix-banner-sec {
    display: none;
  }
}



.hero22 {
  background:
    radial-gradient(circle at 82% 12%, #006d5b57, transparent 28%),
    linear-gradient(135deg, #006d5b, #025043 58%, #006d5b);
  color: white;
  padding: 200px 10px 100px 10px;
}
.breadcrumb22 {
  color: #b7c8b8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.kicker22 {
  color: #ffb000;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
  text-align: center;
}
.hero22 h1 {
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  /* max-width: 800px; */
  padding-bottom: 18px;
  margin: auto;
  color: #fff;
  text-align: center;
}
.hero22 p {
  color: #d7e6d5;
  font-size: 18px;
   margin: auto;
  /* max-width: 760px; */
  text-align: center;
}
.card22 {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #dbdbdb;
}
.grid22 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.two-grid22 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.field22 {
  width: 100%;
  padding: 12px 16px !important;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  font-size: 15px;
  outline: none;
}

.field22:focus {
  border-color: #0d6efd;
}
textarea.field22 {
  min-height: 130px;
  resize: vertical;
}

.cont-pge-sec {
  padding: 50px 0;
}
.notice22 {
  background: #006d5b29;
  padding: 18px;
  border-radius: 12px;
  border-left: 4px solid #006d5b;
}
.form22 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card22 ul {
  padding-left: 20px;
  display: grid;
  gap: 10px;
  margin: 12px 0 22px;
}
.card22 p,
.card22 li {
  color: #111;
  font-size: 18px !important;
}
.card22 h3 {
  font-size: 22px;
  margin: 28px 0 10px;
}
.card22 h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.btn-primary22 {
  background-color: #f5a623;
  color: #000;
}
.btn-primary22:hover {
  color: #fff;
}
@media (max-width: 900px) {
  .hero22 {
    padding: 130px 10px 60px 10px;
  }
  .card22 p,
.card22 li {
  font-size: 16px !important;
}
}

@media (max-width: 991px) {
  .two-grid22 {
    grid-template-columns: 1fr;
  }

  .card22 {
    padding: 26px;
  }

  .card22 h2 {
    font-size: 28px;
  }
}

/* ===== MOBILE ===== */

@media (max-width: 576px) {
  .cont-pge-sec {
    padding: 40px 0;
  }

  .two-grid22 {
    gap: 20px;
  }

  .card22 {
    padding: 20px;
    border-radius: 14px;
  }

  .card22 h2 {
    font-size: 24px;
    text-align: center;
  }

  .card22 h3 {
    font-size: 18px;
  }

  .card22 p {
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .field22 {
    padding: 12px 14px;
    font-size: 14px;
  }

  .btn-primary22 {
    padding: 13px;
    font-size: 15px;
  }

  .notice22 {
    padding: 14px;
  }
}

.hero33 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, #006d5b, transparent 28%),
    linear-gradient(135deg, #006d5b 0%, #02453a 58%, #006d5b 100%);
  color: white;
  padding: 150px 10px 50px 10px;
}

.hero33::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 233, 47, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 233, 47, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid33 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}
.breadcrumb33 {
  color: #b7c8b8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}
.eyebrow33 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffb000;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
}
.pulse33 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb000;
  box-shadow: 0 0 0 6px #ffb0002b;
}

.hero-h133 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
}
.hero-text33 {
  color: #d7e6d5;
  font-size: 18px;
  line-height: 1.75;
  max-width: 690px;
  margin-bottom: 32px;
}
.actions33 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-card33 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}
.hero-card33 h2 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  color: #fff;
}
.hero-checks33 {
  display: grid;
  gap: 14px;
}
.hero-checks33 div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #d7e6d5;
  font-weight: 700;
  font-size: 18px;
}
.split-sec33 {
  padding: 60px 0;
}
.section-kicker33 {
  color: #006d5b;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.split-h233 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.split-h2-dark33 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
  color:#fff;
}
.card33-h3{
  font-size: 22px;
}
.split33 {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px 50px;
  align-items: center;
}

.story-panel33 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  transition: 0.22s ease;
  height: 100%;
  font-size: 18px;
  font-weight: 400;
}
.story-panel33:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  border-color: #006d5b;
}
.story-panel33 p {
  color: #000000;
  margin-bottom: 16px;
  font-size: 18px !important;
}
.story-panel33 p:last-child {
  margin-bottom: 0;
}
.split-section33 {
  background: #f4faf4;
  padding: 60px 0;
}
.section-head33 {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-head33 p{
   font-size: 18px;
}

.why-section33{
  padding: 60px 10px;
}
.who-sec33{
  padding: 60px 10px;
}
.service-list33 {
  display: grid;
  gap: 16px;
}
.service-item33 {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  background: white;
  border: 1px solid #dde8df;
  border-radius: 22px;
  padding: 22px;
  transition: 0.22s ease;
}
.service-item33:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  border-color: #006d5b;
}
.icon33 {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #006d5b24;
  color: #006d5b;
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 20px;
}
.split-h3-33 {
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.grid-3-33 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-2-33 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card33 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 24px;
  padding: 30px;
  transition: 0.22s ease;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}
.card33:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  border-color: #006d5b;
}

.problem-grid33 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.problem-card33 {
  background: #024c40;
  color: white;
  border-radius: 34px;
  padding: 36px;
}
.problem-card33 h3{
  color: #fff;
}
.problem-card33 p,
.problem-card33 li {
  color: #d7e6d5 !important;
}
.problem-card33 ul,
.solution-card33 ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-left: 5px;
}
.problem-card33 li,
.solution-card33 li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
}
.solution-card33 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 34px;
  padding: 36px;
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
}
.split-h3-33-bl {
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: #fff;
}

.process33 {
  background: #014e41;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 92px 0;
}
.process33::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: #00000024;
  right: -160px;
  bottom: -180px;
  filter: blur(42px);
}
.process33 .container {
  position: relative;
  z-index: 1;
}
.process33 .section-head33 p {
  color: #d7e6d5;
}
.steps-grid33 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step-card33 {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 26px;
  position: relative;
}
.step-card33::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffb000;
  color: #07130e;
  font-weight: 950;
  margin-bottom: 20px;
}
.step-card33 p {
  color: #d7e6d5;
  font-size: 15.5px;
  line-height: 1.75;
}
.process33-h2 {
  font-size: clamp(35px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
  color: #fff;
}

.process33-h3 {
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: #fff;
}
.Who-sec33 {
  padding: 92px 0;
}

.vision-mission33 {
  background: #f4faf4;
  padding: 60px 0;
}
.vm-card33 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  transition: 0.22s ease;
}
.vm-card33:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  border-color: #006d5b;
}
.vm-card33 strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: #006d5b;
  background: #006d5b21;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vm-card33 p {
  color: #000000;
  font-size: 18px !important;
  line-height: 1.7;
}

.cta-section33 {
  padding: 0 0 60px;
  background: #f4faf4;
}
.cta-box33 {
  border-radius: 34px;
  background: linear-gradient(135deg, #006d5b, #01554d);
  color: white;
  padding: 76px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box33 h2 {
  color: white;
}
.cta-box33 p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #e9f8c8;
  font-size: 18px;
}
.cta-box33 .actions33 {
  justify-content: center;
}
.service-item-h3-div33 h3 {
    font-size: 22px;
    line-height: 25px;
  }

@media (max-width: 980px) {
  .hero-grid33,
  .split33,
  .problem-grid33 {
    grid-template-columns: 1fr;
  }
  .grid-3-33,
  .grid-2-33 {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid33 {
    grid-template-columns: repeat(2, 1fr);
  }
  .Who-sec33 {
    padding: 50px 0;
  }

  .vision-mission33 {
    padding: 30px 0;
  }

  .process33 {
    padding: 70px 0;
  }
  .process33 {
    padding: 70px 0;
  }
  .split-section33 {
    padding: 40px 0;
  }
  .split33 {
    gap: 40px;
  }
  .cta-section33 {
    padding: 0 0 45px;
  }
  .section-head33 p{
   font-size: 16px;
}
}

@media (max-width: 640px) {
  .grid-3-33,
  .grid-2-33,
  .steps-grid33 {
    grid-template-columns: 1fr;
  }
  .actions33 .btn {
    width: 100%;
  }
  h1 {
    font-size: 42px;
  }
  .hero-text33 {
    font-size: 16px;
  }
  .split-sec33 {
    padding: 40px 0;
  }
  .hero33 {
    padding: 110px 10px 20px 10px;
  }
  .hero-grid33 {
    gap: 30px;
  }
  .story-panel33 p {
    font-size: 16px !important;
  }
  .vm-card33 {
    padding: 25px;
  }
  .cta-box33 {
    padding: 30px 30px;
  }

  .vm-card33 p {
    font-size: 16px !important;
    line-height: 1.5;
  }
  .story-panel33 {
    font-size: 16px;
    padding: 25px;
  }
  .section-head33 p {
    font-size: 16px;
  }
  .service-item-h3-div33 h3 {
    font-size: 20px;
    line-height: 25px;
  }
  .service-item-h3-div33 p {
    font-size: 16px;
    line-height: 25px;
  }
}

.elementor-widget-container ul li a {
  color: #000 !important;
}
.elementor-widget-container a {
  color: #000 !important;
}

.modal-overlay-hme {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 14, 0.72);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
}
.modal-overlay-hme.active {
  display: flex;
}
.modal-box-hme {
  width: min(520px, 100%);
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  position: relative;
}
.modal-close-hme {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #006d5b;
  background: #006d5b;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 5px;
  color: white;
}
.modal-box-hme h2 {
  font-size: 30px;
  margin-bottom: 8px;
}
.modal-box-hme p {
  color: #647067;
  margin-bottom: 20px;
}
.popup-form-hme {
  display: grid;
  gap: 12px;
}
.popup-field-hme {
  min-height: 50px;
  border: 1px solid #dde8df;
  border-radius: 14px;
  padding: 0 15px;
  font: inherit;
  background: #fbfdfb;
  outline: none;
}
.popup-field-hme:focus {
  border-color: #ffb000;
  box-shadow: 0 0 0 4px rgba(168, 233, 47, 0.18);
}
textarea.popup-field-hme {
  min-height: 96px;
  padding-top: 14px;
  resize: vertical;
}
.popup-note-hme {
  color: #647067;
  font-size: 12px;
  margin-top: 10px;
}

.home-faq-sec-nw {
  padding: 80px 20px;
  background: #f7f8fc;
}

.home-faq-sec-nw .container {
  max-width: 1100px;
  margin: auto;
}

.home-faq-sec-nw-head {
  text-align: center;
  margin-bottom: 50px;
}

.home-faq-sec-nw-subtitle {
  display: inline-block;
  font-size: 13px !important;
  font-weight: 700;
  color: #006d5b !important;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-faq-sec-nw-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

.home-faq-sec-nw-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-faq-sec-nw-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.home-faq-sec-nw-btn {
  width: 100%;
  padding: 15px 25px;
  border: none;
  outline: none;
  background: #006d5b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #006d5b;
  text-align: left;
}

.home-faq-sec-nw-btn i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s ease;
  flex-shrink: 0;
}
.home-faq-sec-nw-btn-span {
  font-size: 18px !important;
  color: #ffffff !important;
}

.home-faq-sec-nw-item.active .home-faq-sec-nw-btn i {
  transform: rotate(45deg);
  background: #ff6b00;
  color: #fff;
}

.home-faq-sec-nw-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.home-faq-sec-nw-content-inner {
  padding: 0 25px 25px;
}

.home-faq-sec-nw-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* Active */
.home-faq-sec-nw-item.active .home-faq-sec-nw-content {
  max-height: 300px;
}

/* Tablet */
@media (max-width: 991px) {
  .home-faq-sec-nw {
    padding: 70px 18px;
  }

  .home-faq-sec-nw-title {
    font-size: 34px;
  }

  .home-faq-sec-nw-btn {
    font-size: 17px;
    padding: 22px 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .home-faq-sec-nw {
    padding: 60px 15px;
  }

  .home-faq-sec-nw-title {
    font-size: 28px;
  }

  .home-faq-sec-nw-btn {
    font-size: 15px;
    padding: 18px 16px;
  }

  .home-faq-sec-nw-content-inner {
    padding: 0 16px 20px;
  }

  .home-faq-sec-nw-btn i {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.blg-table-cont-dv-sec {
  width: 100%;
  padding: 30px 0px;
}

.blg-table-cont-dv-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  background: #f4f5f7;
  overflow: hidden;
}

/* accordion button */
.blg-table-cont-dv-toggle {
  width: 100%;
  border: none;
  background: #006d5b;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #006d5b;
}

.blg-table-cont-dv-toggle-text {
  font-size: 18px !important;
  font-weight: 700;
  color: #dde8df !important;
  text-align: left;
}

.blg-table-cont-dv-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: #132238;
  transition: 0.4s ease;
}
.blg-table-cont-dv-icon i{
      font-size: 20px;
       color: #132238;
}

/* content */
.blg-table-cont-dv-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.blg-table-cont-dv-wrapper.active .blg-table-cont-dv-content {
  max-height: 600px;
}

.blg-table-cont-dv-wrapper.active .blg-table-cont-dv-icon {
  transform: rotate(45deg);
}

/* scroll area */
.blg-table-cont-dv-scroll {
  max-height: 400px;
  overflow-y: auto;
  padding: 15px 25px 15px;
}

/* scrollbar */
.blg-table-cont-dv-scroll::-webkit-scrollbar {
  width: 6px;
}

.blg-table-cont-dv-scroll::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

/* list */
.blg-table-cont-dv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blg-table-cont-dv-list li {
  margin-bottom: 18px;
}

.blg-table-cont-dv-list li a {
  text-decoration: none;
  color: #46566b;
  font-size: 18px;
  line-height: 1.6;
  transition: 0.3s ease;
  display: inline-block;
}

.blg-table-cont-dv-list li a:hover {
  color: #0a66c2;
  transform: translateX(3px);
}

/* sub items */
.blg-table-cont-dv-sub-item {
  padding-left: 20px;
  position: relative;
}

.blg-table-cont-dv-sub-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #7b8794;
  font-size: 18px;
}

.blg-social-icons-sec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  justify-items: center;
  align-items: end;
}

.blg-social-icons-sec-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #006d5b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.blg-social-icons-sec-circle i {
  font-size: 15px;
  color: #fff;
}

.blg-social-icons-sec-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Tablet */
@media (max-width: 768px) {
  .blg-social-icons-sec-circle {
    width: 30px;
    height: 30px;
  }

  .blg-social-icons-sec-circle i {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .blg-social-icons-sec-grid {
    gap: 12px;
  }

  .blg-social-icons-sec-circle {
    width: 30px;
    height: 30px;
  }

  .blg-social-icons-sec-circle i {
    font-size: 15px;
  }
}
/* tablet */
@media (max-width: 991px) {
  .blg-table-cont-dv-toggle-text {
    font-size: 24px;
  }

  .blg-table-cont-dv-list li a {
    font-size: 16px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .blg-table-cont-dv-sec {
    padding: 15px 0px;
  }

  .blg-table-cont-dv-toggle {
    padding: 8px 18px;
  }

  .blg-table-cont-dv-toggle-text {
    font-size: 16px !important;
  }
  .intro-text p {
    font-size: 16px !important;
  }
  .wp-block-list li {
    font-size: 16px !important;
  }

  .blg-table-cont-dv-icon {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .blg-table-cont-dv-scroll {
    padding: 10px 18px 10px;
    max-height: 320px;
  }

  .blg-table-cont-dv-list li {
    margin-bottom: 14px;
  }

  .blg-table-cont-dv-list li a {
    font-size: 15px;
    line-height: 1.5;
  }
}

.blg-insight-sec {
  width: 100%;
  padding: 20px 0;
}

.blg-insight-sec-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #006d5b1c;
  border: 1px solid #006d5b87;
  border-radius: 14px;
  padding: 28px 30px;
}

.blg-insight-sec-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.blg-insight-sec-icon i {
  font-size: 18px;
  color: #b85b2c;
}

.blg-insight-sec-content p {
  margin: 0;
  color: #2d2d2d;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

.blg-insight-sec-content p span {
  font-weight: 700;
  color: #111;
}

/* Tablet */
@media (max-width: 991px) {
  .blg-insight-sec-box {
    padding: 24px 22px;
    gap: 14px;
  }

  .blg-insight-sec-content p {
    font-size: 17px;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .blg-insight-sec-box {
    padding: 10px 10px;
    border-radius: 12px;
    gap: 12px;
  }

  .blg-insight-sec-icon i {
    font-size: 15px;
  }

  .blg-insight-sec-content p {
    font-size: 13px;
    line-height: 1.7;
  }
}
.blg-note-secc {
  width: 100%;
  padding: 10px 0;
}

.blg-note-secc-box{
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffb0001a;
    border: 1px solid #ffb00052;
    border-radius: 14px;
    padding: 20px 30px;
    box-sizing: border-box;
}


.blg-note-secc-content{
    flex: 1;
    min-width: 0;
}

.blg-note-secc-content p,
.blg-note-secc-content span,
.blg-note-secc-content h1,
.blg-note-secc-content h2,
.blg-note-secc-content h3,
.blg-note-secc-content h4{
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.blg-note-secc-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.blg-note-secc-icon i {
  font-size: 18px;
  color: #9a6a10;
}

.blg-note-secc-content p {
  margin: 0;
  color: #2f2f2f;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  background: #FFF7E5 ;
}

.blg-note-secc-content p span {
  font-weight: 700;
  color: #111;
}

/* Tablet */
@media (max-width: 991px) {
  .blg-note-secc-box {
    padding: 24px 22px;
    gap: 14px;
  }

  .blg-note-secc-content p {
    font-size: 17px;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .blg-note-secc-box {
    padding: 10px 10px;
    border-radius: 12px;
    gap: 12px;
  }
  .blg-note-secc-content p span {
    font-size: 13px !important;
  }
  .blg-note-secc{
    padding: 5px 0;
  }

  .blg-note-secc-icon i {
    font-size: 15px;
  }

  .blg-note-secc-content p {
    font-size: 13px;
    line-height: 1.7;
  }
  .new-adv-cta-secc__desc {
    font-size: 13px;
  }
  .new-adv-cta-secc__desc-serv {
    font-size: 16px;
  }
}

.blg-know {
  width: 100%;
  padding: 20px 0;
}

.blg-know-box {
  background: #006d5b2e;
  border: 1px solid #d7e3f4;
  border-radius: 30px;
  padding: 30px 38px;
}

.blg-know-heading {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
}

.blg-know-text {
  margin: 0;
  font-size: 25px;
  line-height: 1.9;
  font-weight: 400;
  color: #2d2d2d;
}
.blg-know-text h2{
  font-size: 25px !important;
   line-height: 1.8 !important;
  font-weight: 400;
  color: #2d2d2d !important;
  margin-bottom: 5px !important;
}
.blg-know-text p{
  font-size: 18px !important;
}

.blg-know-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.blg-know-link:hover {
  text-decoration: underline;
}

/* Tablet */
@media (max-width: 991px) {
  .blg-know-box {
    padding: 34px 28px;
    border-radius: 28px;
  }

  .blg-know-heading {
    font-size: 35px;
    margin-bottom: 18px;
  }

  .blg-know-text {
    font-size: 19px;
    line-height: 1.8;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .blg-know-box {
    padding: 26px 20px;
    border-radius: 22px;
  }
  .blg-know{
    padding: 10px 0;
  }

  .blg-know-heading {
    font-size: 20px !important;
    margin-bottom: 14px;
  }

  .blg-know-text {
    font-size: 13px !important;
    line-height: 1.8;
  }
}

.blg-quote-secc {
  width: 100%;
  padding: 20px 0;
}

.blg-quote-secc-box {
  position: relative;
  background: #006d5b36;
  padding: 40px 34px;
  overflow: hidden;
  border-radius: 20px;
}

.blg-quote-secc-top-icon {
  position: absolute;
  top: 14px;
  left: 14px;
}

.blg-quote-secc-bottom-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
}

.blg-quote-secc-top-icon i,
.blg-quote-secc-bottom-icon i {
  font-size: 28px;
  color: #006d5b;
}

.blg-quote-secc-text {
  margin: 0;
  padding: 22px 12px;
  font-size: 19px;
  line-height: 2;
  font-style: italic;
  font-weight: 400;
  color: #4b6178;
}

/* Tablet */
@media (max-width: 991px) {
  .blg-quote-secc-box {
    padding: 34px 26px;
  }

  .blg-quote-secc-text {
    font-size: 17px;
    line-height: 1.9;
  }

  .blg-quote-secc-top-icon i,
  .blg-quote-secc-bottom-icon i {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .blg-quote-secc-box {
    padding: 15px 20px;
  }

  .blg-quote-secc-text {
    font-size: 13px !important;
    line-height: 1.8 !important;
    padding: 18px 6px !important;
  }

  .blg-quote-secc-top-icon {
    top: 10px;
    left: 10px;
  }

  .blg-quote-secc-bottom-icon {
    right: 10px;
    bottom: 10px;
  }

  .blg-quote-secc-top-icon i,
  .blg-quote-secc-bottom-icon i {
    font-size: 20px;
  }
}

.home-blog-secc-nw {
  background-color: #f9f9f9;
  padding: 30px 20px;
}
.home-blog-secc-nw1 {
  background-color: #f9f9f9;
  padding: 40px 20px;
}
.home-blog-secc-nw12 {
  background-color: #f9f9f9;
  padding: 140px 20px 30px 20px;
}
.home-blog-secc-nw13 {
  background-color: #f9f9f9;
  padding: 80px 20px 60px 20px;
}
.home-blog-secc-nw-cont {
  max-width: 1200px;
  margin: 0 auto;
}

.home-blog-secc-nw-top {
  text-align: center;
  margin-bottom: 36px;
}

.home-blog-secc-nw-top-heading {
  font-size: 40px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.2;
  text-transform: capitalize;
}

.home-blog-secc-nw-top-desc {
  font-size: 18px;
  color: #000000;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.home-blog-secc-nw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.home-blog-secc-nw-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-blog-secc-nw-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-bottom: 10px;
}
.home-blog-secc-nw-menu-icon i{
    font-size: 20px;
    color: #005F4F;
}

.home-blog-secc-nw-menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background: #005F4F;
  border-radius: 2px;
}

.home-blog-secc-nw-section-title {
  font-size: 24px;
  font-weight: 800;
  color: #005F4F;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-blog-secc-nw-view-link {
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.home-blog-secc-nw-view-link:hover {
  text-decoration: underline;
}

.home-blog-secc-nw-swiper-wrap {
  position: relative;
}

.home-blog-secc-nw-swiper {
  width: 100%;
   overflow-y: visible !important;
  padding-bottom: 90px !important;
}

/* hide arrows */
.home-blog-secc-nw-swiper .swiper-button-next,
.home-blog-secc-nw-swiper .swiper-button-prev {
  display: none !important;
}

.home-blog-secc-nw-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  opacity: 1;
  transition: all 0.2s;
}
.home-blog-secc-nw-swiper .swiper-pagination {
  position: relative !important;
  bottom: unset !important;
  margin-top: 25px !important;
}

.home-blog-secc-nw-swiper .swiper-pagination-bullet-active {
  background: #2563eb;
  width: 22px;
  border-radius: 4px;
}

.home-blog-secc-nw-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* ── CARD ── */
.home-blog-secc-nw-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgb(0 0 0 / 0%);
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
    border: 1px solid #0000001c;
}

.home-blog-secc-nw-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

/* card image */
.home-blog-secc-nw-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  padding: 15px;
}

.home-blog-secc-nw-card-img-wrap img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.home-blog-secc-nw-card-badge {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.4px;
}

/* card body */
.home-blog-secc-nw-card-body {
  padding: 16px 16px 15px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-blog-secc-nw-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: calc(1.4em * 2);
}

.home-blog-secc-nw-card-excerpt {
  font-size: 13.5px;
  color: #000000;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* card meta (date + read time) */
.home-blog-secc-nw-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 0 16px;
  font-size: 11px !important;
  color: #9ca3af;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.home-blog-secc-nw-card-meta span {
  color: #00030c !important;
  font-size: 13px !important;
}
.home-blog-secc-nw-card-btn{
  margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 5px 30px;
    border-radius: 30px;
    background: #ffb000;
    color: #000000 !important;
    font-size: 14px !important;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}
/* card author */
.home-blog-secc-nw-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 18px 16px;
}

.home-blog-secc-nw-card-author-img {
  width: 40px;
  height: 40px;
  border-radius: 20%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e5e7eb;
}

.home-blog-secc-nw-card-author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.home-blog-secc-nw-card-author-label {
  font-size: 13px !important;
  color: #9ca3af;
  line-height: 1.2;
}

.home-blog-secc-nw-card-author-name {
  font-size: 15px !important;
  font-weight: 600;
  color: #006c5a !important;
  line-height: 1.2;
}

/* ── VIEW ALL BUTTON ── */
.home-blog-secc-nw-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.home-blog-secc-nw-btn {
  display: inline-block;
  padding: 8px 36px;
  background: #ffb000;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 800;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.home-blog-secc-nw-read-btn-wrap {
  padding: 0 16px 16px;
}

.home-blog-secc-nw-read-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 50%;
  padding: 5px 10px;
  background: #ffb000;
  color: #000;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.home-blog-secc-nw-card:hover .home-blog-secc-nw-read-btn {
  background: #006d5b;
  color: #fff;
  transform: translateY(-2px);
}

.home-blog-secc-nw-read-btn i {
  transition: transform 0.3s ease;
}

.home-blog-secc-nw-card:hover .home-blog-secc-nw-read-btn i {
  transform: translateX(5px);
}

.home-blog-secc-nw-btn:hover {
  background: #006d5b;
  transform: translateY(-1px);
  color: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .home-blog-secc-nw-top-heading {
    font-size: 24px;
  }
  .home-blog-secc-nw-section-title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .home-blog-secc-nw-top-heading {
    font-size: 28px;
  }
  .home-blog-secc-nw-top-desc {
    font-size: 16px;
  }
  .home-blog-secc-nw-card-img-wrap {
    height: 160px;
  }
  .home-blog-secc-nw-card-title {
    font-size: 20px;
  }
  .home-blog-secc-nw-card-excerpt {
    font-size: 16px;
  }
  .home-blog-secc-nw-btn {
    padding: 11px 28px;
    font-size: 14px;
  }
  .home-blog-secc-nw {
    padding: 30px 20px;
  }
  .final-cta11 {
    padding: 20px 0 40px;
  }
  .cta-box11 {
    padding: 50px 30px;
  }
}

.home-testi-secc {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  background: transparent;
  border-radius: 2rem;
}

.home-testi-secc__header {
  text-align: center;
  margin-bottom: 3rem;
}

.home-testi-secc__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(79, 70, 229, 0.12);
  padding: 0.45rem 1.2rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4f46e5;
  letter-spacing: 0.3px;
  margin-bottom: 1rem;
  backdrop-filter: blur(2px);
}

.home-testi-secc__badge i {
  font-size: 0.85rem;
}

.home-testi-secc__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0a0f2c;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.home-testi-secc__sub {
  font-size: 1.05rem;
  color: #2c3e58;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 450;
  line-height: 1.45;
}

.home-testi-secc__slider-wrapper {
  position: relative;
  padding: 0.5rem 0 2rem;
  margin-top: 0.5rem;
}

.swiper {
  width: 100%;
  padding: 10px 0px !important;
  overflow: hidden;
}

.home-testi-secc__card {
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  padding: 1.8rem 1.6rem 1.8rem;
  box-shadow:
    0 18px 30px -12px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(203, 213, 225, 0.4);
  backdrop-filter: blur(2px);
}

.home-testi-secc__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 36px -16px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.home-testi-secc__google-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.home-testi-secc__google-icon {
  background: #f1f4f9;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #4285f4;
  font-size: 1.7rem;
  transition: all 0.2s;
}

.home-testi-secc__rating {
  color: #fbbf24;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.home-testi-secc__rating i {
  margin-right: 2px;
}

.home-testi-secc__desc {
  color: #1e293b;
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  font-weight: 450;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: calc(1.55em * 3);
  white-space: normal;
  font-family: var(--font);
}

.home-testi-secc__client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-testi-secc__avatar-img {
  position: relative;

  width: 52px;
  height: 52px;
  min-width: 52px;

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

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

  overflow: visible;
}

.home-testi-secc__avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* GOOGLE BADGE */
.home-testi-secc__google-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;

  width: 22px;
  height: 22px;

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

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

  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* RIGHT CONTENT */
.home-testi-secc__client-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-testi-secc__client-info h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.home-testi-secc__client-info p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.home-testi-secc .swiper-button-next,
.home-testi-secc .swiper-button-prev {
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  color: #1f2937;
  border: 1px solid #e4e9f0;
  backdrop-filter: blur(2px);
}

.home-testi-secc .swiper-button-next:after,
.home-testi-secc .swiper-button-prev:after {
  font-size: 1.3rem;
  font-weight: 800;
}

.home-testi-secc .swiper-button-next:hover,
.home-testi-secc .swiper-button-prev:hover {
  background: #006d5b;
  color: white;
  border-color: #006d5b;
  transform: scale(1.03);
}

.home-testi-secc .swiper-pagination-bullet {
  background: #b9c3d4;
  opacity: 0.6;
  width: 8px;
  height: 8px;
  transition: all 0.2s;
}

.home-testi-secc .swiper-pagination-bullet-active {
  background: #4f46e5;
  width: 26px;
  border-radius: 20px;
  opacity: 1;
}

@media (max-width: 1024px) {
  .home-testi-secc .swiper-button-next,
  .home-testi-secc .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .home-testi-secc .swiper-button-next:after,
  .home-testi-secc .swiper-button-prev:after {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .home-testi-secc {
    padding: 1.8rem 0.8rem 2.5rem;
  }
  .home-testi-secc__title {
    font-size: 1.8rem;
  }
  .home-testi-secc__sub {
    font-size: 0.9rem;
  }
  .home-testi-secc__card {
    padding: 1.4rem;
  }
  .home-testi-secc__desc {
    font-size: 0.88rem;
    min-height: calc(1.5em * 3);
  }
  .home-testi-secc__avatar-img {
    width: 44px;
    height: 44px;
  }

  .home-testi-secc .swiper-button-next,
  .home-testi-secc .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .hero44{
   padding: 100px 20px 50px !important;
  }
}

@media (max-width: 480px) {
  .home-testi-secc .swiper-button-next,
  .home-testi-secc .swiper-button-prev {
    display: none;
  }
  .home-testi-secc__google-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .home-testi-secc__rating i {
    font-size: 0.7rem;
  }
}

.hero44 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, #006d5b, transparent 28%),
    linear-gradient(135deg, #006d5b 0%, #024c40 58%, #014e41 100%);
  color: white;
  padding: 160px 0 70px;
}

.hero44::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 233, 47, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 233, 47, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid44 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
      max-width: 1300px;
    margin: auto;
    padding: 0px 20px;
}

.eyebrow44 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffb000;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 22px;
}
.pulse44 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb000;
  box-shadow: 0 0 0 6px rgba(168, 233, 47, 0.18);
}

.hero44-h1 {
  font-size: clamp(35px, 5.4vw, 65px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  max-width: 820px;
  margin-bottom: 24px;
  color: white;
}
.hero-text44 {
  color: #d7e6d5;
  font-size: 19px;
  line-height: 1.75;
  max-width: 690px;
  margin-bottom: 32px;
}
.actions44 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-card44 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  padding: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}
.hero-card44 h2 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  color: white;
}
.hero-checks44 {
  display: grid;
  gap: 14px;
}
.hero-checks44 div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #d7e6d5;
  font-weight: 700;
}
.tick44 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f4faf4;
  color: #006d5b;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.summary-strip44 {
  background: #ffb00000;
  border-bottom: 1px solid #dde8df;
}
.summary-grid44 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px 0;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}
.summary-item44 {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 850;
  color: #344054;
}
.summary-item44 span:first-child {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #006d5b12;
  color: #006d5b;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.overview-sec44 {
  padding: 80px 0;
}
.overview-sec-h244 {
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.section-head44 {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-kicker44 {
  color: #006d5b;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.section-head44 p,
.text-muted44 {
  color: #000000;
  font-size: 17px;
  line-height: 1.75;
}
h3 {
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.card44 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 24px;
  padding: 30px;
  transition: 0.22s ease;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}
.card44:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  border-color: #006d5b;
}
.icon44 {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #006d5b24;
  color: #006d5b;
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 20px;
}
.card44 p {
  color: #000000;
  font-size: 15.5px;
  line-height: 1.75;
}
.info-grid44 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.legal-layout44 {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: start;
}
.side-nav44 {
  position: sticky;
  top: 115px;
  background: #f4faf4;
  border: 1px solid #dde8df;
  border-radius: 28px;
  padding: 24px;
}
.side-nav44 h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.side-nav44 a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border-radius: 14px;
  color: #000000;
  font-weight: 600;
  font-size: 14px;
}
.side-nav44 a:hover {
  background: #006d5b12;
  color: #006d5b;
}

.legal-content44 {
  display: grid;
  gap: 18px;
}
.legal-box44 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
  transition: 0.22s ease;
}
.legal-box44:hover {
  border-color: #006d5bc2;
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  transform: translateY(-3px);
}
.legal-box44 h2 {
  font-size: clamp(24px, 2.4vw, 34px);
  margin-bottom: 12px;
  letter-spacing: -0.035em;
}
.legal-box44 p,
.legal-box44 li {
  color: #111;
  font-size: 16px;
}
.legal-box44 p + p {
  margin-top: 10px;
}
.legal-box44 ul {
  padding-left: 20px;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.legal-note44 {
  background: #035e4f;
  color: white;
  border-radius: 26px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
/* .legal-note44::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  top: -100px;
  background: rgba(168, 233, 47, 0.26);
  border-radius: 50%;
  filter: blur(38px);
} */
.legal-note44 * {
  position: relative;
  z-index: 1;
}
.legal-note44 p {
  color: #d7e6d5;
  font-size: 16px;
}

.cta-section44 {
  padding: 0 0 96px;
  background: #f4faf4;
}
.cta-box44 {
  border-radius: 34px;
  background: linear-gradient(135deg, #006d5b, #024338);
  color: white;
  padding: 76px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box44 h2 {
  color: white;
}
.cta-box44 p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: 17px;
}
.cta-box44 .actions44 {
  justify-content: center;
}
.side-nav-secc {
  padding: 80px 0;
  background: #f4faf4;
}
.legal-note44 h2 {
  color: white;
}

@media (max-width: 980px) {
  .nav-links44 {
    display: none;
  }
  .hero-grid44,
  .legal-layout44,
  .footer-grid44 {
    grid-template-columns: 1fr;
  }
  .summary-grid44,
  .info-grid44 {
    grid-template-columns: repeat(2, 1fr);
  }
  .side-nav44 {
    position: static;
  }
  .hero-card44 h2{
    font-size: 25px;
}
.overview-sec-h244{
   font-size: 30px;
}
.card44 h3{
  font-size: 25px;
}
.legal-note44 h2{
   font-size: 30px;
}
.cta-box44 h2{
   font-size: 30px;
}
.legal-box44 h3{
  font-size: 20px;
}
}

@media (max-width: 640px) {
  .summary-grid44,
  .info-grid44 {
    grid-template-columns: 1fr;
  }
  .actions44 .btn44 {
        width: 85%;
        margin: auto;
  }
  .hero-grid44{
    padding: 0px;
  }
  .hero-card44{
    padding: 20px;
  }
  .eyebrow44{
        line-height: 1.5;
  }
  .hero-grid-div44{
    text-align: center;
  }
  h1 {
    font-size: 42px;
  }
  .hero-text44 {
    font-size: 17px;
  }
  .overview-sec44 {
    padding: 50px 0;
  }
  .side-nav-secc {
    padding: 50px 0;
  }
  .cta-section44 {
    padding: 0 0 70px;
  }
}

.btn44 {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary44 {
  background: #ffb000;
  color: #07130e;
  /* box-shadow: 0 16px 32px rgba(168, 233, 47, 0.28); */
}
.btn-primary44:hover {
  background: #006d5b;
  transform: translateY(-2px);
  color: white !important;
  border: 1px solid #fff;
}
.btn-dark44 {
  background: #ffb000;
  color: #111;
}
.btn-dark44:hover {
  background: #006856;
  transform: translateY(-2px);
  color: white;
}
.btn-light44 {
  background: white;
  border-color: #dde8df;
  color: #0b1f17;
}
.btn-light44:hover {
  border-color: #0b1f17;
  transform: translateY(-2px);
}

.adv-footer-sect {
  background: linear-gradient(156deg, #006d5b, #01241a);
  padding: 80px 0 30px;
  overflow: hidden;
}

.adv-footer-sect * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.adv-footer-sect a {
  text-decoration: none;
}

.adv-footer-sect ul {
  list-style: none;
}

.adv-footer-sect .container {
  max-width: 1300px;
  margin: auto;
}
.adv-footer-sect-logo img {
  width: 60%;
}

/* TOP */

.adv-footer-sect-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.adv-footer-sect-top h2 {
  color: #fff;
  font-size: 50px;
  line-height: 1.1;
  /* max-width: 700px; */
  font-weight: 700;
  letter-spacing: normal;
}

.adv-footer-sect-btn {
  background: #ffb000;
  color: #000;
  padding: 18px 34px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.4s;
  white-space: nowrap;
}

.adv-footer-sect-btn:hover {
  transform: translateY(-4px);
}

/* DESKTOP */

.adv-footer-sect-desktop {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1fr 1fr 1.8fr;
  gap: 30px;
  padding: 70px 0;
}

.adv-footer-sect-col h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}
.footer-icons-menu {
  font-size: 6px;
  margin-right: 5px;
  align-items: center;
  vertical-align: middle;
}

.adv-footer-sect-col p {
  color: #c4c4c4;
  line-height: 1.8;
  margin-bottom: 20px;
}

.adv-footer-sect-col ul li {
  margin-bottom: 18px;
  color: #c4c4c4;
}

.adv-footer-sect-col ul li a {
  color: #c4c4c4;
  transition: 0.4s;
}

.adv-footer-sect-col ul li a:hover {
  color: #ffb000;
  padding-left: 6px;
}

.adv-footer-sect-about h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}

.adv-footer-sect-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.adv-footer-sect-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
}

.adv-footer-sect-social a:hover {
  background: #ffb000;
  color: #000;
}

.adv-footer-sect-newsletter {
  position: relative;
  margin-top: 25px;
}

.adv-footer-sect-newsletter input {
  width: 100%;
  height: 58px;
  border-radius: 50px;
  border: 1px solid #fff;
  background: #09927cb8;
  padding: 0 70px 0 22px;
  color: #fff;
  outline: none;
}
.adv-footer-sect-newsletter input::placeholder {
  color: white;
}

.adv-footer-sect-newsletter button {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #ffb000;
  cursor: pointer;
}
.adv-footer-sect-newsletter button:hover{
  background: #fff;
}
.adv-footer-sect-newsletter button:hover i{
  color: #ffb000;
}

/* MOBILE */

.adv-footer-sect-mobile {
  display: none;
}

/* BOTTOM */

.adv-footer-sect-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  text-align: center;
}

.adv-footer-sect-bottom p {
  color: rgb(255 255 255 / 90%);
}
/* MOBILE LOGO */

.adv-footer-sect-mobile-logo {
  text-align: center;
  margin-bottom: 30px;
}

.adv-footer-sect-mobile-logo img {
  max-width: 220px !important;
  width: 100%;
  margin: auto;
  display: block;
  margin-bottom: 18px;
}

.adv-footer-sect-mobile-logo p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  line-height: 1.8;
  max-width: 320px;
  margin: auto;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .adv-footer-sect {
    background: #006d5b;
    padding: 40px 0 30px;
  }

  .adv-footer-sect-top,
  .adv-footer-sect-desktop {
    display: none;
  }

  .adv-footer-sect-mobile {
    display: block;
  }

  .adv-footer-sect-mobile-logo {
    text-align: center;
    margin-bottom: 30px;
  }

  .adv-footer-sect-mobile-logo h2 {
    color: #d8f24a;
    font-size: 42px;
    font-weight: 700;
  }

  .adv-footer-sect-mobile-newsletter {
    position: relative;
    margin-bottom: 35px;
  }

  .adv-footer-sect-mobile-newsletter input {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    border: 1px solid rgb(255 255 255 / 60%);
    background: transparent;
    padding: 0 80px 0 22px;
    color: #fff;
    outline: none;
  }
  .adv-footer-sect-mobile-newsletter input::placeholder {
    color: #fff;
  }

  .adv-footer-sect-mobile-newsletter button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffb000;
    cursor: pointer;
  }
  .adv-footer-sect-mobile-newsletter button :hover {
    background: #ffb000;
  }

  .adv-footer-sect-mobile-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
  }

  .adv-footer-sect-mobile-social h4 {
    color: #fff;
    font-size: 22px;
  }

  .adv-footer-sect-mobile-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .adv-footer-sect-mobile-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #ffb000;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
      transition: all 0.3s ease;
  }
  .adv-footer-sect-mobile-icons a:hover {
        transform: scale(1.1);
  }

  .adv-footer-sect-mobile-img {
    margin-bottom: 40px;
  }

  .adv-footer-sect-mobile-img img {
    width: 100%;
    border-radius: 12px;
    display: block;
  }

  /* ACCORDION */

  .adv-footer-sect-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .adv-footer-sect-acc-item {
    overflow: hidden;
  }

  .adv-footer-sect-acc-head {
    background: #ffb000;
    border-radius: 24px;
    padding: 5px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .adv-footer-sect-acc-head h3 {
    font-size: 18px;
    color: #000;
  }

  .adv-footer-sect-acc-head i {
    font-size: 18px;
    transition: 0.4s;
  }

  .adv-footer-sect-acc-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition:
      max-height 0.5s ease,
      padding 0.4s ease;
  }

  .adv-footer-sect-acc-body p,
  .adv-footer-sect-acc-body a,
  .adv-footer-sect-acc-body h4 {
    color: #fff;
    line-height: 1.9;
  }

  .adv-footer-sect-acc-body a:hover {
    color: #ffb000;
  }

  .adv-footer-sect-acc-body h4 {
    margin-top: 20px;
    margin-bottom: 8px;
  }

  .adv-footer-sect-acc-body ul li {
    margin-bottom: 12px;
    color: white;
  }

  .adv-footer-sect-acc-item.active .adv-footer-sect-acc-body {
    max-height: 500px;
    padding: 24px 22px;
  }

  .adv-footer-sect-acc-item.active .adv-footer-sect-acc-head i {
    transform: rotate(180deg);
  }

  .adv-footer-sect-bottom {
    margin-top: 40px;
  }
}
@media(max-width:768px){
  .adv-footer-sect .container {
   padding: 0px 15px 50px 15px;
}
.btn44{
    min-height: 40px;
    padding: 10px 30px;
}
}

.service-hero66 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, #006d5b, transparent 28%),
    linear-gradient(135deg, #006d5b 0%, #022d26 58%, #006d5b 100%);
  color: white;
  padding: 140px 0 64px;
}
.lan-hero-h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  max-width: 780px;
  margin-bottom: 24px;
  color: white;
}

.service-hero66::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 233, 47, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 233, 47, 0.09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-layout66 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.breadcrumb66 {
  color: #f8f8f8;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-badge66 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7b31c;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 22px;
}
.pulse66 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffb000;
  box-shadow: 0 0 0 6px rgba(168, 233, 47, 0.18);
}
h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.01;
  letter-spacing: -0.06em;
  max-width: 780px;
  margin-bottom: 24px;
}
.hero-text66 {
  color: #d7e6d5;
  font-size: 19px;
  line-height: 1.75;
  max-width: 690px;
  margin-bottom: 32px;
}
.actions66 {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta66 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 740px;
}
.meta-card66 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 18px;
}
.meta-card66 strong {
  display: block;
  color: white;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 8px;
}
.meta-card66 span {
  color: #b7c8b8;
  font-size: 13px;
  font-weight: 700;
}

.lead-card66 {
  background: white;
  color: #0b1f17;
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  position: sticky;
  top: 100px;
}
.lead-card66 h2 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  text-align: center;
}
.lead-card66 p {
  color: #040404;
  font-size: 14px;
  margin-bottom: 20px;
}
.price-pill66 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #006d5b;
  color: #ffffff;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 950;
  margin-bottom: 18px;
}
.form-grid66 {
  display: grid;
  gap: 12px;
}
.field66 {
  width: 100%;
  min-height: 45px;
  border: 1px solid #dde8df;
  border-radius: 14px;
  padding: 0 15px;
  font: inherit;
  font-size: 15px;
  color: #0b1f17;
  background: #fbfdfb;
  outline: none;
}
textarea.field66 {
  min-height: 96px;
  resize: vertical;
  padding-top: 14px;
}
.field66:focus {
  border-color: #ffb000;
  box-shadow: 0 0 0 4px rgba(168, 233, 47, 0.18);
}
.form-note66 {
  color: #111;
  font-size: 12px;
  margin-top: 12px;
  line-height: 1.2;
}

.quick-nav66 {
  background: white;
  border-bottom: 1px solid #dde8df;
  position: sticky;
  top: 65px;
  z-index: 40;
}
.quick-nav-inner66 {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
}
.quick-nav66 a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: #c1f6ed;
  color: #141414;
  font-weight: 800;
  font-size: 14px;
}
.quick-nav66 a:hover {
  background: #ffb000;
  color: #07130e;
}
section {
  scroll-margin-top: 120px;
}
.btn66 {
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary66 {
  background: #ffb000;
  color: #07130e;
  /* box-shadow: 0 16px 32px rgba(168, 233, 47, 0.28); */
}
.btn-primary66:hover {
  background: #006d5b;
  transform: translateY(-2px);
  color: white;
}
.btn-plan-primary66 {
  background: #ffb000;
  color: #07130e;
  /* box-shadow: 0 16px 32px rgba(168, 233, 47, 0.28); */
}
.btn-plan-primary66:hover {
  background: #f5a623;
  transform: translateY(-2px);
  color: #000;
}
.btn-dark66 {
  background: #ffb000;
  color: rgb(8, 8, 8);
}
.btn-dark66:hover {
  background: #b78107;
  transform: translateY(-2px);
  color: white;
}
.btn-light66 {
  background: #006d5b;
  border-color: #dde8df;
  color: #fff;
}
.btn-light66:hover {
  color: #fff;
  transform: translateY(-2px);
}

.overview-grid66 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.overview-card66 {
  border: 1px solid #dde8df;
  border-radius: 30px;
  padding: 36px;
  background: #f4faf4;
}
@media (max-width: 768px) {
  .overview-card66 {
    padding: 25px;
  }
}
.overview-card66.dark {
  background: #025547;
  color: white;
  position: relative;
  overflow: hidden;
}
.overview-card66.dark::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 330px;
  height: 330px;
  /* background: rgba(168, 233, 47, 0.26); */
  border-radius: 50%;
  filter: blur(40px);
}
.overview-card66.dark * {
  position: relative;
  z-index: 1;
}
.overview-card66.dark p {
  color: #d7e6d5;
}
.check-list66 {
  list-style: none;
  display: grid;
  gap: 15px;
  margin-top: 28px;
  padding-left: 0px;
}
.check-list66 li {
  display: flex;
  gap: 12px;
  color: #111111;
  font-weight: 750;
  align-items: center;
}
.overview-card66.dark .check-list66 li {
  color: #d7e6d5;
}
.tick66 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #006d5b;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.overview-sec66 {
  padding: 70px 0;
}

.overview-sec-h2 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
  color: white;
}
.overview-sec-h2-2 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.section-head66 {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}
.section-kicker66 {
  color: #006d5b;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}
.different-sec-h2 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.section-head66 p,
.text-muted66 {
  color: #000;
  font-size: 17px;
  line-height: 1.75;
}

.different-sec66 {
  padding: 60px 10px;
}
.compare-wrap66 {
  overflow-x: auto;
  border: 1px solid #dde8df;
  border-radius: 26px;
  background: white;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}
.comapre-table66 {
  width: 100%;
  border-collapse: collapse;
  min-width: 840px;
  margin: 0px 0;
}
.comapre-table66 th,
.comapre-table66 td {
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid #dde8df;
  font-size: 15px;
}
.comapre-table66 th {
  background: #006d5b;
  color: white;
  font-weight: 900;
}
.comapre-table66 td {
  color: #000;
}
.comapre-table66 tr:last-child td {
  border-bottom: 0;
}
.comapre-table66 td strong {
  color: #0b1f17;
}

.type-section66 {
  background: #f4faf4;
  padding: 70px 0;
}
.type-section66-h2 {
  font-size: 40px;
}
.type-grid66 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.card66 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 24px;
  padding: 26px;
  transition: 0.22s ease;
}
.card66:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
  border-color: #006d5b;
}
.icon66 {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  background: #006d5b;
  color: #ffb000;
  display: grid;
  place-items: center;
  font-weight: 950;
  margin-bottom: 20px;
}
.card66 p {
  color: #000;
  font-size: 15.5px;
  line-height: 1.75;
}

.included66 {
  background: #f4faf4;
  padding: 70px 0;
}
.included-grid66 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.prod-sec66 {
  padding: 70px 0;
}
.prod-sec-h2 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.prod-sec-h3 {
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.process66 {
  background: #035e4f;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 70px 0;
}
.process66::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: #0a7f6c;
  right: -160px;
  bottom: -180px;
  filter: blur(42px);
}
.process66 .container {
  position: relative;
  z-index: 1;
}
.process66 .section-head66 p {
  color: #d7e6d5;
}
.timeline66 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step-card66 {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 26px;
  position: relative;
}
.step-card66::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #ffb000;
  color: #07130e;
  font-weight: 950;
  margin-bottom: 20px;
}
.step-card66 p {
  color: #d7e6d5;
  font-size: 15.5px;
  line-height: 1.75;
}

.documents66 {
  background: white;
  padding: 70px 0;
}
.doc-layout66 {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: start;
}
.doc-note66 {
  background: #f4faf4;
  border: 1px solid #dde8df;
  border-radius: 30px;
  padding: 32px;
  position: sticky;
  top: 150px;
}
.doc-grid66 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.doc-item66 {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
}
.process-h2-66 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
  color: white;
}
.process-h3-66 {
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: white;
}
.doc-sec-h2 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.doc-sec-h3 {
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.included66-h2 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.included66-h3 {
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.fess-sec66 {
  padding: 70px 0;
}

.pricing-grid66 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card66 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 30px;
  padding: 30px;
  transition: 0.22s ease;
  text-align: center;
}
.price-card66.featured66 {
  background: #006d5b;
  color: white;
  transform: translateY(-10px);
}
.price-card66:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(7, 19, 14, 0.12);
}
.price-card66.featured66:hover {
  transform: translateY(-14px);
}
.price-card66 p,
.price-card66 li {
  color: #000;
  font-size: 15px;
  line-height: 1.75;
}
.price-card66.featured66 p,
.price-card66.featured66 li {
  color: #d7e6d5;
}
.price66 {
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -0.04em;
  margin: 18px 0;
}
.price-card66 ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 22px auto 28px;
  text-align: center;
  justify-content: center;
}
.price-card66 li {
  display: flex;
  gap: 10px;
}
.fees-sec-h2 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.fees-sec-h3 {
  font-size: 21px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.include-sec-h2 {
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.faq-sec-h2 {
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.faq66 {
  background: #f4faf4;
  padding: 70px 0;
}
.faq-wrap66 {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item66 {
  background: white;
  border: 1px solid #dde8df;
  border-radius: 20px;
  padding: 24px;
}
.faq-item66 strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}
.faq-item66 p {
  color: #000;
}

.final-cta66 {
  padding: 0 0 96px;
  background: #f4faf4;
}
.cta-box66 {
  border-radius: 34px;
  background: linear-gradient(135deg, #006d5b, #033a31);
  color: white;
  padding: 76px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box66::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  left: -120px;
  top: -160px;
}
.cta-box66 h2,
.cta-box66 p,
.cta-box66 .actions {
  position: relative;
  z-index: 1;
}
.cta-box66 h2 {
  color: white;
  font-size: clamp(32px, 40px, 50px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}
.cta-box66 p {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #e9f8c8;
  font-size: 17px;
}
.cta-box66 .actions66 {
  justify-content: center;
}

@media (max-width: 1020px) {
  .hero-layout66,
  .overview-grid66,
  .doc-layout66 {
    grid-template-columns: 1fr;
  }
  .lead-card66,
  .doc-note66 {
    position: static;
  }
  .type-grid66,
  .timeline66,
  .included-grid66,
  .pricing-grid66 {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-meta66 {
    grid-template-columns: repeat(3, 1fr);
  }
  .overview-sec66 {
    padding: 50px 0;
  }
  .different-sec66 {
    padding: 50px 0;
  }
  .fess-sec66 {
    padding: 50px 0;
  }
  .included66 {
    padding: 50px 0;
  }
  .documents66 {
    padding: 50px 0;
  }
  .faq66 {
    padding: 50px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1240px);
  }
  .type-section66-h2 {
    font-size: 30px;
  }

  .nav66 {
    height: 68px;
  }
  .nav-cta66 {
    display: none;
  }
  .quick-nav66 {
    top: 68px;
  }
  .hero-text66 {
    font-size: 17px;
  }
  .actions66 .btn66 {
    width: 80%;
  }
  .hero-meta66,
  .type-grid66,
  .timeline66,
  .doc-grid66,
  .included-grid66,
  .pricing-grid66 {
    grid-template-columns: 1fr;
  }
  .price-card66.featured66 {
    transform: none;
  }
  .price-card66.featured66:hover {
    transform: translateY(-6px);
  }
}

.review-adv-secc-section {
  background: #ffffff;
  padding: 50px 0;
  overflow: hidden;
}

.review-adv-secc-container {
  max-width: 1300px;
  margin: auto;
  padding: 10px 20px;
  overflow: hidden;
}
.review-adv-secc-slider {
  padding: 10px 0px;
}

.review-adv-secc-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  gap: 20px;
  
}


.review-adv-secc-header h2 {
  color: #000000;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
}

.review-adv-secc-nav {
  display: flex;
  gap: 15px;
}

.review-adv-secc-prev,
.review-adv-secc-next {
  width: 50px;
  height: 50px;
  border: 1px solid #006d5b;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #006d5b;
  cursor: pointer;
  transition: 0.4s;
}

.review-adv-secc-prev:hover,
.review-adv-secc-next:hover {
  transform: translateY(-3px);
  background: #fff;
  color: #082c4a;
}

.review-adv-secc-card {
  background: #fff;
  border: 1px solid rgb(61 61 61 / 18%);
  border-radius: 20px;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.4s;
    box-shadow:  0 4px 10px rgba(0, 0, 0, 0.04),
    0 12px 30px rgba(0, 0, 0, 0.08);
}

.review-adv-secc-card:hover {
  transform: translateY(-5px);
}

.review-adv-secc-quote {
  color: #FFB000;
  font-size: 24px;
  margin-bottom: 15px;
}

.review-adv-secc-card p {
  color:#7c7b7b;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 25px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: calc(1.8em * 3);
}

.review-adv-secc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.review-adv-secc-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.review-adv-secc-user img {
  width: 50px;
  height: 50px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-adv-secc-user h4 {
  color: #006D5B;
  font-size: 16px;
  font-weight: 600;
  margin: 0;

  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: calc(1.4em * 2);
}

.review-adv-secc-user span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.review-adv-secc-score {
  background: #006D5B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 7px 14px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-adv-secc-score i {
  color: #ffb400;
}
.review-adv-secc-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #006D5B;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

/* Tablet */

@media (max-width: 991px) {
  .review-adv-secc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-adv-secc-header h2 {
    font-size: 24px;
  }

  .review-adv-secc-card {
    min-height: auto;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .review-adv-secc-section {
    padding: 70px 0;
  }

  .review-adv-secc-header h2 {
    font-size: 24px;
  }

  .review-adv-secc-prev,
  .review-adv-secc-next {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .review-adv-secc-card {
    padding: 24px;
    border-radius: 24px;
  }

  .review-adv-secc-user h4 {
    font-size: 17px;
  }

  .review-adv-secc-card p {
    font-size: 16px;
  }
}

.hero-tq {
  background:
    radial-gradient(circle at 82% 12%, rgb(3 85 77), transparent 28%),
    linear-gradient(135deg, #067268, #043833 58%, #03574f);
  color: white;
  padding: 180px 10px 90px 10px;
}

.kicker-tq {
  color: #ffc107;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
  text-align: center;
}

.hero-tq h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.06em;
   padding-bottom: 20px;
  color: #fff;
  margin: auto;
  text-align: center;
}
.hero-tq p {
  color: #d7e6d5;
  font-size: 19px;
    text-align: center;
    margin: auto;
}

.card-tq {
  background: #fff;
  border: 1px solid #dde8df;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.05);
}
.grid-tq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.two-grid-tq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 82px 10px;
}
.content-tq {
  max-width: 930px;
}
.content-tq h2,
.card-tq h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.content-tq h3,
.card-tq h3 {
  font-size: 22px;
  margin: 28px 0 10px;
}
.content-tq p,
.card-tq p,
.content-tq li,
.card-tq li {
  color: #647067;
  font-size: 16px;
}
.content-tq ul,
.card-tq ul {
  padding-left: 20px;
  display: grid;
  gap: 10px;
  margin: 12px 0 22px;
}
.notice-tq {
  background: #f4faf4;
  border: 1px solid #dde8df;
  border-radius: 24px;
  padding: 24px;
}

@media (max-width: 900px) {
  .grid-tq {
    padding: 60px 0;
  }
  .hero-tq {
    padding: 120px 25px 50px 25px;
  }
  .two-grid-tq {
    grid-template-columns: 1fr;
    padding: 50px 10px;
  }
  .tnk-you-btn{
    width: 80% !important;
  }
}


.adv-serv-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.75);
    backdrop-filter:blur(6px);
    z-index:99999;

    display:none;

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

    padding:20px;
}

/* Popup */
.adv-serv-popup-modal{
    width:100%;
    max-width:800px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    position:relative;

    display:flex;

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

    animation:advServPopupScale .4s ease;
}

@keyframes advServPopupScale{
    from{
        opacity:0;
        transform:scale(.9);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* Close */
.adv-serv-popup-close{
    position:absolute;
    top:15px;
    right:15px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#035951;
    cursor:pointer;

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

    box-shadow:0 5px 20px rgba(0,0,0,.15);

    transition:.3s;
    z-index:5;
}

.adv-serv-popup-close:hover .serv-popup-icon{
    transform:rotate(90deg);
}

.serv-popup-icon{
    color:#fff;
    font-size:24px;
    transition:.3s;
}

/* Left */
.adv-serv-popup-left{
    width:50%;
    height:auto;
}

.adv-serv-popup-left img{
    width:100%;
    height:100% !important;
    object-fit:cover;
    display:block;
}

/* Right */
.adv-serv-popup-right{
    width:50%;
    padding:20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}


.adv-serv-popup-tag{
    display:inline-block;
    width:max-content;

    background:#eef2ff;
    color:#035951;

    padding:8px 16px;
    border-radius:50px;

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

    margin-bottom:20px;
}

.adv-serv-popup-title{
    font-size:30px;
    line-height:1.15;
    font-weight:800;
    color:#111827;

    margin-bottom:18px;
}

.adv-serv-popup-desc{
    font-size:16px;
    line-height:1.8;
    color:#6b7280;

    margin-bottom:30px;
}

/* Form */
.adv-serv-popup-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.adv-serv-popup-form input{
    height:40px;
    border:1px solid #e5e7eb;
    border-radius:12px;

    padding:0 18px;

    font-size:15px;
    outline:none;

    transition:.3s;
}

.adv-serv-popup-form input:focus{
    border-color:#4338ca;
    box-shadow:0 0 0 4px rgba(67,56,202,.12);
}

.adv-serv-popup-form button{
    height:50px;
    border:none;
    border-radius:12px;
    background:#035951;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.adv-serv-popup-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(67,56,202,.25);
}
@media (max-width:991px){

    .adv-serv-popup-modal{
        max-width:750px;
    }

    .adv-serv-popup-right{
        padding:40px;
    }

    .adv-serv-popup-title{
        font-size:32px;
    }

    .adv-serv-popup-left{
        min-height:500px;
    }
}
@media (max-width:767px){

    .adv-serv-popup-modal{
        flex-direction:column;
        max-height:90vh;
        overflow-y:auto;
    }

    .adv-serv-popup-left{
        /* width:100%;
        min-height:250px; */
        display: none;
    }
    .adv-serv-popup-tag {
    margin-bottom: 10px;
}

    .adv-serv-popup-right{
        width:100%;
        padding:30px 22px;
    }

    .adv-serv-popup-title{
        font-size:25px;
    }

    .adv-serv-popup-desc{
        font-size:15px;
        line-height:1.7;
    }

    .adv-serv-popup-form input,
    .adv-serv-popup-form button{
        height:45px;
    }
    .adv-serv-popup-close {
    width: 40px;
    height: 40px;
    }
}


.new-adv-header{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:9999;
    transition:.4s;
}

.new-adv-header.scrolled{
    top:10px;
}

.new-adv-header-container{
    max-width:1300px;
    margin:auto;
    padding:10px 20px;
    border-radius:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    transition:.4s;
    background-color:#ffffff;
     box-shadow: 0 10px 30px rgb(0 0 0 / 16%);
}

.new-adv-header.scrolled .new-adv-header-container{
    background:#fff;
    box-shadow:0 10px 30px rgb(0 0 0 / 15%);
}

.new-adv-header-logo img{
    height:40px;
}

.new-adv-header-nav > ul{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.new-adv-header-nav ul li{
    position:relative;
}

.new-adv-header-nav ul li a{
    text-decoration:none;
    color:#161616;
    font-weight:600;
    font-size:16px;
}
.new-adv-header-nav ul li a:hover{
   color:#036259;
}

.new-adv-header.scrolled a{
    color:#222 !important;
}

.new-adv-header-dropdown:hover .new-adv-header-submenu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.new-adv-header-submenu{
    position:absolute;
    top:120%;
    left:0;

    width:max-content;
    min-width:180px; /* optional */

    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 30px rgba(0,0,0,.1);

    opacity:0;
    visibility:hidden;
    transition:.3s;

    padding:8px 0;
}
.new-adv-header-dropdown:hover .new-adv-header-submenu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.new-adv-header-submenu li{
    display:block;
    width:100%;
}

.new-adv-header-submenu a{
    display:block;
    padding:12px 18px;
    white-space:nowrap;
}

.new-adv-header-submenu a:hover{
    background: #00968824;
    color: #025850 !important;
    border-left: 3px solid #02766b;
}
.new-adv-header-dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

.new-adv-header-arrow{
    font-size:12px;
    transition:.3s;
}

.new-adv-header-dropdown:hover .new-adv-header-arrow{
    transform:rotate(180deg);
}
.new-adv-header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.new-adv-header-search{
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.new-adv-header.scrolled .new-adv-header-search{
    color:#222;
}

.new-adv-header-login{
    padding:10px 28px;
    border:1px solid rgba(255,255,255,.5);
    border-radius:50px;
}

.new-adv-header.scrolled .new-adv-header-login{
    border:1px solid #ddd;
}

.new-adv-header-btn{
   background: #f8ab2d;
    color: #000000 !important;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.new-adv-header-toggle{
    display:none;
    border:none;
    background:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
    border: 1px solid #acacac;
    border-radius: 5px;
}
.new-adv-head-tog-icon{
  color: #036259;
}

.new-adv-header.scrolled .new-adv-header-toggle{
    color:#222;
}

/* Drawer */

.new-adv-header-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    z-index:9998;
}

.new-adv-header-overlay.active{
    opacity:1;
    visibility:visible;
}

.new-adv-header-drawer{
    position: fixed;
    top: 0;
    right: -380px;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: .4s;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.new-adv-header-drawer.active{
    right: 0;
}

.new-adv-header-drawer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px;
}

.new-adv-header-drawer-top img{
    height:40px;
}

.new-adv-header-close{
    border:none;
    background:none;
    font-size:26px;
    cursor:pointer;
}
.new-adv-header-close i{
  color: #036259;
}

.new-adv-header-divider{
    height:1px;
    background:#ddd;
}

.new-adv-header-mobile-menu{
    flex: 1;
    overflow-y: auto;
    margin: 0;
    padding: 0 20px;
    list-style: none;
}
.new-adv-header-drawer-bottom{
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    flex-shrink: 0;
}
.new-adv-header-mobile-menu li{
    border-bottom:1px solid #eee;
}

.new-adv-header-mobile-menu a{
    display:block;
    padding:14px 0;
    text-decoration:none;
    color:#222;
}
.new-adv-header-mobile-menu a:hover{
  color: #036259;
}

.new-adv-header-mobile-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    cursor:pointer;
}

.new-adv-header-mobile-dropdown ul{
    display:none;
    padding-left:15px;
}

.new-adv-header-mobile-dropdown.active ul{
    display:block;
}
.new-adv-header-drawer-btn{
    background: #f8ab2d;
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-sizing: border-box;
}

@media(max-width:991px){

    .new-adv-header-nav{
        display:none;
    }

    .new-adv-header {
    top: 0px;
}

    .new-adv-header-search,
    .new-adv-header-login,
    .new-adv-header-btn{
        display:none;
    }

    .new-adv-header-toggle{
         width: 30px;
        text-align: center;
        justify-content: center;
        display: flex;
    }

    .new-adv-header-container{
    padding: 15px 15px;
    border-radius: 0px;
    }
      .new-adv-header-drawer{
        width: 90%;
        max-width: 380px;
    }
    .new-adv-header.scrolled {
    top: 0px;
}
}

.new-adv-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.new-adv-header-logo-icon {
  width: 42px;
  height: 42px;
  background: #f5a623;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #000;
  letter-spacing: -1px;
}
.new-adv-header-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: #000 !important;
  line-height: 1.1;
}
.mega-menu-parent{
    position: static !important;
}

.new-adv-header-mega-menu{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120%;
    width: 950px;
    min-height: 300px;
    background: #f5f5f5;
    border-radius: 0 0 20px 20px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    z-index: 999;
}

.mega-menu-parent:hover .new-adv-header-mega-menu{
    opacity: 1;
    visibility: visible;
    top: 100%;
}

/* Left Tabs */

.new-adv-header-mega-left{
    width: 270px;
    background: #ececec;
    border-right: 1px solid #ddd;
    flex-shrink: 0;
}

.mega-tab{
    display: block;
    padding: 18px 20px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #e5e5e5;
    transition: .3s;
}

.mega-tab:hover{
    background: #f7f7f7;
}

.mega-tab.active{
    background: #f39c12;
    color: #fff;
    font-weight: 600;
}

/* Right Side */

.new-adv-header-mega-right{
    flex: 1;
    padding: 25px 30px;
    position: relative;
}

/* Hide all tabs */

.mega-content{
    display: none;
    grid-template-columns: repeat(3,1fr);
    gap: 20px 40px;
}

/* Active tab */

.mega-content.active{
    display: grid;
}

.mega-content a{
    color: #333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: .3s;
}

.mega-content a:hover{
    color: #f39c12;
}
.new-adv-header-top-div{
  padding: 0px 15px;

}
.new-adv-header-info{
  list-style: none;
    margin: 0;
    padding: 0;
}
.new-adv-header-info li{
      display: flex;
    align-items: baseline;
    -moz-column-gap: 8px;
    column-gap: 8px;
    margin-bottom: 10px;
    color: #6e7676;
}
.new-adv-header-info li a{
    color: #6e7676;
}
.new-adv-header-info li i{ 
    margin-right: 5px;
}
.new-adv-header-info-social{
 display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 7px;
    column-gap: 7px;
}
.new-adv-header-info-social a{
display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    width: 38px;
    border-radius: 38px;
    border: 1px solid var(--rt-border-color);
    color: var(--rt-meta-color);
    overflow: hidden;
}
.new-adv-header-info-social a i{
display: inline-flex;
    justify-content: center;
    align-items: center;
}
.new-adv-header-info-soc{
  
    margin-bottom: 10px;
}

   

/* Mobile */

@media(max-width:991px){

    .new-adv-header-mega-menu{
        display:none;
    }

}


 .hero45 {
        position: relative;
        overflow: hidden;
        background:
          radial-gradient(circle at 82% 12%, #006d5b, transparent 28%),
    linear-gradient(135deg, #006d5b 0%, #024c40 58%, #014e41 100%);
        color: white;
        padding: 160px 0 70px;
      }

      .hero45::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(168, 233, 47, 0.09) 1px, transparent 1px),
          linear-gradient(90deg, rgba(168, 233, 47, 0.09) 1px, transparent 1px);
        background-size: 46px 46px;
        mask-image: linear-gradient(to bottom, black, transparent 86%);
      }

      .hero-grid45 {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 70px;
        align-items: center;
        padding: 0px 20px;
        max-width: 1300px;
        margin: auto;
      }

      .breadcrumb45 {
        color: #b7c8b8;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
      }
      .eyebrow45 {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 9px 15px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: #ffb000;
        font-size: 14px;
        font-weight: 900;
        margin-bottom: 22px;
      }
      .pulse45 {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ffb000;
        box-shadow: 0 0 0 6px rgba(168, 233, 47, 0.18);
      }

      .hero-h1-45 {
        font-size: clamp(35px, 5.4vw, 72px);
        line-height: 1.01;
        letter-spacing: -0.06em;
        max-width: 820px;
        margin-bottom: 24px;
        color: #fff;
      }
      .hero-text45 {
        color: #d7e6d5;
        font-size: 19px;
        line-height: 1.75;
        max-width: 690px;
        margin-bottom: 32px;
      }
      .actions45 {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        align-items: center;
      }

      .hero-card45 {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 34px;
        padding: 30px;
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
      }
      .hero-card45-h2 {
        font-size: 28px;
        line-height: 1.15;
        letter-spacing: -0.04em;
        margin-bottom: 22px;
        color: #fff;
      }
      .hero-checks45 {
        display: grid;
        gap: 14px;
      }
      .hero-checks45 div {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: #d7e6d5;
        font-weight: 700;
      }
      .tick45 {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #f1fbd8;
        color: #24420b;
        display: grid;
        place-items: center;
        font-size: 14px;
        flex-shrink: 0;
      }

       .btn45 {
         min-height: 40px;
         padding: 8px 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 15px;
        border: 1px solid transparent;
        transition: 0.22s ease;
        cursor: pointer;
        white-space: nowrap;
      }
      .btn-primary45 {
       background:#f8ab2d;
       color: #07130e;
        /* box-shadow: 0 16px 32px rgba(168, 233, 47, 0.28); */
      }
      .btn-primary45:hover {
        background: #006d5b;
    transform: translateY(-2px);
    color: white !important;
        border: 1px solid #fff;
      }

       .btn-light45 {
       background: white;
    border-color: #dde8df;
    color: #0b1f17;
      }
      .btn-light45:hover {
           border-color: #0b1f17;
    transform: translateY(-2px);
      }
 .summary-strip45 {
        background: #ffb00000;
    border-bottom: 1px solid #dde8df;
      }
      .summary-grid45 {
        display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 22px 0;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
      }
      .summary-item45 {
        display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 850;
    color: #344054;
      }
      .summary-item45 span:first-child {
       width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #006d5b12;
    color: #006d5b;
    display: grid;
    place-items: center;
    flex-shrink: 0;
      }

      @media (max-width: 980px) {
       
        .hero-grid45 {
          grid-template-columns: 1fr;
          padding: 0px 10px;
        }
        .info-grid45 {
          grid-template-columns: repeat(2, 1fr);
        }
        .hero-card45-h2{
          font-size: 25px;
        }
      }

      @media (max-width: 640px) {
      
        .summary-grid45,
        .info-grid45 {
          grid-template-columns: 1fr;
        }
        .hero-grid-div45{
          text-align: center;
        }
        .actions45 .btn45 {
        width: 85%;
        margin: auto;
        }
        .eyebrow45{
          line-height: 1.5;
        }
       .hero-card45 {
         padding: 20px;
       }
        .hero-text45 {
          font-size: 17px;
        }
         .hero45 {
        padding: 120px 10px 50px;
      }
      }

      .adv-strip-marque-sec{
    background:#ffb000;
    border-top:1px solid rgba(0,0,0,0.08);
    border-bottom:1px solid rgba(0,0,0,0.08);
    overflow:hidden;
    width:100%;
    padding:22px 0;
    position:relative;
}

.adv-strip-marque-sec-track{
    display:flex;
    align-items:center;
    gap:70px;
    width:max-content;
    animation:advStripMarquee 25s linear infinite;
}

.adv-strip-marque-sec-item{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
    white-space:nowrap;
    font-size:16px;
    font-weight:700;
    color:#000;
    line-height:1.1;
}

.adv-strip-marque-sec-icon{
    width:28px;
    height:28px;
    min-width:28px;
    border-radius:50%;
    background:#00796b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

@keyframes advStripMarquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

.adv-strip-marque-sec:hover .adv-strip-marque-sec-track{
    animation-play-state:paused;
}

@media(max-width:768px){

    .adv-strip-marque-sec{
        padding:18px 0;
    }

    .adv-strip-marque-sec-track{
        gap:40px;
        animation-duration:18s;
    }

    .adv-strip-marque-sec-item{
        font-size:14px;
    }

    .adv-strip-marque-sec-icon{
        width:24px;
        height:24px;
        min-width:24px;
        font-size:11px;
    }
}

.adv-blg-socil-div-wrapper{
        width: 100%;
    padding: 12px 0 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 20px;
}

.adv-blg-socil-div-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.adv-blg-socil-div-circle{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #006D5B;
    border: 1px solid #e5e5e5;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    font-size: 19px;
}

.adv-blg-socil-div-circle:hover{
    background:#006D5B;
    color:#fff;
    border-color:#006D5B;
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.adv-blg-socil-div-circle i{
    transition:all .35s ease;
}

.adv-blg-socil-div-circle:hover i{
    transform:scale(1.1);
}

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

    .adv-blg-socil-div-wrapper{
        padding:30px 0;
    }

    .adv-blg-socil-div-grid{
        gap:14px;
    }

    .adv-blg-socil-div-circle{
        width:52px;
        height:52px;
        font-size:18px;
    }
}

/* Mobile */
@media (max-width:767px){

    .adv-blg-socil-div-wrapper{
        padding:25px 0;
    }

    .adv-blg-socil-div-grid{
        gap:10px;
    }

    .adv-blg-socil-div-circle{
        width:46px;
        height:46px;
        font-size:16px;
    }
}




a{
  text-decoration:none;
}

.advan-nw-header-secc{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  z-index:9999;
  border-bottom:1px solid #e5e5e5;
}

.advan-nw-header-secc-container{
  max-width:1300px;
  margin:auto;
  padding:0 30px;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.advan-nw-header-secc-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:#111;
  font-weight:700;
  font-size:28px;
}

.advan-nw-header-secc-logo-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:#f6ab14;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#000;
      font-size: 20px;
}
.advan-nw-header-secc-logo-text{
    font-size: 20px;
    font-weight: 800;
    color: #000 !important;
    line-height: 1.1;
}
.advan-nw-header-secc-nav{
  /* margin-left:auto; */
  margin-right:40px;
}

.advan-nw-header-secc-menu{
  display:flex;
  align-items:center;
  gap:30px;
  list-style: none;
}

.advan-nw-header-secc-menu>li{
  position:relative;
  text-transform: capitalize;
}

.advan-nw-header-secc-menu>li>a{
    color: #151515;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
    text-decoration: none;
    text-transform: uppercase;
    
}

.advan-nw-header-secc-menu>li>a:hover{
  color:#006c56;
}

.advan-nw-header-secc-right{
  display:flex;
  align-items:center;
  gap:30px;
}

.advan-nw-header-secc-call{
  color:#2e3b4e;
  font-weight:600;
}

.advan-nw-header-secc-btn{
  background:#f6ab14;
  color:#000;
  padding:10px 30px;
  border-radius:50px;
  font-weight:700;
  transition:.35s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.advan-nw-header-secc-btn:hover{
  transform:scale(.94);
  color: #000;
}
.advan-nw-header-secc-btn i{
  margin-right: 10px;
  color: #000;
}

.advan-nw-header-secc-toggle{
  width:60px;
  height:60px;
  border:1px solid #bdbdbd;
  border-radius:6px;
  background:#f3f3f3;
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s;
  padding:0;
}

.advan-nw-header-secc-toggle i{
  font-size:28px;
  color:#0a6b63;
  line-height:1;
}

.advan-nw-header-secc-toggle:hover{
  background:#e9e9e9;
  transform:scale(.96);
}


.advan-nw-header-secc-mega-menu{
  position: absolute;
    top: 60px;
    left: -250px;
    width: 950px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s;
    padding: 15px 0px;
    border: 1px solid #e4e4e4;
}

.advan-nw-header-secc-mega-parent:hover
.advan-nw-header-secc-mega-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.advan-nw-header-secc-mega-parent > a{
  display:flex;
  align-items:center;
  gap:8px;
}

.advan-nw-header-secc-mega-parent > a i{
  font-size:12px;
  transition:all .3s ease;
}

.advan-nw-header-secc-mega-parent:hover > a i{
  transform:rotate(180deg);
  color:#006D5B;
}

.advan-nw-header-secc-tabs{
  width:270px;
  background:#f8f8f8;
}

.advan-nw-header-secc-tab{
  width: 100%;
    border: none;
    background: none;
    text-align: left;
    padding: 15px 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.advan-nw-header-secc-tab:hover,
.advan-nw-header-secc-tab.active{
  background:#006D5B;
  color:#fff;
}

.advan-nw-header-secc-content{
  flex:1;
 padding: 10px 20px;
}

.advan-nw-header-secc-panel{
  display:none;
grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

.advan-nw-header-secc-panel.active{
  display:grid;
}

.advan-nw-header-secc-panel a{
  color:#333;
  font-size:15px;
  position:relative;
  width:fit-content;
  transition:.3s;
}

.advan-nw-header-secc-panel a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#006D5B;
  transition:.3s;
}

.advan-nw-header-secc-panel a:hover{
  color:#006D5B;
}

.advan-nw-header-secc-panel a:hover::after{
  width:100%;
}
.advan-nw-header-secc-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:99990;
}

.advan-nw-header-secc-overlay.active{
  opacity:1;
  visibility:visible;
}

.advan-nw-header-secc-drawer{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:#fff;
  z-index:99999;

  transform:translateX(-100%);
  transition:.4s;

  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}

.advan-nw-header-secc-drawer.active{
  transform:translateX(0);
}

.advan-nw-header-secc-drawer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
}

.advan-nw-header-secc-close{
 border: none;
    background: none;
    font-size: 25px;
    cursor: pointer;
    color: #006c56;
    font-weight: 600;
}

.advan-nw-header-secc-divider{
  height:1px;
  background:#ddd;
}

.advan-nw-header-secc-drawer-content{
  padding:20px;
}

.advan-nw-header-secc-drawer-content>a{
  display:block;
  color:#414141;
  font-size:16px;
  padding:10px 0;
  border-bottom:1px solid #eee;
  font-weight: 800;
  transition:all .3s ease;
}
.advan-nw-header-secc-drawer-content > a:hover{
  color:#006D5B;
}

.advan-nw-header-secc-mobile-btn{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:none;
  border:none;
  cursor:pointer;
  font-size:16px;
  padding:10px 0;
  font-weight: 600;
  color:#414141;
  transition:all .3s ease;
}
.advan-nw-header-secc-mobile-btn:hover{
  color:#006D5B;
}

.advan-nw-header-secc-mobile-submenu{
  display:none;
  padding-left:20px;
}

.advan-nw-header-secc-mobile-dropdown.active
.advan-nw-header-secc-mobile-submenu{
  display:block;
}

.advan-nw-header-secc-mobile-submenu a{
  display: block;
    padding: 10px 0;
    color: #000000;
    font-size: 15px;
}

.advan-nw-header-secc-contact{
  margin-top:30px;
}

.advan-nw-header-secc-contact h3{
  margin-bottom:15px;
  font-size:25px;
}

.advan-nw-header-secc-contact p{
  margin-bottom:14px;
  color: #424242;
    font-weight: 600;
}
.advan-nw-header-secc-contact i{
  margin-right: 10px;
  color: #006D5B;
}

.advan-nw-header-secc-social{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
}

.advan-nw-header-secc-social a{
  width:35px;
  height:35px;
  border:1px solid #006D5B;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#006D5B;
  font-size:16px;
  transition:all .3s ease;
}

.advan-nw-header-secc-social a:hover{
  background:#006D5B;
  color:#fff;
  transform:scale(.92);
}

.advan-nw-header-secc-mobile-cta{
  margin-top:25px;
  width:100%;
  text-align: center;
  color: #000 !important;
  padding: 12px 0px !important;
   transition: all 0.3s ease;
}
.advan-nw-header-secc-mobile-cta:hover{
  transform: scale(0.96);
}
.advan-nw-header-secc-mobile-cta i{
  margin-right: 10px;
  color: #000;
}

.advan-nw-header-secc-drawer-intro{
  padding:20px 20px 15px;
  background:#f8f8f8;
}

.advan-nw-header-secc-drawer-heading{
  font-size:24px;
  line-height:1.3;
  font-weight:700;
  color:#000;
  margin-bottom:8px;
}

.advan-nw-header-secc-drawer-text{
  font-size:14px;
  line-height:1.7;
  color:#282828;
  margin:0;
}

@media(max-width:575px){

  .advan-nw-header-secc-drawer-heading{
    font-size:20px;
  }

  .advan-nw-header-secc-drawer-text{
    font-size:15px;
  }

}

@media(max-width:991px){

.advan-nw-header-secc-nav,
.advan-nw-header-secc-right{
  display:none;
}

.advan-nw-header-secc-toggle{
  display:flex;
}

.advan-nw-header-secc-container{
  height:70px;
}

.advan-nw-header-secc-logo{
  font-size:22px;
}

}

@media(max-width:575px){

.advan-nw-header-secc-container{
  padding:15px 15px;
}

.advan-nw-header-secc-logo{
  font-size:18px;
}

.advan-nw-header-secc-logo-icon{
  width:40px;
  height:40px;
}
 .advan-nw-header-secc-toggle{
    width: 45px;
    height: 40px;
  }

  .advan-nw-header-secc-toggle i{
    font-size:24px;
  }

}

