/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Banner Section */
.banner-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .banner-item {
        height: 300px; /* Adjust banner height for smaller screens */
    }
}

/* About Us Section */
.about-section {
    background-color: #f8f9fa;
    padding: 50px 5%; /* Use percentage for padding */
    text-align: center;
}

.about-section .section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
     color: orange 
}

.about-section img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    max-width: 100%; /* Make images responsive */
    height: auto;
}

.about-section img:hover {
    transform: scale(1.05);
}

.about-section p {
    font-size: 1.1rem;
    color: #555;
    text-align: left;
}


.about-section .btn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-section .btn:hover {
    background-color: #0056b3;
}

/* .nav-link a{
    color:#00013d !important;
} */


.navbar-nav .nav-link {
    color:#00013d!important; /* Sets the default text color to yellow */
}

.navbar-nav .nav-link:hover {
    color: orange !important; /* Changes text color on hover */
}

.navbar-nav {
    margin: 0 auto; /* Centers the navbar items */
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section .section-title {
        font-size: 2rem;
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .about-section img {
        width: 100%;
        height: auto;
    }

    .about-section p {
        font-size: 1rem;
    }
}

/* Services Section */
.services-section {
    padding: 50px 5%;
    text-align: center;
}

.services-section .card {
    margin-bottom: 20px;
    width: 100%;
}

.card-body {
    padding: 1.5rem;
}

/* Ensure all images within the cards are responsive */
.card-img-top {
    width: 100%;
    height: auto;
}
/* Navbar */
.navbar-nav .nav-link {
    font-size: 1.1rem;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        display: block;
        padding: 10px;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 5%;
}

@media (max-width: 768px) {
    .footer {
        padding: 15px;
        font-size: 14px;
    }
}

.wallet-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #f5f5f5;
}

.wallet-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.wallet-card {
    width: 250px;
    height: 150px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.wallet-card:hover {
    transform: scale(1.05);
}

.wallet-card img {
    width: 100px;
    margin-bottom: 10px;
}

.wallet-card h3 {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.wallet-text {
    font-size: 20px;
    font-weight: 500;
    color: #444;
}
@media (max-width: 768px) {
    .wallet-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 250px;
    }

    .wallet-card {
        width: 80%;
        height: 120px;
    }

    .wallet-text {
        font-size: 18px;
    }
}

footer {
    background-color: #020617; /* Dark blue background */
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #00bfff;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #00bfff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}
/* Footer Styles */
footer {
    background-color: #020617; /* Dark blue background */
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #00bfff;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #00bfff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    background: #d1d5db; /* Light gray background */
    color: #333;
    padding: 10px 0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
    }
}