/* ============================================
   techX - FinanceX Clone (Purple Theme)
   Custom Header Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    /* Primary Purple Theme */
    --primary: #6C5CE7;
    --primary-dark: #5B4BC4;
    --primary-light: #A363D4;
    --primary-gradient: linear-gradient(135deg, #6C5CE7 0%, #A363D4 100%);
    
    /* Accent Colors */
    --accent: #FFD700;
    --success: #00D68F;
    
    /* Backgrounds - SOLID (NO GLASS) */
    --bg-dark: #0F0F1A;
    --bg-darker: #0A0A14;
    --bg-card: #1A1A2E;
    --bg-hover: #252540;
    
    /* Text Colors */
    --text-primary: #272525;
    --text-secondary: #B8B8D0;
    --text-muted: #8888AA;
    
    /* Borders */
    --border-light: rgba(108, 92, 231, 0.15);
    --border-hover: #6C5CE7;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-purple: 0 8px 24px rgba(108, 92, 231, 0.15);
}

body {
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   CUSTOM HEADER (Matches FinancePro Pattern)
   ============================================ */
.techx-custom-header {
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.techx-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.techx-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.logo-highlight {
    font-size: 32px;
    font-weight: 800;
}

/* Search Bar - Center */
.techx-search-wrapper {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.techx-search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 4px 4px 4px 16px;
    transition: all 0.3s ease;
}

.techx-search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-purple);
}

.techx-search-bar i {
    color: var(--text-muted);
    font-size: 16px;
}

.techx-search-bar input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 12px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
}

.techx-search-bar input::placeholder {
    color: var(--text-muted);
}

.techx-search-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.techx-search-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-purple);
}

/* Search Results Dropdown */
.techx-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.techx-search-results.active {
    display: block;
}

/* Right Links */
.techx-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.techx-links .nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.techx-links .nav-link:hover {
    color: var(--primary);
}

.techx-links .nav-link i {
    font-size: 12px;
}

.techx-links .login-btn {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.techx-links .login-btn:hover {
    color: var(--primary);
}

.techx-links .contact-btn {
    background: var(--primary-gradient);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.techx-links .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
    color: white;
}

/* Dropdown Menu */
.techx-links .nav-item.dropdown {
    position: relative;
}

.techx-links .dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.techx-links .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 8px);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dropdown-column h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.2s ease;
}

.dropdown-column a:hover {
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.techx-hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--success);
    font-size: 18px;
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-purple);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(108, 92, 231, 0.1);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-image {
    position: relative;
    animation: fadeInLeft 0.8s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* ============================================
   COURSES SECTION
   ============================================ */
.courses-section {
    padding: 80px 0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    color: var(--text-primary);
    background: var(--bg-card);
    border-color: var(--primary);
}

.filter-tab.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 20px;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.view-all-link:hover {
    gap: 12px;
}

/* ============================================
   ADVANTAGE SECTION
   ============================================ */
.advantage-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    text-align: center;
}

.advantage-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-purple);
}

.advantage-card i {
    font-size: 40px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.advantage-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.stat-card .stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-plus {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
}

.stat-card .stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-wrapper {
    position: relative;
    min-height: 300px;
    margin-bottom: 40px;
}

.testimonials-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.5s ease;
    left: 0;
    right: 0;
    margin: 0 auto;
    cursor: pointer;
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.testimonial-card.active {
    pointer-events: auto;
    z-index: 10;
}

.testimonial-card.active:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow-purple);
}

.quote-icon {
    font-size: 32px;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 14px;
}

.testimonial-rating {
    margin-top: 16px;
    color: var(--accent);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   PARTNER CAROUSEL SECTION
   ============================================ */
.partner-carousel-section {
    padding: 80px 0;
}

.partner-carousel {
    position: relative;
}

.partner-swiper {
    padding: 20px 10px;
}

.partner-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-purple);
}

.partner-card i {
    font-size: 48px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.partner-card span {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
}

.partner-prev,
.partner-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.partner-prev:hover,
.partner-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.partner-prev::after,
.partner-next::after {
    font-size: 18px;
}

.partner-pagination {
    bottom: -10px !important;
}

.partner-pagination .swiper-pagination-bullet {
    background: var(--border-light);
    opacity: 1;
}

.partner-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-content .section-label {
    margin-bottom: 24px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-techx {
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    background: var(--primary-gradient);
    padding: 60px;
    border-radius: 30px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-content .btn-primary:hover {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* ============================================
   SEARCH RESULT ITEMS
   ============================================ */
.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.1);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.search-result-item:hover {
    background: rgba(108, 92, 231, 0.2);
}

.search-result-item i:first-child {
    color: var(--primary);
}

.result-info {
    flex: 1;
}

.result-title {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.result-duration {
    color: var(--text-muted);
    font-size: 12px;
}

.search-no-results {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(108, 92, 231, 0.05);
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s ease;
}

.search-suggestion-item:hover {
    background: rgba(108, 92, 231, 0.15);
}

.search-suggestion-item i {
    color: var(--primary);
}

.search-suggestion-item span {
    color: var(--text-primary);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .techx-links .dropdown-menu {
        min-width: 500px;
    }
}

@media (max-width: 968px) {
    .techx-header-container {
        flex-wrap: wrap;
    }
    
    .techx-search-wrapper {
        order: 3;
        max-width: 100%;
        margin-top: 12px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .techx-links {
        gap: 16px;
    }
    
    .techx-links .dropdown-menu {
        min-width: 300px;
        left: 0;
        transform: translateX(-20%);
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-tabs {
        gap: 4px;
    }
    
    .filter-tab {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .section-label {
        font-size: 28px;
    }
    
    .cta-content {
        padding: 40px 24px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .techx-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-plus {
        display: none;
    }
}
/* ============================================
   PAGINATION STYLES
   ============================================ */
.pagination-wrapper {
    margin-top: 40px;
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-number:hover {
    background: var(--bg-hover);
    border-color: var(--primary);
}

.page-number.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
}

.page-dots {
    color: var(--text-muted);
    font-size: 14px;
    padding: 0 4px;
}

/* Hide view-all-wrapper */
.view-all-wrapper {
    display: none !important;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination-container {
        gap: 8px;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .pagination-btn span,
    .pagination-btn i {
        display: none;
    }
    
    .pagination-btn {
        padding: 10px;
    }
    
    .pagination-btn i {
        margin: 0;
    }
    
    .page-number {
        width: 32px;
        height: 32px;
    }
}