  body {
        position: relative;
        min-height: 100vh;
        color: #fff;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "DM Sans", sans-serif;
      }
    a{
      text-decoration: none;
    }

      body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-image: url("istockphoto-1462014819-612x612.jpg");
        background-size: cover;
        background-position: center;
        filter: blur(4px) brightness(0.7);
        z-index: -1;
      }

      header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
      }

      .logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: #fff;
         transition: color 0.3s ease;
      }
      .logo:hover {
        color: gold;
      }
      nav ul {
        list-style: none;
        display: flex;
        gap: 20px;
      }

      nav ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
      }

      nav ul li a:hover {
        color: gold;
      }

      .burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: absolute;
        right:20px;
      }


      .burger .line {
        width: 25px;
        height: 3px;
        background: white;
      }

      .hero {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 60px 10%;
        text-align: center;
      }

      .hero-text {
        max-width: 600px;
      }

      .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }

      .hero-text p {
        margin-bottom: 50px;
        font-size: 1rem;
      }

      .btn-get-offer {
        background-color:#001F3F;
        color: white;
        border-radius: 100px;
        padding: 4% 20%;
        font-size: 1.2vw;
        font-weight: 550;
        border: none;
        letter-spacing: 1.2px;
      }

      .features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 60px 10%;
      }

      .feature-box {
        background-color: rgba(238, 242, 252, 0.9);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        width: 100%;
        max-width: 300px;
        color: #000;
      }

      .feature-box img {
        width: 40px;
        height: auto;
      }

      .services-section {
        background-color: white;
        color: #001f3f;
        padding: 60px 10%;
        text-align: center;
      }

      .services-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
      }

      .services-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        justify-items: center;
      }

      .service-box {
        background-color: #ffffff;
        padding: 30px 20px;
        border-radius: 10px;
        max-width: 300px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
      }
.services-wrapper a.service-box {
  display: block;
  text-decoration: none;
  color: inherit;
}
      .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      }
   


 footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #001F3F;
    color: white;
    font-size: 1.2w;
}

.footer-links-section{
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-left: 5%;
    font-size: 90%;
    gap: 15%;
}

.link-texts, .phone,.contact-info{
    white-space: nowrap; 
    font-weight: lighter;
    font-size: 1.2vw;
}

.footer-links{
    color: white;
}

#footer-logo{
    font-size: 2vw;
    /* for editing logo */
}

.contact-info{
    margin-right: 10%;
}

.footer-email{
    color: white;
}

.phone-numbers{
    display: flex;
    flex-direction: column;
    margin-top: -5%;
}

.phone{
    margin-left: 10%;
    color: white;
}

      

      @media (max-width: 800px) {
     .service-box {
    max-width: 100%;      
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 20px;   
  }
        nav ul {
          display: none;
          flex-direction: column;
          background: navy;
          position: absolute;
          top: 70px;
          right: 20px;
          width: 200px;
          padding: 1rem;
          border-radius: 8px;
          z-index: 999;
        }

        nav ul.show {
          display: flex;
        }

        .burger {
          display: flex;
        }

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

        .btn-get-offer {
         /* font-size: 1.8vw;*/
           font-size: 16px;
        }

    footer{
        padding: 5%;
    }

    #footer-logo{
        align-items: start;
        order: 1;
        font-size: 4vw;
    }
    
    
    .footer-links-section{
        flex-direction: column;
        align-items: center;
        order: 2;
        font-size: 10vw;
    }

    .link-texts,.contact-info,.phone{
        font-size: 2vw;
    }

    .contact-info,.phone{
        order: 3;
        font-size: 2.5vw;
        margin-right: 0;
    }
}


/* ANIMATIONS */
.btn-get-offer{
  position: relative;
  text-decoration: none;
}

.btn-get-offer::after{
  content: "";
  width: 0%;
  height: 100%;
  background: gold;
  position: absolute;
  transition: all 0.4s ease-in-out;
  top: 0;
  right: 0;
  z-index: 1;
  border-radius: 100px;
}

.btn-get-offer:hover::after{
  right: auto;
  left: 0;
  width: 100%;
}

.btn-get-offer span{
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.btn-get-offer:hover span {
  animation: scaleUp 0.3s ease-in-out;
    color: #001F3F;

}

@keyframes scaleUp {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.footer-email:hover,.phone:hover,#footer-logo:hover,.footer-links:hover{
    color: gold;
    transition: color 0.3s ease;
}