body {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
}

img {
  max-width: 100% !important;
}

.headding {
  h3 {
    display: inline-block;
    background: rgba(22, 163, 74, 0.1);
    color: #16a34a;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  h2 {
    font-weight: 700;
    font-size: 32px;
  }
  p {
    font-size: 17px;
    font-weight: 500;
    color: #504b73;
  }
}

.gradient-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 8px 7px 15px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00b140 0%, #10851a 100%);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 177, 64, 0.25);

  .arrow {
    width: 36px;
    height: 36px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;

    i {
      transition: all 0.4s ease;
    }
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all 0.4s ease;
  }

  span,
  .arrow {
    position: relative;
    z-index: 2;
  }

  &:hover {
    transform: translateY(-4px);
    color: #fff !important;

    &::before {
      opacity: 1;
    }

    .arrow {
      transform: translateX(0px);
      background: #fff;

      i {
        color: #00b140;
      }
    }
  }
}

.main-header {
  .top-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 115px;
    background: #01081e;
    color: #fff;

    p {
      margin-bottom: 0;
      font-size: 13px;

      i {
        margin-right: 7px;
      }
    }
  }

  .header {
    display: flex;
    justify-content: space-between;
    padding: 20px 115px;
    align-items: center;

    img {
      height: 42px;
      max-width: 10%;
    }

    .header-links {
      display: flex;
      align-items: center;

      .custom-navbar {
        background: #fff;

        .menu {
          display: flex;
          gap: 25px;
          list-style: none;
          margin: 0;
          padding: 0;
          margin-right: 28px;

          > li {
            position: relative;

            > a {
              position: relative;
              text-decoration: none;
              color: #262626;
              font-size: 16px;
              font-weight: 700;
              padding: 10px 0;
              display: inline-block;

              &::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 0;
                height: 2px;
                background: #00b894;
                transform: translateX(-50%);
                transition: all 0.4s ease;
              }

              &:hover::after {
                width: 100%;
              }
            }

            .dropdown {
              position: absolute;
              top: 120%;
              left: 0;
              min-width: 335px;
              background: #fff;
              border-radius: 12px;
              padding: 10px 0;
              list-style: none;

              opacity: 0;
              visibility: hidden;
              transform: translateY(15px);

              box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);

              transition: all 0.35s ease;

              li {
                a {
                  display: block;
                  padding: 12px 20px;
                  color: rgb(31, 31, 31);
                  text-decoration: none;
                  transition: 0.3s;
                  font-weight: 600;

                  &:hover {
                    background: #f5f7fa;
                    color: #00b894;
                    padding-left: 25px;
                  }
                }
              }
            }

            &:hover {
              .dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
              }
            }
          }
        }
      }
    }
  }
}

.hero-section {
      background: url(../images/bg.png) no-repeat;
    background-size: cover;
    height: 600px;
    padding-top: 170px;

  .hero-content {
    h2 {
      color: #ffffff;
      font-weight: 600;
      font-size: 42px;
      margin-bottom: 14px;
      span {
        color: #22c55e;
        font-weight: 900;
      }
    }
    p {
      color: #ffffffa6;
      font-weight: 200;
      margin-bottom: 24px;
    }

    .banner-flow {
      display: flex;
      margin-bottom: 35px;
      .banner-icons {
        display: flex;
        align-items: center;
        margin-right: 36px;
        .icon {
          font-size: 22px;
          color: #ffffff;
          border: 2px solid #22c55e;
          width: 56px;
          height: 56px;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 9px;
          margin-right: 10px;
        }
      }
      h5 {
        color: #fff;
        font-size: 15px;
        margin-bottom: 3px;
      }
      p {
        font-size: 12px;
        margin-bottom: 0;
      }
    }
  }
}

.data-section {
  padding: 80px 0;
  background: #22c55e14;

  .data-inner {
    background-color: #fff;
    border-radius: 15px;
    padding: 34px;
    border: 1px solid #0000001a;
    display: flex;
    align-items: center;

    .icons {
      border-radius: 9px;
      font-size: 22px;
      background-color: #00800029;
      width: 57px;
      height: 57px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: green;
      margin-right: 10px;
    }
    h5 {
      font-size: 18px;
      font-weight: 700;
    }
    p {
      font-size: 14px;
      margin-bottom: 0;
      color: #4b466a;
    }
  }
}


.footer-area {
    & .footer-widget {
        & .footer-logo {
            img {
                max-width: 140px !important;
            }
        }
    }
}
.about-section {
  padding: 80px 0;
  .about-content {
    padding-left: 50px;
    ul {
      padding-left: 0;
      li {
        list-style: none;
        font-weight: 600;
        display: flex;
        line-height: 30px;

        i {
          background: #01081e38;
          color: #01081e;
          width: 30px;
          height: 30px;
          font-size: 15px;
          padding: 9px;
          margin-bottom: 12px;
          margin-right: 13px;
          border-radius: 5px;
        }
      }
    }
  }
}

.service-section {
  background: #07121a;
  padding: 80px 0;

  .service-inner {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    margin-top: 31px;
    height: 260px;

    .icons {
      background-color: #d6ebd6;
      color: #008000;
      width: 60px;
      height: 60px;
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: space-around;
      margin: auto;
      border-radius: 11px;
    }

    h5 {
      font-weight: 700;
      color: #07121a;
      margin-top: 14px;
    }
    p {
      color: #6d6d6d;
      font-size: 14px;
      margin-bottom: 0;
    }
  }
}

.it-section {
  padding: 80px 0;

  .it-inner {
    padding: 28px;
    background-color: #ffffff;
    box-shadow: 0px 10px 13px -19px #000000;
    border-radius: 20px;
    border: 1px solid #00000021;

    img {
      border-radius: 15px;
    }

    h5 {
      line-height: 27px;
      margin: 19px 0px;
      font-size: 23px;
    }

    button {
      font-size: 12px;
      background-color: #008000;
      border: 0;
      color: #fff;
      padding: 4px 10px;
      border-radius: 6px;
    }
  }
}

.faq-section {
  background: #ebf8f0;
  padding: 80px 0;

  .section-title {
    max-width: 700px;
    margin: auto;

    .sub-title {
      display: inline-block;
      background: rgba(22, 163, 74, 0.1);
      color: #16a34a;
      padding: 8px 18px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 15px;
    }
  }

  .custom-faq {
    max-width: 900px;
    margin: auto;

    .accordion-item {
      border: 0;
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 18px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .accordion-button {
      background: #fff;
      padding: 22px 25px;
      font-size: 18px;
      font-weight: 600;
      color: #111827;
      box-shadow: none;

      &:not(.collapsed) {
        background: #16a34a;
        color: #fff;
      }

      &:focus {
        box-shadow: none;
        border: none;
      }
    }

    .accordion-body {
      background: #fff;
      padding: 20px 25px;
      color: #6b7280;
      font-size: 15px;
      line-height: 1.8;
    }
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.brand-section {
  padding-top: 80px;
  padding-bottom: 50px;

  .slider {
    background: white;
    height: 150px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 1295px;

    &::before,
    &::after {
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
      );

      content: "";
      height: 100px;
      position: absolute;
      width: 200px;
      z-index: 2;
    }

    &::before {
      left: 0;
      top: 0;
    }

    &::after {
      right: 0;
      top: 0;
      transform: rotateZ(180deg);
    }

    .slide-track {
      display: flex;
      width: calc(250px * 14);
      animation: scroll 40s linear infinite;
    }

    .slide {
      width: 250px;
      height: 100px;
      padding-left: 20px;
    }
  }
}

.footer-area {
  background: #07121a;
  color: #cbd5e1;
  padding-top: 80px;

  .footer-widget {
    .footer-logo {
      margin-bottom: 25px;

      img {
        max-width: 140px;
      }
    }

    h4 {
      color: #fff;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 25px;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 45px;
        height: 3px;
        background: #22c55e;
        border-radius: 10px;
      }
    }

    p {
      line-height: 1.9;
      margin-bottom: 25px;
    }

    ul {
      padding: 0;
      margin: 0;
      list-style: none;

      li {
        margin-bottom: 14px;

        a {
          color: #cbd5e1;
          text-decoration: none;
          transition: 0.3s;

          &:hover {
            color: #22c55e;
            padding-left: 8px;
          }
        }
      }
    }
  }

  .social-links {
    display: flex;
    gap: 12px;

    a {
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      transition: 0.3s;

      &:hover {
        background: #22c55e;
        transform: translateY(-4px);
      }
    }
  }

  .contact-info {
    .info-item {
      display: flex;
      gap: 15px;
      margin-bottom: 18px;

      i {
        color: #22c55e;
        margin-top: 4px;
      }
    }

    .newsletter {
      margin-top: 25px;
      position: relative;

      input {
        width: 100%;
        height: 56px;
        border: none;
        outline: none;
        padding: 0 65px 0 20px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;

        &::placeholder {
          color: #94a3b8;
        }
      }

      button {
        position: absolute;
        right: 5px;
        top: 5px;
        width: 46px;
        height: 46px;
        border: none;
        border-radius: 50%;
        background: #22c55e;
        color: #fff;
        transition: 0.3s;

        &:hover {
          transform: rotate(-20deg);
        }
      }
    }
  }

  .footer-bottom {
    margin-top: 70px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;

    p {
      margin: 0;
      font-size: 15px;
      color: #94a3b8;
    }
  }
}

.inner-banner {
  background: url(../images/Banners/About.png) no-repeat;
  background-size: cover;
  height: 390px;
  display: flex;
  align-items: center;
  .inner-banner-content {
    h2 {
      font-weight: 600;
      color: #fff;
      font-size: 40px;
    }

    p {
      color: #ffffffa6;
    }
  }
}

.who-we-are {
  padding: 80px 0;
  .feature-cards {
    .feature-card {
      background: #d1e8d5b0;
      border-radius: 18px;
      padding: 30px 23px;
      text-align: center;
      height: 100%;
      transition: all 0.3s ease;
      border: 1px solid #22c55e;

      &:hover {
        transform: translateY(-5px);
      }

      .icon-box {
        width: 64px;
        height: 64px;
        margin: 0 auto 24px;
        border-radius: 16px;
        background: #edf8ef;
        display: flex;
        align-items: center;
        justify-content: center;

        i {
          font-size: 26px;
          color: #22c55e;
        }
      }

      h4 {
        font-size: 21px;
        font-weight: 700;
        color: #1f2937;
        line-height: 1.3;
        margin-bottom: 10px;
      }

      p {
        font-size: 14px;
        color: #4b4f58;
        line-height: 23px;
        margin-bottom: 0;
      }
    }
  }
}

.mission-vision-section {
  padding-bottom: 80px;
  .mission-content {
    .mission-box {
      display: flex;
      align-items: flex-start;
      gap: 25px;
      margin-bottom: 45px;

      .icon {
        width: 90px;
        min-width: 90px;
        height: 90px;
        border-radius: 18%;
        background: #01081e2b;
        display: flex;
        align-items: center;
        justify-content: center;

        i {
          font-size: 34px;
          color: #01081e;
        }
      }

      .content {
        h4 {
          font-size: 27px;
          font-weight: 700;
          margin-bottom: 5px;
          color: #1f2937;
        }

        p {
          font-size: 18px;
          line-height: 1.9;
          color: #6b7280;
          margin: 0;

          span {
            color: #22c55e;
            font-weight: 600;
          }
        }
      }
    }
  }
}

.contact-page {
  padding: 80px 0;
}

.contact-info-list {
  margin-top: 35px;

  .info-box {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 20px;
    background: #fff;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #0000001c;

    i {
      width: 55px;
      height: 55px;
      background-color: #d6ebd6;
      color: #008000;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 20px;
    }

    h6 {
      margin-bottom: 5px;
      font-weight: 600;
    }

    span {
      color: #6c757d;
    }
  }
}

.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #0000001c;

  h4 {
    margin-bottom: 25px;
    font-weight: 700;
  }

  .form-control {
    height: 55px;
    border-radius: 10px;
    border: 1px solid #e4e7ec;

    &:focus {
      box-shadow: none;
      border-color: #0d6efd;
    }
  }

  textarea.form-control {
    height: auto;
  }
}

.service-inner-sectionss {
  padding: 80px 0;
}

ul.inner-links {
  padding-left: 0;
  li {
    list-style: none;
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;

    i {
      color: #05a233;
      font-size: 19px;
      margin-right: 11px;
    }
  }
}

.accept-section {
  text-align: center;
  padding-bottom: 80px;
  .item-box {
    img {
      max-width: 80%;
    }

    h4 {
      font-weight: 600;
      font-size: 22px;
    }
  }
}

.main-nav {
  display: none;
  .mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #07121a;
    padding: 20px;

    img {
      max-width: 125px;
    }

    button {
      border-radius: 7px;
      color: #fff;
      background-color: #22c55e;
      border: 0;
      padding: 9px;
      width: 40px;
      height: 40px;
    }
  }
}

.offcanvas {
  max-width: 83%;
  .offcanvas-header {
    border-bottom: 1px solid #00000030;
  }

  button {
    padding: 0 !important;
    font-size: 19px;
    font-weight: 600;
  }
  .accordion-button {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    border: none !important;
  }

  .accordion-button:hover,
  .accordion-button:focus,
  .accordion-button:not(.collapsed) {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
    border: none !important;
  }

  .accordion-item {
    border: none !important;
  }

  .accordion-button::after {
    box-shadow: none !important;
  }

  .accordion-body {
    ul {
      li {
        list-style: disc;
        padding: 10px 14px;
      }
    }
  }
}

.mobile-links {
  ul {
    padding-left: 0;
    li {
      list-style: none;
      padding: 13px 18px;

      a {
        color: #000;
        text-decoration: none;
        display: block;
        font-size: 19px;
        font-weight: 600;
      }
    }
  }
}

@media (max-width: 767px) {
  .main-header {
    display: none;
  }

  .hero-section {
        background: url(../images/mobile-bg.png) no-repeat;
        background-size: cover;
        padding-top: 100px;
  }
  .mission-vision-section {
    padding-bottom: 40px !important;
}

.footer-area {
    .footer-bottom {
        margin-top: 10px !important;
    }
}

  .main-nav {
    display: block;
  }
  .hero-section {
    & .hero-content {
      text-align: center;
      .banner-flow {
        .banner-icons {
          align-items: center;
          text-align: center;
          padding: 0 11px;
          display: block;
          margin-right: 0;

          .icon {
            margin: auto;
            margin-bottom: 10px;
          }
        }
      }
      h2 {
        font-size: 30px;
      }
    }
  }
      .hero-section {
        & .hero-content {
            
.banner-flow {
                justify-content: center !important;
            }
        }
    }
}
.data-section {
    .data-inner {
      
        padding: 29px !important;
     
    }
}
  .data-section {
    padding: 40px 0;
    .data-inner {
      margin-bottom: 14px;
    }
  }
  .about-section {
    padding: 40px 0;
    .headding {
      h2 {
        text-align: center;
      }
      p {
        text-align: center;
      }
    }
    .about-content {
      margin-top: 49px;
      padding-left: 0;
      ul {
        li {
          display: flex;
          margin: 19px 0;
        }
      }
    }
  }
  .headding {
    h2 {
      font-size: 27px;
    }
  }

  .service-section {
    padding: 40px 0;
    .service-inner {
      padding: 25px 15px;
      margin-top: 31px;
      height: 325px;
    }
  }
  .brand-section {
    .slider {
      width: auto !important;
    }
  }
  .faq-section {
    padding: 40px 0;
  }
  .it-section {
    padding: 40px 0;
    .it-inner {
      margin-bottom: 15px;
    }
  }

  .footer-area {
    .footer-widget {
      margin-bottom: 23px;
    }
  }
  .brand-section {
    padding-top: 40px;
    padding-bottom: 0px;
  }

  .footer-area {
    padding-top: 40px;
    .footer-bottom {
      margin-top: 40px;
    }
  }
  .offcanvas-backdrop.show {
    display: none;
  }
  .modal-backdrop.show {
    display: none;
  }

  .inner-banner {
    background: url(../images/Banners/inner-about.png) no-repeat;
    background-size: cover;
    height: 430px;
    align-items: baseline;
    padding: 100px 10px;
    text-align: center;
  }
  .who-we-are {
    padding: 40px 0;
  }

  .main-nav {
    & .mobile-nav {
        
img {
            max-width: 125px !important;
        }
    }
}

.offcanvas-title img{
  max-width: 125px !important;
}
.footer-area {
    & .footer-widget {
        & .footer-logo {
            img {
                max-width: 140px !important;
            }
        }
    }
}
  .mission-vision-section {
    & .mission-content {
      .mission-box {
        display: block;
        margin-bottom: 15px;
        margin-top: 35px;
        text-align: center;

        .icon {
          margin: auto;
          margin-bottom: 17px;
        }
      }
    }
  }
  .service-inner-sectionss {
    padding: 40px 0;
  }

  .reverse-row {
    display: flex;
    flex-direction: column-reverse;
  }
  .contact-page {
    padding: 40px 0;
    .contact-form-box {
      padding: 25px;
    }
    .contact-info-list {
      & .info-box {
        align-items: baseline;
        i {
          width: auto;
          height: auto;
          background-color: #d6ebd6;

          font-size: 20px;
          background: transparent;
        }
      }
    }
  }
}
