p, a, h2, h3, h4, h5, h6, ul, li, table, th, td, form, span{
    font-family: 'Century Gothic';
}

.custom-btn {
    background: linear-gradient(135deg, #D2E9D7, #5FAF7A);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(145, 50, 209, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.custom-btn:hover {
    background: linear-gradient(135deg, #5FAF7A, #D2E9D7);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(145, 50, 209, 0.4);
    text-decoration: none;
}


.custom-btn2 {
    background: #064737;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(145, 50, 209, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.custom-btn2:hover {
    background: #064737;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(145, 50, 209, 0.4);
    text-decoration: none;
}

.custom-btn3 {
    background: linear-gradient(135deg, #064737, #11212E);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(145, 50, 209, 0.3);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.custom-btn3:hover {
    background: linear-gradient(135deg, #11212E, #064737);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(145, 50, 209, 0.4);
    text-decoration: none;
}


body {
    padding-bottom: 70px; /* Ensure content above the footer is not hidden */
}

.dropdown-menu {
    background-color: #064737; /* Background color on hover */
    color: #fff; /* Text color on hover */
    font-family: 'Century Gothic';
}

.dropdown-menu form {
    background-color: #064737; /* Background color on hover */
    color: #fff; /* Text color on hover */
    font-family: 'Century Gothic';
}

.dropdown-menu form .btn{
    background-color: #064737; /* Background color on hover */
    color: #43D885; /* Text color on hover */
    font-family: 'Century Gothic';
}

.dropdown-menu form .btn:hover{
    background-color: #45AD6B; /* Background color on hover */
    color: #fff; /* Text color on hover */
}

/* Hide the dropdown indicator for the globe icon only */
#languageSwitcher::after {
    display: none; /* Remove the dropdown indicator */
    font-family: 'Century Gothic';
}

/* Optionally, you can add other styles if needed */
#languageSwitcher {
    font-size: 1.4rem; /* Adjust the size of the globe icon */
    font-family: 'Century Gothic';
}

.btn.btn-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.btn.btn-link:hover {
    color: #43D885;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #064737;
    border-top: 1px solid #064737;
    display: flex;
    justify-content: space-around;
    padding: 5px 0;
    z-index: 1000;
}


/* Google Signup Button */
.google-signup .btn-google {
    color: #4285f4;
    font-size: 17px;
    display: flex;
    align-items: center;
    text-decoration: none;
    background: none;
    font-family: 'Century Gothic';
}

.google-signup .btn-google img {
    height: 26px;
    max-width: 100%;
    object-fit: cover;
    margin-right: 10px;
}


/* card styles*/
.card-container {
  display: flex;
  justify-content: center; /* Center the cards horizontally */
  overflow-x: auto; /* Enable horizontal scrolling */
  scroll-behavior: smooth; /* Smooth scrolling effect */
  padding: 10px;
  gap: 20px; /* Space between the cards */
  max-width: 100%; /* Make sure it doesn't exceed the width of the viewport */
  margin: 0 auto; /* Center the container within the parent */
  
  /* Hide the scrollbar */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

.card-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar in WebKit browsers like Chrome and Safari */
}

.card-item {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the image and text */
  min-width: 200px; /* Minimum width for each card */
  flex-shrink: 0; /* Prevent cards from shrinking */
}

.card-image {
  width: 500px; /* Adjust the width of the card image */
  height: auto; /* Maintain aspect ratio */
}

.card-item p {
  margin-top: 10px;
  font-size: 16px;
  text-align: center; /* Center the text */
  color: #fff;
}


.card-section {
    display: none; /* Hide all sections initially */
}

.card-section.active {
    display: block; /* Show only the active section */
}

#contactUs {
    font-size: 1.4rem; /* Adjust the size of the globe icon */
    font-family: 'Century Gothic';
}

h1 {
    font-family: 'Century Gothic';
}

h2 {
    font-family: 'Century Gothic';
    color: #fff;
}

h3 {
    font-family: 'Century Gothic';
    color: #fff;
}

#showDetails {
    font-size: 18px;
    color: #064737;
    font-family: 'Century Gothic';
    transition: transform 0.3s;
}

#hideDetails {
    font-size: 18px;
    color: #064737;
    font-family: 'Century Gothic';
    transition: transform 0.3s;
}


/* Payment container */
/* Container styling */
.payment-container {
    max-width: 100%;
    width: 99%;
    padding: 5px;
    background-color: #f8f9fa;
}

/* Adjust container padding and header size on smaller screens */
@media (max-width: 776px) {
    .payment-container {
        padding: 5px;
        width: 99%;
        }
        .payment-container h4 {
            font-size: 1.25rem;
            margin-bottom: 2px;
    }
}

/* Style form fields for better mobile usability */
.payment-container input,
.payment-container select,
.payment-container textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 2px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Button improvements */
.payment-container button {
    width: 100%;
    padding: 5px;
    border: none;
    border-radius: 5px;
}

/* Ensure the dynamic payment form section maintains styling */
#payment-form {
    margin-top: 2px;
}


/* *************************************** swap style ***************************************** */
#swapBtn {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    line-height: 1rem;
    padding: 0.5rem;
    border: 2px solid #45AD6B;
    color: #9132d1;
    background-color: white;
    transition: transform 0.2s ease-in-out;
}

#swapBtn:hover {
    background-color: #f2e9fb;
    transform: rotate(180deg);
}


/*0902 - In app contact us*/

/* Modal container */
#contactUsModal {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent background */
    padding: 20px;
}

/* Modal content */
#contactUsModal .modal-content {
    background: #fff;
    margin: 40px auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px; /* desktop size */
    text-align: center;
}

/* Close button */
#contactUsModal .close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

#contactUsModal .close:hover {
    color: #d9534f; /* bootstrap-style red */
}

/* Title */
.modal-title {
    margin-bottom: 15px;
    color: #064737;
    font-weight: 600;
}

/* Links */
.contact-link {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.contact-link span {
    color: #064737;
    font-weight: 600;
}
.contact-link:hover {
    color: #064737;
}

/* Divider */
.divider {
    background-color: #064737;
    height: 3px;
    width: 100%;
    margin: 20px 0;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    #contactUsModal .modal-content {
        max-width: 100%;
        margin: 20px auto;
        border-radius: 8px;
    }
}

/*0907*/
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
from {
    opacity: 0;
    transform: translateY(-50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
}

.close:hover {
    color: #374151;
}

.modal-content h2 {
    color: #064e3b;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.secondary-color {
    color: #45AD6B;
}

.primary-color {
    color: #064737;
}
