.header .logo img,
  .footer .footer-about .logo img {
    max-height: 45px;
    margin-right: 5px
  }

  @media(min-width:1140px) {
    .header .logo img {
      max-height: 60px;
      margin-right: 0
    }
  }

  .hero {
    width: 100%;
    min-height: 70vh;
    z-index: 3;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
  }

  .hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
  }

  .hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2
  }

  .hero .container,
  .whyUs {
    z-index: 3
  }

  .hero .welcome h1,
  .hero .welcome h2{
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .6)
  }
  .hero .welcome p {
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .6)
  }

  .hero .welcome h1 {
    font-size: clamp(40px, 8vw, 20px)
  }

  .hero .welcome h2 {
    font-size: clamp(34px, 6vw, 16px);
    font-weight: 700
  }

  .hero .welcome p {
    font-size: clamp(20px, 4vw, 12px);
    margin-bottom: 0
  }

  @media(max-width:768px) {
    .hero .welcome h1 {
      font-size: 35px;
      font-weight: 700
    }
    .hero {
      min-height: 400px;
    }

    .hero .welcome h2 {
      margin: 0;
      font-size: 20px;
      font-weight: 700
    }

    .hero .welcome p {
      font-size: 14px;
      margin-top: 10px
    }

    #header .navbar {
      order: 3
    }

    #header .logo:last-of-type {
      order: 2
    }
  }

  .whyUs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 30px 0
  }

  .whyUs .content {
    margin-top: 0;
    z-index: 2
  }

  .whyUs .content .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
    border-radius: 4px
  }

  .whyUs .content .why-box h3 {
    color: var(--contrast-color);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px
  }

  .whyUs .content .why-box p {
    margin-bottom: 30px
  }

  .whyUs .content .why-box .more-btn {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--contrast-color), transparent 80%);
    display: inline-block;
    padding: 6px 30px;
    border-radius: 50px;
    transition: .4s
  }

  .whyUs .content .why-box .more-btn:hover {
    background: var(--contrast-color);
    color: var(--accent-color)
  }

  .whyUs .content .icon-box {
    background: color-mix(in srgb, var(--surface-color), transparent 20%);
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
    padding: 40px 30px;
    width: 100%
  }

  .whyUs .content .icon-box i {
    font-size: 40px;
    color: var(--accent-color)
  }

  .whyUs .content .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0 20px
  }

  .whyUs .content .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%)
  }

  .hero .hero-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--surface-color);
    transition: .3s
  }

  .hero .hero-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color)
  }

  .hero .hero-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color)
  }

  .hero .hero-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none
  }

  .hero .hero-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -8px -9px -8px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: .3s;
    border-radius: 50px
  }

  .hero .hero-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%)
  }

  .php-email-form .error-message,
  .php-email-form .sent-message,
  .php-email-form .loading {
    display: none;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600
  }

  .php-email-form .error-message {
    background: #ff5821;
    color: #fffbfa00;
    text-align: left
  }

  .php-email-form .sent-message {
    color: #fff;
    background: #ff5821
  }

  .php-email-form .loading {
    background: var(--surface-color)
  }

  .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite
  }

  @keyframes php-email-form-loading {
    0% {
      transform: rotate(0)
    }

    100% {
      transform: rotate(360deg)
    }
  }


  .alt-services .details {
    background: white;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 5px;
    transition: allease-in-out 0.3s;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
  }

  @media(max-width:768px) {
    .col-img-3 img {
      width: 170px
    }

    .alt-services .details {
      bottom: 5px;

    }
  }

  @media(min-width:768px) {
    .col-img-3 img {
      width: 220px
    }

    .hero {
      min-height: 700px;
    }


  }

  .titlu {
    background: #fff;
    box-shadow: 2px 4px 17px rgba(107, 107, 107, .3);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px
  }

  .titlu-content {
    display: flex;
    flex-direction: column;
    align-items: start
  }

  .google-logo {
    margin-right: 10px;
    max-width: 150px
  }

  .reviews-title,
  .rating-value {
    font-size: 1.7rem;
    font-weight: 900
  }

  .rating {
    margin-bottom: 0
  }

  .logo-locksmith {
    max-height: 70px
  }

  .btn-danger {
    padding: 10px 30px
  }

  .testimonial-slider {
    overflow: hidden
  }

  .testimonial-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    box-shadow: 2px 4px 17px rgba(107, 107, 107, .3);
    padding: 10px;
    border-radius: 10px;
    z-index: 300;
    margin: 0
  }

  .testimonial-slider .testimonial-item {
    text-align: left;
    max-width: 100%
  }

  .testimonial-slider .client-logo {
    width: 100%;
    height: auto;
    margin-bottom: 10px
  }

  .testimonial-slider .testimonial-img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 10px
  }

  .testimonial-slider .details {
    margin-bottom: -10px
  }

  .testimonial-slider .details h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #2196f3;
    line-height: 1.1em;
    margin-left: 10px;
    margin-bottom: 5px
  }

  .testimonial-slider .details h3 span {
    font-size: 12px;
    color: #000
  }

  .testimonial-slider .testimonial-text {
    margin-top: -10px;
    text-align: left
  }

  .testimonial-slider .swiper-button-next,
  .testimonial-slider .swiper-button-prev {
    color: #000;
    font-size: 14px
  }

  .testimonial-slider .swiper-button-next {
    margin-right: -10px
  }

  .testimonial-slider .swiper-button-prev {
    margin-left: -10px
  }

  .testimonial-slider .swiper-pagination-bullet {
    background: #000
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -5px
  }

  .about .content h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 10px
  }

  .clients .swiper-slide img {
    opacity: 1;
    transition: 0.3s;
    filter: grayscale(0);
  }

  section#discount {
        background-color: #212529;
        background-image: url("https://mrspeedy.co.uk/assets/img/discount.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        /* Extinde imaginea să acopere toată secțiunea */
        width: 100%;
        min-height: 60vh;
        /* Setează înălțimea minimă la 40% din ecran */
        display: flex;
        /* Asigură centrare pe verticală și orizontală */
        align-items: center;
        /* Centrează conținutul pe verticală */
      }

      section#discount .section-heading-discount {
        color: #fff;
        font-size: 3.3rem;
        letter-spacing: 4px;
        font-weight: bold;
      }

      section#discount .section-discount {
        color: #FFC800;
        font-size: 2.8rem;
        letter-spacing: 3px;
        font-weight: bold;
      }

      section#discount a {
        padding: 10px 40px;
        font-weight: 600;
        letter-spacing: 0.9px;
      }

      @media (max-width: 768px) {
        section#discount .section-heading-discount {
          font-size: 2.3rem;
        }

        section#discount .section-discount {
          font-size: 1.8rem;
        }
      }
      @media (min-width: 768px) {
        section#discount {
  
        min-height: 600px;

      }
      }