@media (max-width: 600px) {
    #q{
        width:80%!important;
    }
}
.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  .call-btn {
    background-color: #ef7f1a;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
  }
  .phone-number {
    font-size: 16px;
    margin-left: 10px;
    white-space: nowrap;
  }

/*Sevice */
.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 50px 20px;
    max-width: 1280px;
    margin: auto;
  }
  
  .service-card {
    width: calc(25% - 30px); /* 4 cards per row with gap considered */
    min-width: 250px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  /* Responsive: 2 per row on tablets */
  @media (max-width: 992px) {
    .service-card {
      width: calc(50% - 30px);
    }
  }
  
  /* Responsive: 1 per row on phones */
  @media (max-width: 600px) {
    .service-card {
      width: 100%;
    }
  }
  
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }
  
  .service-inner {
    padding: 30px 20px;
    text-align: center;
  }
  
  .service-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-bottom: 20px;
  }
  
  .service-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
  }
  
  .service-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
  }
  
  /* Hide service-back since we don't want flipping */
  .service-back {
    display: none;
  }
  
   
/* Footer customization */
footer {
    background-color: #000; /* Just in case to reinforce black background */
    color: #fff;
  }
  
  footer a {
    color: #ffffff;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #ef7f1a; /* Bootstrap warning color (yellow) */
    text-decoration: none;
  }
  
  footer h5 {
    font-weight: bold;
    letter-spacing: 0.5px;
  }
  
  footer p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  /* Social icons spacing */
  footer .fab {
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    background-color: #212529;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  footer .fab:hover {
    background-color: #ef7f1a;
    color: #000;
  }