﻿body {
}

/* Modern Color Palette */
:root {
    --nav-bg: rgba(255, 255, 255, 0.95);
    --gold-accent: #D4AF37; /* Metallic Gold */
    --coral-accent: #FF7F50;
    --text-black: #1a1a1a;
    --navy-dark: #0f172a;
}

/* Navbar Container - Glassmorphism */
.custom-navbar {
    background: var(--nav-bg) !important;
    backdrop-filter: blur(15px);
    height: 90px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

/* Brand Section */
.logo-box img {
    height: 65px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-black);
    font-family: 'Montserrat', sans-serif;
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--coral-accent);
}

/* Nav Links Styling */
.navbar-nav .nav-link {
    color: var(--text-black) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 30px 15px !important;
    position: relative;
    transition: 0.3s;
}

    /* Animated Underline on Hover */
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 25px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--coral-accent);
        transition: 0.4s;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 60%;
    }

    .navbar-nav .nav-link:hover {
        color: var(--coral-accent) !important;
    }

/* ERP Button - The Classy "Gold" Look */
.btn-erp-gold {
    background: linear-gradient(45deg, var(--navy-dark), #2c3e50);
    color: white !important;
    padding: 12px 28px;
    border-radius: 2px; /* Sharp corners = High-end look */
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
    display: inline-block;
}

    .btn-erp-gold:hover {
        background: var(--coral-accent);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 127, 80, 0.3);
    }

/* Dropdown Menu - Classy Slide Animation */
.dropdown-menu {
    border-radius: 0;
    margin-top: 0;
    padding: 15px 0;
}

.dropdown-item {
    padding: 10px 25px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--navy-dark);
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: var(--coral-accent);
        padding-left: 30px; /* Slight movement effect */
        transition: 0.3s;
    }

.animate-slide {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Mobile Fixes */
@media (max-width: 991px) {
    .custom-navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        padding: 15px 0 !important;
    }

        .navbar-nav .nav-link::after {
            bottom: 10px;
        }

    .menu-icon {
        font-size: 1.5rem;
        color: var(--navy-dark);
    }
}




/* Footer Base Styling */
.footer {
    background: #111111 !important; /* Elegant dark charcoal */
    color: #bbbbbb;
}

.footer h4 {
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

    /* The Orange underline decoration */
    .footer h4::after {
        content: "";
        position: absolute;
        width: 40px;
        height: 2px;
        background: orange;
        bottom: 0;
        left: 0;
    }

/* Link Styling */
.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    color: #bbbbbb;
    font-size: 15px;
    font-weight: normal;
    text-decoration: none;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        content: "\f105"; /* FontAwesome angle right */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
        color: orange;
    }

    .footer .btn.btn-link:hover {
        color: orange;
        letter-spacing: 1px;
    }

/* Contact Icon Boxes */
.footer-icon-box {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 165, 0, 0.1);
    color: orange;
    border-radius: 5px;
    flex-shrink: 0;
}

/* Social Buttons */
.btn-social {
    width: 38px;
    height: 38px;
    border-radius: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: .3s;
}

    .btn-social:hover {
        background: orange;
        border-color: orange;
        color: #111;
    }

/* Copyright Section Styling */
.copyright-border {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-link, .footer-designer-link {
    color: orange;
    text-decoration: none;
    font-weight: 600;
}

    .footer-brand-link:hover, .footer-designer-link:hover {
        color: white;
    }

