body {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", sans-serif;
}

img {
  max-width: 100%;
}

a {
  display: contents;
}

.headding {
  h3 {
    display: inline-block;
    background: rgb(3 96 246 / 9%);
    color: #0a7ae7;
    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;
  }
}

.main-header {
  .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: #0a7ae7;
                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: #0a7ae7;
                    padding-left: 25px;
                  }
                }
              }
            }

            &:hover {
              .dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
              }
            }
          }
        }
      }
    }
  }
}

.hero-section {
  background: url(../images/banner.png) no-repeat;
  background-size: cover;
  height: 600px;
  padding-top: 130px;

  .hero-content {
    h2 {
      color: #ffffff;
      font-weight: 400;
      font-size: 52px;
      margin-bottom: 14px;
      span {
        color: #0a7ae7;
        font-weight: 700;
      }
    }
    p {
      color: #ffffffa6;
      font-weight: 200;
      margin-bottom: 24px;
    }
  }
}

.about-section {
  padding: 80px 0;

  img {
    border-radius: 15px;
  }
}

.our-companies {
  padding: 80px;
  .company-card {
    margin: auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    /* height: 100%; */
    border: 1px solid #00000021;
    width: 95%;
  }

  .company-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 13%;
    position: absolute;
    left: 50%;
    top: 235px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #00000021;
  }

  .company-content {
    padding: 70px 30px 35px;

    h3 {
      font-size: 26px;
      font-weight: 700;
      color: #0b1e4f;
      margin-bottom: 10px;
    }

    p {
      color: #6c757d;
      margin-bottom: 14px;
      font-weight: 400;
    }
  }

  .learn-more {
    color: #0d6efd;
    font-weight: 700;
    text-decoration: none;

    i {
      margin-left: 8px;
      transition: 0.3s;
    }

    &:hover i {
      transform: translateX(5px);
    }
  }
}

.why-us {
  background: #0a7ae714;
  padding: 80px 0;

  .feature-box {
    text-align: center;
    padding: 0 20px;

    height: 100%;

    h4 {
      font-size: 21px;
      font-weight: 700;
      color: #07163e;
      margin: 18px 0 12px;
    }

    p {
      margin: 0;
      color: #5f6778;
      line-height: 1.7;
      font-size: 15px;
    }
  }

  .feature-icon {
    font-size: 28px;
    color: #293f54;
    line-height: 1;
    background: #000c1917;
    width: 70px;
    height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
  }
}

.impact-section {
  background: #000c19;
  color: #fff;
  padding: 80px 0;

  .impact-card {
    height: 100%;

    i {
      font-size: 28px;
      color: #0a7ae7;
      line-height: 1;
      background: #0a7ae729;
      width: 70px;
      height: 70px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      margin-bottom: 15px;
    }

    h3 {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    p {
      margin: 0;
      color: rgb(255 255 255 / 48%);
    }
  }
}

.testimonial-section {
  padding: 80px 0;
  background: #f7f9fc;
  overflow: hidden;

  .testimonial-wrapper {
    position: relative;
  }

  .testimonial-track {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
  }

  .testimonial-card {
    width: 350px;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    opacity: 0.5;
    transform: scale(0.88);

    &.active {
      opacity: 1;
      transform: scale(1);
    }

    .stars {
      color: #ffb400;
      font-size: 22px;
      margin-bottom: 20px;
    }

    p {
      color: #555;
      line-height: 1.8;
      margin-bottom: 25px;
    }

    .client {
      display: flex;
      align-items: center;
      gap: 15px;

      img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
      }

      h4 {
        margin: 0;
        color: #0b1e4f;
        font-size: 18px;
      }

      span {
        color: #888;
        font-size: 14px;
      }
    }
  }

  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #0a7ae7;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
  }

  .prev {
    left: -70px;
  }

  .next {
    right: -70px;
  }
}

.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;
    }

    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: #0a7ae7;
            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: #0a7ae7;
        transform: translateY(-4px);
      }
    }
  }

  .contact-info {
    .info-item {
      display: flex;
      gap: 15px;
      margin-bottom: 18px;

      i {
        color: #0a7ae7;
        margin-top: 4px;
      }
    }
  }

  .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;
    }
  }
}

.about-inner-page {
  padding: 80px 0;

  img {
    border-radius: 15px;
  }

  .headding {
    padding-left: 20px;
  }
}

ul.lists {
  padding: 0;
  margin: 0;

  li {
    list-style: none;
    margin: 10px 0;
    font-weight: 600;

    i {
      color: #0a7ae7;
      margin-right: 10px;
    }
  }
}

.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: #e8f1fe;
      color: #0a7ae7;
      border-radius: 18%;
      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;
  }
}

ul.list {
  padding-left: 0;
  li {
    font-size: 15px;
    list-style: none;
    margin-bottom: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;

    i {
      margin-right: 10px;
      background: #0a7ae730;
      width: 25px;
      height: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 5px;
      color: #065fb6;
      font-size: 10px;
    }
  }
}
.inner-banner {
  background: url(../images/inner-banner.png) no-repeat !important;
  background-size: cover !important;
  height: auto !important;
  padding: 90px 0;
  text-align: center;

  .inner-banner-contact {
    h3 {
      font-size: 43px;
      color: #fff;
    }

    .inner-c {
      p {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        a {
          i {
            margin: 0 7px;
          }
        }
      }
    }
  }
}

.main-nav {
  display: none;
  .mobile-nav {
    background: #000c19;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 19px 21px;
    border-bottom: 1px solid #ffffff1a;
    z-index: 99;

    img {
      max-width: 160px;
    }
    button {
      width: 40px;
      background: transparent;
      border: 0;
      color: #0a7ae7;
      height: 40px;
      border-radius: 10px;
      border: 1px solid #0a7ae7;
    }
  }
}

.offcanvas {
  max-width: 83%;

  .offcanvas-header {
    border-bottom: 1px solid #bfbfbf !important;
  }
  .mobile-links {
    ul {
      padding-left: 0;
      li {
        list-style: none;
        padding: 15px 20px;
        font-size: 17px;
        font-weight: 600;
        a {
          color: #000 !important;
        }
      }
    }
  }

  .accordion-button {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    color: #000 !important;
    font-size: 17px;
    font-weight: 600;

    &:focus,
    &:active,
    &:hover {
      box-shadow: none !important;
      outline: none !important;
      background: transparent !important;
      border: none !important;
    }

    &:not(.collapsed) {
      background: transparent !important;
      box-shadow: none !important;
      color: inherit !important;
    }

    &::after {
      box-shadow: none !important;
    }
  }

  .accordion-body {
    padding-left: 0;
    padding-bottom: 0;
  }

  .accordion-item,
  .accordion-header,
  .accordion-collapse,
  .accordion-body {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }
}

.offcanvas-backdrop {
  display: none;
}

.modal-backdrop.show {
  display: none;
}

@media screen and (max-width: 767px) {
  .main-nav {
    display: block !important;
  }
  .headding {
    h2 {
      font-size: 23px;
    }
  }
  .main-header {
    display: none;
  }
  .hero-section {
    background: url(/images/mobile-banner.png) no-repeat !important;
    background-size: cover !important;
    .hero-content {
      text-align: center;
      h2 {
        font-size: 34px;
      }
    }
    button {
      width: 100% !important;
      margin-bottom: 15px;
    }
  }

  .about-section {
    padding: 40px 0;
    .about-inner {
      padding: 30px 0px;
    }
  }

  .why-us {
    padding: 40px 0;
    .feature-box {
      text-align: center;
      padding: 0 5px;
      height: 100%;
      margin: 15px 0;

      h4 {
        font-size: 19px;
      }
      p {
        line-height: 19px;
        font-size: 15px;
      }
    }
  }

  .our-companies {
    padding: 40px 0;

    .mt-5 {
      margin-top: 0 !important;
    }

    .company-card {
      margin: 15px 0;
      width: 100%;
      .company-icon {
        width: 70px;
        height: 70px;
        top: 145px;
      }
      h3 {
        font-size: 24px;
      }
    }
  }

  .impact-section {
    .mt-5 {
      margin-top: 0 !important;
    }

    padding: 40px 0;
    & .impact-card {
      margin: 15px 0;
      h3 {
        font-size: 26px;
      }
    }
  }

  .footer-area {
    padding-top: 40px;
    .footer-bottom {
      margin-top: 0px;
    }
  }

  .testimonial-section {
    .mt-5 {
      margin-top: 0 !important;
    }

    padding: 40px 0;
    .testimonial-track {
      display: block !important;
      gap: 0;
      justify-content: center;
      align-items: center;
    }
    .testimonial-card {
      margin: auto !important;
    }
  }

  .inner-banner {
    background: url(../images/mobile-inner-banner.png) no-repeat !important;
    background-size: cover !important;
    padding-top: 135px;
    padding-bottom: 40px;
  }
  .about-inner-page {
    padding: 40px 0;
    .headding {
      padding-left: 0;
      padding-top: 30px;
    }
  }

  .contact-page {
    padding: 40px 0;

    .headding{
      text-align: center;
    }
    .contact-form-box {
      padding: 23px;
    }
    button{
      width: 100% !important;
    }
  }
}

a.footer-whatsapp {
	right: 30px;
	position: fixed !important;
	bottom: 0;
	z-index: 99999999999;
	bottom: 30px;
	display: inline-block;

	img {
		max-width: 50px;
	}
}
