/* Footer Container */
/* Footer Container */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 60px;
  background-color: #000;
  color: white;
}

/* Subscribe Section */
.subscribe-section {
  width: 100%;
  text-align: center;
  background-color: #1d1345;
  padding: 40px 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  animation: fadeIn 1.2s ease-in-out;
}

.subscribe-section h1 {
  font-size: 45px;
  color: #fff;
  margin-bottom: 10px;
}

.subscribe-section p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  width: 375px;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
}

.subscribe-form button {
  padding: 12px 24px;
  background-color: #f7c59f;
  color: #1d1345;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.subscribe-form button:hover {
  background-color: #ffffff;
  color: #1d1345;
  transform: translateY(-2px);
}

/* Fade In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Top Row Inside Footer */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}

.top-column {
  flex: 1;
  min-width: 220px;
  margin: 20px;

}

.top-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.top-heading img {
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  color: white;
  border-radius: 15px;
}

.top-heading h1 {
  font-size: 18px;
  color: #f7c59f;
}

.top-column p {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Footer Bottom Columns */
.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  display: flex;
  flex-direction: column;
}

.footer-column h1 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #f7c59f;
}

.footer-column p {
  font-size: 16px;
  line-height: 1.5;
  color: #e0e0e0;
}

.footer-map {
  width: 100%;
  background-color: #333333;
  padding: 20px 0;
  text-align: center;
  color: #fff;
}

.footer-map h1 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #ffcc00;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  border-top: 1px solid #444;
  color: #e0e0e0;
  flex-wrap: wrap;
}

.footer-bottom .footer-left p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom .footer-right a {
  margin-left: 15px;
  display: inline-block;
}

.footer-bottom .footer-right img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  
}




/* Responsive Fix */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-bottom .footer-right a {
    margin: 0 10px;
  }
}


/* Responsive for Mobile */
@media (max-width: 768px) {

  .footer,
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-column,
  .footer-column {
    margin-bottom: 30px;
  }

  .top-heading {
    justify-content: center;
  }
}