       /* === BASE STYLES === */
       :root {
           --primary: #4361ee;
           --primary-dark: #3a56d4;
           --accent: #4cc9f0;
           --gold: #FFD700;
           --platinum: #E5E4E2;
           --dark: #0f172a;
           --light: #f8fafc;
           --gradient: linear-gradient(135deg, var(--primary), var(--accent));
           --gold-gradient: linear-gradient(135deg, #FFD700, #FFA500);
           --platinum-gradient: linear-gradient(135deg, #E5E4E2, #C0C0C0);
       }

       * {
           margin: 0;
           padding: 0;
           box-sizing: border-box;
       }

       body {
           font-family: 'Poppins', sans-serif;
           color: #333;
           line-height: 1.6;
           background-color: #f9fbfd;
           overflow-x: hidden;
           background: linear-gradient(135deg, #f0f4ff 0%, #e6f7ff 100%);
           background-attachment: fixed;
           padding-top: 120px;
       }

       .container {
           width: 90%;
           max-width: 1400px;
           margin: 0 auto;
           padding: 0 20px;
       }

       /* Fixed Header Container */
       .fixed-header-container {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           z-index: 1000;
       }

       /* Discount Banner - Fixed */
       .discount-banner {
           background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
           background-size: 400% 400%;
           animation: gradientShift 6s ease infinite;
           /* Slower animation */
           color: white;
           text-align: center;
           padding: 12px 0;
           font-weight: 700;
           font-size: 16px;
           position: relative;
           width: 100%;
           overflow: hidden;
           box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
           border-bottom: 2px solid rgba(255, 255, 255, 0.3);
       }

       .discount-banner .container {
           display: flex;
           justify-content: center;
           align-items: center;
           gap: 20px;
           flex-wrap: wrap;
           position: relative;
       }

       .category-industry {
           background-color: #8e44ad;
       }

       .countdown {
           display: inline-flex;
           background: rgba(0, 0, 0, 0.2);
           padding: 8px 20px;
           border-radius: 50px;
           margin-left: 20px;
       }

       .countdown span {
           display: inline-flex;
           align-items: center;
           font-weight: 700;
       }

       .countdown i {
           margin-right: 8px;
           animation: pulse 1.5s infinite;
       }

       /* Header Styles */
       header {
           background-color: rgba(255, 255, 255, 0.95);
           backdrop-filter: blur(10px);
           box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
           width: 100%;
           padding: 15px 0;
           transition: all 0.4s;
           border-bottom: 1px solid rgba(0, 0, 0, 0.05);
       }

       .header-container {
           display: flex;
           justify-content: space-between;
           align-items: center;
       }

       .logo {
           display: flex;
           align-items: center;
           gap: 15px;
           text-decoration: none;
       }

       .logo-icon {
           width: 50px;
           height: 50px;
           background: var(--gradient);
           border-radius: 12px;
           display: flex;
           align-items: center;
           justify-content: center;
           color: white;
           font-size: 24px;
           font-weight: 700;
           box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
       }

       .logo-icon img {
           width: 100%;
           height: 100%;
           object-fit: contain;
           border-radius: 12px;
       }

       .logo-text {
           font-family: 'Montserrat', sans-serif;
           font-weight: 900;
           font-size: 32px;
           color: var(--dark);
           letter-spacing: -1px;
           background: linear-gradient(135deg, var(--dark), var(--primary));
           -webkit-background-clip: text;
           background-clip: text;
           -webkit-text-fill-color: transparent;
       }

       nav ul {
           display: flex;
           list-style: none;
           gap: 35px;
       }

       nav a {
           text-decoration: none;
           color: var(--dark);
           font-weight: 600;
           font-size: 17px;
           transition: all 0.3s;
           position: relative;
       }

       nav a:after {
           content: '';
           position: absolute;
           bottom: -5px;
           left: 0;
           width: 0;
           height: 3px;
           background: var(--gradient);
           transition: width 0.3s;
           border-radius: 3px;
       }

       nav a:hover:after {
           width: 100%;
       }

       .cta-button {
           background: var(--gradient);
           color: white;
           padding: 14px 32px;
           border-radius: 50px;
           text-decoration: none;
           font-weight: 700;
           transition: all 0.3s;
           display: inline-block;
           border: none;
           box-shadow: 0 5px 20px rgba(67, 97, 238, 0.3);
           font-size: 17px;
           letter-spacing: 0.5px;
       }

       .cta-button:hover {
           transform: translateY(-5px);
           box-shadow: 0 10px 30px rgba(67, 97, 238, 0.4);
       }

       /* WhatsApp Button */
       .whatsapp-button {
           position: fixed;
           bottom: 40px;
           right: 40px;
           z-index: 1001;
           /* Increased z-index */
           background: #25D366;
           color: white;
           display: flex;
           align-items: center;
           padding: 18px 35px;
           border-radius: 50px;
           box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
           text-decoration: none;
           font-weight: 800;
           transition: all 0.3s;
           animation: pulse 2s infinite;
           font-size: 20px;
           letter-spacing: 0.5px;
       }

       .whatsapp-button:hover {
           transform: translateY(-5px) scale(1.05);
           box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
           animation: none;
       }

       .whatsapp-button i {
           font-size: 36px;
           margin-right: 15px;
       }

       /* Back to Top Button */
       .back-to-top {
           position: fixed;
           bottom: 100px;
           right: 30px;
           z-index: 1001;
           /* Increased z-index */
           width: 50px;
           height: 50px;
           border-radius: 50%;
           background: var(--gradient);
           color: white;
           display: flex;
           align-items: center;
           justify-content: center;
           box-shadow: 0 5px 20px rgba(67, 97, 238, 0.4);
           cursor: pointer;
           opacity: 0;
           visibility: hidden;
           transform: translateY(20px);
           transition: all 0.4s ease;
       }

       .back-to-top.show {
           opacity: 1;
           visibility: visible;
           transform: translateY(0);
       }

       .back-to-top:hover {
           transform: translateY(-5px);
           box-shadow: 0 8px 25px rgba(67, 97, 238, 0.6);
       }

       .back-to-top i {
           font-size: 20px;
       }

       /* Footer */
       footer {
           background: var(--dark);
           color: white;
           padding: 100px 0 40px;
           position: relative;
           overflow: hidden;
       }

       footer:before {
           content: '';
           position: absolute;
           top: -300px;
           right: -200px;
           width: 800px;
           height: 800px;
           border-radius: 50%;
           background: rgba(255, 255, 255, 0.02);
       }

       .footer-grid {
           display: grid;
           grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
           gap: 50px;
           margin-bottom: 70px;
           position: relative;
           z-index: 2;
       }

       .footer-col h3 {
           font-size: 24px;
           margin-bottom: 30px;
           position: relative;
           font-weight: 700;
       }

       .footer-col h3::after {
           content: "";
           position: absolute;
           left: 0;
           bottom: -15px;
           width: 60px;
           height: 3px;
           background: var(--accent);
       }

       .footer-links {
           list-style: none;
       }

       .footer-links li {
           margin-bottom: 15px;
       }

       .footer-links a {
           color: #cbd5e1;
           text-decoration: none;
           transition: color 0.3s;
           font-size: 17px;
           display: flex;
           align-items: center;
           gap: 10px;
       }

       .footer-links a:hover {
           color: white;
           transform: translateX(5px);
       }

       .footer-links a i {
           color: var(--accent);
       }

       .copyright {
           text-align: center;
           padding-top: 40px;
           border-top: 1px solid rgba(255, 255, 255, 0.1);
           color: #94a3b8;
           font-size: 16px;
           position: relative;
           z-index: 2;
       }

       /* Mobile Menu Button */
       .mobile-menu-btn {
           display: none;
           background: transparent;
           border: none;
           color: var(--dark);
           font-size: 28px;
           cursor: pointer;
           z-index: 1001;
       }

       /* Mobile Nav Container */
       .mobile-nav-container {
           position: fixed;
           top: 0;
           left: 0;
           width: 100%;
           height: 100%;
           background: rgba(255, 255, 255, 0.98);
           backdrop-filter: blur(10px);
           z-index: 1000;
           display: flex;
           flex-direction: column;
           justify-content: center;
           align-items: center;
           transform: translateY(-100%);
           transition: transform 0.5s ease-in-out;
           padding: 80px 20px 40px;
       }

       .mobile-nav-container.active {
           transform: translateY(0);
       }

       .mobile-nav-container ul {
           list-style: none;
           text-align: center;
           width: 100%;
       }

       .mobile-nav-container ul li {
           margin-bottom: 25px;
       }

       .mobile-nav-container ul li a {
           font-size: 24px;
           font-weight: 700;
           color: var(--dark);
           text-decoration: none;
           transition: color 0.3s;
       }

       .mobile-nav-container ul li a.cta-button {
           background: var(--gradient);
           color: white;
           padding: 12px 24px;
           border-radius: 50px;
           margin-top: 20px;
           display: inline-block;
       }

       .mobile-nav-container ul li a:hover {
           color: var(--primary);
       }

       .close-mobile-menu {
           position: absolute;
           top: 30px;
           right: 30px;
           background: transparent;
           border: none;
           font-size: 32px;
           color: var(--dark);
           cursor: pointer;
       }

       /* === BLOG SPECIFIC STYLES === */
       .blog-header {
           background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
           color: white;
           text-align: center;
           padding: 200px 0 100px;
           position: relative;
           overflow: hidden;
           clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
           margin-top: 0;
       }

       .blog-header-content {
           max-width: 800px;
           margin: 0 auto;
           position: relative;
           z-index: 2;
       }

       .blog-header h1 {
           font-family: 'Montserrat', sans-serif;
           font-size: 3.5rem;
           margin-bottom: 25px;
           color: white;
           text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
       }

       .blog-header p {
           font-size: 1.4rem;
           color: rgba(255, 255, 255, 0.9);
           margin-bottom: 40px;
           max-width: 700px;
           margin: 0 auto 40px;
           font-weight: 500;
       }

       .blog-container {
           max-width: 1200px;
           margin: 0 auto;
           padding: 60px 20px;
       }

       /* Blog Filters */
       .blog-filters {
           display: flex;
           justify-content: center;
           flex-wrap: wrap;
           gap: 12px;
           margin-bottom: 40px;
       }

       .filter-btn {
           padding: 12px 24px;
           background: white;
           border: 1px solid #ddd;
           border-radius: 30px;
           cursor: pointer;
           transition: all 0.3s ease;
           font-size: 1.05rem;
           font-weight: 600;
       }

       .filter-btn:hover,
       .filter-btn.active {
           background: var(--primary);
           color: white;
           border-color: var(--primary);
           transform: translateY(-2px);
           box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
       }

       /* Blog Grid */
       .blog-grid {
           display: grid;
           grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
           gap: 35px;
           margin-bottom: 40px;
       }

       .blog-card {
           background: white;
           border-radius: 20px;
           overflow: hidden;
           box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
           transition: transform 0.3s ease, box-shadow 0.3s ease;
           display: flex;
           flex-direction: column;
           height: 100%;
       }

       .blog-card:hover {
           transform: translateY(-7px);
           box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
       }

       .card-image {
           height: 220px;
           background-size: cover;
           background-position: center;
           position: relative;
           overflow: hidden;
       }

       .card-image img {
           width: 100%;
           height: 100%;
           object-fit: cover;
           display: block;
       }

       .category-tag {
           position: absolute;
           top: 15px;
           right: 15px;
           color: white;
           padding: 8px 18px;
           border-radius: 20px;
           font-size: 0.95rem;
           font-weight: 600;
           text-transform: uppercase;
           letter-spacing: 0.5px;
       }

       .card-content {
           padding: 25px;
           display: flex;
           flex-direction: column;
           height: auto;
       }

       .card-content h3 {
           font-size: 1.4rem;
           margin-bottom: 15px;
           color: var(--dark);
           line-height: 1.4;
       }

       .card-content p {
           color: #555;
           font-size: 1.05rem;
           margin-bottom: 20px;
           line-height: 1.7;
       }

       .read-more {
           display: inline-flex;
           align-items: center;
           color: var(--primary);
           text-decoration: none;
           font-weight: 600;
           font-size: 1.05rem;
           transition: color 0.3s ease;
       }

       .read-more i {
           margin-left: 8px;
           transition: transform 0.3s;
       }

       .read-more:hover {
           color: var(--accent);
       }

       .read-more:hover i {
           transform: translateX(4px);
       }

       /* Blog categories */
       .category-design {
           background-color: #3498db;
       }

       .category-seo {
           background-color: #2ecc71;
       }

       .category-ecommerce {
           background-color: #9b59b6;
       }

       .category-business {
           background-color: #e67e22;
       }

       .category-customization {
           background-color: #e74c3c;
       }

       .category-services {
           background-color: #1abc9c;
       }

       .category-industry {
           background-color: #8e44ad;
       }

       /* Pagination */
       .pagination {
           display: flex;
           justify-content: center;
           align-items: center;
           gap: 10px;
           margin-top: 40px;
       }

       .pagination button {
           min-width: 40px;
           height: 40px;
           display: flex;
           align-items: center;
           justify-content: center;
       }

       .pagination button:hover {
           background: var(--primary);
           color: white;
           border-color: var(--primary);
       }

       .pagination button.active {
           background: var(--primary);
           color: white;
           border-color: var(--primary);
           transform: scale(1.1);
       }

       .pagination button.disabled {
           opacity: 0.5;
           cursor: not-allowed;
       }

       /* Animations */
       @keyframes gradientShift {
           0% {
               background-position: 0% 50%;
           }

           50% {
               background-position: 100% 50%;
           }

           100% {
               background-position: 0% 50%;
           }
       }

       @keyframes pulse {
           0% {
               box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
           }

           70% {
               box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
           }

           100% {
               box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
           }
       }

       /* Responsive design for blog */
       @media (max-width: 1100px) {
           .blog-grid {
               grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
           }
       }

       @media (max-width: 992px) {

           nav,
           .cta-button {
               display: none;
           }

           .mobile-menu-btn {
               display: block;
           }

           /* Active link in mobile menu */
           .mobile-nav-container .active {
               color: var(--primary);
               font-weight: 700;
           }
       }

       @media (max-width: 768px) {
           .blog-header {
               padding: 180px 0 80px;
               clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
           }

           .blog-header h1 {
               font-size: 2.8rem;
           }

           .blog-header p {
               font-size: 1.2rem;
           }

           .pagination button {
               width: 38px;
               height: 38px;
               margin: 0 2px;
               font-size: 1rem;
           }

           .filter-btn {
               padding: 10px 20px;
               font-size: 1rem;
           }
       }

       @media (max-width: 480px) {
           .blog-header h1 {
               font-size: 2rem;
           }

           .blog-header p {
               font-size: 1.1rem;
           }

           .card-content h3 {
               font-size: 1.3rem;
           }
       }