/* Import Poppins Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
/* SCSS Variables */
/* CSS Variables for backward compatibility */
:root {
  --primary-green: #b5f433;
  --dark-green: #9ed629;
  --light-green: #d4f7a1;
}

/* Mixins */
/* Base Styles */
body {
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

/* Navbar Styles */
.navbar {
  background: transparent;
  backdrop-filter: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}
.navbar-brand {
  font-weight: bold;
  font-size: 1.2rem;
}
.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 0.3rem;
  padding: 0.25rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #fff !important;
  background-color: rgba(181, 244, 51, 0.1);
}
.navbar-nav .nav-link.active {
  background-color: #b5f433;
  color: #000 !important;
  font-weight: 600;
}
.navbar .btn-login {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 15px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  text-decoration: none;
  width: 132px;
}
.navbar .btn-login:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.navbar .btn-create {
  background-color: #b5f433;
  color: #000;
  border: none;
  border-radius: 15px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  text-decoration: none;
  width: 157px;
}
.navbar .btn-create:hover {
  background-color: #9ed629;
  transform: translateY(-2px);
  color: #000;
}

/* Button Styles */
.btn-outline-light {
  border: 2px solid #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

.btn-success-custom {
  background-color: #b5f433;
  color: #000;
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-success-custom:hover {
  background-color: #9ed629;
}

.btn-success {
  background-color: #b5f433;
  border-color: #b5f433;
}
.btn-success:hover {
  background-color: #9ed629;
  border-color: #9ed629;
}

/* Project Developers Button Styles */
.button.white {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
}
.button.trans-black {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}
.green-bg {
  background-color: #B5F433;
  padding: 5px;
  border-radius: 5px;
}
.white-bg {
  background-color: #ffffff;
  padding: 5px;
  border-radius: 5px;
}
.black-border {
  border-color: #000;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-image: url("../images/background-3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-attachment: fixed;
  min-height: 100vh;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-weight: 600;
  font-size: 70px;
  line-height: 85px;
  text-transform: capitalize;
}
.hero-section .text-success {
  color: #b5f433 !important;
}
.hero-section .btn {
  border-radius: 15px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
}
.hero-section .btn-outline-light:hover {
  background-color: #fff;
  transform: translateY(-2px);
}
.hero-section .btn-success {
  background-color: #b5f433;
  border-color: #b5f433;
  color: #000;
  display: flex;
  align-items: center;
}
.hero-section .btn-success:hover {
  background-color: #9ed629;
  border-color: #9ed629;
  transform: translateY(-2px);
}
.hero-section .btn-success div {
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.hero-section .btn-success img {
  width: 16px;
  height: 16px;
}

.hero-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
}

/* Section title and subtitle */
.sec-title {
  font-weight: 600;
  font-size: 46px;
  line-height: 60px;
  text-transform: capitalize;
}

.sec-subtitle {
  color: #353535;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
}

/* Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 25px;
  overflow: hidden;
  padding: 40px 25px;
  border: 1px solid #c2c2c2;
}
.card-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #333;
}
.card-img-top {
  width: 100%;
  height: 161px;
  object-fit: cover;
  border-radius: 25px;
}
.card-body {
  background-color: #fff;
  padding: 0;
  padding-top: 16px;
}
.card-body .card-text {
  font-size: 16px;
  line-height: 26px;
  color: #1a1a1a;
  margin: 0;
}

/* Stats Cards */
.display-4 {
  font-size: 3.5rem;
}

/* Why Choose Section */
.why-choose {
  background: linear-gradient(127.82deg, #b5f433 29.55%, #268226 112.19%);
}
.why-choose h2 {
  color: #000 !important;
  font-weight: 600;
  font-size: 46px;
  line-height: 60px;
}
.why-choose .d-flex p {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
}
.why-choose .badge {
  background-color: #fff !important;
  color: #000 !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  padding: 8px 16px;
  max-width: 90%;
  text-align: center;
  word-break: break-all;
}

.why-choose-item {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  width: 433px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-choose-item:hover {
  transform: translateY(-2px);
}
.why-choose-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-number {
  color: #b5f433;
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  margin-right: 10px;
  display: inline-block;
}

.why-text {
  color: #268226 !important;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}

.why-choose-image {
  border-radius: 25px;
  height: 457px;
}

.badge {
  border-radius: 8px;
  font-weight: bold;
}

/* FAQ Section */
.accordion {
  position: relative;
  z-index: 2;
}
.accordion-item {
  position: relative;
  z-index: 2;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #fff !important;
}
.accordion-button {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  padding: 1.5rem 1.25rem;
  background-color: transparent;
  color: #16a34a;
  border: none;
}
.accordion-button::after {
  background-image: url("../images/accord-plus.svg");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  filter: none;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #16a34a;
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("../images/accord-min.svg");
  transform: none;
}
.accordion-button:focus {
  box-shadow: none;
  border: none;
}
.accordion-button .text-success {
  color: #16a34a !important;
  font-weight: 600;
}
.accordion-body {
  padding: 0 1.25rem 1.5rem 1.25rem;
  color: #4b5563;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
.accordion-bg {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 0;
  pointer-events: none;
  height: 90%;
}
.accordion-bg img {
  max-width: 100%;
  height: 100%;
  display: block;
}

/* Footer */
footer {
  background-color: #000 !important;
}
footer .footer-tagline {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 24px;
}
footer a:hover {
  color: #b5f433 !important;
}
footer .bi {
  font-size: 1.5rem;
}

.text-parrot-green {
  color: #b5f433 !important;
}

.footer-btn-started {
  background-color: #b5f433;
  color: #000;
  border: none;
  border-radius: 15px;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 8px;
}
.footer-btn-started:hover {
  background-color: #9ed629;
  color: #000;
  transform: translateY(-2px);
}
.footer-btn-started svg {
  width: 20px;
  height: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #b5f433;
  color: #000;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icon:hover {
  background-color: #9ed629;
  color: #000;
  transform: translateY(-2px);
}
.social-icon i {
  font-size: 20px;
}

.footer-link {
  color: #9ca3af !important;
  text-decoration: none;
  font-size: 14px;
  line-height: 24px;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #fff !important;
}
.footer-link:hover .arrow-icon {
  opacity: 1;
  transform: translateX(3px);
}
.footer-link .arrow-icon {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    max-width: 100vw;
    padding: 0.5rem 0;
  }
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .navbar .navbar-brand img {
    max-width: 80px;
    height: auto;
  }
  .navbar .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
  }
  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar .navbar-collapse {
    background: #000;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
  }
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
  }
  .navbar .btn-login,
  .navbar .btn-create {
    width: 100%;
    margin: 0.5rem 0;
    margin-left: 0 !important;
  }
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .display-5 {
    font-size: 2rem;
  }
  .display-4 {
    font-size: 2.5rem;
  }
  .why-choose .col-lg-5 {
    margin-bottom: 2rem;
  }
  .why-choose .why-choose-item {
    width: 100%;
    margin-bottom: 1rem !important;
  }
  .why-choose .why-choose-item .d-flex {
    width: 100%;
  }
  .why-choose .why-choose-item .why-number {
    min-width: 50px;
    flex-shrink: 0;
  }
  .why-choose .why-choose-item .why-text {
    flex: 1;
    width: 100%;
  }
  .why-choose .why-choose-image {
    margin-top: 2rem;
  }
  .why-choose h2 {
    font-size: 1.75rem;
  }
  .why-choose h2 br {
    display: none;
  }
}

/* Timeline Steps for Project Developers Page */
.timeline-step {
  position: relative;
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-step .circle-outer {
  width: var(--outer-size, 50px);
  height: var(--outer-size, 50px);
  border-radius: 50%;
  background: var(--outer-bg-color, transparent);
  border: 3px solid var(--muted-color, #ccc);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.timeline-step .circle-inner {
  width: var(--inner-size, 30px);
  height: var(--inner-size, 30px);
  border-radius: 50%;
  background: var(--inner-bg-color, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-color, #000);
  transition: all 0.3s ease;
}
.timeline-step.completed .circle-inner {
  background: var(--accent-color, #b5f433);
  color: #fff;
}
.timeline-step::after {
  content: "";
  position: absolute;
  top: 17%;
  left: 50%;
  width: 110%;
  height: var(--line-thickness, 3px);
  background: var(--muted-color, #ccc);
  z-index: 1;
}
.timeline-step:last-child::after {
  display: none;
}
.timeline-step .label {
  margin-top: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
}
.after::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 97%;
  width: 6%;
  height: var(--line-thickness, 3px);
  background: var(--muted-color, #ccc);
  z-index: 1;
}
.after:last-child::after {
  display: none;
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 991px) {
  .navbar .navbar-collapse {
    background: #000;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
  }
  .navbar .btn-login,
  .navbar .btn-create {
    width: 100%;
    margin-left: 0 !important;
  }
  .navbar .btn-create {
    margin-top: 0.75rem;
  }
}

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