:root {
    --primary-color: #004466bd;
    --secondary-color: #ff9900;
    --accent-color: #33cc33;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #416c81, #f1c98c);

    color: #222;
    margin: 0;
    overflow-x: hidden;
}

.agu-display {
    font-family: "Agu Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "MORF" 0;
}

.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 68, 102, 0.85), rgba(255, 153, 0, 0.342)), url('/social-logo.png');
    background-size: cover;
    background-position: center;
    height: 50vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.navbar {
    background-color: rgba(0, 68, 102, 0.774);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar img {
    scale: 2;
}

.navbar-brand img {
    max-height: 50px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.cta-buttons .btn {
    font-size: 16px;
    padding: 12px 30px;
    transition: transform 0.3s ease;
    opacity: 0.6;
    background-color: var(--secondary-color);
    color: #fff;
}

.cta-buttons .btn:hover {
    transform: scale(1.05);
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .navbar {
        padding: 10px;
    }

    .navbar-brand img {
        max-height: 40px;
    }
}

.imperial-script-regular {
    font-family: "Imperial Script", serif;
    font-weight: 400;
    font-style: normal;
}

/* Card Container */
.card {
    position: relative;
    background: #e49e29;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    overflow: hidden;
    /* Ensures child elements are contained within */
    transition: all 0.3s ease-in-out;
    /* Smooth transition for the transform */
    height: 100%;
    /* Ensures cards are of equal height */
}

/* Hover Effect */
.card:hover {
    transform: translateY(-10px) scale(1.05);
    /* Slightly lifts and enlarges the card */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    /* Stronger shadow on hover */
}

/* Card Header or Image */
.card img {
    width: 100%;
    height: 200px;
    /* Adjust depending on the card's size */
    object-fit: cover;
    /* Ensures image fits well inside the card */
    transition: transform 0.3s ease-in-out;
    /* Smooth zoom effect for the image */
}

/* Hover effect on image (optional) */
.card:hover img {
    transform: scale(1.1);
    /* Zoom effect when hovering over the card */
}

/* Card Content */
.card-body {
    padding: 20px;
    position: relative;
    z-index: 1;
    /* Ensures text stays on top */
}

/* Title */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s ease;
}

/* Card Text */
.card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Hover Effect on Text */
.deposit:hover .card-title {
    color: #0d6efd;
    /* Change text color on hover */
}

.withdraw:hover .card-title {
    color: #198754;
    /* Change text color on hover */
}

/* Button */
.card-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hover effect on button */
.card-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    /* Slight lift on hover */
}

/* Adding a cool animation to the card */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.5s ease-out;
    /* Applying the fade-in animation */
}

.card {
    background-color: #275b6e;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
}

ul li {
    font-size: 1rem;
}

ul li strong {

    color: hsl(0, 0%, 100%);
}

ul li em {
    font-style: italic;
    color: #ffffff;
}

.dm-serif-text-regular {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
}

.dm-serif-text-regular-italic {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: italic;
}
.link {
    text-decoration: none;
}
