﻿/* Navbar Base */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(90deg, #111 0%, #1c1c1c 100%);
}

/* Logo */
.navbar-brand img {
    height: 45px;
    transition: transform 0.3s ease;
}

    .navbar-brand img:hover {
        transform: scale(1.05);
    }

/* Nav Links */
.navbar-nav .nav-link {
    color: #f8f9fa !important;
    font-weight: 500;
    font-size: 15px;
    margin: 0 12px;
    margin-left:30px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

    /* Hover Effect */
    .navbar-nav .nav-link:hover {
        color: #ffc107 !important;
    }

    /* Animated Underline */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0%;
        height: 2px;
        background-color: #ffc107;
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

    /* Active Link */
    .navbar-nav .nav-link.active {
        color: #ffc107 !important;
    }

        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

/* Toggler Button */
.navbar-toggler {
    border: none;
    outline: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* Sticky Navbar Effect */
.navbar.scrolled {
    background: #000 !important;
    padding: 10px 0;
}




/* Footer Main */
.footer {
    background: linear-gradient(90deg, #0f0f0f, #1a1a1a);
    color: #ccc;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 15px;
}

.footer-about {
    line-height: 1.7;
    color: #aaa;
}

/* Headings */
.footer h5 {
    color: #ffc107;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer h6 {
    color: #ffc107;
}

/* Links */
.footer ul {
    list-style: none;
    padding: 0;
}

    .footer ul li {
        margin-bottom: 8px;
    }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .footer ul li a:hover {
                color: #ffc107;
                padding-left: 5px;
            }

/* Contact Text */
.footer p {
    margin-bottom: 8px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 12px;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

    .social-icons a:hover {
        color: #ffc107;
    }

/* Divider */
.footer-line {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0 15px;
}

/* Bottom */
.footer-bottom p {
    margin: 5px 0;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }
}