
:root{
    --app-color: #D1362A;
}

/* Global fix for layout overflow */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Make all elements respect container bounds */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Add to your global CSS */
body.scroll-lock {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.mobile-menu-overlay {
  -webkit-overflow-scrolling: touch;
  touch-action: none; /* disable pinch zoom scroll */
}


section{
    width: 100%;
    height: 100vh;
    max-height: auto;
    overflow-x: hidden !important;
}

.contact-center-boxes .card-1{
    background-image: url('../img/service/imagedakun/happy-customers.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: #131313a9;

    height: 350px;
}

.contact-center-boxes .card-2{
    background-image: url('../img/service/imagedakun/investor1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: #131313a9;

    height: 350px;
}

.contact-center-boxes .card-3{
    background-image: url('../img/service/imagedakun/partner.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: #131313a9;

    height: 350px;
}

.contact-center-boxes .card-4{
    background-image: url('../img/service/imagedakun/carrer.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    background-color: #131313a9;

    height: 350px;
}


.contact-center-boxes .box-title div a{
    color: var(--app-color);
}

@media (max-width: 768px) {
  .contact-center-boxes .card-1{
    height: 250px;
  }

  .contact-center-boxes .card-2{
    height: 250px;
  }

  .contact-center-boxes .card-3{
    height: 250px;
  }

  .contact-center-boxes .card-4{
    height: 250px;
  }
}