nav{
    margin: 0 0 0 21.2rem;
}
.contact-intro {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #0b2282, #1e3a8a);
    color: white;
    margin-top: 80px;
}

.contact-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-intro p {
    font-size: 1.2rem;
    color: #e0e7ff;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 320px;
    text-align: right;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: #e26413;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #0b2282;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 5px 0;
}

.contact-actions {
    text-align: center;
    margin: 50px auto;
    padding: 0 20px;
}

.call-btn, .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0b2282;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    margin: 0 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #10b981;
}

.call-btn:hover {
    background: #143aa0;
    transform: translateY(-3px);
}

.whatsapp-btn:hover {
    background: #0d9668;
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #1f2937;
    color: #d1d5db;
    margin-top: 80px;
}

.footer-bottom {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    .contact-card {
        width: 100%;
        max-width: 350px;
    }
    .call-btn, .whatsapp-btn {
        display: block;
        width: 80%;
        max-width: 300px;
        margin: 15px auto;
    }
}
.social-links {
    display: flex;
    gap: 15px;
    margin: 15px 135px 0 0;
}
.contact-info-footer li {
    margin: 0 135px 15px 0;
    display: flex;
    align-items: center;
    color: #d1d5db;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}

.contact-cards-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; 
}

.contact-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  width: 320px;
  text-align: right;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}


.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}

.contact-cards-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card,
.map-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card {
  padding: 30px;
  width: 485px;
  text-align: right;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 2rem;
  color: #e26413;
  margin-bottom: 15px;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: #0b2282;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin: 5px 0;
}

.map-card {
  width: 100%;
  max-width: 1000px;
  padding: 15px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 810px;
  border: none;
  border-radius: 12px; 
}