/* ================= Global Reset & Base ================= */
html,
body {
  font-family: "Poppins", sans-serif;
  scroll-snap-type: y mandatory !important;
  scroll-behavior: smooth !important;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  color: var(--black);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth !important;
}

hr {
  color: #e9efec;
  opacity: 1;
}

a {
  text-decoration: none !important;
  display: inline-block;
}

/* ================= Color Variables ================= */
:root {
  --green-dark: #16423c;
  --green-light: #1d574f;
  --green-outline: #004b44;
  --yellow: #87ab21;
  --white: #ffffff;
  --black: #060606;
  --gray-light: #4b4b4b;
  --gray-border: #e9efec;
}

/* ================= Helper Classes ================= */
.text-yellow {
  color: var(--yellow) !important;
}

.text-light-green {
  color: var(--green-light) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-gray {
  color: var(--gray-light) !important;
}

.text-black {
  color: var(--black) !important;
}

.text-green {
  color: var(--green-dark) !important;
}

.bg-green {
  background-color: var(--green-dark) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.border-green {
  border: 1px solid var(--green-dark) !important;
}

.border-yellow {
  border: 1px solid var(--yellow) !important;
}

.border-white {
  border: 1px solid var(--white) !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

/* Font size utilities (10px - 40px) */
.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}
@media (max-width: 480px) {
  .fs-16 {
    font-size: 0.85rem !important;
  }
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-29 {
  font-size: 29px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-31 {
  font-size: 31px !important;
}
@media (max-width: 480px) {
  .fs-31 {
    font-size: 24px !important;
  }
}

.fs-32 {
  font-size: 32px !important;
}

.fs-33 {
  font-size: 33px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-35 {
  font-size: 35px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-37 {
  font-size: 37px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-39 {
  font-size: 39px !important;
}

.fs-40 {
  font-size: 40px !important;
}

/* ================= Buttons ================= */
.btn {
  --bs-btn-font-size: 0.9rem;
}
@media (max-width: 480px) {
  .btn {
    --bs-btn-font-size: 0.7rem;
  }
}

.btn-green {
  border-radius: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--green-dark);
  padding: 8px 20px;
  margin-left: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .btn-green {
    padding: 8px 13px;
  }
}

.btn-green:hover {
  background: var(--green-light);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-green:focus,
.btn-green:active,
.btn-green.active,
.btn-green.show {
  outline: none;
  background: var(--green-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 0 0 0.2rem rgba(22, 66, 60, 0.3);
}

.btn-white {
  border-radius: 12px;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  padding: 8px 20px;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #f5f5f5;
  color: var(--black);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.show {
  outline: none;
  background: var(--white) !important;
  color: var(--black) !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.05);
}

.btn-custom-outline {
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-outline);
  background-color: transparent;
  padding: 8px 20px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .btn-custom-outline {
    font-size: 0.7rem;
    padding: 8px 13px;
  }
}

.btn-custom-outline:hover {
  border: 1px solid var(--gray-border);
  color: var(--green-outline);
}

/* ================= Navbar ================= */
.navbar {
  padding: 1rem 2rem;
}

.nav-link {
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .navbar-brand img {
    width: 10rem !important;
  }
}

.navbar-toggler {
  --bs-navbar-toggler-font-size: 1rem;
}

/* ================= Hero Section ================= */
.hero-section {
  background-image: url("../img/permium/Herosection.png");
  background-size: cover;
  padding: 6rem 0rem;
}
@media (max-width: 480px) {
  .hero-section {
    padding: 8rem 0rem;
    padding-bottom: 4rem;
  }
}

.hero-section h6 {
  color: var(--yellow);
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 480px) {
  .hero-section h6 {
    font-size: 15px;
  }
}

.hero-section h5 {
  color: var(--white);
  font-weight: 600;
  font-size: 31px;
}
@media (max-width: 480px) {
  .hero-section h5 {
    font-size: 19px;
  }
}

.hero-section p {
  color: var(--white);
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 480px) {
  .hero-section p {
    font-size: 13px;
  }
}

.profile-chip {
  position: absolute;
  top: 2rem;
  left: 5.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1200px) {
  .profile-chip {
    left: 3rem;
  }
}
@media (max-width: 480px) {
  .profile-chip {
    left: 6rem;
  }
}

.profile-chip img {
  border: 2px solid var(--yellow);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.profile-chip .chip-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--black);
}

.profile-chip .chip-role {
  font-size: 0.7rem;
  color: #4b4b4b;
}

article .w-50 {
  line-height: 1.5;
}
@media (max-width: 768px) {
  article .w-50 {
    width: 100% !important;
    font-size: 1.4rem;
  }
}
article .article-card {
  box-shadow: 1px 3px 18px 0px rgba(0, 0, 0, 0.0509803922),
    4px 0px 0px 0px #87ab21 inset;
  padding: 1.5rem;
  border-radius: 12px;
  background-color: var(--white);
  margin-top: 2rem;
}
article .article-card p {
  color: #4b4b4b;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  article .article-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  article .article-card p {
    font-size: 0.8rem;
  }
}
article .article-card .article-profile-chip {
  background: #fff;
  border-radius: 12px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
article .article-card .article-profile-chip img {
  border: 2px solid var(--yellow);
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
article .article-card .article-profile-chip .chip-role {
  font-size: 0.7rem;
  color: #4b4b4b;
}
article .article-card .article-profile-chip .chip-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--black);
}
article .article-card-2 {
  box-shadow: 1px 3px 18px 0px rgba(0, 0, 0, 0.0509803922),
    4px 0px 0px 0px #16423c inset;
}

/* employee-section  */
@media (max-width: 768px) {
  .employee-section .fs-20 {
    font-size: 18px !important;
  }
}
@media (max-width: 480px) {
  .employee-section .fs-20 {
    font-size: 17px !important;
  }
}
@media (max-width: 768px) {
  .employee-section p {
    font-size: 14px !important;
  }
}
@media (max-width: 480px) {
  .employee-section p {
    font-size: 13px !important;
  }
}
.employee-section .inner-green {
  background: #e9efec;
  padding: 4rem 0 0 0;
  height: 25rem;
}
@media (max-width: 768px) {
  .employee-section .inner-green {
    height: 13rem;
  }
}
.employee-section .employee-section-body {
  padding: 5.5rem 2rem;
  padding-bottom: 0;
  position: absolute;
  bottom: -18rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .employee-section .employee-section-body {
    padding: 5rem 2rem;
    bottom: -22rem;
  }
}
@media (max-width: 768px) {
  .employee-section .employee-section-body {
    padding: 3rem 1rem;
    position: relative;
    bottom: 0;
  }
}
.employee-section .employee-section-body .employe-card {
  padding: 2rem 1.8rem;
  background-color: var(--white);
  border: 1px solid #c4dad2;
  border-radius: 1.1rem;
  height: 100%;
}
@media (max-width: 768px) {
  .employee-section .employee-section-body .employe-card .icon-img {
    height: 4rem !important;
  }
}
@media (max-width: 480px) {
  .employee-section .employee-section-body .employe-card .icon-img {
    height: 3rem !important;
  }
}

/* subscription-feature section  */
.subscription-feature {
  margin-top: 19.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .subscription-feature {
    margin-top: 0.4rem;
  }
}
.subscription-feature .features_list {
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .subscription-feature .features_list {
    overflow-x: auto;
  }
}
@media (max-width: 768px) {
  .subscription-feature .features_list .scrollable-content {
    min-width: 600px;
  }
}
@media (max-width: 768px) {
  .subscription-feature .features_list .col-3,
  .subscription-feature .features_list .col-4,
  .subscription-feature .features_list .col-2 {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .subscription-feature .features_list .col-3,
  .subscription-feature .features_list .col-4,
  .subscription-feature .features_list .col-2 {
    font-size: 13px;
  }
}
.subscription-feature em {
  color: var(--green-dark);
  font-weight: 500;
  font-size: 1rem;
}
@media (max-width: 480px) {
  .subscription-feature em {
    font-size: 14px !important;
  }
}
@media (max-width: 480px) {
  .subscription-feature .fs-20 {
    font-size: 18px !important;
  }
}

/* footer hero  */
.footer-hero-section {
  background: var(--green-dark);
  padding: 4rem 0rem;
}

.footer-hero-section h5 {
  color: var(--white);
  font-weight: 600;
  font-size: 50px;
}
@media (max-width: 1200px) {
  .footer-hero-section h5 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .footer-hero-section h5 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .footer-hero-section h5 {
    font-size: 20px;
  }
}

.footer-hero-section p {
  color: #e9efec;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 480px) {
  .footer-hero-section p {
    font-size: 14px;
  }
}

/* freelancer-section  */
.freelancer-section .inner-dark-green {
  background: #16423c;
  padding: 4rem 0 0 0;
  height: 22rem;
}
@media (max-width: 768px) {
  .freelancer-section .inner-dark-green {
    height: 15rem;
  }
}
.freelancer-section .freelancer-section-body {
  padding: 5.5rem 2rem;
  padding-bottom: 0;
  position: absolute;
  bottom: -13rem;
  width: 100%;
}
@media (max-width: 1200px) {
  .freelancer-section .freelancer-section-body {
    padding: 5rem 2rem;
    bottom: -22rem;
  }
}
@media (max-width: 768px) {
  .freelancer-section .freelancer-section-body {
    padding: 3rem 1rem;
    position: relative;
    bottom: 0;
  }
}
.freelancer-section .freelancer-section-body .freelancer-card {
  padding: 2rem 1.8rem;
  background-color: var(--white);
  border: 1px solid #c4dad2;
  border-radius: 1.1rem;
  height: 100%;
}
@media (max-width: 768px) {
  .freelancer-section .freelancer-section-body .freelancer-card .icon-img {
    height: 4rem !important;
  }
}
@media (max-width: 480px) {
  .freelancer-section .freelancer-section-body .freelancer-card .icon-img {
    height: 3rem !important;
  }
}
@media (max-width: 768px) {
  .freelancer-section .freelancer-section-body .freelancer-card h3 {
    font-size: 18px !important;
  }
}
@media (max-width: 480px) {
  .freelancer-section .freelancer-section-body .freelancer-card h3 {
    font-size: 17px !important;
  }
}
@media (max-width: 768px) {
  .freelancer-section .freelancer-section-body .freelancer-card p {
    font-size: 14px !important;
  }
}
@media (max-width: 480px) {
  .freelancer-section .freelancer-section-body .freelancer-card p {
    font-size: 13px !important;
  }
}

.subscriber_plan {
  /* overflow-x: auto; */
}
.subscriber_plan .sb-col {
  flex: 1;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .subscriber_plan .sb-col {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .subscriber_plan .sb-col {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .subscriber_plan .col-3 {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .subscriber_plan .col-3 {
    font-size: 12px;
  }
}

/* footer  */
footer h6 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
footer .list-unstyled li {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--white);
  padding-bottom: 1rem;
}
@media (max-width: 480px) {
  footer .list-unstyled li {
    font-size: 0.8rem !important;
  }
}
footer .social-icon img {
  width: 11rem;
}
footer form {
  width: 100%;
  border: 1px solid #c4dad2;
  background: #6a9c89;
  border-radius: 18px;
}
footer form input {
  width: 90%;
  border: none;
  outline: none;
  background: #6a9c89;
  border-radius: 18px;
  padding: 10px 12px;
  color: #c4dad2;
  caret-color: #c2e8d9;
}
footer form input::-moz-placeholder {
  color: #c4dad2;
}
footer form input::placeholder {
  color: #c4dad2;
}
@media (max-width: 480px) {
  footer form input {
    padding: 8px 12px;
  }
}
footer form button {
  background-color: var(--green-dark);
  border-radius: 50%;
  color: white;
  padding: 5px 15px;
  border: none;
  outline: none;
}
@media (max-width: 480px) {
  footer form button {
    padding: 4px 10px;
    font-size: 0.7rem !important;
  }
}
@media (max-width: 768px) {
  footer .bottom_footer {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  footer .bottom_footer img {
    height: 1.4rem !important;
  }
}

@media (max-width: 480px) {
  h2,
  h3 {
    font-size: medium;
  }
} /*# sourceMappingURL=style.css.map */
