@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    scroll-behavior: smooth;
}
[x-cloak] { display: none !important; }
.glass-light {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.gradient-bg {
    background: radial-gradient(circle at top right, #e0f2fe 0%, #f8fafc 50%);
}

.hero-blob {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: morph 15s linear infinite;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    33% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    66% { border-radius: 30% 60% 30% 70% / 50% 40% 30% 60%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.btn-primary {
    background: #2563eb;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 100;
    transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }
/* Styling for the range slider for Chrome/Safari */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(37, 99, 236, 0.4);
    border: 4px solid white;
}
[x-cloak] { display: none !important; }
.exclusive-pagination {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.pagination__list {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Base link style */
.pagination__link {
    color: #4b5563;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}

.pagination__item:hover:not(.pagination__item--active):not(.pagination__item--disabled) {
    background-color: #f3f4f6;
    transform: translateY(-2px);
}

/* Active State - Matches your blue tag */
.pagination__item--active {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Disabled State */
.pagination__item--disabled {
    color: #d1d5db;
    cursor: not-allowed;
    padding: 0 15px;
}

/* Special styling for Previous/Next text labels */
.pagination__item:first-child,
.pagination__item:last-child {
    min-width: auto;
}

.secondaryBannerContact {
    position: relative;
    height: 300px;
    background: linear-gradient(120deg, #1e3a8a, #4f46e5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondaryBannerTeamLayer {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.secondaryBannerTitle {
    position: relative;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    z-index: 2;
}

/* ===== Article Layout ===== */
.post-article {
    background: #fff;
    margin-top: -60px;
    border-radius: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* ===== Header ===== */
.post-header {
    padding: 40px 30px 20px;
}

.post-breadcrumb {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

.post-breadcrumb a {
    color: #4f46e5;
    text-decoration: none;
}

.post-article__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===== Meta ===== */
.post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #6b7280;
}

/* ===== Image ===== */
.post-feature-image__img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Content ===== */
.post-body {
    padding: 30px;
}

.post-content-entry {
    font-size: 18px;
    color: #374151;
}

.post-content-entry h2 {
    font-size: 26px;
    margin-top: 20px;
}

.post-content-entry p {
    margin-bottom: 15px;
}

/* ===== Tags ===== */
.post-tags {
    margin-top: 20px;
}

.tag-exclusive {
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 13px;
}

/* ===== Back Button ===== */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
}

.back-to-blog svg {
    margin-right: 6px;
}

/* ===== Topic Section ===== */
.topic-section {
    padding: 50px 20px;
    background: #f3f4f6;
    margin-top: 40px;
}

.topic-section__container {
    max-width: 1100px;
    margin: auto;
}

.topic-section__title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.topic-section__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.topic-pill {
    background: white;
    border: 1px solid #ddd;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    color: #374151;
    transition: 0.3s;
}

.topic-pill:hover {
    background: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .post-article__title {
        font-size: 24px;
    }

    .post-body {
        padding: 20px;
    }

    .secondaryBannerTitle {
        font-size: 28px;
    }
}
