html
{
    scroll-behavior: smooth;
}


body {
    background-color: #F6EFEA; /* Page background color */
  }
  .navbar {
    background-color: #142F43; /* Navbar color */
  }
  .navbar-nav .nav-link:hover {
    color: #F05E27 !important; /* Hover effect on navbar links */
  }
  .btn-quote {
    background-color: #F05E27; /* Button color */
    color: white;
  }
  h1, h2, h3 {
    color: #F05E27; /* Title/Heading color */
  }

  /* Styling for the banner */
  .banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* About Us Section Text Style */
.about-heading {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
  }
  
  .about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  /* Circle Icon Styling */
  .circle-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .circle-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #FFAB4C;
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .circle-icon:hover {
    transform: rotate(360deg);
    background-color: #F05E27;
  }
  
  .circle-icon-box p {
    margin-top: 10px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    text-align: center;
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .circle-icon-box {
      margin-bottom: 20px;
    }
  }
  
  .features-section {
    padding: 40px 20px;
  }

  .feature {
    text-align: center;
    padding: 20px;
    margin: 15px;
    flex: 0 1 calc(33.33% - 30px); /* 3 items per row with spacing */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    border-radius: 15px;
    backdrop-filter: blur(15px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    color: #333; /* Text color */
  }

  .feature-icon {
    font-size: 40px;
    color: #142f43;
  }

  .feature h5 {
    margin-top: 15px;
    font-weight: bold;
    color: #F05E27; /* Heading color for contrast */
  }

  .feature p {
    color: #142F43; /* Text color for better readability */
    margin-top: 10px;
  }

  @media (max-width: 992px) {
    .feature {
      flex: 0 1 calc(50% - 30px); /* 2 items per row */
    }
  }

  @media (max-width: 576px) {
    .feature {
      flex: 0 1 calc(100% - 30px); /* 1 item per row */
    }
  }


/* Services Section Styling */
.service-box {
width: 100%;
display: flex;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-box img {
width: 100%;
max-width: 350px;
height: auto;
border-radius: 10px;
}

.service-content {
flex: 1;
text-align: left;
}

.service-content h3 {
font-size: 24px;
font-weight: bold;
margin-bottom: 15px;
}

.service-content p {
font-size: 16px;
line-height: 1.6;
}

@media (max-width: 768px) {
.service-box {
  flex-direction: column !important;
}

.service-content {
  margin: 15px 0 0 0;
}
}



/* Glassmorphism Effect with Increased Shadow */
.card {
border-radius: 15px; /* Increase border radius */
backdrop-filter: blur(10px); /* Apply blur effect */
background-color: rgba(255, 255, 255, 0.1); /* Transparent background with slight opacity */
border: 1px solid rgba(255, 255, 255, 0.2); /* Add light border to enhance the frosted effect */
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Increased shadow for a deeper effect */
transition: all 0.3s ease; /* Smooth transition effect */
}

/* On hover, increase the brightness and apply a slight lift effect */
.card:hover {
background-color: rgba(255, 255, 255, 0.3); /* Brighter background on hover */
transform: translateY(-5px); /* Slight lift effect on hover */
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.card-img-top {
border-radius: 15px 15px 0 0; /* Round the top corners of the image */
max-height: 200px; /* Ensure the image has a fixed height */
object-fit: cover; /* Maintain aspect ratio of the image */
}

.card-body {
border-radius: 0 0 15px 15px; /* Round the bottom corners of the card */
}



.address-suggestions {
    background-color: #fff;
    border: 1px solid #ddd;
    margin-top: 5px;
    max-height: 150px;
    overflow-y: auto;
    position: absolute;
    width: 100%;
    z-index: 999;
  }

  .suggestion-item {
    padding: 10px;
    cursor: pointer;
    font-size: 0.9rem;
  }

  .suggestion-item:hover {
    background-color: #f0f0f0;
  }



  /* Navbar logo size */
.navbar-logo {
    width: 50px;
    height: auto;
    margin-right: 10px;
  }
  
  /* Navbar contact section */
  .navbar-contact {
    display: flex;
    align-items: center;
    margin-left: 20px; /* Space from the navbar links */
  }
  
  .phone-number {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
  }
  
  .whatsapp-icon {
    font-size: 20px;
    color: #25D366; /* WhatsApp Green Color */
    display: inline-block;
    transition: color 0.3s;
  }
  
  .whatsapp-icon:hover {
    color: #128C7E; /* WhatsApp Darker Green on hover */
  }
  
  /* Responsive design for smaller screens */
  @media (max-width: 1200px) {
    .navbar-contact {
      margin-left: 10px;
    }
  
    .phone-number {
      font-size: 14px;
    }
  
    .whatsapp-icon {
      font-size: 18px;
    }
  }
  
  @media (max-width: 900px) {
    .navbar-contact {
      display: none; /* Hide contact info on very small screens */
    }
  }
  