body {
  /* background-color: rgba(0, 0, 0, 0.15);; */
  background-color: #f9f9f9;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.container_head {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
  animation: fadeIn 1s ease;
}

h1 {
  color: #1a2a6c;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.tagline {
  color: #3498db;
  font-size: 1.2rem;
  font-weight: 500;
}

.content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-card {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: slideInLeft 1s ease;
}

.map-container {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: slideInRight 1s ease;
}

.map-placeholder {
  
  background: linear-gradient(45deg, #1a2a6c, #3498db);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 20px;
  text-align: center;
}

.contact-info {
  margin: 20px 0;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #020537, #F02407);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}

.info-text h3 {
  color: #1a2a6c;
  margin-bottom: 5px;
}

.info-text p {
  color: #555;
  font-size: 1.1rem;
}

.info-text a {
  color: #3498db;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-text a:hover {
  color: #1a2a6c;
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }

  h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }
}

.contact-btn {
  display: inline-block;
  background: linear-gradient(45deg, #1a2a6c, #3498db);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #3498db, transparent);
  margin: 20px 0;
}
