
/* Info Card Section style */
.info-cards-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.info-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(165, 42, 42, 0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 230px;
}

.info-card:hover {
   transform: translateY(-10px);
  box-shadow: 0 25px 35px rgba(165, 42, 42, 0.25);
}
.info-card:hover {
  animation: bounceUp 0.4s ease forwards;
}

@keyframes bounceUp {
  0%   { transform: translateY(0); }
  60%  { transform: translateY(-15px) scale(1.03); }
  100% { transform: translateY(-10px) scale(1.02); }
}



.info-card h3 {
  color: #1c2e5e;
  margin-bottom: 10px;
  font-size: 18px;
}

.info-card p {
  color: #444;
  margin: 5px 0;
  font-size: 14px;
}


/* Contact form style */

.get-in-touch {
  display: flex;
  margin-left: 140px;
  padding: 60px 20px; 
  height: 800px;
 max-width: 840px;
  margin-bottom: 50px;
}

.form-container {
  display: flex;
  position: relative;
  background: linear-gradient(135deg, rgba(34, 67, 157, 0.4), rgba(255, 0, 150, 0.3));
  border-radius: 20px 80px 20px 20px;
  padding: 40px;
  width: 100%;
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}



.form-content {
  flex: 1;
  padding-right: 20px;
  width: 400px;
}

.form-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.form-content p {
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button {
  width: 120px;
  padding: 10px 20px;
  border: 2px solid white;
  background-color: #22439D;
  color: #fff;
  border-radius:10px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover{
     background-color: #fff;
  color: #22439D; 
   animation: bounceUp 0.4s ease forwards;
}

.form-image {
  flex: 0 0 350px; 
  position: absolute;
  right: -360px;   
  top: 25%;
  width: 400px;
  transform: translateY(-50%);
  height: 580px; 
}

.form-image img {
  width: 100%;
  height: 100%; 
  border-radius: 19px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.form-image img:hover{
   animation: bounceUp 0.4s ease forwards; 
}

    @media (max-width: 768px) {

  /* Contact Banner */
  .contact-banner {
    width: 95%;
    height: 140px;
    margin: 30px auto;
  }

  .contact-banner h1 {
    font-size: 24px;
    text-align: center;
  }

  .contact-btn:hover {
  background-color: #24345f;
  color: white !important;
  text-decoration: none !important;
}

  /* Info Cards */
  .info-cards-section {
    padding: 30px 15px;
    gap: 20px;
  }

  .info-card {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

  /* Get In Touch Form */
  .get-in-touch {
    margin: 0 auto;
    padding: 40px 15px;
    flex-direction: column;
    height: auto;
  }

  .form-container {
    flex-direction: column;
    border-radius: 20px;
    padding: 20px;
    position: static;
  }

  .form-content {
    padding: 0;
    width: 100%;
  }

  .form-content h2 {
    font-size: 28px;
  }

  .form-image {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 20px;
  }

  .form-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .newsletter-text h2 {
    font-size: 22px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
  }

  /* Footer */
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-box {
    width: 100%;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .social-icons span:hover{
 animation: bounceUp 0.4s ease forwards;
}

.newsletter-form button:hover {
  background-color: #e6d8bb;
}
.form-image img:hover{
   animation: bounceUp 0.4s ease forwards; 
}

.info-card:hover {
   transform: translateY(-10px);
  box-shadow: 0 25px 35px rgba(165, 42, 42, 0.25);
}
.info-card:hover {
  animation: bounceUp 0.4s ease forwards;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 12px 16px;
  border: 1px solid #FFF4E0;
  background-color: transparent;
  color: #fff;
  border-radius: 8px;
  outline: none;
  
}
}
