/* Font Families */
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Orbitron:wght@600&family=Rajdhani:wght@600&display=swap');

/* ==========================================================================
   1. Global Resets & Variables
   ========================================================================== */
:root {
    --primary-glow: rgba(144, 101, 255, 0.2);
    --dark-bg: #0f0e17;
    --card-bg: #1a1a2e;
    --text-light: #fffffe;
    --text-secondary: #a7a9be;
    --hover-bg: #f2f2f6;
    --hover-text: #000000;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(144, 101, 255, 0.25);
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container img {
    height: 50px;
    transition: height 0.3s ease;
    display: block;
}

header.scrolled .logo-container img {
    height: 40px;
}

/* --- Desktop Navigation --- */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li > a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.main-nav ul li:hover > a {
    color: #b58aff;
}

/* --- Submenu (Desktop) --- */
.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 5px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    display: flex;
    flex-direction: column;
}

.main-nav li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.main-nav .submenu li {
    width: 100%;
}

.main-nav .submenu li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.main-nav .submenu li a:hover {
    background: #1f1f28;
    color: #b58aff;
}

/* --- Header Actions & Contact Button --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 179, 255, 0.6);
    border-radius: 50px;
    color: #b58aff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
    background: rgba(217, 179, 255, 0.08);
    border-color: #b58aff;
    box-shadow: 0 0 14px #b58aff, 0 0 30px #9065ff;
}

/* --- Mobile Navigation (Hamburger & Side Menu) --- */
#hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    background: none;
    border: none;
}

#hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #b58aff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

#side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
}

#side-menu.active {
    right: 0;
}

#side-menu .side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-glow);
}

#side-menu .side-menu-header h3 {
    color: #b58aff;
    font-size: 1.5rem;
}

#close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

#side-menu .side-nav-list,
#side-menu .submenu-mobile {
    list-style: none;
}

#side-menu .side-nav-list > li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#side-menu .side-nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 12px 5px;
    text-transform: uppercase;
}

#side-menu .side-nav-list li a:hover {
    color: #b58aff;
}

#side-menu .submenu-mobile {
    padding-left: 20px;
    display: none;
    margin-top: 10px;
}

#side-menu li.active > .submenu-mobile {
    display: block;
}

#side-menu .submenu-mobile li {
    border-bottom: none;
}

#side-menu .submenu-mobile li a {
    font-size: 1rem;
    padding: 10px 5px;
    color: #ccc;
    text-transform: none;
}

#side-menu li.active > a {
    color: #d84dff;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, rgba(21, 21, 30, 0.9) 0%, rgba(41, 39, 71, 0.9) 100%), 
                url('assets/images/blog-hero-bg.jpg') center/cover no-repeat;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 0;
    position: relative;
    z-index: 1;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.blog-hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Search Container */
.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-input-container {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 15px 25px;
    padding-left: 25px;
    border-radius: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    padding-right: 60px;
    border: 1px solid rgba(181, 138, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(181, 138, 255, 0.5);
}

.search-input.has-filter {
    padding-left: 130px;
}

.search-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #b58aff;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Selected filter styles */
.selected-filter {
    position: absolute;
    top: 50%;
    left: 25px;
    transform: translateY(-50%);
    background: rgba(181, 138, 255, 0.2);
    color: #b58aff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: none;
    cursor: pointer;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.selected-filter::after {
    content: '×';
    margin-left: 8px;
    font-size: 1rem;
    vertical-align: middle;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #1a1a24;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    width: 100%;
    border: 1px solid rgba(181, 138, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(5px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.search-suggestions.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.search-suggestions::-webkit-scrollbar {
    width: 8px;
}

.search-suggestions::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.search-suggestions::-webkit-scrollbar-thumb {
    background: rgba(181, 138, 255, 0.3);
    border-radius: 4px;
}

.search-suggestions::-webkit-scrollbar-thumb:hover {
    background: rgba(181, 138, 255, 0.5);
}

.search-suggestion {
    padding: 12px 20px;
    cursor: pointer;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suggestion-text {
    flex: 1;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-suggestion:hover {
    background: rgba(181, 138, 255, 0.1);
    color: #b58aff;
}

.search-suggestion .count {
    background: rgba(181, 138, 255, 0.1);
    color: #b58aff;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

/* Blog Content Layout */
.blog-container {
    padding: 80px 0;
}

.blog-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-content {
    grid-column: 1;
}

.blog-sidebar {
    grid-column: 2;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Card Styles */
.blog-card {
    background: #121218;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(144, 101, 255, 0.2);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-category {
    display: inline-block;
    background: linear-gradient(90deg, #7e22ce 0%, #3b82f6 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.blog-card-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.blog-card-date {
    display: flex;
    align-items: center;
}

.blog-card-date i {
    margin-right: 6px;
    color: #b58aff;
    font-size: 0.9rem;
}

/* Sidebar Styles */
.categories-sidebar {
    background: #121218;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.categories-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #b58aff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.categories-list a:hover {
    color: #b58aff;
}

.categories-list a.active {
    color: #b58aff;
    background: rgba(181, 138, 255, 0.1);
    border-radius: 6px;
    padding: 10px 15px;
    margin: 0 -15px;
}

.categories-list span {
    background: rgba(181, 138, 255, 0.1);
    color: #b58aff;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.popular-posts {
    background: #121218;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.popular-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #b58aff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
}

.popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.popular-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
}

.popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content {
    flex: 1;
}

.popular-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.popular-post-title {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
}

.popular-post-title:hover {
    color: #b58aff;
}

/* Follow Us Widget */
.follow-us {
    background: #121218;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.follow-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #b58aff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
}

.social-links {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-bottom: none;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(181, 138, 255, 0.1);
    color: #b58aff;
    transform: translateY(-3px);
}

/* Popular Tags Widget */
.popular-tags {
    background: #121218;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tags-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #b58aff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tag:hover {
    background: rgba(181, 138, 255, 0.2);
    color: #b58aff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(181, 138, 255, 0.2);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.pagination-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #121218;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-item a:hover,
.pagination-item.active a {
    background: linear-gradient(135deg, #7e22ce 0%, #3b82f6 100%);
    color: white;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(21, 21, 30, 0.9) 0%, rgba(41, 39, 71, 0.9) 100%);
    padding: 80px 20px;
    text-align: center;
    margin-top: 80px;
    border-top: 1px solid rgba(181, 138, 255, 0.2);
    border-bottom: 1px solid rgba(181, 138, 255, 0.2);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.newsletter-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px 0 0 50px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(181, 138, 255, 0.3);
    border-right: none;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-button {
    padding: 16px 28px;
    border-radius: 0 50px 50px 0;
    border: none;
    background: linear-gradient(135deg, #7e22ce 0%, #3b82f6 100%);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: linear-gradient(135deg, #8a2be2 0%, #4a90e2 100%);
}

/* Footer */
.footer-section {
    background-color: #0a0a0f;
    padding: 80px 0 40px;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid rgba(181, 138, 255, 0.1);
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #b58aff;
}

.footer-col img {
    max-width: 150px;
    margin-bottom: 20px;
    filter: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-col img:hover {
    opacity: 0.9;
}

.company-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.company-info p {
    margin: 0 0 10px;
}

.company-info strong {
    color: #ffffff;
}

/* Copyright */
.glass-bottom-bar {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-top: 1px solid rgba(181, 138, 255, 0.1);
    box-shadow: 0 -4px 12px rgba(181, 138, 255, 0.1);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    z-index: 99;
}

.glass-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.glass-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.glass-copyright a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.glass-copyright a:hover {
    color: #b58aff;
}

.glass-icons {
    display: flex;
    gap: 16px;
}

.icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 15px;
    background-color: transparent;
    border: none;
    text-decoration: none;
}

.icon svg {
    height: 24px;
    width: 24px;
    fill: currentColor;
    transition: color 0.3s ease;
}

.icon:hover {
    color: #b58aff;
    transform: translateY(-2px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 95px; /* Positioned above the Back-to-Top button (50px height + 15px gap) */
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}


/* Back to Top */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px; /* Positioned at the very bottom */
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(181, 138, 255, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: '\f062'; /* Font Awesome up arrow */
    font-family: 'Font Awesome 6 Free'; /* Corrected Font Awesome version */
    font-weight: 900;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    color: #b58aff;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-wrap:hover::after {
    color: #9065ff;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #b58aff;
    stroke-width: 4;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-main {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        grid-row: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .categories-sidebar,
    .popular-posts {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: auto;
        min-height: 500px;
        padding: 100px 20px 60px;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 50px;
        margin-bottom: 15px;
        border-right: 1px solid rgba(181, 138, 255, 0.3);
    }
    
    .newsletter-button {
        border-radius: 50px;
        width: 100%;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        min-width: 100%;
    }
    
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    .progress-wrap::after {
        line-height: 45px;
    }
    .whatsapp-float {
        right: 20px;
        bottom: 80px; /* Adjust spacing for smaller button (45px height + 15px gap) */
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 1024px) {
    .blog-sidebar {
        grid-template-columns: 1fr;
    }
    
    .follow-us, 
    .popular-tags {
        margin-bottom: 30px;
    }
}