body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #1A1D2E;
  color: white;
    }

.contact-container {
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.branches-header {
font-family: 'Poppins', sans-serif;
font-size: 48px;
font-weight: 700; 
color: red;
text-align: center;
letter-spacing: 2px;
text-transform: uppercase;
-webkit-background-clip: text;
background-clip: text;
margin-top: 30px;
position: relative;
animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
0% {
  opacity: 0;
  transform: translateY(-20px);
}
100% {
  opacity: 1;
  transform: translateY(0);
}
}

.branches-header:hover {
color: black;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
cursor: pointer;
}

@media (max-width: 768px) {
.branches-header {
  font-size: 36px;
  padding: 30px 15px;
}
}

@media (max-width: 480px) {
.branches-header {
  font-size: 28px;
  padding: 20px 10px;
}
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}

.office {
  margin: 20px;
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 5px;
  transition: transform 0.3s;
}

.office h2 {
  color: #ff0000;
}

.office p {
  margin: 5px 0;
}

.office:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  color: white;
    }
    .footer-section h3 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 2px solid #C8102E;
  display: inline-block;
    }
    .footer-section p, .footer-section h5 {
  margin: 5px 0;
  line-height: 1.5;
    }
    .contact-info {
  color: black;
  font-weight: bold;
    }
    .footer-section a {
  color: white;
  text-decoration: none;
    }
    .social-media {
  display: flex;
  justify-content: center;
  margin-top: 10px;
    }
    .social-media img {
  width: 24px;
  height: 24px;
  margin: 0 10px;
  filter: invert(1);
    }
    .footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
    }

.header-container {
display: flex;             
justify-content: center;  
align-items: center;   
height: 100%;               
}
     
#contact-image {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  top: 0;
  left: 0;
}
