*{
  font-family: 'Playfair Display', serif;
}
.input-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.gt_package_btn {
  
    max-width: 200px;
}


.social-card {
    background-color: white;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
    border: none;
    text-align: center; /* Center align text */
    padding: 20px; /* Padding for card content */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    margin-bottom: 30px;
  }

  .social-card:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  .social-card i {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 10px;
  }

  .social-card h3 {
    font-size: 18px;
    color: #ffffff;
  }

 /* PAYMENT */
 .payment-container {
  width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 50px auto;
}

/* Form input styling */
.payment-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.payment-container .input-group {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.payment-container .input-group i {
  color: #666;
  margin-right: 10px;
}

.payment-container input[type="text"],
.payment-container input[type="email"],
.payment-container input[type="tel"],
.payment-container input[type="number"] {
  width: 100%;
  padding: 8px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
}

/* Amount calculation text */
.amount-text {
  font-size: 16px;
  color: #000000;
  margin-top: 5px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif!important;
}

/* Submit button styling */
.payment-container button {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.payment-container button:hover {
  background-color: #45a049;
}
 /* PAYMENT */


  .main-footer-sub {
    padding-bottom: 10px;
    padding-top: 0;
  }
  .main-footer-sub {
    padding: 25px 15px;
  }
  .st-flexx.space-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.st-flexx {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}




#toast {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #4CAF50;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  bottom: 30px;
  left: 50%;
  font-size: 17px;
}
#toast.error {
  background-color: #f44336; /* Red for error */
}
#toast.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}
@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}



  /* Modal container styling */
  .modal-container {
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    margin:50px auto;
}

/* Success and error icons */
.success-icon, .error-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.success-icon {
    color: #4CAF50;
}

.error-icon {
    color: #FF0000;
}

/* Show modal */
.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}
/* payment */
.custom-section {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  max-width: 900px;
}
.section-heading {
  font-size: 1.75rem;
  font-weight: bold;
  color: #004085;
  text-align: center;
  margin-bottom: 20px;
}
.info-text {
  font-size: 2.5rem;
  color: #333333;
  line-height: 1.6;
}