/* Default CSS  */
:root {
  --white-color: #ffffff;
  --black-color: #000000;

  --topBar-section-bg: #6abe52;
  --topBar-section-color: #ffffff;

  --logoBar-section-bg: #ffffff;
  --logoBar-section-color: #21212d;
  --logoBar-media-color: #6abe52;

  --nav-bg: #21212d;
  --nav-links-color: #ffffff;
  --nav-link-active-color: #6abe52;
  --nav-links-hover-color: #6abe52;
  --nav-toggle-color: #21212d;
  --nav-toggle-hover-color: #6abe52;
  --fixed-nav-bg: #ffffff;
  --fixed-nav-color: #21212d;


  --title-color1: #000000;
  --title-color2: #21212d;
  --title-color3: #6abe52;
  --title-color4: #a4a4a4;

  --paragraph-color1: #888888;
  --paragraph-color2: #666;

  --about-section-bg: #ffffff;
  --services-section-bg: #f7f7f7;
  --service-item-bg: #ffffff;
  --service-shape-bg: #6abe52;
  --title-divider-bg: #6abe52;
  --testimonial-card-bg: #ffffff;
  --testimonial-card-shape: #6abe52;
  --contact-section-bg: #ffffff;
  --label-color: #21212d;
  --input-color: #21212d;
  --input-required: #6abe52;
  --form-border: #21212d;
  --input-bg: #ffffff;



  --button-bg: #6abe52;
  --button-color: #ffffff;
  --button-hover-bg: #ffffff;
  --button-hover-color: #000000;

  --openSans-font: "Open Sans", sans-serif;
  --robotoSans-font: "Roboto", sans-serif;
  --Poppins-font: "Poppins", sans-serif;

  --footer-section-bg: #21212d;
  --footer-section-color1: #ffffff;
  --footer-section-color2: #e3e3e3;
  --footer-section-color3: #6abe52;
}

html {
  scroll-behavior: smooth;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--openSans-font);
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.myContainer {
  width: 100%;
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
}

.button-container a,
.button-container button {
  background: var(--button-bg);
  font-family: var(--robotoSans-font);
  cursor: pointer;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
  height: auto;
  width: auto;
  color: var(--button-color);
  text-decoration: none;
  white-space: nowrap;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  text-align: inherit;
  line-height: 17px;
  letter-spacing: 0px;
  font-weight: 500;
  font-size: 17px;
  border-color: rgba(106, 190, 82, 0);
  border-style: solid;
  border-width: 1px;
  padding: 15px 35px;
  border-radius: 100px;
  transform-origin: 50% 50%;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

.button-container a:hover,
.button-container button:hover {
  background: var(--button-hover-bg);
  color: var(--button-hover-color);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
}

.main-title {
  color: var(--title-color2);
  font-family: var(--Poppins-font);
  font-weight: 700;
  font-size: 42px;
  line-height: 44px;
  margin-bottom: 30px;
  text-align: center;
}

.title-description {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  font-family: var(--openSans-font);
  color: var(--paragraph-color2);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  display: block;
  text-align: center;
}

.title-divider {
  background-color: var(--title-divider-bg);
  height: 3px;
  width: 38px;
  display: block;
  position: relative;
}

.title-divider::before,
.title-divider::after {
  content: "";
  height: 3px;
  width: 10px;
  background: var(--title-divider-bg);
  position: absolute;
  left: 43px;
  opacity: 0.8;
}

.title-divider::after {
  left: 58px;
  width: 5px;
  opacity: 0.6;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .title-container {
    margin-bottom: 20px;
  }

  .main-title {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}

/* CSS  */
/* Header Navigation */
/* Top Bar */
.topBar {
  color: var(--topBar-section-color);
  font-weight: 600;
  font-size: 15px;
  background: var(--topBar-section-bg);
  padding: 20px 0;
}

.topBar .topBar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topBar .topBar-content a {
  color: var(----topBar-section-color);
  font-weight: 700;
  padding: 2px;
}

/* TopBar Section Responsive */
@media screen and (max-width: 1024px) {
  .topBar {
    display: none;
  }
}

/* Logo Bar */
.logoBar {
  color: var(--logoBar-section-color);
  background: var(--logoBar-section-bg);
  padding: 20px 0;
}

.logoBar .logoBar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logoBar .logoBar-content .logo img {
  height: 50px;
}

.logoBar .logoBar-content .office-location {
  display: flex;
  align-items: center;
}

.logoBar .logoBar-content .location-item {
  padding: 0 25px 0 25px;
  text-align: left;
}

.logoBar .logoBar-content .location-item .media {
  line-height: 1;
  vertical-align: middle;
  display: inline;
  display: flex;
  align-items: flex-start;
}

.logoBar .logoBar-content .location-item .media i {
  color: var(--logoBar-media-color);
  border-color: var(--logoBar-media-color);
  border: 1px dashed;
  font-size: 20px;
  vertical-align: middle;
  line-height: 38px;
  height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 10px 10px 0px 10px;
  -webkit-border-radius: 10px 10px 0px 10px;
  -moz-border-radius: 10px 10px 0px 10px;
  display: inline-table;
  margin-right: 14px;
}

.logoBar .logoBar-content .location-item .media-body {
  display: inline-block;
  vertical-align: middle;
}

.logoBar .logoBar-content .location-item .media-body h6 {
  color: var(--logoBar-section-color);
  font-family: var(--Poppins-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  text-align: inherit;
}

/* Logo Bar Section Responsive */
@media screen and (max-width: 1024px) {
  .logoBar {
    display: none;
  }
}


/* Navbar */
nav {
  background: var(--fixed-nav-bg);
  padding: 20px 15px;
}

/* fixed nav */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--fixed-nav-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.fixed-nav .desktop-links a {
  color: var(--fixed-nav-color);
}

.fixed-nav .desktop-links a:hover {
  color: var(--nav-links-hover-color);
}

/* Active link styles */
.links a.active {
  color: var(--nav-link-active-color);
}


.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  font-size: 1.5rem;
  color: var(--nav-toggle-color);
  background: transparent;
  border-color: transparent;
  transition: all 0.3s linear;
  cursor: pointer;
}

.nav-toggle:hover {
  color: var(--nav-toggle-hover-color);
}

.nav-header .logo img {
  height: 35px;
}

.links-container {
  height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}

.show-links {
  height: 200px;
}

.links a {
  color: var(--fixed-nav-color);
  font-size: 18px;
  text-transform: capitalize;
  display: block;
  transition: all 0.3s linear;
  font-weight: bold;
  padding: 0.55rem 0;
}

.links a:hover {
  color: var(--nav-links-hover-color);
}

.links a.active {
  color: var(--nav-link-active-color);
}

.desktop-links {
  display: none;
}

.links-container .button-container {
  display: none;
}

/* NAVBAR RESPONSIVE  */
@media screen and (min-width: 1025px) {
  nav {
    background: var(--nav-bg);
    padding: 0 15px;
  }

  .nav-header .logo {
    display: none;
  }

  .desktop-links {
    display: flex !important;
  }

  .links.mobile-links {
    display: none;
  }

  .desktop-links a {
    font-family: var(--openSans-font);
    background: transparent;
    color: var(--nav-links-color);
    font-size: 15px;
    text-transform: capitalize;
    transition: all 0.3s linear;
    font-weight: 600;
    margin: 0 1rem;
  }

  .desktop-links a:hover {
    color: var(--nav-links-hover-color) !important;
  }

  .desktop-links a.active {
    color: var(--nav-link-active-color) !important;
  }

  .links-container .button-container {
    display: block;
  }

  .links-container .button-container a {
    border-radius: 0;
    height: 75px;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .links-container .button-container a:hover {
    background: var(--black-color);
    color: var(--button-color);
  }
}

@media screen and (min-width: 920px) {
  .nav-header .logo img {
    height: 50px;
  }

  .nav-center {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-header {
    padding: 0;
  }

  .nav-toggle {
    display: none;
  }

  .links-container {
    height: auto !important;
  }

  .desktop-links {
    display: none;
  }

  .links {
    display: flex;
  }

  .links a {
    color: var(--fixed-nav-color);
    font-size: 15px;
    text-transform: capitalize;
    display: block;
    transition: all 0.3s linear;
    margin: 0 1rem;
    font-weight: bold;
    padding: 0;
  }

  .links a:hover {
    color: var(--nav-links-hover-color);
  }

}

/* Banner Section */
.banner {
  background: url(../images/banner-bg-image.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  padding-top: 8rem;
  padding-bottom: 18rem;
  position: relative;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.6);
}

.banner-container {
  position: relative;
  z-index: 5;
}

.banner-container h1 {
  font-family: var(--openSans-font);
  height: auto;
  color: rgb(106, 190, 82);
  width: 100%;
  max-width: 742px;
  font-weight: 800;
  font-size: 60px;
}

.banner-container p {
  font-family: var(--openSans-font);
  text-transform: capitalize;
  height: auto;
  color: #ffffff;
  width: 100%;
  max-width: 400px;
  font-weight: 600;
  font-size: 30px;
  margin-top: 15px;
}

.banner .banner-container .button-container {
  margin-top: 40px;
}

/* Banner Section Responsive */
@media screen and (max-width: 1024px) {
  .banner-container h1 {
    font-size: 51px;
  }

  .banner-container p {
    font-size: 30px;
  }
}

@media screen and (max-width: 992px) {
  .banner-container h1 {
    font-size: 44px;
  }

  .banner-container p {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .banner {
    padding: 8rem 0;
  }

  .banner-container h1 {
    font-size: 29px;
    margin: auto;
    text-align: center;
  }

  .banner-container p {
    font-size: 17px;
    text-align: center;
  }

  .banner .banner-container .button-container {
    text-align: center;
  }
}


/* Features Section */
.features-section {
  margin-top: -100px;
  position: relative;
  z-index: 7;
}

.features-section .myContainer {
  padding: 0 10px;
}

.features-container {
  display: flex;
  align-items: center;
}

.feature-item {
  width: 33.33%;
  padding: 70px 30px;
  background: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item:nth-child(2) {
  background: #6abe52;
  padding-top: 85px;
  padding-bottom: 85px;
  border-radius: 20px;
}

.feature-item .feature-icon {
  margin-bottom: 30px;
}

.feature-item .feature-icon img {
  width: 64px;
}

.feature-item:hover .feature-icon img {
  animation: hover-push-img 1s ease-in-out infinite;
}

@keyframes hover-push-img {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.feature-item .name {
  font-family: var(--Poppins-font);
  font-weight: 700;
  font-size: 26px;
  color: var(--title-color1);
  line-height: 28px;
  text-align: center;
}

.feature-item .info {
  font-family: var(--openSans-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: var(--paragraph-color1);
  text-align: center;
  margin-top: 15px;
}

/* Features Section Responsive */
@media screen and (max-width: 992px) {
  .features-container {
    flex-direction: column;
    gap: 30px;
  }

  .feature-item:nth-child(2) {
    padding: 70px 30px;
  }

  .feature-item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .features-section {
    margin-top: -130px;
  }
}

@media screen and (max-width: 480px) {
  .features-section {
    margin-top: -60px;
  }
}


/* About Section */
.about-section {
  background: var(--about-section-bg);
}

.about-container {
  display: grid;
  grid-template-columns: 1.8fr 2.2fr;
  column-gap: 50px;
  row-gap: 30px;
  align-items: center;
}

.about-item .photo img {
  width: 100%;
  border-radius: 10px;
}

.about-item .about-details .sub-title {
  font-family: var(--openSans-font);
  margin-bottom: 0px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--title-color3);
  margin-bottom: 8px;
  display: block;
}

.about-item .about-details .main-title {
  font-family: var(--Poppins-font);
  font-weight: 700;
  font-size: 42px;
  line-height: 44px;
  color: var(--title-color2);
  margin-bottom: 30px;
  text-align: left;
}

.about-item .about-details .info {
  font-family: var(--openSans-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 20px;
  margin-top: 25px;
  color: var(--paragraph-color2);
}

.about-item .about-details .info-lists span i {
  padding: 0;
  font-size: 18px;
  line-height: 30px;
  color: #6abe52;
  padding-right: 10px;
}

.about-item .about-details .info-lists span {
  display: flex;
  font-family: var(--openSans-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: var(--paragraph-color2);
}

/* About Section Responsive */
@media screen and (max-width: 1100px) {
  .about-container {
    column-gap: 20px;
  }
}

@media screen and (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-item .photo img {
    height: 400px;
    object-fit: cover;
  }
}

@media screen and (max-width: 550px) {
  .about-item .about-details .main-title {
    font-size: 30px;
    line-height: 32px;
  }
}

@media screen and (max-width: 400px) {
  .about-item .about-details .main-title {
    font-size: 28px;
    line-height: 30px;
  }
}

/* Statistics Section */
.statistics-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url(../images/Statistics-section-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.statistics-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3;
}

.statistics-container {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.statistics-container .stat-item {
  padding: 0 30px;
  border-right: 1px solid #fdfdfd33;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.statistics-container .stat-item:last-child {
  border-right: none;
}

.stat-item .stat-icon {
  margin-bottom: 20px;
}

.stat-item .stat-icon img {
  width: 64px;
}

.stat-item .stat-number {
  font-size: 44px;
  color: var(--title-color3);
  font-weight: 700;
  font-family: var(--Poppins-font);
}

.stat-item .stat-label {
  color: var(--title-color4);
  font-size: 18px;
  font-family: var(--Poppins-font);
  font-weight: 700;
}

.stat-item:nth-child(1) {
  transition-delay: 0.1s;
}

.stat-item:nth-child(2) {
  transition-delay: 0.2s;
}

.stat-item:nth-child(3) {
  transition-delay: 0.3s;
}

.stat-item:nth-child(4) {
  transition-delay: 0.4s;
}

/* Floating particles animation */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #4CAF50;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Statistics Section  Responsive */
@media screen and (max-width: 992px) {
  .statistics-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .statistics-container .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  .statistics-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .stat-item .stat-icon {
    margin-bottom: 10px;
  }

  .statistics-container .stat-item {
    border-right: none;
    margin-bottom: 60px;
  }
}



/* Services Section */
.services-section {
  background: var(--services-section-bg);
}

.services-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-item {
  padding: 40px 32px;
  box-shadow: 0 2px 57px 0px rgba(210, 210, 210, 0.35);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background: var(--service-item-bg);
  display: flex;
  align-items: flex-start;
}

.service-item::before {
  content: "";
  position: absolute;
  top: -82px;
  right: -110px;
  width: 200px;
  height: 100px;
  background: rgba(230, 230, 230, .3);
  border-radius: 100px / 50px;
  -webkit-border-radius: 100px / 50px;
  -moz-border-radius: 100px/50px;
  transform: rotate(58deg);
  -ms-transform: rotate(58deg);
  -webkit-transform: rotate(58deg);
  transition: all .4s ease;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  background: var(--service-shape-bg);
}

.service-item:hover::before {
  right: -80px;
}

.service-item .service-icon {
  width: 20%;
}

.service-item .service-icon img {
  width: 64px;
}

.service-item:hover .service-icon img {
  animation: hover-push-img 1s ease-in-out infinite;
}

.service-item .service-details {
  width: 80%;
  padding-left: 1.5rem;
}

.service-item .service-details .name {
  font-family: var(--Poppins-font);
  font-weight: 700;
  font-size: 21px;
  line-height: 24px;
  color: var(--title-color2);
}

.service-item .service-details .info {
  color: var(--paragraph-color1);
  font-family: var(--openSans-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
}

/* Service Section Responsive */
@media screen and (max-width: 1100px) {
  .services-container {
    gap: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media screen and (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-item .service-icon {
    width: 80px;
  }

  .service-item .service-details {
    width: 100%;
  }
}


/* Testimonial Section */
.testimonial-section {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../images/testimonial-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.testimonial-section .title-container {
  justify-content: flex-start;
  align-items: flex-start;
}

.testimonial-section .main-title {
  text-align: left;
  color: var(--white-color);
}

.testimonial-container {
  width: 100%;
  max-width: 512px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.slider-container:active {
  cursor: grabbing;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slider-wrapper.dragging {
  transition: none;
}

.testimonial-section .slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.testimonial-section .slide-content {
  flex: 1;
  z-index: 2;
  position: relative;
}

.testimonial-card {
  padding: 45px 50px 45px 50px;
  border: 1px solid #eaeaea;
  background: var(--testimonial-card-bg);
  margin: 20px 15px 35px 15px;
  border-radius: 17px !important;
  position: relative;
}

.testimonial-card::before,
.testimonial-card::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 25px;
  border-radius: 17px 0 17px;
  -webkit-border-radius: 17px 0 17px;
  background: var(--testimonial-card-shape);
}

.testimonial-card::before {
  top: -1px;
  left: -1px;
}

.testimonial-card::after {
  bottom: -1px;
  right: -1px;
}

.testimonial-card .profile-section {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 15px;
}


.testimonial-card .testimonial-thumb img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}


.testimonial-card .profile-info .name {
  font-weight: 600;
  font-size: 20px;
  color: var(--title-color3);
  margin-bottom: 6px;
  display: block;
  transition: all 0.3s ease-in-out;
}

.testimonial-card .profile-info .name:hover {
  color: var(--title-color2);
}

.testimonial-card .profile-info .client-designation {
  color: var(--paragraph-color1);
  font-family: var(--openSans-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  display: block;
}

.testimonial-text .info {
  color: var(--paragraph-color1);
  font-family: var(--openSans-font);
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  position: relative;
  z-index: 5;
}

.testimonial-text:after {
  content: "\f10d";
  font-family: fontAwesome;
  bottom: 10%;
  position: absolute;
  right: 13%;
  font-size: 44px;
  line-height: 1;
  transform: rotate(135deg);
  color: #eaeaea;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  z-index: 1;
}

.testimonial-card:hover .testimonial-text:after {
  color: var(--testimonial-card-shape);
}

.testimonial-section .dots-container {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-section .dot {
  display: block;
  height: 10px;
  margin: 0 6px;
  width: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid #dfdfdf;
  z-index: 999999;
  background: var(--white-color);
  cursor: pointer;
}

.testimonial-section .dot.active {
  background: #6abe52;
  border-color: #6abe52;
}

/* Testimonial Section Responsive */
@media screen and (max-width: 550px) {
  .testimonial-card .testimonial-thumb img {
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 400px) {
  .testimonial-card .profile-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* Contact Section */
.contact-section {
  background: var(--contact-section-bg);
}

.contact-section .form-container {
  width: 100%;
  max-width: 870px;
  margin: auto;
}

/* Form Container*/
.form-container .input-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}

.form-container p.label-text {
  font-size: 18px;
  line-height: 25px;
  color: var(--label-color);
}


.form-container .label-text span,
.form-container label.label-text span {
  color: var(--input-required);
  font-size: 12px;
}

.form-container .input-fill {
  margin-top: 30px;
}

.form-container label.label-text {
  font-size: 18px;
  line-height: 25px;
  color: var(--label-color);
  font-weight: 600;
}

.form-container .label-text2 {
  font-size: 16px;
  line-height: 30px;
  color: var(--label-color);
  padding: 10px 0;
}

.form-container .input-fill input,
.form-container .input-fill textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid var(--form-border);
  background: var(--input-bg);
  color: var(--input-color);
  padding: 10px;
  height: 58px;
  line-height: 38px;
  margin-top: 10px;
  font-size: 18px;
}

.form-container .input-fill textarea {
  height: 100px;
}

.form-container .input-fill input:focus,
.form-container .input-fill textarea:focus {
  outline: 0;
  box-shadow: none;
  border: 2px solid var(--form-border);
}

.form-container .isntSubmit.req-message {
  margin-bottom: 20px;
}

.form-container .req-message {
  display: none;
  background: var(--input-required);
  font-size: 16px;
  line-height: 20px;
  color: var(--white-color);
  padding: 10px;
  align-items: center;
  gap: 20px;
}

.form-container .req-message i {
  font-size: 18px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border: 1px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
}

.form-container .button-container {
  padding-top: 30px;
}

.form-container .button-container button:hover {
  background: #121212;
  color: var(--white-color);
}

.contactSubmit-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  width: 100%;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  display: none;
}

.contactSubmit-message p {
  font-size: 18px;
  line-height: 25px;
  color: var(--black-color);
  font-weight: 600;
}


/*Contact Form Section Responsive */
@media screen and (max-width: 768px) {
  .form-container .input-container {
    grid-template-columns: 1fr;
  }
}





/* Footer Section*/
.footer-top {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--footer-section-bg);
  border-bottom: 1px solid #3c3c48;
}

.footer-top .footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-container .title {
  font-family: var(--Poppins-font);
  font-weight: 700;
  font-size: 21px;
  line-height: 26px;
  color: var(--footer-section-color1);
  position: relative;
  margin-bottom: 40px;
}

.footer-container .title::before {
  content: "";
  width: 20px;
  height: 3px;
  position: absolute;
  bottom: -13px;
  background: var(--footer-section-color3);
}

.footer-container .footer-links a {
  font-size: 15px;
  color: var(--footer-section-color2);
  line-height: 23px;
  text-transform: capitalize;
  display: block;
  padding: 5px 0;
  transition: all 0.3s ease-in-out;
}

.footer-container .footer-links a i {
  padding-right: 10px;
}

.footer-container .footer-links a:hover {
  color: var(--footer-section-color3);
}

.footer-links a.active {
  color: var(--footer-section-color3);
  font-weight: 600;
}

.footer-top .footer-container label {
  color: var(--footer-section-color2);
  font-size: 14px;
}

.footer-top .footer-container input {
  background: #fff;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border: 1px solid #ddd;
  color: #121212;
  margin-bottom: 28px;
  width: 100%;
  padding: 12px 15px;
  margin-top: 10px;
}

.footer-bottom {
  padding-top: 25px;
  padding-bottom: 25px;
  color: var(--footer-section-color2);
  font-size: 14px;
  background: var(--footer-section-bg);
  text-align: center;
}

/* Footer Section Responsive */
@media screen and (max-width: 992px) {
  .footer-top .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .footer-top .footer-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-top .footer-container .mb-50 {
    margin-bottom: 50px;
  }
}

.top-link {
  font-size: 12px;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #121212;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  color: #fff;
  animation: bounce 2s ease-in-out infinite;
  visibility: hidden;
  z-index: -100;
}

.show-link {
  visibility: visible;
  z-index: 100;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}