    /* Font Integration */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Top Bar */
.top-bar {
    background-color: #343a40;
    height: 5px;
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo-img {
    width: 150px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    padding: 0.5rem 0.8rem;
    position: relative;
    color: #2c3e50;
}

.navbar-nav .nav-link span {
    position: relative;
    padding: 0.5rem 0;
}

.navbar-nav .nav-link span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover span::after,
.navbar-nav .nav-link.active span::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    margin-top: 1rem;
    border-radius: 12px;
    padding: 0.8rem 0;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.dropdown-item {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    letter-spacing: -0.01em;
    position: relative;
    display: flex;
    align-items: center;
    color: #2c3e50;
    transition: all 0.2s ease;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 5px;
    background-color: #0d6efd;
    border-radius: 0 3px 3px 0;
    transition: width 0.2s ease;
}

.dropdown-item:hover {
    padding-left: 2rem;
    background-color: #f8f9fa;
    color: #0d6efd;
}

.dropdown-item:hover::before {
    width: 10px;
}

/* Carousel Styles */
.carousel-inner img {
    max-height: 600px;
    object-fit: cover;
}

/* Two Block Styles */
.content-block {
    transition: all 0.3s ease;
    background: white;
    border-radius: 1rem;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-wrapper {
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hover-scale {
    transition: transform 0.5s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Statistics Styles */
.statistics-section {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
}

.stat-card {
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
    padding: 2rem;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d6efd;
    letter-spacing: -0.02em;
}

.stat-label {
    font-weight: 500;
    color: #6c757d;
    letter-spacing: -0.01em;
}

.icon-wrapper {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
}

/* Animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(1rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate.slideIn {
    animation: slideIn 0.3s ease forwards;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 1rem;
        margin-top: 1rem;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
        padding: 1rem;
        border-radius: 0.5rem;
        font-size: 0.9rem;
    }

    .navbar-nav .nav-link:hover {
        background-color: #f8f9fa;
    }

    .dropdown-menu {
        margin-top: 0;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .dropdown-item {
        padding: 1rem;
        margin: 0.2rem 0;
        border-radius: 0.5rem;
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        background-color: #f8f9fa;
        padding-left: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
