h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "Inter",sans-serif;
}
.navbar-light .navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
}

.btn {
    font-family: 'Inter', sans-serif;
}

.text-primary {
    color: #0c4ca3 !important;
    font-weight: bold !important;
    /*#10ab31*/
}
.bg-primary {
    background-color: #0c4ca3 !important;
}
.top-shape::before {
    background: #40c8f4;
}
.fff{
    font-size:40px;
}
.hero-header {
    background: linear-gradient(rgb(9 30 62 / 44%), rgb(9 30 62 / 35%)), url(/images/banner1.png) center center no-repeat;
    background-size: cover;
}
/*.carousel-item .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(9 30 62 / 48%);
    z-index: 1;
}
*/
.bg-dark {
    background-color: #0c4ca3 !important;
}
.btn-primary {
    color: #fff;
    background-color: #0c4ca3;
    border-color: #fff;
}
.text-primary1 {
    color: #fff !important;
}
.b3 {
    border-width: 2px;
    border-radius: 10px;
    background-color: #0c4ca3;
    padding-top: 10px;
    padding-bottom: 10px;
    padding: 5px;
    color: #fff;
    font-size: 13px
}
@media (max-width: 576px) {
    .carousel-caption h4 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}
@media (max-width: 576px) {
    .carousel-caption h1 {
        font-size: 14px;
        font-weight: 500 !important;
    }
}

/* CodePen Style Pagination */
.pagination-codepen {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin: 20px 0;
}

.pagination-codepen .page-item {
    margin: 0 3px;
}

.pagination-codepen .page-link {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    border-radius: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    text-decoration: none;
}

.pagination-codepen .page-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transition: all 0.5s ease;
    z-index: 0;
}

.pagination-codepen .page-link:hover::before {
    left: 100%;
}

.pagination-codepen .page-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pagination-codepen .page-item.active .page-link {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    color: #333;
    font-weight: bold;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.pagination-codepen .page-item.active .page-link:hover {
    transform: translateY(-3px) scale(1.15);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
}

.pagination-codepen .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    transform: none;
}

.pagination-codepen .page-item.disabled .page-link:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
    box-shadow: none;
}

/* Glowing effect for active page */
.pagination-codepen .page-item.active .page-link {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.4), 0 0 20px rgba(255, 107, 107, 0.4), 0 0 30px rgba(255, 107, 107, 0.4);
    }
    to {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.6), 0 0 30px rgba(255, 107, 107, 0.6), 0 0 40px rgba(255, 107, 107, 0.6);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .pagination-codepen {
        padding: 6px;
    }
    
    .pagination-codepen .page-link {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .pagination-codepen .page-item {
        margin: 0 2px;
    }
}

@media (max-width: 480px) {
    .pagination-codepen {
        padding: 4px;
    }
    
    .pagination-codepen .page-link {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .pagination-codepen .page-item {
        margin: 0 1px;
    }
}

/* Fade in animation for posts */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}