/* 
/* 
/*  custom.css
/*
/*  If not using Gulp and Sass, add your custom CSS below then include it
/*  in your page by adding a reference to assets/css/custom.css in the head of each page.
/*
*/

/* Custom Navbar Styles */
.custom-navbar {
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Lucide Icons Styling */
.custom-navbar .nav-link i[data-lucide],
.custom-navbar .dropdown-item i[data-lucide],
.custom-navbar .btn i[data-lucide] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
    stroke-width: 1.5;
}

.custom-navbar .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #349ada !important;
    transform: translateY(-2px);
}

.custom-navbar .navbar-brand img {
    filter: brightness(1.2);
}

.custom-navbar .btn-primary {
    background-color: #349ada;
    border-color: #349ada;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.custom-navbar .btn-primary:hover {
    background-color: #2a7fb8;
    border-color: #2a7fb8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 154, 218, 0.3);
}

.custom-navbar .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 10px;
}

.custom-navbar .dropdown-item {
    color: white !important;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.custom-navbar .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #349ada !important;
}

.custom-navbar .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.custom-navbar .navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .custom-navbar {
        padding: 10px 0;
    }
    
    .custom-navbar .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        border-radius: 10px;
        margin-top: 15px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .custom-navbar .navbar-nav {
        width: 100%;
    }
    
    .custom-navbar .navbar-nav .nav-item {
        width: 100%;
        margin: 0;
    }
    
    .custom-navbar .navbar-nav .nav-link {
        margin: 8px 0;
        text-align: center;
        padding: 12px 20px !important;
        border-radius: 6px;
        width: 100%;
        display: block;
    }
    
    .custom-navbar .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }
    
    .custom-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 6px;
        margin: 5px 0;
        box-shadow: none;
    }
    
    .custom-navbar .dropdown-item {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 20px;
        text-align: center;
    }
    
    .custom-navbar .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white !important;
    }
    
    .custom-navbar .btn-primary {
        margin: 15px auto 0;
        display: block;
        width: fit-content;
    }
    
    /* Fix for dropdown toggle arrow */
    .custom-navbar .dropdown-toggle::after {
        display: none;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

/* Footer General Styles */
.footer-1 {
    position: relative;
    background: #191919 !important;
    overflow: hidden;
}

.footer-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" fill="none"><path d="M0,10 Q25,0 50,10 T100,10 V20 H0 Z" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: 200px 40px;
    opacity: 0.3;
}

.footer-1 .container {
    position: relative;
    z-index: 1;
}

/* Footer Logo */
.footer-logo {
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Footer Links */
.footer-links {
    margin: 0;
    padding: 0;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-link i.fas.fa-angle-right {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.footer-link:hover i.fas.fa-angle-right {
    transform: translateX(3px);
}

/* Social Media Buttons */
.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-btn i {
    font-size: 16px;
}

/* Contact Info Icon Boxes */
.icon-box {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 14px;
}

.contact-info:hover .icon-box {
    transform: scale(1.1);
}

/* Footer Badges */
.footer-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.footer-badges .badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer Section Headers */
.footer-1 h4,
.footer-1 h5,
.footer-1 h6 {
    color: white;
    font-weight: 600;
    position: relative;
}

.footer-1 h6::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #349ada, transparent);
    border-radius: 1px;
}

/* Footer Bottom Border */
.footer-1 .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive Footer Styles */
@media (max-width: 768px) {
    .footer-1 {
        text-align: center;
    }
    
    .footer-1 .col-md-8,
    .footer-1 .col-md-4 {
        text-align: center !important;
    }
    
    .footer-1 .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-1 .contact-info .d-flex {
        justify-content: center;
        text-align: left;
    }
    
    .footer-1 h6::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-badges {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-1 .social-btn {
        width: 35px;
        height: 35px;
    }
    
    .footer-1 .social-btn i {
        font-size: 14px;
    }
    
    .footer-1 .icon-box {
        width: 30px;
        height: 30px;
    }
    
    .footer-1 .icon-box i {
        font-size: 12px;
    }
    
    .footer-badges .badge {
        font-size: 0.7rem;
        padding: 6px 10px;
        margin: 2px;
    }
}

/* Animation for footer elements */
.footer-1 .row > div {
    animation: fadeInUp 0.8s ease-out;
}

.footer-1 .row > div:nth-child(1) { animation-delay: 0.1s; }
.footer-1 .row > div:nth-child(2) { animation-delay: 0.2s; }
.footer-1 .row > div:nth-child(3) { animation-delay: 0.3s; }
.footer-1 .row > div:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}