#blog-list .col {
    display: none;
}

.main-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.main-title h1 {
    color: var(--color-header);
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(27, 30, 86, 0.1);
}

.main-title p {
    color: var(--color-black);
    font-size: 1.1rem;
    opacity: 0.8;
}

.tab-container {
    opacity: 1;
}

.nav-tabs {
    border: none;
    background-color: var(--color-white);
    margin: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.nav-tabs .nav-item {
    margin: 0 5px;
}

.nav-tabs .nav-link {
    color: var(--color-main);
    ;
    background: white;
    border: none;
    border-radius: 12px;
    padding: 18px 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0px 1px var(--color-main);
    ;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: left 0.6s;
}

.nav-tabs .nav-link:hover::before {
    left: 100%;
}

.nav-tabs .nav-link:hover {
    color: var(--color-white);
    background: var(--color-header);
    box-shadow: inset 0 0 0px 0px var(--color-main);
}

.nav-tabs .nav-link.active {
    color: var(--color-white);
    background: var(--color-main);
    border-color: transparent;
    box-shadow: inset 0 0 0px 0px rgb(12 20 46);
}

.nav-tabs .nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.tab-content {
    background: var(--color-white);
    margin-top: 30px;
}

.tab-pane {
    animation: fadeInUp 0.6s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(14, 101, 232, 0.1);
}

.tab-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-main);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(14, 101, 232, 0.3);
}

.tab-icon i {
    color: var(--color-white);
    font-size: 1.5rem;
}

.tab-pane h3 {
    color: var(--color-header);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.tab-pane p {
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.highlight {
    color: var(--color-second);
    font-weight: 700;
    background-color: rgba(237, 27, 9, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-card {
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--color-main);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 101, 232, 0.05);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 101, 232, 0.15);
}

.feature-card h5 {
    color: var(--color-header);
    font-weight: 600;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--color-black);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.btn-custom {
    background-color: var(--color-main);
    color: var(--color-white);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(14, 101, 232, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: left 0.6s;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 101, 232, 0.4);
    color: var(--color-white);
}

.btn-custom i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-custom:hover i {
    transform: translateX(3px);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(12, 20, 46, 0.08);
    border: 1px solid rgba(14, 101, 232, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-main);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-black);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .main-title h1 {
        font-size: 2rem;
    }

    .nav-tabs .nav-link {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 25px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}



.bloggggg .card-img img {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.blog .card:hover {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    background-color: var(--color-main);
    transition: 0.3s ease-in-out;
}

.blog .card {
    background-color: var(--color-white);
    color: var(--color-black);
    border: none;
    position: relative;
    border-radius: var(--border-r-twelve);
    height: 100%;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.blog .card h3 {
    font-weight: var(--font-bold);
    font-size: 18px;
    margin-bottom: 5px;
    padding: 10px 30px;
    text-transform: capitalize;
    color: var(--color-second);
}

.blog .card:hover h3 {
    color: var(--color-white);
}

.blog .card p {
    padding: 0 30px;
    margin-bottom: 30px;
    color: var(--color-black);
    font-size: var(--font-16);
}

.blog .card:hover p {
    color: var(--background-white);
}

.blog .card a {
    color: var(--color-black);
    transition: 0.3;
}

.blog .card:hover a {
    color: var(--color-white);
    transition: 0.3;
}