body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

#footer {
  padding-top: 0 !important;
}

a {
  color: #000;
  text-decoration: none;
}

/* custom_vt_header */
.custom_vt_header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
}

.custom_vt_logo {
  width: 175px;
}

.custom_vt_header_center {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 13px;
  color: #333;
  gap: 6px;
}

.custom_vt_info_item {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.custom_vt_btn_connexion {
  background-color: #4caf50;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom_vt_btn_connexion:hover {
  background-color: #43a047;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .custom_vt_header {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .custom_vt_header_center {
    font-size: 12px;
  }

  .custom_vt_btn_connexion {
    width: 100%;
    max-width: 200px;
  }

  .custom_vt_info_item {
    flex-direction: column;
    gap: 4px;
  }
}

@keyframes fadeSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

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

.custom_vt_header {
  animation: fadeSlideDown 0.8s ease-out;
}

/* end custom_vt_header */

/* custom_vt_navbar_wrapper */
.custom_vt_navbar_wrapper {
  position: sticky;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  padding: 0;
  height: auto;
  animation: navbarFadeIn 0.8s ease-in-out;
  z-index: 999999;
  transition: top 0.3s ease, background-color 0.3s ease;
}

.custom_vt_navbar {
  background: #4caf50;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 5px 40px;
  display: flex;
  justify-content: center;
  width: 70%;
  max-width: 100%;
  align-items: center;
}

.custom_vt_menu {
  list-style: none;
  display: flex;
  gap: 30px;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 15px 0;
  transition: max-height 0.3s ease-in-out;
}

.custom_vt_menu li a {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: white !important;
}

.custom_vt_menu li a:hover {
  color: #1c2540 !important;
}

.custom_vt_phone_floating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1c2540;
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  margin-left: 50px;
  z-index: 9999;
}

.custom_vt_nav_toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  font-weight: bold;
  color: #4caf50;
  cursor: pointer;
  margin-right: 20px;
}

.custom_vt_navbar_wrapper.sticky {
  background-color: #4caf50;
}

.custom_vt_navbar_wrapper.sticky .custom_vt_phone_floating {
  border-radius: 0 !important;
}

.custom_vt_navbar,
.custom_vt_phone_floating {
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .custom_vt_navbar_wrapper {
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .custom_vt_nav_toggle {
    display: block;
    /* margin-bottom: 10px; */
  }

  .custom_vt_navbar {
    position: absolute;
    top: 24%;
    width: 93%;
    margin-left: 7%;
    border-radius: 0;
    padding: 0px 0px;
    z-index: 999999;
  }

  .custom_vt_menu {
    flex-direction: column;
    gap: 15px;
    display: none;
  }

  .custom_vt_menu.open {
    display: flex;
  }

  .custom_vt_phone_floating {
    border-radius: 0px;
    margin: 0;
    width: 91%;
    justify-content: center;
  }
}

@keyframes stickySlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navbarFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

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


/* end  custom_vt_navbar_wrapper */

/* custom_vt_hero */
.custom_vt_hero {
  position: relative;
  height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -20px;
}

.custom_vt_swiper {
  height: 100%;
}

.custom_vt_slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.custom_vt_slide_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.custom_vt_slide_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 35%,
      rgba(0, 0, 0, 0) 65%);
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
}

.swiper-pagination-bullet-active {
  background-color: #4caf50;
}

.custom_vt_hero_bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
}

.custom_vt_hero_overlay {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7) 35%,
      rgba(0, 0, 0, 0) 65%);
}

.custom_vt_hero_content {
  position: relative;
  z-index: 3;
  color: white;
  padding-left: 80px;
  max-width: 600px;
  margin-top: 20vh;
  font-family: "Poppins", sans-serif;
  animation: fadeUp 0.8s ease-out both;
}

.custom_vt_subtitle {
  color: #4caf50;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
}

.custom_vt_hero_content h1 {
  font-size: 48px;
  margin: 20px 0;
  font-weight: bold;
}

.custom_vt_hero_actions {
  display: flex;
  gap: 20px;
}

.custom_vt_btn_services_header {
  background: #4caf50;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  animation: fadeUp 1s ease-out both;
  animation-delay: 0.4s;
  transition: all 0.3s ease;
}

.custom_vt_btn_services_header:hover {
  background-color: white;
  transform: scale(1.03);
  color: #43a047;
}

.custom_vt_btn_video {
  background: white;
  color: #4caf50;
  padding: 14px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  animation: fadeUp 1.2s ease-out both;
  animation-delay: 0.6s;
}

.custom_vt_btn_video:hover {
  background: #4caf50;
  color: white;
}

/* Modal vidéo */
.custom_vt_video_modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeInModal 0.3s ease-in-out forwards;
}

.custom_vt_video_modal_content {
  position: relative;
  margin: 10% auto;
  width: 90%;
  max-width: 800px;
  background: transparent;
}

.custom_vt_video_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.custom_vt_video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom_vt_video_close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 35px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (max-width: 1024px) {
  .custom_vt_hero {
    height: 600px;
  }

  .custom_vt_hero_content {
    padding-left: 20px;
    max-width: 90%;
    margin-top: 10vh;
  }

  .custom_vt_hero_content h1 {
    font-size: 36px;
  }

  .custom_vt_btn_services,
  .custom_vt_btn_video {
    padding: 12px 16px;
    font-size: 0.9em;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* end custom_vt_hero */

/* custom_vt_features_section  */
.custom_vt_features_section {
  background: #eaeaea;
  padding: 16vh 20px;
  margin-top: 5vh;
}

.custom_vt_features_grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
}

.custom_vt_feature_card {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 12px;
  width: 400px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: -23vh;
  z-index: 9;
  animation: fadeUpCard 0.8s ease forwards;
  transition: all 0.3s ease;
}

.custom_vt_feature_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.custom_vt_feature_card img{
  background: #1c2540;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 0 10px 0 12px;
}

.custom_vt_feature_card h3 {
  margin: 15px 0 5px;
  font-size: 30px;
  color: #1c2540;
}

.custom_vt_feature_card p {
  font-size: 17px;
  margin: 15px 0;
  color: #555;
}

@media screen and (max-width: 1024px) {
  .custom_vt_features_grid {
    gap: 40px;
    padding: 0 20px;
  }

  .custom_vt_feature_card {
    width: 100%;
    max-width: 360px;
    margin-top: 0;
  }

  .custom_vt_feature_card h3 {
    font-size: 24px;
  }

  /* .custom_vt_features_section {
    background: #eaeaea;
    padding: 5vh 20px;
    margin-top: 5vh;
  } */
}

@media screen and (max-width: 600px) {

  /* .custom_vt_features_section {
      padding: 37px 20px;
      margin-top: 0vh;
    }
   */
  .custom_vt_feature_card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 0;
  }

  .custom_vt_feature_card img {
    margin-bottom: 12px;
  }
}

@keyframes fadeUpCard {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

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

.custom_vt_feature_card:nth-child(1) {
  animation-delay: 0.2s;
}

.custom_vt_feature_card:nth-child(2) {
  animation-delay: 0.4s;
}

.custom_vt_feature_card:nth-child(3) {
  animation-delay: 0.6s;
}

/* end custom_vt_features_section */
/* custom_vt_expertise_section */

.custom_vt_expertise_section {
  background: white;
  padding: 60px 20px;
}

.custom_vt_expertise_container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.custom_vt_expertise_image {
  position: relative;
  flex: 1 1 400px;
  min-width: 300px;
  margin-top: -110px;
  animation: fadeInLeft 1s ease both;
}

.custom_vt_expertise_image img {
  width: 100%;
  border-radius: 10px;
  height: 600px;
  object-fit: cover;
}

.custom_vt_expertise_title {
  position: absolute;
  top: 0;
  left: 0;
  background: #4caf50;
  color: white;
  padding: 12px 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: bold;
  width: 100%;
  text-align: center;
}

.custom_vt_expertise_text {
  flex: 1 1 500px;
  animation: fadeInRight 1s ease both;
  animation-delay: 0.3s;
}

.custom_vt_expertise_text h2 {
  font-size: 28px;
  color: #1c2540;
  margin: 10px 0 20px;
}

.custom_vt_expertise_text p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #555;
}

.custom_vt_checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.custom_vt_checklist li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
  color: #1c2540;
}

.custom_vt_checklist li::before {
  content: "✔";
  color: #4caf50;
  position: absolute;
  left: 0;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .custom_vt_expertise_section {
    background: white;
    padding: 40px 20px;
  }

  .custom_vt_expertise_container {
    flex-direction: column;
    text-align: center;
  }

  .custom_vt_expertise_image {
    margin-top: 0;
    width: 100%;
  }

  .custom_vt_expertise_image img {
    height: auto;
    max-height: 400px;
  }

  .custom_vt_expertise_title {
    font-size: 16px;
  }

  .custom_vt_expertise_text {
    width: 100%;
    padding: 0 0px;
  }

  .custom_vt_expertise_text h2 {
    font-size: 24px;
  }

  .custom_vt_btn_services {
    width: 100%;
    max-width: 300px;
  }
}

/* end custom_vt_expertise_section */
/* custom_vt_services_section */
.custom_vt_services_section {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.custom_vt_section_title {
  font-size: 2em;
  margin-bottom: 40px;
  color: #222;
}

.custom_vt_services_grid {
  display: flex;
  gap: 20px;
  width: 75%;
  flex-wrap: wrap;
  justify-content: center;
}

.custom_vt_service_card {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 25%;

}

.custom_vt_service_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.custom_vt_service_card img {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.custom_vt_service_card h3 {
  margin: 0 0 10px;
  font-size: 1.2em;
  color: #4caf50;
}

.custom_vt_service_card p {
  margin: 0;
  color: #555;
  font-size: 0.95em;
}

@media screen and (max-width: 1024px) {
  .custom_vt_service_card {
    width: 45%;
  }

  .custom_vt_services_grid {
    width: 90%;
  }
}

@media screen and (max-width: 600px) {
  .custom_vt_services_section {
    padding: 0px 0px 40px 0px;
  }

  .custom_vt_service_card {
    width: 100%;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .custom_vt_service_card img {
    margin-bottom: 12px;
  }

  .custom_vt_service_card div {
    text-align: center;
  }

  .custom_vt_services_grid {
    gap: 25px;
  }
}

/* Délai différent pour chaque carte (effet cascade) */
.custom_vt_service_card:nth-child(1) {
  animation-delay: 0.1s;
}

.custom_vt_service_card:nth-child(2) {
  animation-delay: 0.2s;
}

.custom_vt_service_card:nth-child(3) {
  animation-delay: 0.3s;
}

.custom_vt_service_card:nth-child(4) {
  animation-delay: 0.4s;
}

.custom_vt_service_card:nth-child(5) {
  animation-delay: 0.5s;
}

.custom_vt_service_card:nth-child(6) {
  animation-delay: 0.6s;
}

/* end custom_vt_services_section */
/* custom_vt_stats_section */

.custom_vt_stats_section {
  padding: 30px 20px;
  background-color: #4caf50;
}

.custom_vt_stats_container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.custom_vt_stat_card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom_vt_stat_card h3 {
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 5px;
  margin-top: 0;
  font-weight: 700;
}

.custom_vt_stat_card p {
  margin: 0;
  font-size: 1em;
  color: #fff;
}

.custom_vt_stat_card img {
  color: #fff;
  width: 70px;
  height: 70px;
}

@keyframes fadeUpStat {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom_vt_stat_card {
  animation: fadeUpStat 0.8s ease forwards;
  opacity: 0;
}

/* Animation en cascade */
.custom_vt_stat_card:nth-child(1) {
  animation-delay: 0.1s;
}

.custom_vt_stat_card:nth-child(2) {
  animation-delay: 0.2s;
}

.custom_vt_stat_card:nth-child(3) {
  animation-delay: 0.3s;
}

.custom_vt_stat_card:nth-child(4) {
  animation-delay: 0.4s;
}

/* custom_vt_stats_section */
/* custom_vt_offre_section */
.custom_vt_offre_section {
  background-color: #f9f9f9;
  padding: 45px 20px;
  text-align: center;
}

.custom_vt_offre_header h2 {
  font-size: 2em;
  color: #222;
  margin-bottom: 40px;
}

.custom_vt_offre_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 16px rgba(134, 134, 134, 0.08);
}

.custom_vt_offre_card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  padding: 30px 25px;
  max-width: 400px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(134, 134, 134, 0.5);
  text-align: left;
  flex: 1 1 300px;
  position: relative;
}

.custom_vt_offre_header p {
  font-size: 1em;
  color: #4caf50;
  margin-bottom: 10px;
}

.custom_vt_offre_card h3 {
  font-size: 1.4em;
  color: #4caf50;
  margin-bottom: 10px;
}

.custom_vt_offre_tag {
  display: inline-block;
  font-weight: bold;
  color: #888;
  font-size: 0.9em;
  margin-bottom: 20px;
  margin-left: 0px;
}

.custom_vt_offre_card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.custom_vt_offre_card ul li {
  margin-bottom: 12px;
  color: #333;
  font-size: 1em;
  position: relative;
  padding-left: 20px;
}

.custom_vt_offre_card ul li::before {
  content: "✔";
  color: #4caf50;
  position: absolute;
  left: 0;
  top: 0;
}

.custom_vt_btn_services {
  background-color: #1c2540;
  color: white !important;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  align-self: flex-end;
}

.custom_vt_btn_services:hover {
  background-color: #43a047;
  color: white !important;
}

@keyframes fadeUpOffre {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom_vt_offre_card {
  animation: fadeUpOffre 0.8s ease forwards;
  opacity: 0;
}

.custom_vt_offre_card:nth-child(1) {
  animation-delay: 0.1s;
}

.custom_vt_offre_card:nth-child(2) {
  animation-delay: 0.3s;
}

.custom_vt_offre_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgb(97, 97, 97, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (max-width: 768px) {
  .custom_vt_offre_section {
    padding: 15px 20px;
  }

  .custom_vt_offre_header h2 {
    font-size: 1.5em;
    margin-bottom: 12px;
    margin-top: 0;
  }

  .custom_vt_offre_grid {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .custom_vt_offre_card {
    width: 100%;
    max-width: 100%;
    padding: 20px 0px;
  }

  .custom_vt_offre_card h3 {
    margin-bottom: 0;
    margin-top: 0px;
    margin-left: 15px;
  }

  .custom_vt_offre_card ul {
    margin-bottom: 0;
    margin-top: 0px;
    margin-left: 15px;
  }

  .custom_vt_btn_services {
    align-self: flex-end;
    margin-right: 15px;
  }

  .custom_vt_offre_tag {
    margin-left: 15px;
  }
}

/* end custom_vt_offre_section */
/* custom_vt_contact_section */
.custom_vt_contact_section {
  background: url("../img/pexels-mart-production-7709228.jpg") center/cover no-repeat;
  padding: 60px 20px;
  color: #222;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.custom_vt_contact_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* opacité de l'assombrissement */
  z-index: 1;
}

.custom_vt_contact_wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.custom_vt_contact_left {
  flex: 1 1 500px;
}

.custom_vt_contact_left h2 {
  font-size: 2em;
  margin: 20px 0;
  color: #4caf50;
}

.custom_vt_contact_left p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff;
}

.custom_vt_contact_checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.custom_vt_contact_checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #ffffff;
}

.custom_vt_contact_checklist li::before {
  content: "✔";
  color: #4caf50;
  position: absolute;
  left: 0;
  top: 0;
}

.custom_vt_contact_stats {
  display: flex;
  gap: 30px;
}

.custom_vt_contact_stats .stat {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custom_vt_contact_stats .stat strong {
  display: block;
  font-size: 1.6em;
  color: #4caf50;
}

.custom_vt_contact_stats .stat span {
  font-size: 0.95em;
  color: #555;
}

.custom_vt_contact_right {
  flex: 1 1 400px;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.custom_vt_contact_right h3 {
  margin-bottom: 20px;
  color: #222;
  font-size: 1.4em;
}

.custom_vt_contact_form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #444;
}

.custom_vt_contact_form input,
.custom_vt_contact_form textarea {
  width: auto;
  padding: 10px 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.custom_vt_contact_form button {
  margin-top: 20px;
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

.custom_vt_contact_form button:hover {
  background-color: #43a047;
}

/* end custom_vt_contact_section */
/* custom_vt_global_expertise*/

.custom_vt_global_expertise {
  position: relative;
  background: url("../img/pexels-pixabay-41949.jpg") center center / cover no-repeat #4caf50;
  padding: 100px 20px;
  overflow: hidden;
  color: #fff;
}

.custom_vt_global_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.custom_vt_global_container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.custom_vt_global_left,
.custom_vt_global_right {
  flex: 1 1 450px;
}

.custom_vt_global_left h3 {
  text-transform: uppercase;
  font-size: 1.3em;
  letter-spacing: 1px;
  color: #aaffc7;
  margin-bottom: 10px;
}

.custom_vt_global_left h2 {
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 10%;
}

.custom_vt_global_bigstat {
  font-size: 3.8em;
  font-weight: bold;
  color: #fff;
}

.custom_vt_global_bigstat span {
  display: block;
  font-size: 1em;
  letter-spacing: 1px;
  color: #caffea;
  margin-top: 10%;
}

.custom_vt_global_desc {
  font-size: 1.1em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

.custom_vt_global_stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}

.custom_vt_global_stats .stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.custom_vt_global_stats h4 {
  font-size: 2em;
  margin-bottom: 5px;
  margin-top: 0;
  color: #fff;
}

.custom_vt_global_stats span {
  font-size: 0.95em;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom_vt_global_stats .stat img {
  width: 50px;
  height: 50px;
}

/* end custom_vt_global_expertise */

/* custom_vt_scroll_buttons */
.custom_vt_scroll_buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom_vt_scroll_buttons span {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 11px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  border: 1px solid white;
}

.custom_vt_scroll_buttons span:hover {
  border: 1px solid black;
}

.custom_vt_scroll_buttons span.show {
  opacity: 1;
  pointer-events: auto;
}

.custom_vt_scroll_buttons span:hover {
  transform: scale(1.1);
}
/* end custom_vt_scroll_buttons */

/* custom_vt_footer */
.custom_vt_footer {
  background-color: #111;
  padding: 60px 20px;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
}

.custom_vt_footer_container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.custom_vt_footer_col {
  flex: 1 1 280px;
}

.custom_vt_footer_logo {
  width: auto;
  margin-bottom: 10px;
}

.custom_vt_footer_col h3 {
  margin: 0;
  font-size: 2.5em;
  color: #4caf50;
}

.footer_item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer_item img {
  flex-shrink: 0;
  margin-top: 3px;
}

.footer_item small {
  font-size: 1.2em;
  color: #ccc;
  text-transform: uppercase;
}

.footer_item strong {
  display: block;
  color: #fff;
  margin-top: 2px;
}

.footer_item span {
  font-size: 0.9em;
  color: #ccc;
}

/* end custom_vt_footer */