/**
 * Zharqyn UI/UX Enhancements
 * Modern, polished design improvements
 */

/* === Hero enhancements === */
.video-hero .hero-content h1 {
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
}
.btn-hero {
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 16px !important;
}

/* === Service cards - glassmorphism style === */
.service-bx {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    overflow: hidden;
}
.service-bx:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(9, 35, 75, 0.15);
}
.service-bx .feature-box-sm {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}
.service-bx:hover .feature-box-sm {
    transform: scale(1.03);
}
.service-bx .btn.radius-xl {
    background: linear-gradient(135deg, #025189 0%, #0369a1 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}
.service-bx .btn.radius-xl:hover {
    box-shadow: 0 6px 20px rgba(2, 81, 137, 0.4);
    transform: translateY(-2px);
}

/* === Page banners - blue tint overlay rgba(58, 124, 178, 0.3) === */
.page-banner.ovbl-dark::after,
.page-banner.ovpr-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(58, 124, 178, 0.3);
    pointer-events: none;
}
.page-banner-entry h1 {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* === Pagination - cleaner look === */
.pagination-bx .pagination {
    gap: 6px;
}
.pagination-bx .page-link {
    border-radius: 10px !important;
    font-weight: 600;
    padding: 10px 16px;
    transition: all 0.2s;
}
.pagination-bx .page-item.active .page-link {
    background: linear-gradient(135deg, #025189 0%, #0369a1 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(2, 81, 137, 0.3);
}
.pagination-bx .page-link:hover:not(.active) {
    background: #f0f9ff;
    border-color: #025189;
    color: #025189;
}

/* === College/School cards === */
.colleges-item, .schools-item {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}
.colleges-item:hover, .schools-item:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

/* === News cards === */
.blog-card, .blog-post {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.blog-card:hover, .blog-post:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* === Section titles === */
.title-head {
    position: relative;
    padding-bottom: 12px;
}
.title-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #025189, #3a7cb2);
    border-radius: 2px;
}
.heading-bx .title-head::after {
    display: block;
}

/* === Buttons - consistent style === */
.btn.radius-xl, .btn.radius {
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

/* === Breadcrumb - subtle === */
.breadcrumb-row {
    background: #f8fafc;
    padding: 12px 0;
}
.breadcrumb-row a:hover {
    color: #025189 !important;
}
