header {
    background-image: url("./assets/gate\ \(9\).jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* height: 75vh; */
    /* padding-top:5%; */
    /* border-radius: 0px 0px 50% 50%; */
}
.contact-header{
    height: 50vh;
    display: flex;
    align-items: center;
}
h5 {
    color: #0D1E32;
}

h3 {
    font-weight: 600;
    font-size: 35px;
}
@media only screen and (max-width:768px){
    h3{
        font-size: 25px;
    }
}

.header-section {
    padding-top: 10%;
}

.header-content {
    padding: 7%;
    background-color: #0D1E32;
    border-radius: 15px 15px 0px 0px;
    color: white;
}

.quote-button {
    background-color: #fff;
    color: #0D1E32;
    border: 1px solid #0D1E32;
    border-radius: 5px;
}

.phone-button {
    border: #fff solid 1px;
    color: white;
    background-color: #0D1E32;
}

.review-button {
    background-color: #fff;
    color: #0D1E32;
    width: 50%;
    border: #0D1E32 solid 1px;
}

.header-link {
    text-decoration: none;
    color: white;
    padding-top: 1%;
}

.divider-section {
    padding-top: 3%;
    padding-bottom: 3%;
}

.service-card {
    background-color: #0d1e3298;
    background-image: url('./assets/gate\ \(4\).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    box-shadow: 5px 5px 5px #00000013;
    padding: 10%;
    border-radius: 10px;
    margin-top: 5%;
    margin-bottom: 5%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.fence-image {
    width: 80%;
    border-radius: 15px;
    border: 5px solid white;
    box-shadow: 5px 5px 5px #00000013;
}

.testimonial-content {
    background-color: #fff;
    color: #0D1E32;
    width: 90%;
    margin: auto;
    padding: 5%;
    text-align: center;
    border-radius: 15px;
}

.message-icon {
    width: 30px;
}

.quote-button {
    border-radius: 18px;
}

.green-section {
    background-color: rgb(0, 46, 14);
    color: white;
}

.recommendation {
    justify-content: center;
    text-align: center;
}

.logo-image1 {
    width: 400px;
}

/* ABOUT US PAGE */
.white-div {
    background-color: #ffffff95;
    color: black;
    padding: 5%;
}

/* ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
} */

/* Style the list icon with a tick mark */
/* li::before {
    content: "\f00c"; /* Unicode for checkmark icon 
    font-family: FontAwesome;
    margin-right: 10px;
    color: #000000; /* Change the color as desired 
} */
nav ul li {
    list-style: none;
    content: none;
}

.navy-background {
    background-image: url('./assets/gate\ \(3\).jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: white !important;
    background-attachment: fixed;
}

.navy-background h5 {

    color: white !important;

}

.image-container {
    border-radius: 15px;
    border: 5px white solid;
}
.dark-button{
    background-color: #0D1E32;
    color: white;
    border-radius: 5px;
    margin-top: 3%;
}
.light-button{
    background-color: #fff;
    color: #0D1E32;
    border: 2px solid #0D1E32;
    border-radius: 5px;
    margin-top: 3%;
}
.testimonial-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  
  .testimonial-item {
    /* background-color: #f9f9f9; */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
  }
  
  .testimonial-card {
    position: relative;
  }
  
  .quote-icon {
    position: absolute;
    left: -20px;
    top: -20px;
    font-size: 24px;
    color: #3498db;
  }
  
  .testimonial-author h6 {
    margin-top: 10px;
    font-weight: bold;
  }
  
  /* Add your animations CSS, e.g., Animate.css */
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  
  /* Example fade-in animation */
  .fadeIn {
    animation-name: fadeIn;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }