@font-face {
  font-family: 'Cormorant';
  src: url('assets/fonts/Cormorant-VariableFont_wght.ttf') format('truetype');
}

@font-face {
  font-family: 'NotoSans';
  src: url('assets/fonts/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
}

@font-face {
  font-family: 'Lora';
  src: url('assets/fonts/Lora-Bold.ttf') format('truetype');
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --white: white;
  --black: black;
  --gray: gray;
  --primary: #B2B1BD;
  --action: #5FC636;
  --secondary: #DDA4A0;
  --bg-color: #F4F4F4;
  --font-heading: 'Lora', serif;
  --font-subheading: 'Cormorant', serif;
  --font-content: 'NotoSans', sans-serif;
  --transition: all linear 0.2s;
}

body {
  background: white;
}

p {
  font-family: var(--font-content);
  font-size: 15px;
  margin: 10px;

}

a {
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
}

a:hover {
  color: var(--action);
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

strong {
  color: var(--black);
}


/* ================== class ================== */
section {
  padding: 0;
  margin: 0;
}

.container-fluid {
  margin: 0;
  padding: 0;
  position: relative;
}

.section-body {
  padding: 50px 4vw;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}

.align-item {
  display: flex;
  align-items: center;
}

.black {
  color: black;
}

.green {
  color: #5FC636
}

.bg-green {
  background-color: #5FC636;
}

.bg-background {
  background-color: var(--bg-color);
}


/* ============== .myButton ================ */


.myButton {
  font-weight: bold;
  color: var(--white);
  border-radius: 4px;
  cursor: pointer;
  width: 125px;
  height: 42.66px;
  border: none;
  background-color: var(--action);
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 10px; */
}

.myButton .span-mother {
  display: flex;
  overflow: hidden;
}

.myButton:hover {
  background-color: black;
  color: var(--action);
  border: 2px solid var(--action);
}

.myButton:hover .span-mother {
  position: absolute;
}

.myButton:hover .span-mother span {
  transform: translateY(1.2em);
}

.myButton .span-mother span:nth-child(1) {
  transition: 0.2s;
}

.myButton .span-mother span:nth-child(2) {
  transition: 0.3s;
}

.myButton .span-mother span:nth-child(3) {
  transition: 0.4s;
}

.myButton .span-mother span:nth-child(4) {
  transition: 0.5s;
}

.myButton .span-mother span:nth-child(5) {
  transition: 0.6s;
}

.myButton .span-mother span:nth-child(6) {
  transition: 0.7s;
}

.myButton .span-mother span:nth-child(7) {
  transition: 0.8s;
}

.myButton .span-mother span:nth-child(8) {
  transition: 0.9s;
}

.myButton .span-mother span:nth-child(9) {
  transition: 1s;
}

.myButton .span-mother span:nth-child(10) {
  transition: 1.1s;
}

.myButton .span-mother2 {
  display: flex;
  position: absolute;
  overflow: hidden;
  /* color: black; */
}

.myButton .span-mother2 span {
  transform: translateY(-1.2em);
}

.myButton:hover .span-mother2 span {
  transform: translateY(0);
}

.myButton .span-mother2 span {
  transition: 0.2s;
}

.myButton .span-mother2 span:nth-child(2) {
  transition: 0.3s;
}

.myButton .span-mother2 span:nth-child(3) {
  transition: 0.4s;
}

.myButton .span-mother2 span:nth-child(4) {
  transition: 0.5s;
}

.myButton .span-mother2 span:nth-child(5) {
  transition: 0.6s;
}

.myButton .span-mother2 span:nth-child(6) {
  transition: 0.7s;
}

.myButton .span-mother2 span:nth-child(7) {
  transition: 0.8s;
}

.myButton .span-mother2 span:nth-child(8) {
  transition: 0.9s;
}

.myButton .span-mother2 span:nth-child(9) {
  transition: 1s;
}

.myButton .span-mother2 span:nth-child(10) {
  transition: 1.1s;
}


.heading-body {
  width: 100%;
  /* padding: 20px; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.small-heading i {
  color: var(--action);
}

.small-heading {
  font-family: var(--font-subheading);
  color: var(--action);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;

}

.big-heading {
  font-family: var(--font-heading);
  font-size: clamp(25px, 2.5vw, 40px);
  position: relative;
  display: inline;
  padding-bottom: 14px;
  font-weight: 600;
  width: 100%;
  color: var(--black);
}

.big-heading span {
  position: relative;
  /* text-transform: uppercase; */
}

.big-heading span::before {
  width: 100%;
  height: 3px;
  background-color: var(--action);
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
}


.heading-center {
  padding: 10px 0;
  width: 70%;
  text-align: center;
}

/* Social Media  */


.btn-cssbuttons {
  --btn-color: var(--action);
  position: relative;
  padding: 16px 32px;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: white;
  background: none;
  border: none;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  width: 80%;
  margin: auto;
  display: block;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-cssbuttons::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--btn-color);
  border-radius: 5px;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-cssbuttons span,
.btn-cssbuttons span span {
  display: inline-flex;
  vertical-align: middle;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-cssbuttons span {
  transition-delay: 0.05s;
}

.btn-cssbuttons span:first-child {
  padding-right: 7px;
}

.btn-cssbuttons span span {
  margin-left: 8px;
  transition-delay: 0.1s;
}

.btn-cssbuttons ul {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  transform: translateY(-50%);
}

.btn-cssbuttons ul li {
  flex: 1;
}

.btn-cssbuttons ul li a {
  display: inline-flex;
  vertical-align: middle;
  transform: translateY(55px);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  color: white;
  /* font-size: ; */
}

.btn-cssbuttons ul li a:hover {
  opacity: 0.5;
}

.btn-cssbuttons:hover::before {
  transform: scale(1.2);
}

.btn-cssbuttons:hover span,
.btn-cssbuttons:hover span span {
  transform: translateY(-55px);
}

.btn-cssbuttons:hover ul li a {
  transform: translateY(0);
}

.btn-cssbuttons:hover ul li:nth-child(1) a {
  transition-delay: 0.15s;
}

.btn-cssbuttons:hover ul li:nth-child(2) a {
  transition-delay: 0.2s;
}

.btn-cssbuttons:hover ul li:nth-child(3) a {
  transition-delay: 0.25s;
}


/* -----------header section------------- */

.header-section {
  padding: 10px 20px;
  background: black;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-item p i {
  margin-right: 10px;
  color: var(--action);
  transition: var(--transition);
}

.header-item p:hover {
  color: var(--action);
}

.header-item .header-btn {
  border: none;
  outline: none;
  padding: 5px 15px;
  background: var(--action);
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: 3px;
  transition: all 0.3s;
}

.header-item .header-btn:hover {
  outline: 2px solid var(--action);
  color: var(--action);
  background-color: var(--bg-color);
}

.offcanvas {
  background-color: var(--white);
}

.offcanvas-header {
  background-color: var(--action);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#offcanvasRightLabel {
  color: var(--black) !important;
}



.btn-close-custom {
  position: relative;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
  float: right;
}

.btn-close-custom .c-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: var(--black);
  transition: transform 0.4s ease, background-color 0.3s;
  float: right;
}

.btn-close-custom .c-line:first-child {
  transform: rotate(45deg);
}

.btn-close-custom .c-line:last-child {
  transform: rotate(-45deg);
}

.btn-close-custom:hover .c-line {
  background-color: var(--white);
}


.c-about p {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  /* margin-top: 20px; */
  width: fit-content;
  border-bottom: 2px solid black;
  margin-bottom: 10px;
}

.c-about p:hover {
  color: var(--black);
  cursor: pointer;
}

.c-detail {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background-color: rgb(235, 232, 232);
  padding: 10px 15px;
  border-radius: 10px;

}

.c-detail .icon {
  width: 50px;
  height: 50px;
  background-color: var(--action);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

}

.c-detail .des {
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
  width: 80%;
}

.c-detail:hover {
  background-color: black;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.c-detail:hover .des a {
  color: var(--action);
}

/* ------------navbar------------- */

.navbar-section {
  background-color: transparent;
  position: absolute;
}

.navbar-body {
  z-index: 4;
  background-color: var(--white);
  width: 90%;
  margin: auto;
  /* display: auto; */
  margin-top: 15px;
  border-radius: 5px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  position: relative;

}

.navbar-body::before {
  width: 70%;
  height: 100%;
  background-color: var(--action);
  right: 0px;
  top: 0;
  position: absolute;
  content: '';
  /* transform: skewX(30deg); */
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;

}

.navbar-body::after {
  width: 70%;
  height: 100%;
  background-color: var(--action);
  right: 30px;
  top: 0;
  position: absolute;
  content: '';
  transform: skewX(30deg);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 0;

}

.navbar {
  padding: 10px;
  z-index: 2;

}

.logo {
  padding: 0;
  height: 50px;
}

.logo img {
  height: 100%;
}

.navbar-nav .nav-item .nav-link {
  margin-left: 2vw;
  font-size: 20px;
  color: var(--white);
  font-family: var(--font-subheading);
  position: relative;
  display: inline;
  padding: 0;

}

.navbar-nav .nav-item .nav-link::before {
  width: 0%;
  height: 2px;
  background-color: black;
  left: 0;
  bottom: -5px;
  content: "";
  position: absolute;
  transition: all linear 0.3s;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--black);
}

.dropdown:hover {
  display: block;
}

.dropdown-menu {
  padding: 0;
  margin: 0;
  overflow-y: auto;
  height: 250px;
  /* width: fit-content; */
  width: 350px;
  border: none;
}

.dropdown-menu::-webkit-scrollbar {
  width: 6px;
  background: var(--black);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--black);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--black), var(--action), var(--action));
  border-radius: 10px;
}


.dropdown-menu .dropdown-item {
  padding: 10px;
  font-size: 16px;
  font-family: var(--font-subheading);
  border-bottom: 1px solid var(--action);
}

.dropdown-menu .dropdown-item:hover {
  background: var(--action);
  color: white;

}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0px;
  /* Optional: adjust spacing */
}

.provide-card {
  padding: 15px;
  padding-top: 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  transition: var(--transition);
  margin-bottom: 30px;
}

.icon-provide {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: var(--action);
  font-size: 20px;
  transform: translateY(-20px);
  position: relative;
  z-index: 3;
  transition: var(--transition);

  /* border-radius: 4px; */
}

.provide-name {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-subheading);
  transition: var(--transition);
}

.provide-card1 {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.provide-card2 {
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.provide-card:hover {
  background: var(--action);
  transform: translateY(-10px);
}

.provide-card:hover .icon-provide {
  background: var(--black);
  /* color: black; */
}

.provide-card:hover .provide-name {
  color: var(--white);
}

.about-img {
  width: 100%;
  height: 100;
}

.about-left {
  width: 100%;
}

.about-left img {
  width: 100%;
  margin-bottom: 12px;
}

.about-right {
  width: 100%;
}

.about-right img {
  width: 100%;
  margin-bottom: 12px;
}

.about-des p {
  padding-bottom: 15px;
  font-size: 15px;
}

.bg-section {
  position: relative;
  overflow: hidden;
}

.bg-side {
  width: 40px;
  position: absolute;
  right: 100px;
  top: 30px;
  transform: rotate(90deg);
}

.bg-side img {
  width: 100%;
}

.bg-side2 {
  /* width: 40px; */
  height: 100%;
  position: absolute;
  right: -20%;
  bottom: 0;
  z-index: -2;
  /* transform: rotate(90deg); */
}

.bg-side2 img {
  height: 100%;
  opacity: .1;
}


/* =============== product section ===================== */
.product-body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  /* flex-direction: column; */
}

.product-card {
  margin: 20px;
  width: 100%;
  height: 100%;
}

.product-card .prod-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-card .prod-img img {
  width: 100%;
  transition: all linear 1s;
}

.product-card .prod-img::before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  left: 0;
  top: -98%;
  z-index: 4;
  background-color: #5fc63636;

}

.product-card .prod-img::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: '';
  left: 0;
  top: -98%;
  z-index: 4;
  background-color: var(--action);

}

.product-card .prod-name {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 10px;
  color: white;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-subheading);
  text-transform: capitalize;
  background: linear-gradient(var(--action), #1b5f01);
  transform: translate(20px, -50%);
  position: relative;
  z-index: 6;
  transition: var(--transition);
}

@keyframes overlay1 {
  0% {
    top: -100%;
  }

  50% {
    top: 0%;
  }

  100% {
    top: 100%;
  }
}

.product-card:hover .prod-img::before {
  animation: overlay1 1s;
}

.product-card:hover .prod-img img {
  transform: scale(1.1);
}

.product-card:hover .prod-name {
  transform: translate(20px, -60%);
}


.slick-dots {
  top: 100%;
  position: absolute;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}


.slick-dots li button {
  font-size: 0;
  /* hide number/text */
  width: 14px;
  height: 14px;
  border: 2px solid var(--action);
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.3s ease;
}

.slick-dots li button:hover {
  background-color: var(--black);
  transform: scale(1.2);
}

.slick-dots li.slick-active button {
  background-color: black;
  width: 18px;
  height: 18px;
  border-color: var(--action);
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 95%;
  z-index: 10;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--action);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 10px;
}

.slick-prev:hover,
.slick-next:hover {
  background-color: var(--action);
  color: var(--black);
}

/* Specific positioning */
.slick-prev {
  left: 50%;
  transform: translateX(-50%);
  ;
}

.slick-next {
  right: 50%;
  transform: translateX(-50%);
  cursor: pointer;

}

.custom-cursor {
  position: fixed;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 5px var(--action);
  pointer-events: none;
  background-color: #5fc63656;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
}

.industries-card {
  width: 100%;
  height: auto;
  background: var(--white);
  /* padding: 15px; */
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 30px;

  transition: all linear .5s;
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0% 100%);
}

.industries-card:hover {
  clip-path: polygon(5% 0, 94% 0, 100% 100%, 0% 100%);
}

.industries-img {
  width: 100%;
  border-bottom: 10px solid var(--action);
  transition: var(--transition);
  overflow: hidden;

}

.industries-img img {
  width: 100%;
  transition: all linear 2s;
}

.industries-card .industries-name {
  position: relative;
  text-align: start;
  padding: 15px;
  font-size: 17px;
  text-wrap: nowrap;
  color: var(--black);
  font-weight: bold;
  font-family: var(--font-subheading);
  position: relative;
  background: url('../../images/bg/bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  transition: var(--transition);
  cursor: pointer;

}

.industries-card .int-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: var(--action);
  top: -50%;
  right: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.industries-card:hover .industries-img {
  border-color: var(--black);
}

.industries-card:hover .industries-img img {
  transform: scale(1.11);
}

.industries-card:hover .int-icon {
  color: var(--action);
  background-color: var(--black);
}

.industries-name:hover {
  color: var(--action);
}

/* why choose us  */

.why-img {
  width: 100%;
  height: auto;
}

.why-img img {
  width: 100%;
}

.why-card {
  width: 100%;
  /* background-color: #1b5f01; */
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  border-radius: 7px;
  padding: 20px;
  margin-bottom: 40px;
  transition: var(--transition);

}

.why-card .back {
  width: 100%;
  height: 100px;
  position: relative;


}

.why-card .back::before {
  width: 200px;
  height: 200px;
  position: absolute;
  content: '';
  top: -130px;
  left: 0;
  background-color: #d3ebc9;
  transform: translateX(-50%);
  left: 50%;
  border-radius: 50%;
  transition: var(--transition);


}

.why-card .why-icon {
  width: 50px;
  height: 50px;
  background-color: var(--action);
  margin: auto;
  transform: translateY(80%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10%;
  /* color: var(--white); */
  /* border-bottom-left-radius: 10; */
}

.why-card .why-name {
  color: black;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);

}

.why-des {
  text-align: center;
}

.why-card:hover {
  background-color: var(--black);
  color: whitesmoke;
  transform: translateY(-5px);
}

.why-card:hover .why-name {
  color: var(--action);
}

.why-card:hover .back::before {
  background: #7fcf5f;
}

/*============= Vision, Mission and Values =============*/
.mission-img {
  width: 100%;
  height: auto;
}

.mission-img img {
  width: 100%;
}

.vision-card {
  width: 70%;
  height: auto;
  padding-top: 0;
  position: relative;
  margin: auto;
  position: 10px;
  transition: var(--transition);
}

.vision-card .vision-icon {
  width: 60px;
  height: 60px;
  background-color: #007bff;
  margin: auto;
  transform: translateY(50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 4 !important;
  position: relative;
  font-size: 30px;
  color: white;
}

.vision-card .vision-icon2 {
  width: 70px;
  height: 70px;
  margin: auto;
  border: 2px solid #5FC636;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: -4 !important;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
}

.vision-body {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background-color: #fff;
  position: relative;
  z-index: 3 !important;
  border: 2px solid #5FC636;
  border-radius: 10px;
  position: relative;
  transition: var(--transition);
}

.vision-body .vision-name {
  margin-top: 30px;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.vision-des {
  margin-top: 10px;
  text-align: center;
  transition: var(--transition);
}

.vision-card::before {
  position: absolute;
  content: '';
  left: -5%;
  bottom: -15px;
  width: 110%;
  height: 50%;
  background-color: #007bff;
  border-radius: 20px;
}

.mission-card::before {
  background-color: #28a745;
}

.mission-card .vision-icon {
  background-color: #28a745;
}

.value-card::before {
  background-color: #ffc107;
}

.value-card .vision-icon {
  background-color: #ffc107;
}

.vision-card:hover {
  transform: translateY(-20px);
}


/* map==== */

.map-img {
  width: 100%;
}

.map-img img {
  width: 100%;
}

.map-content {
  width: 100%;
  position: relative;
}

.map-content img {
  width: 100%;
  border: 10px solid black;
}

.countries {
  width: 250px;
  height: 250px;
  background-color: var(--black);
  position: absolute;
  bottom: -10px;
  right: -10%;
  outline: 1px solid var(--action);
  outline-offset: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.countries::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: url('../../images/bg/bg.jpg');
  background-size: contain;
  left: 0;
  opacity: 0.15;
}

.countries .num {
  font-size: clamp(50px, 7vw, 80px);
  color: var(--action);
  font-weight: bolder;
  font-family: var(--font-heading);
  z-index: 4;
}

.countries span {
  font-size: 25px;
  color: var(--action);
  text-transform: capitalize;
  z-index: 4;
}

/* =============== strengths ============ */

.strengths-body {
  width: 100%;
  height: auto;
  padding: 0px;
  display: flex;
  position: relative;
  margin-bottom: 20px;
}

.strengths-body .str-icon {
  width: 80px;
  height: 70px;
  background-color: black;
  z-index: 5 !important;
  transform: translateY(-10px) translateX(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--action);
  font-size: 20px;
  border-top-left-radius: 30px;
}

.strengths-body .str-des {
  width: 100%;
  clip-path: polygon(93% 0, 100% 50%, 93% 100%, 0% 100%, 0 52%, 0% 0%);
  /* background-color: white; */
  padding: 20px 30px;
  font-weight: 800;
}

.strengths-body .str-des p {
  font-weight: 400;
}

.str1 {
  background-color: #e0e0e0;
}

.str2 {
  background-color: #e6f0ff;
}

.str3 {
  background-color: #fff8dc;
}

.str4 {
  background-color: #e8f5e9;
}

.bg-side3 {

  height: 100%;
  position: absolute;
  right: -15%;
  bottom: 0;
  /* z-index: -2; */

}

.strength-section {
  background: #5fc636d5;
}

/* =================== contact Form =================== */

.contact-img {
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 100% 100%, 76% 90%, 26% 90%, 0 100%, 0% 85%);
  clip-path: polygon(0% 15%, 0 0, 18% 9%, 77% 10%, 100% 0, 100% 15%, 100% 85%, 100% 100%, 78% 91%, 19% 91%, 0 100%, 0% 85%);
}

.contact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-container {
  width: 100%;
  padding: 70px 5vw;
}

.contact-heading {
  font-size: 23px;
  font-weight: bold;
  font-family: var(--font-heading);
  color: white;
}

.contact-heading p {
  font-weight: 400;
  color: whitesmoke;
}

.form-body {
  margin-top: 20px;
  padding: 25px;
  /* border: 2px solid white; */
  border-radius: 20px;
  box-shadow: 0 0 20px white;
}

.form-body .input {
  width: 90%;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 10px;
}

.input-body {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: white;
  border-radius: 50px;
  padding: 3px;
  margin-bottom: 20px;
}

.input-body .icon {
  width: 40px;
  height: 40px;
  background-color: var(--action);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 50%;
  margin-left: 3px;
}

.text-area {
  border-radius: 10px;
}

.text-area .input {
  width: 100%;
}


/* text  */

.test-body {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}


.test-body .test-card {
  width: 100%;

  height: auto;
  margin: 20px;
  position: relative;
  margin-top: 50px;
}

.test-card .user-img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
  float: right;
  transform: translateY(-50%);
  margin-right: 20px;
  display: inline;
  position: absolute;
  right: 20px;
  outline: 3px solid black;
  outline-offset: 4px;
}

.test-card .user-img img {
  width: 100%;
}

.test-content {
  padding: 20px;
  padding-bottom: 0;
  overflow: hidden;
  background-color: black;
}

.test-content .test-name {
  color: var(--action);
  font-size: 20px;
}

.test-content .test-des {
  color: whitesmoke;
  text-align: start;
  margin-bottom: 15px;
  width: 100%;
}

.test-content .test-rating {
  background-color: var(--action);
  /* display: inline; */
  padding: 10px;
  padding-left: 30px;
  margin-left: -40px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 10px;
  transform: skewX(40deg);
}

.test-content .test-rating i {
  margin-left: 5px;
  color: black;
}

.test-content .test-rating .box {
  transform: skewX(-40deg);
}

.comma {
  position: absolute;
  right: 20px;
  bottom: 0px;
  font-size: 60px;
  color: var(--action);
  opacity: 0.5;
  animation: comma linear 5s infinite;
}

@keyframes comma {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.test-img {
  width: 100%;
}

.test-img img {
  width: 100%;
}

footer {
  background-color: black;
}

.f-heading {
  font-size: 21px;
  font-weight: 600;
  color: var(--action);
  font-family: var(--font-heading);
  position: relative;
  margin-bottom: 20px;
}

.f-heading::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--action);
  transform: skewX(50deg);
}

.f-heading::before {
  position: absolute;
  content: '';
  left: 50px;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--action);
  transform: skewX(50deg);
}

.f-about-des {
  color: white;
  overflow-wrap: break-word;
  text-align: justify;
  hyphens: auto;
  overflow-wrap: break-word;
}

.f-logo {
  width: 250px;
  padding: 10px;
  margin-top: 20px;
  background-color: rgb(228, 226, 226);
}

.f-logo img {
  width: 100%;
}

.f-body ul {
  height: 280px;
  overflow-y: auto;
}

.f-body ul::-webkit-scrollbar {
  width: 6px;
  background-color: whitesmoke;
  border-radius: 10px;
  overflow: hidden;
}

.f-body ul::-webkit-scrollbar-thumb {
  /* width: ; */
  background-color: var(--action);
  border-radius: 10px;
}

.f-body ul::-webkit-scrollbar-thumb:hover {
  background-color: #28a745;
}

.f-body ul li {
  margin-bottom: 10px;

}

.f-body ul li a {
  color: white;
  position: relative;
  /* padding: 10px; */
}

.f-body ul li a::after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: '';
  left: 0;
  bottom: 0;
  background: var(--action);
  transform: scale(0);
  transition: all 0.5s;
}

.f-body ul li a:hover {
  color: var(--action);
}

.f-body ul li a:hover::after {
  transform: scale(1);
}

.q-link-body {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.q-link-body ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.q-link-body ul li{
  margin-bottom: 10px;
}
.q-link-body ul li a {
  color: var(--white);
  padding: 0px 15px 0 15px;
  text-transform: capitalize;
  border-left: 2px solid var(--white);
}

.f-link {
  border: none !important;
}

.q-link-body ul li a:hover {
  color: var(--action);
}
.f-social-body{
  display: flex;
  align-content: center;
  justify-content: space-evenly;
}
.f-social-body a{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background-color: var(--white);
  border-radius: 50%;
  margin-left: 10px;
  position: relative;
  overflow: hidden;
  
  
}
.f-social-body a i{
  z-index:5 ;
}
.f-social-body a::after{
  width: 100%;
  height: 100%;
  background:li;
  color: black;
  position: absolute;
  top:-100%;
  left: 0;
  content: '';
  transition: all .6s;
  background: linear-gradient(var(--action),var(--action),#1b5f01);
}
.f-social-body a:hover::after{
  top:0;
  
}
.f-social-body a:hover{
  color: white;
}

.copy-right {
  padding: 10px;
  background-color: white;
  text-align: center;
}

.copy-right a {
  color: black;
  font-weight: 600;
  transition: all 0.5s;
}

.copy-right a:hover {
  color: var(--action);
}