.cards {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.cards img{
  width: 100px;
  height: 100%;
}

/* Services Banner */
.contact-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .fullname {
    display: flex;
    justify-content: space-between;
  }
  
  .contact-banner h1 {
    position: relative;
    z-index: 1;
    font-size: 3rem;
  }
  
  .contact-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../images/services-banner-bg.jpg'); */
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
  }

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 10%;
}
.left-column {
    flex: 1;
    min-width: 300px;
}
.right-column {
    flex: 1;
    min-width: 300px;
}
.contact-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.contact-method {
    margin-bottom: 20px;
}
.contact-method p {
    margin: 5px 0;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input, textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}
button {
    background-color: #0056b3;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #003d7a;
}
/* Services Section */
.contact-section {
    padding: var(--spacing-xxl) 0;
  }
  
  .contact-section h2,
  .online-services h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xl);
    position: relative;
    padding-bottom: var(--spacing-md);
  }
  
  .contact-section h2::after,
  .online-services h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
  }
.social-icons {
    margin-top: 20px;
}
.social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 24px;
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #003d7a;
}

.social-images {
    width: 30px;
    height: 30px;
}
.emergency {
    color: #dc3545;
    font-weight: bold;
}
.icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    display: inline-block;
}

.image-container {
  position: relative;
  display: inline-block;
}

img.clickable {
  transition: transform 0.3s ease;
  cursor: zoom-in;
  max-width: 100%;
  height: auto;
}

img.expanded {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 999;
  cursor: zoom-out;
}

.mapDiv {
    width: 700px;
    height: 500px;
}

.mapDiv iframe{
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contact-container {
    margin: 0;
    padding: 0 20px;
    flex-direction: column;
  }

  .left-column,
  .right-column {
    min-width: 100%;
  }

  .mapDiv {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-banner h1 {
    font-size: 2.5rem;
  }

  .contact-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .about-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
  }

  .contact-container {
    padding: 0 15px;
  }

  .contact-card {
    padding: 15px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .mapDiv {
    height: 300px;
  }
}
