/* ================= NAVBAR ================= */
.custom-navbar {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 3px solid #c62828;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 80px;
    width: auto;
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 60px;
    }
}

/* ================= SERVICES ================= */
.trading-section {
    height: 80vh;
    background-color: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-transform: capitalize;
}

/* CTA */
.trading-cta {
    text-align: center;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #ffffff;
    padding: 50px 20px;
    border-radius: 12px;
}

.trading-cta h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.trading-cta p {
    font-size: 16px;
    margin-bottom: 25px;
}

.trading-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #0d47a1;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.trading-btn:hover {
    background: #e3f2fd;
}

/* ================= MODERN FOOTER ================= */
.modern-footer {
    /* background: linear-gradient(135deg, #c62828, #8e1b1b); */
    background: linear-gradient(135deg, #0b073c, #0e065a);
    color: #fff;
    padding: 30px 0 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    background: #fff;
    margin-top: 8px;
}

/* Contact Items Styling */
.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    /* Spacing between items */
    transition: all 0.3s ease;
}

.footer-item i {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #c62828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.footer-item a,
.footer-item span {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    transition: 0.3s;
}

.footer-item a:hover {
    color: #adadad;

}

.footer-item:hover i {
    color: #8e1b1b;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.footer-item a,
.footer-item i,
.footer-social a {
    transition: all 0.3s ease;
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #c62828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.footer-social a:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
    color: #8e1b1b;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 5px 0 20px;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* Animations */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MEDIA QUERIES (MOBILE FIXES) ================= */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
        /* Logo becomes smaller */
    }

    .modern-footer {
        padding: 40px 20px 20px;
        /* More breathing room */
    }

    .footer-title {
        font-size: 20px;
        /* Smaller Title */
        margin-bottom: 20px;
    }

    .footer-item i {
        width: 38px;
        /* Smaller Icons */
        height: 38px;
        font-size: 16px;
    }

    .footer-item a,
    .footer-item span {
        font-size: 15px;
        /* Smaller Text for better fit */
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }
}