@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
  --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "DM Sans", sans-serif;
  --nav-font: "DM Sans", sans-serif;
}

:root {
  --background-color: #01122d;
  --default-color: #000000;
  --heading-color: #ffffff;
  --accent-color: #00C444;
  --surface-color: #C7FF2E;
  --contrast-color: #DEF2A6;
  --border-color: #C7FF2E;
  --default-border-color: #74F2A0;
  --btn-outline-color: #FFFFFF;
  --btn-color: #FFFFFF;
  --color-section-box: #FFFFDB;
  --color-bordersection-box: #F0F0A8;
  --color-section-box-ms: #E7DBFF;
  --color-bordersection-box-ms: #C6AEF7;
  --color-section-box-uc: #FFEDDB;
  --color-bordersection-box-uc: #FAD4AD;
  --color-section-box-spt: #DBF1FF;
  --color-bordersection-box-spt: #B0DDFA;
  --nav-dropdown-hover-color: #3EF706;
  --letter-spacing: 0.1rem;
  --font-section-title: #ffffff;
  --border-arrow-color: #95c708;
  --border-cricle-color: #eff2e7;
  --footer-color: #010226;
  --border-form-color: #E8E8E8;
}

.light-background {
  --background-color: #fff;
  --btn-color: #C4DD08;
  --font-section-title: #000;

}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--default-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--default-font);
}

.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  min-height: 100%;
  margin-right: 8px;
  width: auto;
  height: 38px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 575.98px) {
  .align-mobile {
    display: block !important;
  }

  .hero .container {
    width: 100% !important;
  }

  .hero .btn-get-started {
    margin-bottom: 1rem;
  }

   /*.hero p {
    margin: 0 !important;
    font-size: 10px !important;
  }

 .hero h1 {
    font-size: 18px !important;
    margin-bottom: 1rem !important;
  }*/
  .about p{
    margin-left: 0 !important;
    padding-right: 0 !important;
  }
  .footer-title p {

  width: 100% !important;
 
}
.form-box{
  width: 100% !important;
}
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.85);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 18px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: capitalize;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color) 90%, white 15%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 60%;
}

.hero h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: var(--letter-spacing);
}

.hero p {
  color: color-mix(in srgb, var(--heading-color), transparent 0%);
  margin: 10px 0 0 0;
  font-size: 16px;
  text-align: center;
  letter-spacing: var(--letter-spacing);
  margin: 1rem 5rem;
}

.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--heading-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: capitalize;
  border-radius: 5rem;
  border: 1px solid var(--default-border-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--btn-color);

  border: 1px solid var(--heading-color);
  border-radius: 5rem;
  padding: 10px 30px;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

.section-balck {
  background-color: var(--btn-color);
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

.section-title {
  padding-bottom: 0;
  position: relative;
}

.section-title::before {
  content: "";
  border-left: 1px solid var(--btn-color);
  height: 100px;
  padding-left: 1rem;
  position: absolute;
}

.section-title h6 {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin-top: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--font-section-title), transparent 10%);
  position: relative;
  margin-left: 1.5rem;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 400;
  padding: 0;
  margin-top: 1rem;
  color: var(--font-section-title);
  text-transform: capitalize;
  line-height: 1.3;
  margin-left: 1.5rem;
}

.section-title p {
  padding-right: 5rem;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--font-section-title);
  line-height: 2.1;
  margin-left: 1.5rem;
}

.about {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../images/about/bg_about.svg);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position-x: -6%;
}

.line_box {
  width: 100%;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 0px;
  position: absolute;
}

.line_box_color {
  background: rgb(255, 255, 255);
  width: 5px;
  height: 160px;
  position: absolute;
  border-radius: 1rem;
  left: -0.3%;
  top: 7%;
}

.about p {
  padding-right: 5rem;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--font-section-title);
  line-height: 2.1;
  margin-left: 1.5rem;
}

.about-mission img {
  width: 50px;
  height: 50px;
  margin-left: 1.5rem;
  margin-top: .7rem;
}

.about-mission p {
  padding-right: 0;
  margin-left: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--font-section-title);
  line-height: 2.1;
  margin-left: 1.5rem;
  margin-top: .7rem;
}

.about-mission h4 {
  font-size: 18px;
  font-family: var(--default-font);
  color: var(--font-section-title);
  padding-right: 5rem;
  margin-left: 1.5rem;
  margin-top: .7rem;


}

.light-background .section-title {
  padding-bottom: 0;
  position: relative;
}

.light-background .section-title::before {
  content: "";
  border-left: 1px solid var(--btn-color);
  height: 100px;
  padding-left: 1rem;
  position: absolute;
}

.light-background .section-title h6 {
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  line-height: 1.5;
  margin-top: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--font-section-title), transparent 10%);
  position: relative;
  margin-left: 1.5rem;
}

.light-background .section-title h2 {
  font-size: 34px;
  font-weight: 400;
  padding: 0;
  margin-top: 1rem;
  color: var(--font-section-title);
  text-transform: capitalize;
  line-height: 1.3;
  margin-left: 1.5rem;
}

.light-background .section-title p {
  padding-right: 5rem;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--font-section-title);
  line-height: 2.1;
  margin-left: 1.5rem;
}

.light-background .line_box_color {
  background: #C4DD08;
  ;
  width: 5px;
  height: 130px;
  position: absolute;
  border-radius: 1rem;
  left: -0.3%;
  top: 7%;
}

.light-background h3 {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 400;
  margin-top: 4rem;
}

.light-background p {
  color: var(--default-color);
  font-size: 12px;
  font-weight: 400;
}

.card-box {
  background: var(--color-section-box);
  border: 1px solid var(--color-bordersection-box);
  border-radius: 0 2.5rem 0 2.5rem;
  padding: 2.5rem;
}

.card-box-ms {
  background: var(--color-section-box-ms);
  border: 1px solid var(--color-bordersection-box-ms);
  border-radius: 2.5rem 0 2.5rem 0;
  padding: 2.5rem;
}

.card-box-uc {
  background: var(--color-section-box-uc);
  border: 1px solid var(--color-bordersection-box-uc);
  border-radius: 2.5rem 0 2.5rem 0;
  padding: 2.5rem;
}

.card-box-spt {
  background: var(--color-section-box-spt);
  border: 1px solid var(--color-bordersection-box-spt);
  border-radius: 0 2.5rem 0 2.5rem;
  padding: 2.5rem;
}

.i-box {
  width: 50px;
  height: 50px;
  background: var(--default-color);
  border-radius: 50px;
  padding: 1rem;
  text-align: center !important;
  position: relative;

}

.i-box-col {
  position: absolute;
  width: 35px;
  height: 35px;
  left: 15%;
  right: 0;
  top: 15%;
  bottom: 0;
}

.bg-img-col {
  background-image: url(../images/about/wc_img.svg);
  background-repeat: no-repeat;
  background-size: 55%;
  background-position: right 20%;
}

.products {
  margin-top: 30px;
  margin-bottom: 30px;
}

.products-title {
  color: var(--default-color);
  font-family: var(--default-font);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.products-title h3 {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.products-title h2 {
  color: var(--default-color);
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.demo-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--contrast-color);
  /* light green */
  border: 2px solid var(--surface-color);
  /* border highlight */
  color: #000;
  font-size: 16px;
  font-weight: 400;
  padding: .5rem .9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s ease;
  width: 220px;
  margin: 0 auto;
  height: 48px;
}

.demo-btn .arrow {
  background: var(--border-arrow-color);
  border: 2px solid var(--border-cricle-color);
  color: var(--contrast-color);
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.demo-btn:hover {
  background-color: #d9f2b6;
}

.products-card {

  background: #d9ff5b;
  border-radius: 15px;
  padding: 2rem;
  font-family: Arial, sans-serif;
  position: relative;
  color: #000;
  margin: 0 auto;
  height: 100%;
}


.products-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 8px 0;
  font-family: var(--default-font);
  color: var(--default-color);
}

.products-card p {
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 500;
}

.products-card-image {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0px 0px, 100% 0px, 100.30% 48.11%, 53.74% 100%, 0px 100%);
  border: 10px solid #fff;
  border-radius: 40px;
}

.products-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.products-card-number {
  position: absolute;
  bottom: 35px;
  right: 20px;
  font-size: 50px;
  font-weight: 900;
}

.impact-section {
  background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)), url(../images/about/line-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0 40%;
}



.impact-item .icon {
  font-size: 24px;
  border: 2px solid #3F3939;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.impact-item-p {
  font-size: 18px;
  font-family: var(--default-font);
  font-weight: 600;
  line-height: 1.5;
}

.impact-item-num {
  font-size: 34px;
  font-family: var(--default-font);
  font-weight: 700;
}

.impact-section h2 {
  font-size: 34px;
  font-weight: 400;
  padding: 0;
  margin-top: 1.5rem;
  color: var(--font-section-title);
  text-transform: capitalize;
  line-height: 1.4;
  margin-right: 15%;
}

.impact-section h6 {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin-bottom: 1rem;

  text-transform: uppercase;
  color: color-mix(in srgb, var(--font-section-title), transparent 10%);
  position: relative;

}

.impact-line {
  border: 1px solid var(--heading-color);
  height: 80px;
  top: 90%;
  bottom: 0;
  left: 7%;
  border-radius: 5%;

}

.line-margin-bottom {
  margin-bottom: 12%;
}

.line-margin-bottom-one {
  margin-bottom: 12%;
}

.impact-line-one {
  border: 1px solid var(--heading-color);
  height: 80px;
  top: 90%;
  bottom: 0;
  left: 7%;
  border-radius: 5%;
}

.career-section {
  text-align: center;
  padding: 60px 20px;
}

.career-btn {
  background: #596261;
  border: none;
  border-radius: 50px;
  padding: 10px 10px 10px 15px;
  font-weight: 400;
  transition: 0.3s;
  color: var(--btn-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border: 1px solid #596261;
}

.career-btn .arrow {
  background: var(--border-cricle-color);
  border: 2px solid var(--border-cricle-color);
  color: var(--default-color);
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.career-btn:hover {
  background: #03c2b0;
  border: 1px solid #03c2b0;
  color: #000;
}

.job-card {
  border-radius: .4rem;
  overflow: hidden;
  transition: transform 0.3s;
  padding: .8rem;
  background: #033;
  border-bottom: 4px solid #AEB7B5;
}

.job-card-cop {
  color: #fff;
  transform: rotateZ(90deg);
  right: -10%;
  top: 30%;
}



.job-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.job-card-body {
  background: #003333;
  color: #fff;
  padding: .9rem 0 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-arrow {
  margin: 0;
}

.job-category {
  font-size: 14px;
  opacity: 0.8;
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
}

.job-title {
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

.carousel-btns {
  text-align: center;
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.button-prev {
  margin: 0 5px;
  border-radius: 20px;
  padding: 8px 16px;
  border: 1px solid #000;
  background: transparent;
}

.button-next {
  margin: 0 5px;
  border-radius: 20px;
  padding: 8px 16px;
  border: 1px solid #000;
  background: transparent;
}

.joinus {
  background-color: var(--border-cricle-color);
}

.joinus-bg {
  background: #02EFC0;
  background: linear-gradient(90deg, rgba(2, 239, 192, 1) 0%, rgba(3, 183, 172, 1) 100%);
  padding: 60px 0 150px 0;
  text-align: center;

}

.joinus-bg h6 {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--default-color);
}

.joinus-bg h2 {
  font-family: var(--default-font);
  font-size: 34px;
  font-weight: 500;
  color: var(--default-color);
  line-height: 1.5;
}

.mt-7 {
  margin-top: -7rem;
}

.mb-05 {
  margin-bottom: 2rem;
}

.apply-now {
  font-size: 12px;
  font-family: var(--heading-font);
  color: var(--default-color);
}

.apply-now a {
  color: var(--default-color);
  text-decoration: underline;
  font-weight: 500;

}

.mb-60 {
  padding-bottom: 60px;
}

footer {
  background-color: var(--footer-color);
  padding: 40px 0 0;
}

.footer-title {
  color: var(--heading-color);
  position: relative;
  font-family: var(--heading-font);
}

.footer-text {
  font-size: 16px;
  font-weight: 400;
  padding: 12px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-title h6 {
  font-size: 34px;
  text-transform: capitalize;
  line-height: 1.5;
  font-weight: 400;
}

.footer-title p {
  font-weight: 300;
  font-size: 14px;
  width: 65%;
  line-height: 1.6;
}

.footer-address {
  color: var(--btn-color);
  font-size: 12px;
  margin-bottom: .5rem;
}

.footer-address-text {
  font-size: 14px;
  text-decoration: underline;
  margin-bottom: .5rem;
}

.footer-text .line {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.form-box {
  background: #ED4D4D;
  background: -webkit-linear-gradient(180deg, rgba(237, 77, 77, 0.10) 0%, rgba(1, 2, 38, 1) 100%);
  background: -moz-linear-gradient(180deg, rgba(237, 77, 77, 0.10) 0%, rgba(1, 2, 38, 1) 100%);
  background: linear-gradient(180deg, rgba(237, 77, 77, 0.10) 0%, rgba(1, 2, 38, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ED4D4D", endColorstr="#010226", GradientType=0);
  padding: 0 1rem;
  width: 65%;
  margin: 0 auto;
}

.form-text-h2 {
  font-size: 24px;
  font-family: var(--heading-font);
  color: var(--btn-color);
  padding-top: 40px;
  font-weight: 400;
}

.form-box .form-control {
  background-color: color-mix(in srgb, var(--border-form-color), transparent 90%);
  border: var(--bs-border-width) solid color-mix(in srgb, var(--border-form-color), transparent 80%);
}

.input-height {
  height: 48px;
}

.modal-content {
  background-color: var(--background-color);
  border: var(--bs-border-width) solid color-mix(in srgb, var(--border-form-color), transparent 80%);
  width: 90%;
}

.applymodal .form-control {
  background-color: color-mix(in srgb, var(--border-form-color), transparent 90%);
  border: var(--bs-border-width) solid color-mix(in srgb, var(--border-form-color), transparent 80%);
  color: #fff;
}

.applymodal select.form-control option {
  color: black;
  /* default option text */
  background-color: white;
}

.applymodal select.form-control option:checked {
  color: white;
  background-color: #007bff;
  /* or any highlight color */
}

.applymodal select.form-control optgroup {
  font-weight: bold;
  /* make labels bold */
  color: #555;
  /* optgroup label text color */
  background-color: #f2f2f2;
  /* light gray background */
}

.form-box .form-control {
  color: #fff;
}

.applymodal .modal-header {
  border: none;
}

.btn-close {
  font-size: 24px;
}

.modal-footer {
  border: none;
}

.form-box .form-control::placeholder {
  color: #FFFFFF26;
  opacity: 1;
  font-family: var(--heading-font);
  font-size: 12px;
}

.form-control::placeholder {
  color: var(--btn-color);
  opacity: 1;
}

.submit-contact-btn {
  background: var(--btn-color);
  border: none;
  border-radius: 50px;
  padding: 10px 10px 10px 15px;
  font-weight: 400;
  transition: 0.3s;
  color: var(--btn-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  border: 1px solid #596261;
  color: var(--background-color);
  height: 48px;
}

.submit-contact-btn .arrow {
  background: var(--background-color);
  border: 2px solid var(--border-cricle-color);
  color: var(--btn-color);
  font-size: 24px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4rem;
}

.applyn-now-btn {
  background-color: transparent;
  border: 1px solid var(--btn-color);
  border-radius: 50px;
  padding: 10px;
  font-weight: 400;
  transition: 0.3s;
  color: var(--btn-color);
  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid #596261;
  color: var(--btn-color);
}

.applyn-now-btn .arrow {

  border: 1px solid var(--btn-color);
  color: var(--btn-color);
  font-size: 24px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.footer-Copyright {
  border-top: 1px solid #FFFFFF2B;
  margin-bottom: 1rem;

}

.footer-Copyright p {
  color: var(--btn-color);
  font-size: 12px;
  color: var(--btn-color);
  font-size: 12px;
  margin-top: 1rem;
  margin-bottom: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--btn-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--btn-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
  margin-top: 1rem;
}

.social-links p {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1rem;
}

.social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}