@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* add your desired CSS styles here */
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
}

a {
  color: #0022FF;
  text-decoration: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #333;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
}

a:hover {
  color: #00FF88 !important;
  text-decoration: none;
}

.text-blue {
  color: #0022FF !important;
}

.text-green {
  color: #00FF88 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.bg-blue {
  background-color: #0022FF !important;
}

.bg-green {
  background-color: #00FF88 !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

nav.bg-dark {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}

a.nav-link {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF !important;
  letter-spacing: 0.5px;
}

a.nav-link:hover {
  color: #00FF88 !important;
}

small {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  color: #000000;
  margin-top: 0;
  margin-bottom: 16px;
}

h1,
h2 {
  font-size: 42px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 12px;
}

.btn-custom {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  border-radius: 64px;
  padding: 8px;
  padding-left: 20px;
}

.btn-custom::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../images/utill/btn-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-left: 8px;
}

.btn-blue {
  background-color: #0022FF;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-blue:hover {
  background-color: #0011CC;
  color: #FFFFFF !important;
}

.btn-black {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-black:hover {
  background-color: #333333;
  color: #FFFFFF !important;
}

.btn-green {
  background-color: #00FF88;
  color: #000000;
  border: 2px solid #000000;
}

.btn-green:hover {
  background-color: #00CC6A;
  color: #000000 !important;
}

.hero-section {
  background-color: #000000;
  color: #FFFFFF;
  padding-top: 142px;
  padding-bottom: 164px;
  overflow: hidden;
}

.hero-section h1 {
  color: #FFFFFF;
}

.hero-section p {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 300;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section .hero-ellipse {
  position: absolute;
  z-index: -1;
  top: 50px;
  left: -150px;
  width: 45%;
  height: 65%;
  background: radial-gradient(ellipse at center, #0022FF 0%, rgba(0, 34, 255, 0.2) 50%, transparent 70%);
  border-radius: 50%;
  transform: rotate(50deg);
  filter: blur(60px);
}

.why-section {
  background: linear-gradient(180deg, #0022FF 0%, #FFFFFF 100%);
  color: #FFFFFF;
  padding-top: 142px;
  padding-bottom: 164px;
  overflow: hidden;
}

.why-section h2,
.why-section p {
  color: #FFFFFF;
  text-align: center;
}

.why-section .why-card img {
  border-radius: 16px;
  margin-bottom: 24px;
}

.why-section .why-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000000;
}

.why-section .why-card p {
  text-align: left;
  color: #000000;
  font-weight: 400;
}

.project-section {
  padding-top: 142px;
  padding-bottom: 164px;
  overflow: visible;
}

.project-section h2,
.project-section p {
  text-align: center;
}

.project-section .project-list {
  position: absolute;
  z-index: -1;
  background-image: url("../images/utill/project-stripes.png");
  background-repeat: no-repeat;
  background-size: 120% 100%;
  width: 100%;
  height: 640px;
}

.project-section .project-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  background-color: #FFFFFF;
  border: 2px solid #000000;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 460px;
}

.project-section .project-card img.brand-logo {
  height: 24px;
  margin-bottom: 24px;
}

.project-section .project-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-section .project-card p {
  text-align: left;
  font-weight: 400;
}

.value-section {
  padding-top: 142px;
  padding-bottom: 164px;
  background: linear-gradient(0deg, #00FF88 0%, #FFFFFF 100%);
}

.value-section h2 {
  margin-left: 124px;
  margin-right: 124px;
}

.value-section p {
  color: #000000;
  margin-left: 48px;
  margin-right: 48px;
}

.value-section .value-list {
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 2px solid #0022FF;
  overflow: hidden;
  margin-top: 32px;
}

.value-section .value-list .value-card {
  padding: 20px;
  border-bottom: 2px solid #0022FF;
}

.value-section .value-list .value-card .vc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.value-section .value-list .value-card .vc-title h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.value-section .value-list .value-card .vc-title .vc-toggle {
  cursor: pointer;
  background-image: url("../icons/plus-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

.value-section .value-list .value-card p {
  margin: 0px !important;
  font-size: 17px;
  font-weight: 400;
  text-align: left;
  color: #000000 !important;
}

.value-section .value-list .value-card .vc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
}

.value-section .value-list .value-card:last-child {
  border-bottom: none;
}

.value-section .value-list .value-card.active p {
  margin-top: 12px !important;
}

.value-section .value-list .value-card.active .vc-toggle {
  background-image: none;
}

.value-section .value-list .value-card.active .vc-body {
  max-height: 1000px;
}

.founder-section {
  padding-top: 142px;
  padding-bottom: 164px;
}

.founder-section .head {
  margin-left: 152px;
  margin-right: 152px;
}

.founder-section .head p {
  font-weight: 500;
}

.founder-section h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
  color: #000000;
}

.founder-section .bio p {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}

.founder-section ul li {
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}

.testimonial-section {
  padding-top: 64px;
  padding-bottom: 264px;
  background: linear-gradient(0deg, #000000 0%, #FFFFFF 100%);
}

.testimonial-section .head {
  margin-left: 152px;
  margin-right: 152px;
}

.testimonial-section .head p {
  font-weight: 500;
  color: #000000;
}

.testimonial-section .testy {
  background: linear-gradient(130deg, #00ffdd 0%, #0022FF 23%, #FF9700 48%, #00FF88 73%, #FFFFFF 100%);
  padding: 2px;
  border-radius: 18px;
}

.testimonial-section .testy-card {
  background-color: #000000;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-section .testy-card img.brand-logo {
  height: 24px;
  margin-bottom: 24px;
}

.testimonial-section .testy-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000000;
}

.testimonial-section .testy-card p.comment {
  font-size: 15px;
  text-align: left;
  font-weight: 300;
  line-height: 18px;
  color: #FFFFFF;
}

.testimonial-section .testy-card p.author {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 500;
}

.testimonial-section .testy-card .rate {
  margin-top: 12px;
}

.testimonial-section .testy-card .rate .star {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url("../icons/star.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonial-section .testy-card .rate .half-star {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url("../icons/star-half.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonial-section .testy-card .rate .no-star {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url("../icons/no-star.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.newsletter-section {
  padding-top: 164px;
  padding-bottom: 0px;
  background-color: #000000;
  background-image: url("../images/utill/newsletter-backdrop.png");
  background-size: 35% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #000000;
}

.newsletter-section h2 {
  color: #FFFFFF;
  margin-bottom: 64px;
}

.newsletter-section p {
  font-size: 18px;
  font-weight: 400;
  color: #FFFFFF;
}

.newsletter-section .newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 320px !important;
  margin: 0 auto;
}

.newsletter-section .newsletter-form input.form-control {
  border: 2px solid #0022FF;
  background-color: #FFFFFF;
  border-radius: 64px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 400px;
}

footer {
  padding-top: 32px;
  background: linear-gradient(180deg, #000000 0%, #0022FF 100%);
  color: #FFFFFF !important;
}

footer p {
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF !important;
}

footer .links-section h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #00FF88 !important;
}

footer .links-section ul li a {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

footer .copyright-section {
  padding-top: 24px;
  padding-bottom: 16px;
  border-top: 1px solid #00FF88;
}

.mission-img {
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  height: 360px;
  width: auto;
}

.connectBtn {
  margin-top: 40px;
}

.navbar-expand-lg .navbar-nav {
  gap: 24px;
}

/*# sourceMappingURL=theme.css.map */



/* Responsive Css starts */

@media (max-width: 1200px) {
  .container {
    padding: 0 22px;
    max-width: 1120px;
  }

  .navbar-expand-lg .navbar-nav {
    gap: 15px;
  }

  .hero-section,
  .why-section,
  .project-section,
  .value-section,
  .founder-section,
  .testimonial-section,
  .newsletter-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}


@media (max-width: 991px) {



  nav.bg-dark {
    padding: 15px 0;
  }

  .navbar-collapse {
    padding-top: 30px;
  }

  .container {
    padding: 0 22px;
    max-width: 930px;
  }

  .why-section .offset-md-2 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section,
  .why-section,
  .project-section,
  .value-section,
  .founder-section,
  .testimonial-section,
  .newsletter-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .why-card {
    margin-bottom: 40px;
  }

  .project-section h2 {
    font-size: 30px;
    margin-bottom: 30px !important;
  }

  .project-section p {
    margin-bottom: 0 !important;
  }

  .project-section .pb-5 {
    padding-bottom: 15px !important;
  }

  .project-section .project-card {
    margin-bottom: 30px;
    gap: 30px;
    justify-content: space-around;
  }

  .project-section .project-card img.brand-logo {
    margin-bottom: 0;
  }

  .project-section .project-card h3 {
    margin-bottom: 0;
    font-size: 24px;
  }



  .project-section .project-card .btn-blue {
    margin-top: 0 !important;
  }

  .value-section h2 {
    margin: 15px 0;
  }

  .value-section p {
    margin: 0;
  }

  h2 {
    font-size: 30px;
  }

  .founder-section .head {
    margin: 0;
  }

  .profile_content,
  .profile_comp {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .connectBtn {
    margin-top: 0;
  }

  .connectBtn .btn-black {
    margin-top: 0px !important;
    margin-bottom: 0px !important;

  }

  .connectBtn .btn-custom::after {
    display: block;
    margin-left: 10px;
    text-align: center;
  }

  .testimonial-section .head {
    margin: 0;
  }

  .testimonial-section .testy {
    margin-bottom: 30px;
  }

}

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 34px;
  }
}