@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap");

:root {
  --primary-color: #fd7d1a;
  --primary-color-dark: #ea580c;
  --text-dark: #000000;
  --text-light: #9ea4a5;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Orbitron", sans-serif;
  --gradient-1: linear-gradient(
    to right,
    var(--primary-color),
    var(--primary-color-dark),
    var(--primary-color)
  );
  --gradient-2: linear-gradient(to right bottom, #1e272a, #000000);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}
.abt-p
{
  padding-top: 15px;
}

.section__header {
  margin-bottom: 1rem;
  font-family: var(--header-font);
  font-weight: 600;
  font-size: 3rem;
  text-align: center;
  color: var(--white);
}

.section__header span {
  color: var(--primary-color-dark);
}


.section__header1 {
  margin-bottom: 1rem;
  font-family: var(--header-font);
  font-weight: 600;
  font-size: 2.5rem;
  text-align: left;
  color: var(--white);
}

.section__header1 span {
  color: var(--primary-color-dark);
}


.section__description {
  font-size: 1.05rem;
  line-height: 1.5rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0;
}

.section__description1 {
  font-size: 1.1rem;
  line-height: 2rem;
  color: var(--text-light);
  text-align: center;
}

.gradient__box {
  position: relative;
  background-color: var(--text-dark);
  background-clip: padding-box;
  border: 2px solid transparent;
  border-radius: 1rem;
}

.gradient__box::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(
    to right,
    var(--text-light),
    var(--text-dark),
    var(--text-light)
  );
}


.gradient__box1 {
  position: relative;
  background-color: var(--text-dark);
  background-clip: padding-box;
  border: 3px solid transparent;
  border-radius: 1rem;
}

.gradient__box1::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(
    to right,
    var(--text-light),
    var(--text-dark),
    var(--text-light)
  );
}
.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}
.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--primary-color-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans", sans-serif;
  background-color: var(--text-dark);
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--text-dark);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  font-weight: 700;
  background-color: var(--text-dark);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
  margin-top: 10px;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.nav__links a:hover {
  color: var(--primary-color-dark);
}

.nav__btns {
  display: none;
  margin-top: -10px;
}

.header__container {
  display: grid;
  gap: 4rem 2rem;
  margin-top: 5px;
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 3.8rem;
  font-weight: 600;
  font-family: var(--header-font);
  line-height: 5rem;
  color: var(--white);
  text-align: center;
}

.header__content h1 span {
  color: var(--primary-color-dark);
}

.header__content .section__description {
  margin-bottom: 2rem;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.header__btns .btn {
  font-weight: 600;
  color: var(--text-dark);
  background-color: var(--primary-color-dark);
}

.header__btns a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
}

.header__btns a span {
  padding: 5px 10px;
  font-size: 1.5rem;
  color: var(--text-light);
  background-image: var(--gradient-2);
  box-shadow: -1px -1px 4px rgba(255, 255, 255, 0.5);
  border-radius: 100%;
}

.header__btns a:hover {
  color: var(--white);
}

.header__image {
  position: relative;
  isolation: isolate;
}

.header__image::before {
  position: absolute;
  content: "";
  height: 95%;
  width: 100vw;
  left: 0;
  bottom: 0;
  clip-path: polygon(10rem 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--primary-color-dark);
  z-index: -1;
}

.header__image img {
  max-width: 550px;
  margin-inline: auto;
}

.discover__container .section__header {
  margin-bottom: 2rem;
  max-width: 550px;
  margin-inline: auto;
}

.discover__grid {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  background-image: var(--gradient-2);
}

.discover__card {
  padding: 2rem 1rem;
  display: grid;
  place-content: center;
  border-radius: 1rem;
  transition: 0.3s;
  cursor: pointer;
}

.discover__card:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3rem);
}

.discover__card span {
  display: inline-block;
  max-width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  padding: 5px 12px;
  text-align: center;
  font-size: 2.5rem;
  color: var(--text-dark);
  background-color: ;
  border-radius: 1rem;
}

.discover__card:hover span {
  color: var(--primary-color-dark);
  background-color: var(--text-dark);
}

.discover__card h4 {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 700;
}

.discover__card:hover h4 {
  color: var(--text-dark);
  font-weight: 700;
}

.commitment__container {
  display: grid;
  gap: 2rem;
}

.commitment__image {
  position: relative;
  isolation: isolate;
}


.commitment__image::before {
  position: absolute;
  content: "";
  height: calc(100% - 2rem);
  width: 100vw;
  right: 0;
  bottom: 0;
  clip-path: polygon(0 0, calc(100% - 10rem) 0%, 100% 100%, 0% 100%);
  background-color: var(--primary-color-dark);
  z-index: -1;
}

.commitment__image img {
  max-width: 500px;
  margin-inline: auto;
}

.commitment__list {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
}

.commitment__list li > div {
  padding: .5rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  gap: 1rem;
  color: var(--text-light);
  background-image: var(--gradient-2);
}

.commitment__list li > div:hover {
  color: var(--text-dark);
  background-image: var(--gradient-1);
}

.commitment__list li span {
  display: inline-block;
  padding: 2px 6px;
  font-size: 1.5rem;
  color: var(--text-dark);
  background-color: var(--primary-color-dark);
  border-radius: 5px;
  transition: 0.3s;
}

.commitment__list li > div:hover span {
  color: var(--primary-color-dark);
  background-color: var(--text-dark);
}

.build__container {
  display: grid;
  gap: 2rem;
  margin-top: -80px;
}

.build__image {
  position: relative;
  isolation: isolate;
}

.build__image::before {
  position: absolute;
  content: "";
  height: calc(100% - 2rem);
  width: 100vw;
  left: 0;
  bottom: 0;
  clip-path: polygon(10rem 0, 100% 0, 100% 100%, 0 100%);
  background-color: var(--primary-color-dark);
  z-index: -1;
}

.build__image img {
  max-width: 550px;
  margin-inline: auto;
}

.build__grid {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.build__card {
  padding: 2rem 1rem;
  text-align: center;
  background-image: var(--gradient-2);
}

.build__card:hover {
  background-image: var(--gradient-1);
}


.build__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 10px;
  font-size: 2rem;
  background-color: var(--primary-color-dark);
  border-radius: 1rem;
  transition: 0.3s;
}

.build__card:hover span {
  color: var(--primary-color-dark);
  background-color: var(--text-dark);
}

.build__card h4 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2rem;
  color: var(--text-light);
  transition: 0.3s;
}

.build__card:hover h4 {
  color: var(--text-dark);
}
.build__card p {
  font-size:14px; 
  margin-bottom: -15px;
  color: #7f7f7f;
}
.build__card:hover p {
  color: var(--text-dark);
}
.client__container {
  display: grid;
  gap: 2rem;
}

.client__image {
  background-image: var(--gradient-2);
}

.client__image img {
  max-width: 480px;
  margin-inline: auto;
}

.client__content {
  overflow: hidden;
}

.swiper {
  margin-top: 2rem;
  padding-bottom: 3rem;
  width: 100%;
}

.client__card {
  padding: 2rem;
  background-image: var(--gradient-2);
}

.client__card p {
  margin-bottom: 1rem;
  line-height: 1.75rem;
  color: var(--text-light);
}

.client__card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color-dark);
}

.client__card h5 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.swiper-slide {
  color: var(--white);
}

.swiper-pagination-bullet {
  background-color: var(--text-light);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color-dark);
}

.getstarted__container {
  padding-block: 4rem;
  text-align: center;
  background-image: var(--gradient-1);
  border-radius: 1.5rem;
  border: 2px solid var(--white);
}

.getstarted__container .section__header {
  font-weight: 700;
  color: var(--text-dark);
}

.getstarted__container .section__description {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.getstarted__container .btn {
  color: var(--white);
  background-color: var(--text-dark);
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  color: var(--primary-color-dark);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: inherit;
  text-align: center;
  gap: 1rem;
}

.footer__links a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color-dark);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  border-top: 1px solid var(--text-light);
}

@media (width > 540px) {
  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .build__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .nav__btns {
    display: flex;
    flex: 1;
  }

  .nav__btns .btn {
    color: var(--primary-color-dark);
    background-color: var(--text-dark);
    border: 2px solid var(--primary-color-dark);
  }

  .header__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }

  .discover__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .discover__card {
    padding: 4rem 1rem;
  }

  .commitment__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
   .commitment__container_feature {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
  .commitment__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .commitment__content .section__header {
    max-width: 500px;
  }

  .build__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .build__image {
    grid-area: 1/2/2/3;
  }

  .build__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .build__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .client__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .footer__container {
    flex-direction: row;
  }

  .footer__links {
    gap: 2rem;
  }
}

/* 
---------------------------------------------
Trending Style
--------------------------------------------- 
*/

.proj
{
  margin-left: 20px;
  margin-top: -100px;
}
.trending .main-button {
  margin-top: 32px;
  text-align: right;
}

.trending .item  {
  background-color: #000;
  position: relative;
  overflow: hidden;
/*  border: 1px solid #FF691F;*/
  /*box-shadow: 0px 2px 8px 0px rgba(224, 75, 82, 0.5), 0px 4px 16px 0px rgba(224, 75, 82, 0.5);*/
  border-radius: 25px;
  margin-bottom: 30px;
}

.trending .item h4{
  color: #fff;
}

.trending .item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid #fff;
  max-width: 1000px;
}

.trending .item span.price em {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-decoration: line-through;
  display: block;
}

.trending .item span.price {
  text-align: right;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 10px;
  background-color: #008af8;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 8px 15px 6px 15px;
}

.trending .item .down-content {
  padding: 25px;
  background: #191919;
  border-radius: 0 0 30px 30px;
  margin-top: -20px;
  border: 2px solid #fff;
}

.trending .item .down-content span.category {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 5px;
  display: inline-block;
}

.trending .item .down-content h4 {
  font-size: 17px;
  font-weight: 600;
  transition: all .3s;
}

.trending .item .down-content a {
  position: absolute;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  right: 25px;
  bottom: 25px;
  transition: all .3s;
}
.trending .item .down-content i
{
  color: #ea580c;
}
.trending .item:hover .down-content i
{
  color: #fff;
}
.trending .item:hover .down-content h4 {
  color: #ea580c;
}

.trending .item:hover .down-content a {
  background-color: #ea580c;
}





/* 
---------------------------------------------
Categories Style
--------------------------------------------- 
*/

.categories .main-button {
  margin-top: 30px;
}

.categories .item  {
  background-color: #0071f8;
  position: relative;
  border-radius: 25px;
  text-align: center;
  margin-bottom: 30px;
}

.categories .item .thumb {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
}

.categories .item h4 {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  padding: 22px;
  margin-bottom: 0px;
}


.card3d {
    /*width: 100%;
    height: 450px;*/ /* Increased height */
    perspective: 1000px;
    border-radius: 15px;
    cursor: pointer;
/*    animation: float 6s ease-in-out infinite;*/
}

.card3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.card3d-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 3D Hover Effect */
.card3d:hover .card3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 
        -20px 20px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.1);
}

/* Smooth reset when not hovering */
.card3d-inner {
    transform: rotateY(0) rotateX(0);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Optional: Add floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #171717;
  padding: 0 0 30px 0;
  color: #212529;
  font-size: 14px;
  background: #000;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #191919;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 4px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #eb5d1e;
  color: #fff;
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #c54811;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #191919;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #e8e8e8;
  margin-top: 10px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #ea580c;
  position: relative;
  padding-bottom: 12px;
  font-family: Orbitron, sans-serif;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ea580c;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #e8e8e8;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #eb5d1e;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ea580c;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #191919;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  color: #e8e8e8;
  margin-bottom: -20px;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #e8e8e8;
}

#footer .credits a {
  color: #ea580c;
}
.foot-logo{
  width:220px;
  margin-left: -20px;
  margin-top: -11px;"
}

@media (max-width: 575px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
  .foot-logo{
    width: 300px;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact
{
    background-color: #000 !important;
        --bs-bg-opacity: 1;
        margin-top: -50px;
}
.contact .info-box {
  color: #fff;
  text-align: center;
  /* box-shadow: 0 0 30px rgba(214, 215, 216, 0.6); */
  padding: 20px 0 30px 0;
  background:  #171717;
}

.contact .info-box i {
  font-size: 32px;
  color: #ea580c;
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #ea580c;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}



@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.feature__container {
  display: grid;
  gap: 2rem;
}

.feature__content p {
  padding-block: .5rem 1rem;
  color: var(--text-light);
}

.feature__grid {
  display: grid;
  gap: 1rem;
}

.feature__card {
  padding: .5rem;
  border: 2px solid var(--extra-light);
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.feature__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.feature__card span {
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  transition: 0.3s;
}

.feature__card:hover span {
  color: var(--primary-color);
}

.feature__card h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature__card p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 0px;
}


.feature__container {
    grid-template-columns: repeat(2, 1fr);
  }

@media (width > 540px) {
  .feature__grid {
    grid-template-columns: repeat(2, 1fr);
  }

@media (width > 1024px) {
  .feature__card {
    padding: 1.5rem;
  }

  .product__list {
    gap: 2rem;
  }
}

.commitment__container_feature {
  display: grid;
  gap: 2rem;
}

.commitment__image_feature {
  position: relative;
  isolation: isolate;
}


.commitment__image_feature::before {
  position: absolute;
  content: "";
  height: calc(100% - 2rem);
  width: 100vw;
  right: 0;
  bottom: 0;
  clip-path: polygon(0 0, calc(100% - 10rem) 0%, 100% 100%, 0% 100%);
  background-color: var(--primary-color-dark);
  z-index: -1;
}

.commitment__image_feature img {
  max-width: 500px;
  margin-inline: auto;
}

.prj-h4
{
  
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 1rem;
  color: #fff;
}

.category-prj
{
   font-size: 18px;
  color: var(--primary-color-dark);
  margin-top: 10px;
  margin-bottom: 5px;
  display: inline-block;
}

@media (width > 540px) {
  .prj-h4
{
  
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 1rem;
  color: #fff;
}

.category-prj
{
   font-size: 14px;
  color: var(--primary-color-dark);
  margin-top: 10px;
  margin-bottom: 5px;
  display: inline-block;
}

@media (width > 768px) {
  .prj-h4
{
  
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 1rem;
  color: #fff;
}

.category-prj
{
   font-size: 14px;
  color: var(--primary-color-dark);
  margin-top: 10px;
  margin-bottom: 5px;
  display: inline-block;
}

}

@media (width > 1024px) {
  .prj-h4
{
  
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 1rem;
  color: #fff;
}

.category-prj
{
   font-size: 18px;
  color: var(--primary-color-dark);
  margin-top: 10px;
  margin-bottom: 5px;
  display: inline-block;
}
}
@media (width > 300px){
  .prj-h4
{
  
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  gap: 1rem;
}

.category-prj
{
   font-size: 18px;
  margin-top: 20px;
  margin-bottom: 5px;
  display: inline-block;
}
}

.py-6
{padding-top:4rem !important;padding-bottom:4rem !important}
.py-7{padding-top:6rem !important;padding-bottom:6rem !important}
.pb-6{padding-bottom:4rem !important}.pb-7{padding-bottom:6rem !important}
.pt-7{padding-top:6rem !important}