/* Global Styles for Bonyan System Website */

/* Navbar Styles */
.navbar {
    transition: transform 0.3s ease-in-out;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

/* Navigation Tabs Styles */
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    margin-bottom: -2px;
    border: none;
    border-bottom: 2px solid transparent;
    color: #6c757d;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: #0d6efd;
    border-bottom-color: var(--border-color);
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    background-color: transparent;
    border-bottom: 2px solid #0d6efd;
    font-weight: 500;
}

.tab-content {
    padding-top: 1.5rem;
}

/* Content Items */
.content-item {
    margin-bottom: 2rem;
}

.content-item:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
.footer-section {
    font-family: 'Inter', sans-serif;
}

.footer-section .social-links a {
    font-size: 18px;
    transition: color 0.3s;
}

.footer-section .social-links a:hover {
    color: var(--bs-primary) !important;
}

.footer-section ul li a {
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bs-primary) !important;
}

.footer-section i {
    width: 20px;
}

/* Solution Items */
.solution-item {
    margin-bottom: 2rem;
}

.solution-item:last-child {
    margin-bottom: 0;
}

/* Section Spacing */
.section {
    padding: 4rem 0;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.375rem;
}

.card-body {
    padding: 2rem;
}

/* Image Responsiveness */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* List Styles */
.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .section {
        padding: 2rem 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
} 