body {
  font-family: Montserrat;
  font-size: 18px;

}

.padding-0 {
  padding: 0;
}

.nav-link:hover>a {}

p {
  font-size: 18px;
}

.mains{
  padding: 50px 30px 30px 30px;
}

/* Animation */
@supports (animation-timeline: works) {
  @scroll-timeline cards-element-scrolls-in-body {
    source: selector(body);
    scroll-offsets: selector(#cards) start 1, selector(#cards) start 0;
    start: selector(#cards) start 1;
    end: selector(#cards) start 0;
    time-range: 4s;
  }

  .card {
    --index0: calc(var(--index) - 1);
    --reverse-index: calc(var(--numcards) - var(--index0));
    --reverse-index0: calc(var(--reverse-index) - 1);
  }

  .card__content {
    transform-origin: 50% 0%;
    will-change: transform;

    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);

    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: cards-element-scrolls-in-body;
  }

  @keyframes scale {
    to {
      transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
    }
  }
}


:root {
  --bg-color: #000000;
  --card-bg: #0a0a0a;
  --border-color: #222222;
  --text-primary: #ededed;
  --text-secondary: #888888;
  --text-neutral: #000000;

  --card-width: clamp(280px, 30vw, 420px);
  --card-height: clamp(400px, 60vh, 550px);
  --gap: clamp(1rem, 2vw, 2.5rem);

  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
}


.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  padding: 0 clamp(1rem, 5vw, 4rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px,
      transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero__title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: clamp(1rem, 2vh, 1.5rem);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: clamp(2rem, 4vh, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero__badge {
  font-size: 0.875rem;
  color: var(--text-neutral);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: 99px;
  transition: background 0.3s;
  cursor: pointer;
}

.hero__badge:hover {
  background: #111;
  color: var(--text-primary);
}

.scroll-section {
  height: 400vh;
  position: relative;
  /* background: var(--bg-color); */
}

.scroll-section__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.scroll-section__track {
  display: flex;
  gap: 100px;
  padding-left: clamp(2rem, 20vw, 15rem);
  width: max-content;
  will-change: transform;
}

.cards {
  width: 1200px;
  height: 100%;
  /* background: var(--card-bg); */
  /* border: 1px solid var(--border-color); */
  border-radius: 16px;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  user-select: none;
}

.cards:hover {
  transform: translateY(-8px);
  border-color: #444;
}

.card__image-wrapper {
  width: 100%;
  height: 60%;
  /* overflow: hidden;
  background: #111; */
}

.card__image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%);
  border-radius: 20px;
}

/* .cards:hover .card__image {
  transform: scale(1.05);
  filter: grayscale(0%);
} */

.card__content {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: auto;
  /* align-items: center; */
  padding-left: 0px;
}

.sec2 {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  text-align: end;
}

.card__title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
  text-transform: uppercase;
  /* letter-spacing: -0.02em; */
}

.card__desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 500px;
}

.outro {
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border-color);
  background: radial-gradient(circle at 50% 0%, #111 0%, #000 70%);
}

.outro__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #fff, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.outro__text {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.section-s {
  display: flex;
  justify-content: space-between;
  padding: 100px 100px 0
}

.sec1 h2 {
  font-size: 55px;
  font-weight: 700;
  padding-bottom: 20px;
  letter-spacing: .5px;
}

.partner-logo-slider {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  position: relative;
}

.partner-logo-slider:before {
  content: "";
  /* background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%); */
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  z-index: 9;
}

.partner-logo-slider:after {
  content: "";
  /* background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%); */
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  z-index: 9;
}

.partner-logo-slide {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: partner-logo 30s linear infinite;
}

.partner-logo-slide:hover {
  animation-play-state: paused;
}

.partner-logo-slide img {
  width: 200px;
  /* border: 1px solid #b2b2b2; */
  padding: 20px;
  border-radius: 10px;
}

@keyframes partner-logo {
  from {
    transform: translateX(0);
  }

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

@media only screen and (max-width: 1025px) {
  .partner-logo-slide {
    gap: 20px;
  }

  .partner-logo-slide img {
    height: 45px;
  }
}


.clients-partner {
  background: linear-gradient(90deg, rgba(177, 211, 57, 1) 0%, rgba(16, 199, 202, 1) 100%);
  padding: 100px 0;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: none;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #000;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #000;
  border: 1px solid #000;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #000;
}

.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 1.5em;
  color: #6b6b6b;
}

.accordion .accordion-item {
  border-left: 0px;
  border-right: 0px;
}

.section-faqs {
  padding: 100px 100px;
}

.section-faqs h2 {
  font-size: 55px;
  padding-bottom: 50px;
  text-align: center;
  font-weight: 600;
}

.section-faqs h2 {
  position: relative;
  display: inline-block;
  font-size: 55px;
  font-weight: 700;
  padding-bottom: 25px;
  letter-spacing: .5px;
  width: 100%;
  margin-bottom: 50px;
}

/* Gradient Line Below */
.section-faqs h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  border-radius: 50px;
  background: linear-gradient(90deg,
      rgba(177, 211, 57, 1) 0%,
      rgba(16, 199, 202, 1) 100%);
}

.counter-section {
  padding: 100px 150px;
  text-align: center;
  background: url(img/counter.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Heading */
.counter-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.counter-line {
  width: 120px;
  height: 4px;
  margin: 0 auto 60px;
  background: linear-gradient(90deg, #b1d339 0%, #10c7ca 100%);
  border-radius: 50px;
}

/* Counter Grid */
.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Counter Item */
.counter-item h3 {
  font-size: 90px;
  margin: 0;
  font-weight: bold;
}

.counter-item p {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}

/* Responsive */
@media(max-width:992px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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



.cta-btn {
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(90deg, #b1d339 0%, #10c7ca 100%);
}

.footer {
  padding: 0px 0px 0;
  background-color: #f5f5f5;
}

/* MAIN GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  /* border-top: 1px solid #ded8d8; */
}

/* LEFT SIDE */
.left-section {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e3dfdf;
}

/* TOP 3 GRID */
.left-top {
  display: grid;
  grid-template-columns: 40% 25% 35%;
}

/* Add Borders to First 3 Sections */
.left-top .section {
  padding: 50px 50px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* Remove right border from last column */
.left-top .section:last-child {
  border-right: none;
}

/* Review Section */
.review-row {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

/* RIGHT SIDE 2+2 GRID */
.right-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid #e1d8d8;
}

/* Borders for 40% Sections */
.right-section .section {
  padding: 50px 50px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* Remove right border from every 2nd column */
.right-section .section:nth-child(2n) {
  border-right: none;
}

/* Section Content */
.section h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.section p,
.section li {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section ul li {
  margin-bottom: 8px;
}

/* Responsive */
@media(max-width:992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:600px) {
  .left-top {
    grid-template-columns: 1fr;
  }

  .right-section {
    grid-template-columns: 1fr;
  }

  .left-top .section,
  .right-section .section {
    border-right: none;
  }
}

.copyright {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 0;
}

.copyright p {
  margin-bottom: 0;
}

.social {
  margin-top: 20px;
}

.social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #ccc;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 14px;
}

/* SECTION WRAPPER */
.cta-section {
  max-width: 1200px;
  margin: 0px auto;
  padding: 100px 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
  top: 150px;

  background: linear-gradient(135deg, #1d2b16 0%, #2d4b2f 40%, #0f1c1f 100%);
  background: url(img/Group\ 9.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.video-background {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: -2;
}


.sectionss {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: white;
  overflow: hidden;
  /* top: -125px; */
  z-index: -1;
}

.sectionss::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}



.sec1 h2 {
  position: relative;
  display: inline-block;
  font-size: 55px;
  font-weight: 700;
  padding-bottom: 20px;
  letter-spacing: .5px;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}


@media only screen and (max-width: 767px) {
  .accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background: none;
    outline: none;
  }

  .sec1 h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg,
        rgba(177, 211, 57, 1) 0%,
        rgba(16, 199, 202, 1) 100%);
  }

  .abouts-cont {
    gap: 0;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-item h3 {
    font-size: 55px;
    margin: 0;
    font-weight: bold;
  }

  .review-row {
    display: none;
  }

  .right-section {
    border-left: none;
  }

  .left-top .section {
    padding: 30px 0px;
    border-right: 0px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .right-section .section {
    padding: 30px 0px;
    border-right: 0px solid #ddd;
    border-bottom: 1px solid #ddd;
  }

  .abouts-cont p {
    font-size: 18px;
    color: #777777;
  }

  .accordion .accordion-content p {
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 1.5em;
    color: #6b6b6b;
  }

  .cta-section {
    border-radius: 0;
  }

  .sec1 {
    text-align: center;
  }

  .sec2 {
    text-align: center;
    align-items: center;
  }

  .about-sectionn {
    display: grid;
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 28px;
  }

  .faq-sedc h2 {
    font-size: 28px;

  }

  .counter-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .sec1 h2 {
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 15px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .about-sections {
    background: url(img/Group\ 8.png);
    background-size: cover;
    padding: 50px 10px;
  }

  .sectionss {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    color: white;
    overflow: hidden;
    top: 0px;
  }

  .features {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    padding-top: 40px;
    text-align: center;
  }

  .btn-row {
    display: flex;
    align-items: start;
    gap: 30px;
    position: relative;
    justify-content: space-between;
    flex-direction: column;
  }

  .abouts h5 {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .serviicess {
    padding: 50px 10px;
    background: url(img/Group\ 7.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }

  .section-s {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 50px 10px 0;
  }

  .faq-sedc {
    padding: 100px 10px 0;
  }

  .footer {
    padding: 250px 10px 0;
    background-color: #f5f5f5;
  }

  .counter-section {
    padding: 100px 10px;
    text-align: center;
    background: url(img/counter.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .scroll-section__track {
    display: flex;
    gap: 100px;
    padding-left: 0px;
    width: max-content;
    will-change: transform;
  }

  .partner-logo-slide img {
    height: 80px;
    width: 303px;
  }

  .card-content>div {
    grid-area: text;
    width: 95%;
    max-width: 100%;
    place-self: center;
    text-align: left;
    display: grid;
    gap: 1em;
    place-items: start;
  }

  #cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    padding-left: 0;
  }

  .card-content {
    display: flex;
    flex-direction: column;
    padding: 30px 10px;
    text-align: center;
  }

  header {
    /* position: sticky; */
    top: 0px;
    background-color: var(--clr-bg-header);
    width: 100%;
    z-index: 1000;
    padding: 0px 10px;
  }

  .card-main-head h2 {
    padding-top: 35px;
  }
}

/* =========================
   MOBILE CAROUSEL VERSION
========================= */

@media (max-width: 992px) {

  .scroll-section {
    height: auto;
  }

  .scroll-section__sticky {
    position: relative;
    height: auto;
    overflow: hidden;
  }

  .scroll-section__track {
    display: flex;
    gap: 20px;
    padding: 40px 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }


  .scroll-section__track::-webkit-scrollbar {
    display: none;
  }

  .cards {
    min-width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .card__image {
    height: 300px;
    border-radius: 16px;
  }

  .card__content {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .card__title {
    font-size: 20px;
  }

  .card__desc {
    font-size: 15px;
    margin-bottom: 0;
  }

  :root {
    --card-height: auto;
  }

  .serviicess {
    padding: 60px 0px;
    background-attachment: scroll;
    /* fixed background issue fix */
  }

  /* Remove grid stacking effect */
  #cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .serviicess p {
    color: #a1a1a1;
    margin-bottom: 0px;
    text-align: left;
    text-align: left;
    font-size: 16px;
  }

  /* Disable sticky */
  .card {
    position: relative;
    top: unset;
  }

  .card-content>div {
    width: 100%;
    text-align: center;
    place-items: center;
  }

  .card-content>figure {
    width: 100%;
    margin-top: 20px;
  }

  .card-content>figure img {
    width: 220px;
  }

  .backimg {
    display: none;
  }

  .services-heading h2 {
    font-size: 28px;
  }
}

/* =========================================
   MOBILE VIEW - SINGLE VERTICAL LAYOUT
========================================= */

@media (max-width: 992px) {

  .process-container {
    width: 100%;
    height: auto;
    margin: 50px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* Remove absolute positioning */
  .cardaaa {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transform: none !important;
  }

  /* Remove connectors */
  .connector {
    display: none;
  }

  /* Clean inner spacing */
  .card-inner {
    padding: 25px 20px;
  }

  .numbera {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .card-inner h3 {
    font-size: 20px;
  }

  .card-inner p {
    font-size: 15px;
  }

  /* Heading resize */
  .card-main-head h2 {
    font-size: 28px;
  }

  .card-main-head p {
    font-size: 15px;
    padding: 0 10px;
  }

  .card-1 {
    right: 0;
  }

  .card-2 {
    top: 40px;
    left: 0px;
    transform: rotate(18deg);
  }

  .card-3 {
    top: 50px;
    right: 0px;
    transform: rotate(350deg);
  }
}

/* =========================================
   MOBILE SINGLE SLIDE (NO JS)
========================================= */


@media (max-width: 992px) {

  /* Remove fake scroll height */
  .scroll-section {
    height: auto !important;
    min-height: auto !important;
  }

  /* Remove sticky behavior */
  .scroll-section__sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: visible !important;
    display: block !important;
  }

  /* Disable horizontal transform system */
  .scroll-section__track {
    transform: none !important;
    will-change: auto !important;
    width: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-section__track::-webkit-scrollbar {
    display: none;
  }

  .cards {
    min-width: 100%;
    flex: 0 0 100%;
    /* scroll-snap-align: start; */
  }

}


@media (max-width: 992px) {

  /* Remove grid stacking */
  #cards {
    display: flex !important;
    flex-direction: row !important;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0;
  }

  #cards::-webkit-scrollbar {
    display: none;
  }

  /* Disable sticky */
  .card {
    position: relative !important;
    top: auto !important;
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
  }

  /* Reset height system */
  :root {
    --card-height: auto;
  }

  /* Make card vertical */
  .card-content {
    display: flex !important;
    flex-direction: column;
    text-align: center;
    padding: 25px 10px;
  }

  .card-content>div {
    width: 100%;
    text-align: center;
    place-items: center;
  }

  .card-content>figure {
    width: 100%;
    margin-top: 20px;
  }

  .card-content>figure img {
    width: 220px;
  }

  /* Hide decorative back image */
  .backimg {
    display: none;
  }

  .containers {
    padding: 0;
    margin: 0px 0px;
    display: flex;
    position: relative;
    background: #fff;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border-radius: 0px;
    align-items: center;
    padding: 15px;
  }


}

/* =========================================
   MOBILE ARROW SLIDER FIXED VERSION
========================================= */

@media (max-width: 992px) {

  .scroll-section {
    height: auto !important;
  }

  .scroll-section__sticky {
    position: relative !important;
    height: auto !important;
    overflow: hidden;
  }

  .scroll-section__track {
    display: flex;
    transition: transform 0.4s ease;
    transform: translateX(0) !important;
  }

  .cards {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .card__image {
    height: 280px;
  }

  /* Arrow Styling */
  .mobile-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 20px;
  }

  .mobile-arrows button {
    background: #000;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
  }

}

/* =========================================
   SERVICES MOBILE ARROW SLIDER
========================================= */

@media (max-width: 992px) {

  /* Convert cards to horizontal slider */
  #cards {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 0;
  }

  #cards::-webkit-scrollbar {
    display: none;
  }

  .card {
    position: relative !important;
    flex: 0 0 100%;
    min-width: 100%;
  }

  /* Arrow Styling */
  .services-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 10px 20px;
  }

  .services-arrows button {
    background: #fff;
    color: #000;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 18px;
  }

  #cards {
    margin-bottom: 0;
  }

}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-sections {
    background: url(img/Group\ 8.png);
    background-size: cover;
    padding: 0px 10px 100px;
  }

  .about-sectionn {
    display: grid;
    grid-template-columns: 1fr;
  }

  .features {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .card-content {
    display: flex !important;
    flex-direction: row;
    text-align: center;
    padding: 25px 10px;
  }

  .section-s {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 10px 0;
  }

  .section-s {
    text-align: start;
    align-items: center;
  }

  .sec2 {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: end;
    text-align: center;
  }

  .card-main-head h2 {
    font-size: 28px;
    padding-top: 40px;
  }

  .process-container {
    width: 100%;
    height: auto;
    margin: 50px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 50px;
  }

  .counter-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .counter-section {
    padding: 100px 10px;
    text-align: center;
    background: url(img/counter.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .counter-item h3 {
    font-size: 65px;
    margin: 0;
    font-weight: bold;
  }

  .partner-logo-slide img {
    height: 100px;
  }

  .faq-sedc {
    padding: 100px 20px 0;
  }

  .footer {
    padding: 250px 20px 0;
    background-color: #f5f5f5;
  }

  .cta-section {
    padding: 70px 20px;
    margin: 20px;
  }

  .card-3 {
    top: 0px;
    right: 0px;
    transform: rotate(350deg);
  }

  .card-1 {
    top: 0px;
    right: 0px;
    transform: rotate(343deg);
  }

  .card-2 {
    top: 150px;
    left: 0px;
    transform: rotate(18deg);
  }

  header {
    /* position: sticky; */
    top: 0px;
    background-color: #fff;
    width: 100%;
    z-index: 1000;
    padding: 0px 0px;
  }

  .nav-btn {
    position: fixed;
    height: calc(100vh - 3rem);
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
  }

  .nav-btn {
    position: fixed;
    height: calc(100vh - 15rem);
    top: 4rem;
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(100%);
    transition: 0.65s;
  }
}

@media only screen and (min-width: 1100px) {

  .services-arrows {
    display: none;
  }

}

@media only screen and (min-width: 1190px) and (max-width: 1700px) {

  .footer {
    padding: 250px 20px 0;
    background-color: #f5f5f5;
  }

  header {
    /* position: sticky; */
    top: 20px;
    background-color: var(--clr-bg-header);
    width: 100%;
    z-index: 1000;
    padding: 0px 10px;
  }

  .logo-container img {
    width: 100px;
    object-fit: scale-down;
    filter: grayscale(1);
  }

  .logo-container {
    flex: none;
    display: flex;
    align-items: center;
  }

  .log-sign {
    display: flex;
    justify-content: start;
    align-items: center;
    flex: 0;
  }

  .nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

@media only screen and (min-width: 1100px) and (max-width: 1350px) {

  header {
    /* position: sticky; */
    top: 20px;
    background-color: var(--clr-bg-header);
    width: 100%;
    z-index: 1000;
    padding: 0px 10px;
  }

  .about-sectionn {
    display: grid;
    grid-template-columns: 30% 70% 0%;
  }

  .abouts h2::after {
    content: "";
    position: absolute;
    left: 28%;
    bottom: 0;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg,
        rgba(177, 211, 57, 1) 0%,
        rgba(16, 199, 202, 1) 100%);
  }

  .logo-container img {
    width: 100px;
    object-fit: scale-down;
    filter: grayscale(1);
  }

  .logo-container {
    flex: none;
    display: flex;
    align-items: center;
  }

  .log-sign {
    display: flex;
    justify-content: start;
    align-items: center;
    flex: 0;
  }

  .nav-links>ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}



:root {
  --white: #ffffff;
  --brand: linear-gradient(90deg, rgba(177, 211, 57, 1) 0%, rgba(16, 199, 202, 1) 100%);
  --body: #EDECEC;
}

.accordion-faq_list {
  display: grid;
  gap: 8px;
}

.accordion-faq_list.gap-32 {
  gap: 32px;
}

.accordion-asked {
  display: grid;
  gap: 16px;
}

.accordion-asked .accordion-asked-item {
  padding: 24px 40px;
  border-radius: 24px;
  background-color: #f4f4f5;
  box-shadow: 0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
}

.accordion-asked .accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-asked .accordion-button:hover {
  color: var(--brand);
}

.accordion-asked .accordion-button::after {
  display: none;
}

.accordion-asked .accordion-button span {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(177, 211, 57, 1) 0%, rgba(16, 199, 202, 1) 100%);
  /* box-shadow: 0px -3px 0px 0px #080808 inset, 0px 1px 0px 0px rgba(255, 255, 255, 0.3019607843) inset, 0px 2.77px 2.21px 0px rgba(0, 0, 0, 0.1215686275), 0px 3px 3px 0px rgba(0, 0, 0, 0.1411764706); */
}

.accordion-asked .accordion-button span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-asked .accordion-button span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 11px;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-asked .accordion-button:not(.collapsed) span::after {
  opacity: 0;
}

.accordion-asked .accordion-body {
  padding-top: 32px;
  position: relative;
  font-size: 16px;
}

.accordion-asked .accordion-body::before {
  position: absolute;
  content: "";
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 212, 216, 0) 0%, #D4D4D8 50%, rgba(212, 212, 216, 0) 100%);
}

@media (max-width: 767px) {
  .accordion-asked .accordion-asked-item {
    padding: 24px 20px;
  }
}


.tf-social-1 a {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  border-radius: 24px;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);
  box-shadow: 0px 7.77px 16px 0px rgba(0, 0, 0, 0.0588235294), 0px 3px 3px 0px rgba(0, 0, 0, 0.1019607843), 0px -8px 0px 0px rgba(0, 0, 0, 0.0509803922) inset, 0px 4px 0px 0px rgba(255, 255, 255, 0.6) inset;
}



/* new header */

.header {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  position: relative;
  padding: 10px 100px;
}

.header .containers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 45px;
}

.navbar {
  display: flex;
  align-items: baseline;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin-bottom: 0;
  padding: 10px 0;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.contact-btn {
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* SUBMENU */

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  list-style: none;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
}

.submenu li a {
  display: block;
  padding: 12px 20px;
}

/* MEGA MENU */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  display: flex;
  gap: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);

  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.mega-left {
  flex: 1;
}

.mega-left ul {
  list-style: none;
  padding-left: 0;
}

.mega-left li {
  border-bottom: 1px solid #ececec;
}

.mega-left a {
  display: block;
  padding: 16px 10px;
}

.mega-right {
  width: 250px;
  position: relative;
}

.mega-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.mega-right h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

/* MOBILE */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu-header {
  display: none;
}

@media (max-width:991px) {

  .header {
    padding: 10px 15px;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    overflow-y: auto;
    z-index: 1000;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .08);
  }

  .navbar.active {
    right: 0;
  }

  /* Close Button Header */
  .mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }

  .close-menu {
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
  }

  .close-menu:hover {
    background: #e9e9e9;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-left: 0;
    margin: 0;
    padding-top: 50px;

  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    padding: 16px 0;
    justify-content: space-between;
    width: 100%;
  }

  .submenu,
  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }

  .dropdown.active .submenu,
  .mega-dropdown.active .mega-menu {
    display: block;
  }

  .mega-menu {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .mega-left ul {
    padding-left: 0;
  }

  .mega-right {
    width: 100%;
  }

  .mega-right img {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}



.hero-section {
  /* background:#f3f3f3; */
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px;
}

.container {
  width: 100%;
  /* max-width:1600px; */
  margin: auto;
  padding: 0 100px;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 100px;
}

.hero-left {
  max-width: 700px;
}

.hero-title {
  font-size: 60px;
  /* line-height:1; */
  font-weight: 700;
  color: #000;
  letter-spacing: .5px;
  padding-bottom: 20px;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.btn-primary {
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8)
}

.btn-primary:hover {
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  background: transparent;
  border: 1px solid #6dc7b8;

}

.btn-outline {
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  border: 1px solid #6dc7b8;
}

.btn-outline:hover {
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  border: 1px solid #6dc7b8;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8)
}

.hero-right {
  max-width: 360px;
  margin-bottom: 0px;
}

.hero-text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.floating-dot {
  position: absolute;
  left: 50%;
  top: 70%;
  width: 22px;
  height: 22px;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive */

@media(max-width:991px) {

  .container {
    padding: 60px 20px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .hero-title {
    font-size: 58px;
  }

  .hero-buttons {
    flex-wrap: wrap;
    margin-top: 40px;
  }

  .hero-right {
    margin-bottom: 0;
  }

  .hero-text {
    font-size: 18px;
  }

  .floating-dot {
    display: none;
  }
}


.services-section {
  padding: 100px 100px;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.subtitle {
  display: block;
  font-size: 30px;
  font-weight: 400;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading h2 {
  font-size: 55px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  padding-top: 15px;
  letter-spacing: .5px;
}

.contact-btn {
  padding: 18px 45px;
  border-radius: 50px;
  /* border:1px solid #b77adf; */
  text-decoration: none;
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #ffffff;
  /* border:1px solid #d8d8d8; */
  border-radius: 20px;
  padding: 40px 25px 20px;
  min-height: 350px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.icon-wrap {
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrap img {
  width: 150px;
}

.service-card h3 {
  font-size: 22px;
  margin-top: 40px;
}

.service-card p {
  color: #666;
  line-height: 1.7;
}

@media(max-width:991px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .subtitle {
    font-size: 40px;
  }

  .heading h2 {
    font-size: 42px;
  }
}

.about-section {
  background: #f5f5f5;
  padding: 100px 100px 80px;
  overflow: hidden;
}


.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-title {
  font-size: 55px;
  line-height: 1;
  letter-spacing: .5px;
  font-weight: 700;
  padding-bottom: 20px;
}

.about-subtitle {
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 30px;

  background: linear-gradient(90deg, #8fd14f, #6dc7b8);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.about-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}


.about-visual {
  position: relative;
  height: 700px;
}

.about-visual img {
  width: 100%;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(25px);
}


.stats-wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  /* border:1px solid rgba(139, 139, 139, 0.15); */
  border-radius: 24px;
  background: #fff;
  height: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;

  flex-shrink: 0;

  transition: .4s;
}

.stat-item h3 {
  font-size: 90px;
  font-weight: 800;

  background: linear-gradient(90deg, #8fd14f, #6dc7b8);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item span {
  font-size: 22px;
  font-weight: 600;
}

@media(max-width:991px) {

  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .about-title {
    font-size: 42px;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-visual {
    height: 450px;
  }
}

.client-section {
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);
  ;
  color: #000;
  padding: 100px 0;
  overflow: hidden;
}


.section-header {
  max-width: 1100px;
  margin-bottom: 80px;
  padding: 0px 100px;
}

.section-header h2 {
  font-size: 55px;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 20px;
  letter-spacing: .5px;
}

.section-header p {
  font-size: 20px;
  line-height: 1.8;
  color: #000;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.logo-card {
  width: 340px;
  height: 200px;
  border: 1px solid rgba(235, 235, 235, 0.55);
  border-radius: 24px;
  /* background:#f5f5f5; */

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

  flex-shrink: 0;

  transition: .5s;
}

.logo-card:hover {
  border-color: #fff;
  transform: scale(1.02);
  border: 1px solid rgba(235, 235, 235, 0.55);
  transition: .5s;


}



.logo-card img {
  max-width: 220px;
  max-height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: 1s;

}

.logo-card:hover img {
  filter: none;
  border-color: #fff;
  transition: 1.2s;



}

@media(max-width:991px) {

  .section-header h2 {
    font-size: 42px;
  }

  .logo-card {
    width: 250px;
    height: 250px;
  }

}

.testimonial-heading-section {
  padding: 100px 0 0px;
  background: #f5f5f5;
}

.big-title {
  font-size: 130px;
  font-weight: 800;
  letter-spacing: .5px;
  /* text-transform: uppercase; */
  color: #e8e8e8;
  text-align: center;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-section {
  display: flex;
  min-height: auto;
  background: #f5f5f5;
}

.testimonial-left {
  width: 50%;
  position: relative;
}

.sticky-content {
  position: sticky;
  top: 100px;
  padding: 60px;
}

.sticky-content h2 {
  font-size: 120px;
  color: #ececec;
  margin-bottom: 30px;
}

.sticky-content img {
  width: 100%;
  border-radius: 30px;
  display: block;
}

.testimonial-right {
  width: 50%;
  padding: 0px 80px;
  display: flex;
  align-items: center;
}

.testimonial-card {
  /* max-width:700px; */
}

.quote-dot {
  width: 18px;
  height: 18px;
  background: #000;
  border-radius: 50%;
  margin-bottom: 30px;
  display: none;
}

.testimonial-card p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;

}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.client-info img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.client-info h4 {
  margin: 0;
}

.client-info span {
  color: #666;
}

.testimonial-footer {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swiper-pagination-bullet {
  color: #000;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.nav-buttons button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);
  color: #fff;
  cursor: pointer;
}

.swiper-pagination {
  position: relative !important;
  width: auto !important;
}

@media(max-width:991px) {

  .testimonial-section {
    flex-direction: column;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
  }

  .sticky-content {
    position: relative;
    top: 0;
    padding: 20px;
  }

  .sticky-content h2 {
    font-size: 60px;
  }

  .testimonial-right {
    padding: 40px 20px;
  }

  .testimonial-card p {
    font-size: 24px;
  }

  .big-title {
    font-size: 70px;
  }
}


.blogs-section {
  padding: 100px;
  background: #f5f5f5;
}


.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.blog-header h2 {
  font-size: 70px;
  font-weight: 700;
  margin: 0;
}

.blog-navigation {
  display: flex;
  gap: 15px;
}

.blog-navigation button {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);
  color: #fff;
  cursor: pointer;
}

.blog-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  flex-direction: column;
}

.blog-image {
  height: auto;
}

.blog-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex: 1;
}

.blog-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  padding-bottom: 10px;
}


.blog-footer {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-footer span {
  font-weight: 600;
}

.blog-footer a {
  width: 42px;
  height: 42px;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transform: rotate(320deg);
}

.swiper {
  overflow: hidden;
}

@media(max-width:991px) {

  .blog-header h2 {
    font-size: 42px;
  }

  .blog-content h3 {
    font-size: 24px;
  }

}

.dropdown-flag {
  height: 20px !important;
}

.dropdownMenu1 {
  position: absolute;
  /* make sure it floats above */
  background: #fff;
  /* background color */
  border: 1px solid #ccc;
  /* optional border */
  max-height: 250px;
  /* limit the height */
  overflow-y: auto;
  /* enable vertical scroll */
  width: 100%;
  /* match input/trigger width */
  z-index: 9999;
  /* make sure it’s above other elements */
}

/* TITLE */
.contact-box h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.form-grids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

.form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 25px;
}

.full-width {
  grid-column: 1 / -1;
}

.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  right: 0;
  bottom: 14px;
  color: #999;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 25px 12px 0;
  font-size: 16px;
  outline: none;
}

textarea {
  resize: none;
}

.checkbox-group {
  display: flex;
  gap: 20px;
}

.checkbox-group label {
  display: flex;
}



.chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgb(var(--base-color));
  cursor: pointer;
  background: rgb(var(--base-color));
  color: #000;
}

.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding-top: 15px;
}

.chip input {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50%;
  border: 1.5px solid rgb(var(--border));
  padding: 10px;
}

form {
  padding: 0px;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
  border-bottom: 1px solid #ccc !important;
  box-shadow: none !important;
  border-top: 1px solid transparent;
  color: #000;
}

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

.iti {
  position: relative;
  display: inline-block;
  width: 100%;
}

.contact-form-section {
  padding: 100px;
}

.contact-form-section .container {
  padding: 0;
}

.contact-box h2 {
  font-size: 70px;
  font-weight: 700;
  margin: 0;
  padding-bottom: 15px;
}

.contact-form {
  padding: 50px 0 0;
}

.contact-box h6 {
  font-size: 20px;
}

.accordion-button {
  font-size: 18px;
}

.logo-slider {
  overflow: visible;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marquee 50s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.menu-arrow {
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.mega-dropdown:hover .menu-arrow {
  transform: rotate(180deg);
}

.btn-primary {
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, #8fd14f, #6dc7b8);

  display: inline-block;
  position: relative;
  overflow: hidden;

  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.35s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(109, 199, 184, 0.25);
  filter: brightness(1.05);
}

.btn-outline {
  position: relative;
  overflow: hidden;
  z-index: 1;

  padding: 18px 50px;
  border-radius: 50px;
  border: 1px solid #6dc7b8;

  color: #000;
  font-weight: 600;
  text-decoration: none;

  transition: all .4s ease;
}

.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg,
      #8fd14f,
      #6dc7b8);

  transform: translateX(-101%);
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);

  z-index: -1;
}

.btn-outline:hover {
  color: #fff;
  border-color: transparent;
}

.btn-outline:hover::before {
  transform: translateX(0);
}


.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 60px;
  height: 100%;

  background: rgba(255, 255, 255, .25);
  transform: skewX(-25deg);

  transition: .8s;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;

  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: inline-block;

  background: linear-gradient(90deg, #8fd14f, #6dc7b8);

  transition:
    transform .4s ease,
    box-shadow .4s ease;
}

/* Hover Overlay */
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(90deg,
      #6dc7b8,
      #8fd14f);

  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);

  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(109, 199, 184, .3);
}

.btn-primary:hover::before {
  transform: translateX(0);
}
@media only screen and (max-width: 767px) {
.blogs-section {
    padding: 50px 10px;
    background: #f5f5f5;
}
.section-faqs {
    padding: 50px 10px;
}
.about-section {
    background: #f5f5f5;
    padding: 50px 10px 80px;
    overflow: hidden;
}
.stats-wrapper {
    grid-template-columns: repeat(1, 1fr);
}
.hero-section {
    /* background: #f3f3f3; */
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 50px 10px;
}
.services-section {
    padding: 50px 10px;
}
.section-header {
    max-width: 1100px;
    margin-bottom: 80px;
    padding: 0px 10px;
}
.contact-form-section {
    padding: 50px 10px;
}
.big-title {
    font-size: 45px;
}
.hero-title {
    font-size: 33px;
}
.heading h2 {
    font-size: 33px;
}
.about-title {
    font-size: 33px;
}

.about-buttons {
    margin-top: 40px;
    display: flex;
    gap: 0px;
    flex-direction: column;
}
.about-visual {
    position: relative;
    height: auto;
}
.section-header h2 {
    font-size: 33px;
}
.client-section {
    background: linear-gradient(90deg, #8fd14f, #6dc7b8);
    color: #000;
    padding: 50px 0;
    overflow: hidden;
}
.testimonial-heading-section {
    padding: 50px 0 0px;
    background: #f5f5f5;
}
.container {
    padding: 0px 20px 40px;
}
.section-faqs h2 {
    position: relative;
    display: inline-block;
    font-size: 33px;
    font-weight: 700;
    padding-bottom: 25px;
    letter-spacing: .5px;
    width: 100%;
    margin-bottom: 50px;
}
.contact-box h2 {
    font-size: 33px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 15px;
}
.form-group {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding-bottom: 25px;
}
.choices {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    padding-top: 15px;
}
.footer {
    padding: 0px 10px 0;
    background-color: #f5f5f5;
}
.mains{
  padding: 50px 0px 30px 0px;
}
.blog-content p{
  display: none;
}
.blog-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}
.blog-content h3 {
    font-size: 20px;
}
.accordion-asked {
    display: grid;
    gap: 16px;
    padding-bottom: 18px;
}
}