* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* Start Main Components */
.main-heading {
  text-align: center;
  margin-top: 100px;
}
.main-heading h2 {
  font-weight: normal;
  font-size: 40px;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 70px;
}
.main-heading h2::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 120px;
  background-color: #333;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
}
.main-heading h2::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid #333;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  background-color: white;
}
.main-heading p {
  width: 550px;
  margin: 0 auto 100px;
  max-width: 100%;
  line-height: 2;
  color: #777;
}

/* end Arrow animated */
:root {
  /* start green */
  --green-one: #22c55e;
  --green-two: #10b981;
  --green-three: #16a34a;
  /* end green */
  /* Start gray */
  --gray-one: #f4f4f5;
  --gray-two: #e5e7eb;
  --gray-three: #9ca3af;
  /* end gray */
  /* Start black */
  --black-one: #111827;
  --black-two: #1f2937;
  /* End black */
  --primary-color: #2c3e50;
  --secondary-color: #18bc9c;
  --background-color: #f9f9f9;
  --border-radius: 10px;
  --transition: 0.3s ease-in-out;
}
.active {
  color: var(--green-three) !important;
}
.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 1rem;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
body {
  font-family: "Open Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* Start Nav-bar */

.main-header {
  position: relative;
  background-image: url("../images/bg-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  z-index: 1;
  overflow: hidden;
}
.main-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.678);
  z-index: -2;
}
.nav-bar {
  padding: 10px 0;
}

.nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #fff;
  border-radius: 3px; */
}
.nav-bar img {
  max-width: 200px;
}
.nav-bar .links {
  display: flex;
  align-items: center;
}
.nav-bar ul li {
  margin-right: 50px;
  color: var(--black-two);
  color: #fff;
  transition: 0.3s;
  position: relative;
}
.nav-bar ul li span {
  cursor: pointer;
  color: var(--black-two);
  font-weight: 450;
}
.nav-bar ul li a:hover,
.nav-bar ul li span:hover {
  color: var(--green-three);
}
.nav-bar ul li a {
  color: black;
  transition: 0.3s;
}
.nav-bar h3 {
  color: black;
}
/* Start Media-menu */
.nav-bar .media-menu {
  position: relative;
  display: none;
}
.nav-bar .media-menu i {
  font-size: 20px;
}
/* .nav-bar .media-menu i:hover + ul{
  opacity: 1;
  transform: translate(-50%,0);
} */
.nav-bar .media-menu ul {
  position: absolute;
  background-color: white;
  transform: translate(-50%, -20px);
  margin-top: 20px;
  z-index: 999;
  border-radius: 10px;
  padding: 10px;
  width: 200px;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
    0px 2px 4px 0px rgb(0 0 0 / 12%);
}
.nav-bar .media-menu ul::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 39%;
  width: 0;
  height: 0;
  margin: 5px 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  animation: bounce 1s infinite ease-in-out;
}
.nav-bar .media-menu ul li {
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}
.nav-bar .media-menu ul li:not(:last-child) {
  border-bottom: 1px solid var(--black-two);
  padding-bottom: 10px;
}
.nav-bar .media-menu ul li:hover {
  color: var(--green-one);
}

.media-menu div .show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
/* Start media-division */
.media-menu #menu-drop .media-division,
.media-menu #menu-drop .media-other {
  position: relative;
}
.media-menu
  #menu-drop
  #list-drop-menu-one
  .media-division
  #list-drop-menu-division {
  display: block;
  position: absolute;
  text-align: center;
  top: -20px;
  right: 150px;
  background-color: #fff;
  width: 200px;
  list-style: none;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.3s, transform 0.3s ease-in-out;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
    0px 2px 4px 0px rgb(0 0 0 / 12%);
}
.media-menu #menu-drop #list-drop-menu-one .media-other #list-drop-menu-other {
  display: block;
  position: absolute;
  text-align: center;
  top: -20px;
  right: 150px;
  background-color: #fff;
  width: 200px;
  list-style: none;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.3s, transform 0.3s ease-in-out;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
    0px 2px 4px 0px rgb(0 0 0 / 12%);
}
.media-menu
  #menu-drop
  #list-drop-menu-one
  .media-division:hover
  #list-drop-menu-division,
.media-menu
  #menu-drop
  #list-drop-menu-one
  .media-other:hover
  #list-drop-menu-other {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.media-menu
  #menu-drop
  #list-drop-menu-one
  .media-division
  #list-drop-menu-division::before,
.media-menu
  #menu-drop
  #list-drop-menu-one
  .media-other
  #list-drop-menu-other::before {
  content: "";
  position: absolute;
  top: -20px;
  display: none;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  animation: bounce 1s infinite ease-in-out;
}
/* End media-division */
/* End Media-menu */
/* Start Drop-menu */
.other {
  position: relative;
}
.other .dropdown {
  display: block;
  position: absolute;
  text-align: center;
  top: calc(100% + 24px);
  right: calc(100%-100px);
  background-color: #fff;
  width: 200px;
  list-style: none;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s ease-in-out;
}
.other .dropdown::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  animation: bounce 1s infinite ease-in-out;
}
.other .dropdown .dropdown-item {
  display: block;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  color: black;
  width: 100%;
}
.other .dropdown .dropdown-item:hover {
  background-color: var(--gray-two);
  border-radius: 5px;
  color: var(--green-one);
}
.other .dropdown .dropdown-item:first-child {
  border-bottom: 1px solid var(--gray-three);
}
.other .show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* End Drop-menu */
/* Start Drop-menu Division */
.division {
  position: relative;
}
.division .show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-d {
  display: block;
  position: absolute;
  top: calc(100% + 24px);
  right: calc(100% - 200px);
  background-color: #fff;
  width: 200px;
  list-style: none;
  border-radius: 5px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s ease-in-out;
  z-index: 999;
}
.division .dropdown-d::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;

  animation: bounce 1s infinite ease-in-out;
}
.division .dropdown-d .dropdown-item-d {
  display: block;
  cursor: pointer;
  padding: 10px 20px;
  transition: 0.3s;
  color: black;
  width: 100%;
}
.division .dropdown-d .dropdown-item-d:hover {
  background-color: var(--gray-two);
  border-radius: 5px;
  color: var(--green-one);
}
.division .dropdown-d .dropdown-item-d:first-child,
.division .dropdown-d .dropdown-item-d:nth-child(2) {
  border-bottom: 1px solid var(--gray-three);
}
#list-drop-menu-division.show-touch,
#list-drop-menu-other.show-touch {
  opacity: 1 !important;
  transform: translateX(0) !important;
  pointer-events: auto !important;
}
/* End Drop-menu Division */
/* Start Slide */
.main-header .con-text .text{
  margin: 100px auto;
  text-align: center;


}
.main-header .con-text .text h3{
  color: var(--green-three);
  font-size: 3rem;
  margin-bottom: 1rem;
}
.main-header .con-text .text p{
  font-size: 1.2rem
}
.slider {
  display: flex;
  transition: transform 0.5s ease;
  /* animation: slide-animation 10s infinite; */
}

.slider.paused {
  animation-play-state: paused;
}

.main-header .slide {
  width: 100%;
  flex-shrink: 0;
}
.slider.slide {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}

.slider.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.main-header .slide .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.main-header .slide .content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.main-header .slide .content .box {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  color: #fff;
  position: relative;
  top: -80px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.main-header .slide .content .box h3{
  font-size: 20px;
  margin-bottom: 10px;
  color: black;
}
.main-header .slide .content .box p {
  font-size: 16px;
  color: black;
}
.main-header .slide .content .box ul {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}
.main-header .slide .content .box ul li a {
  font-size: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--green-three);
  padding: 20px;
  color: var(--black-two);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.main-header .slide .content .box ul li a:hover {
  background-color: var(--green-three);
  color: white;
}
.main-header .slide .content .box p {
  margin: 10px 0;
}
/* .main-header .slide .content:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
} */
.main-header .slide .content .more {
  text-decoration: none;
  background-color: transparent;
  padding: 10px 20px;
  color: black;
  border-radius: 5px;
  margin-top: 15px;
  display: inline-block;
  position: relative;
  border: 1px solid var(--green-one);
  transition: 0.3s;
}
.main-header .slide .content .more-2 {
  margin-top: 32px;
}
.main-header .slide .content .more::before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  transform: translate(-20px, -10px);
  border-radius: 4px;
  transition: 0.3s;
  z-index: -1;
}
.main-header .slide .content .more:hover::before {
  width: 100%;
  background-color: var(--green-one);
}
.main-header .slide .content .more:hover {
  color: white;
  border-color: white;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* End Slide */
/* End Nav-bar */
/* Start Our Products */
.our-product {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  background-color: var(--gray-one);
  padding-bottom: 3rem;
}
.our-product .container .content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
}
/* From Uiverse.io by SachinKumar666 */
.card {
  --card-bg: #ffffff;
  --card-accent: #7c3aed;
  --card-text: #1e293b;
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);

  /* width: 190px;*/
  /* height: 300px;  */
  background: var(--card-bg);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

.card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(124, 58, 237, 0.3) 0%,
    rgba(124, 58, 237, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card__content {
  padding: 1.25em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  position: relative;
  z-index: 2;
}

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #10b981;
  color: white;
  padding: 0.25em 0.5em;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 600;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.card__image {
  width: 100%;
  /* background: linear-gradient(45deg, #a78bfa, #8b5cf6); */
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 30%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(139, 92, 246, 0.1) 0px,
      rgba(139, 92, 246, 0.1) 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.5;
}

.card__text {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.card__title {
  color: var(--card-text);
  font-size: 1.1em;
  margin: 0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.card__description {
  color: var(--card-text);
  font-size: 0.75em;
  margin: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card__price {
  color: var(--card-text);
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
}

.card__button {
  width: 28px;
  height: 28px;
  background: var(--card-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

/* Hover Effects */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(124, 58, 237, 0.2);
}

.card:hover .card__shine {
  opacity: 1;
  animation: shine 3s infinite;
}

.card:hover .card__glow {
  opacity: 1;
}

.card:hover .card__badge {
  transform: scale(1);
  opacity: 1;
  z-index: 1;
}

.card:hover .card__image {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card:hover .card__title {
  color: var(--card-accent);
  transform: translateX(2px);
}

.card:hover .card__description {
  opacity: 1;
  transform: translateX(2px);
}

.card:hover .card__price {
  color: var(--card-accent);
  transform: translateX(2px);
}

.card:hover .card__button {
  transform: scale(1);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
}

.card:hover .card__button svg {
  animation: pulse 1.5s infinite;
}

/* Active State */
.card:active {
  transform: translateY(-5px) scale(0.98);
}

.our-product .container .content .card img {
  max-width: 100%;
  transition: 0.3s;
}
/* End Our Products */
/* Start Why-Us */
.why-us {
  padding-bottom: 15px;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.card-hover {
  width: 360px;
  height: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 12px 20px 0px rgb(0 0 0 / 13%),
    0px 2px 4px 0px rgb(0 0 0 / 12%);
  border-radius: 8px;
}
.card-hover:has(.card-hover__link:hover) .card-hover__extra {
  transform: translateY(0);
  transition: transform 0.35s;
}
.card-hover:hover .card-hover__content {
  background-color: #dee8c2;
  bottom: 100%;
  transform: translateY(100%);
  padding: 50px 60px;
  transition: all 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
.card-hover:hover .card-hover__link {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: all 0.3s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
.card-hover:hover img {
  transform: scale(1);
  transition: 0.35s 0.1s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
.card-hover__content {
  width: 100%;
  text-align: center;
  background-color: #86b971;
  padding: 0 60px 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(0);
  transition: all 0.35s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
  will-change: bottom, background-color, transform, padding;
  z-index: 1;
}
.card-hover__content::before,
.card-hover__content::after {
  content: "";
  width: 100%;
  height: 120px;
  background-color: inherit;
  position: absolute;
  left: 0;
  z-index: -1;
}
.card-hover__content::before {
  top: -80px;
  -webkit-clip-path: ellipse(60% 80px at bottom center);
  clip-path: ellipse(60% 80px at bottom center);
}
.card-hover__content::after {
  bottom: -80px;
  -webkit-clip-path: ellipse(60% 80px at top center);
  clip-path: ellipse(60% 80px at top center);
}
.card-hover__title {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.card-hover__title span {
  color: #2d7f0b;
}
.card-hover__text {
  font-size: 0.75rem;
}
.card-hover__link {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translate(-50%, 10%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  color: #2d7f0b;
  opacity: 0;
  padding: 10px;
  transition: all 0.35s;
}
.card-hover__link:hover svg {
  transform: translateX(4px);
}
.card-hover__link svg {
  width: 18px;
  margin-left: 4px;
  transition: transform 0.3s;
}
.card-hover__extra {
  height: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  background-color: #86b971;
  padding: 80px;
  bottom: 0;
  z-index: 0;
  color: #dee8c2;
  transform: translateY(100%);
  will-change: transform;
  transition: transform 0.35s;
}
.card-hover__extra span {
  color: #2d7f0b;
}
.card-hover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
  transform: scale(1.2);
  transition: 0.35s 0.35s transform cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
/* End Why-Us */
/* Start Partners */
.partners {
  background-color: #f9f9f9;
  padding: 7px 0 40px;
}
.partner-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 20s linear infinite;
}

.marquee-track img {
  display: inline-block;
  height: 60px;
  margin: 0 30px;
  transition: transform 0.3s ease;
}

/*Stop moving when Hover */
.partner-marquee:hover .marquee-track {
  animation-play-state: paused;
}
/* Pause animation on hover */
.partners-container:hover .partners-track {
  animation-play-state: paused;
}
/* End Partners */
/* Start Footer */
.footer {
  padding: 70px 0 0;
  background-color: #191919;
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 60px;
}
.footer .container .box img {
  max-width: 300px;
  margin-bottom: 20px;
}
.footer .container .social {
  display: flex;
}

@media (max-width: 767px) {
  .footer .container .social {
    justify-content: center;
  }
}
.footer .container .social li {
  margin-right: 10px;
}
.footer .container .social li a {
  background-color: #313131;
  color: #b9b9b9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  transition: 0.3s;
}
.footer .container .social li:nth-of-type(1):hover a {
  background-color: #1877f2;
  color: white;
}

.footer .container .social li:nth-of-type(2):hover a {
  background-color: #0077b5;
  color: white;
}
.footer .container .social li:nth-of-type(3):hover a {
  background-color: #fe0264;
  color: white;
}
.footer .container .social li:nth-of-type(4):hover a {
  background-color: #000000;
  color: white;
}
.footer .container .box .text {
  color: #b9b9b9;
  line-height: 2;
}
.footer .container .box .links li {
  padding: 15px 0;
  transition: 0.3s;
}
.footer .container .box .links li:hover {
  padding-left: 10px;
}
.footer .container .box .links li:not(:last-child) {
  border-bottom: 1px solid #444;
}

.footer .box .links li a {
  color: #b9b9b9;
  transition: 0.3s;
}
.footer .box .links li:hover a {
  color: white;
}
.footer .container .box .links li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\F101";
  font-weight: bold;
  margin-right: 10px;
  color: var(--green-three);
}

.footer .container .box .line {
  display: flex;
  align-items: center;
  color: #b9b9b9;
  margin-bottom: 30px;
}

.f .footer .container .box .line .info {
  line-height: 1.7;
  flex: 1;
}
.footer .copyright {
  text-align: center;
  color: white;
  padding: 30px;
  border-top: 1px solid #444;
  margin-top: 50px;
}

/* End Footer */
/* About us */
.about {
  background-image: url("../images/aboutus-BG.jpeg");
}
.about.container .slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .container .slide .text {
  text-align: center;
}
.about .container .slide .text h3 {
  font-size: 90px;
  margin-bottom: 90px;
  color: var(--green-three);
}
.about .container .slide .text p {
  font-size: 20px;
}
.about-container {
  background: linear-gradient(to bottom, #f0f8ff, #ffffff);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 60px 30px;
  position: relative;
}

.about-container h1,
.about-container h2,
.about-container h3 {
  font-weight: bold;
  color: var(--green-three);
}

.about-container h1 {
  font-size: 3rem;
  border-bottom: 4px solid var(--green-three);
  text-align: center;
  margin-bottom: 40px;
  display: inline-block;
}

.about-container h2 {
  font-size: 2rem;
  border-left: 4px solid var(--green-three);
  padding-left: 12px;
  margin-bottom: 16px;
}

.about-container h3 {
  font-size: 1.25rem;
  color: var(--green-three);
  margin-bottom: 10px;
}

.about-container ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #374151;
}

.about-container p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
}

.grid-cols-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* End about us */
/* Start Contact */
.form {
  padding: 20px;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.contact-text {
  font-size: 16px;
  line-height: 1.6;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: var(--border-radius);
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 15px 0;
}

.checkbox-group label {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 8px;
}

.submit-btn {
  background-color: var(--secondary-color);
  color: white;
  padding: 12px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: #149f82;
}
/* End Contact */
/* Start Animation */
/* Arrow Animation*/
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes slide-animation {
        0% {
          transform: translateX(0);
        }
        25% {
          transform: translateX(-100%);
        }
        50% {
          transform: translateX(-200%);
        }
        75% {
          transform: translateX(-300%);
        }
        100% {
          transform: translateX(0);
        }
      }
      @keyframes shine {
        0% {
          background-position: -100% 0;
        }
        100% {
          background-position: 200% 0;
        }
      }
      
      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.2);
        }
        100% {
          transform: scale(1);
        }
      }

/* End Animation */
/* Start Media  */
@media (max-width: 767px) {
  .footer .container .box .line {
    flex-direction: column;
  }
}
.footer .container .box .line i {
  margin-right: 10px;
  font-size: 25px;
  color: var(--main-color);
}
@media (max-width: 767px) {
  .footer .container .box .line i {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .content img {
    height: 200px;
  }

  .box h3 {
    font-size: 18px;
  }

  .box p {
    font-size: 14px;
  }

  .arrow {
    font-size: 20px;
  }
  .nav-bar .media-menu ul {
    width: 150px;
    right: -90%;
  }
  .nav-bar .media-menu {
    text-align: center;
  }

  .main-heading h2 {
    font-size: 28px;
  }

  .main-heading p {
    width: 90%;
  }

  .nav-bar img {
    max-width: 150px;
  }

  .nav-bar ul li {
    margin-right: 20px;
    font-size: 14px;
  }

  .main-header .slide {
    grid-template-columns: 1fr;
    padding: 20px 10px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .card-hover {
    flex-direction: row;
  }
  .about .container .slide .text h3 {
    font-size: 55px;
    margin-bottom: 50px;
  }
  .contact-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .grid-cols-1.md\:grid-cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1100px) {
  .nav-bar .container {
    display: flex;
    justify-content: space-between;
  }
  .nav-bar .lang,
  .nav-bar .links {
    display: none;
  }
  .nav-bar .media-menu {
    display: block;
    width: 100px;
  }
}
/* End Media  */
