        :root {
            /* --primary: #4361ee; */
            --primary: #189d91;
            --primary-dark: #107a71;
            --secondary: #3498db;
            --secondary-light: #489fdb;
            --secondary-dark: #257db9;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --gray-light: #64748b;
            --accent: #f1f5f9;
            --sidebar-bg: #f8fafc;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --gradient-start: #4361ee;
            --gradient-end: #3a0ca3;
            --card-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            --transition-fast: 0.3s ease;
        }


        body {
            font-family: 'Inter', sans-serif;
            background-color: #f5f7fa;
            overflow-x: hidden;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        a {
            color: var(--primary);
        }

        /* a:hover {
            color: var(--primary-dark);
        } */


        /* Buttons */
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .btn:hover {
            background-color: var(--secondary-light);
        }


        .btn-4 {
            position: relative;
            display: inline-block;
            padding: 0.1rem 1.2rem;
            font-weight: 600;
            color: #fff;
            background: #3498db;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            overflow: hidden;
            z-index: 1;
            transition: all 0.3s ease;
            margin-right: 10px;
        }

        .btn-4 a {
            text-decoration: none;
            color: inherit;
        }

        /* Spinning border element */
        .btn-4::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: conic-gradient(transparent,
                    #00fffc,
                    transparent,
                    transparent,
                    #fffc00,
                    transparent,
                    #00fffc);
            border-radius: 10px;
            animation: rotate-border 2s linear infinite;
            z-index: -1;
        }

        /* Inner background to cover the center */
        .btn-4::after {
            content: '';
            position: absolute;
            top: 1px;
            left: 1px;
            right: 1px;
            bottom: 1px;
            background: #3498db;
            border-radius: 7px;
            z-index: -1;
            transition: all 0.3s ease;
        }

        /* Hover effect */
        .btn-4:hover::after {
            background: #3498db;
        }

        .btn-4:hover {
            color: #fff;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
        }

        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader {
            width: 50px;
            height: 50px;
            position: relative;
        }

        .loader:before, .loader:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background-color: var(--primary);
            opacity: 0.6;
            animation: pulse 2s ease-in-out infinite;
        }

        .loader:after {
            animation-delay: -1s;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(0);
                opacity: 0.6;
            }

            50% {
                transform: scale(1);
                opacity: 0;
            }
        }

        /* Navbar */
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            transition: var(--transition);
        }

        .navbar-brand span {
            color: var(--secondary);
            position: relative;
        }

        .navbar-brand span:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        .navbar-brand:hover span:after {
            width: 100%;
        }

        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            padding: 0.8rem 1rem;
        }

        .navbar.scrolled {
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
            position: relative;
            transition: var(--transition);
        }

        .nav-link:before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover:before {
            width: 100%;
        }



        /* Animation 1: Smooth Wave */
        .wave-animation span {
            display: inline-block;
            animation: wave 3s ease-in-out infinite;
        }

        .wave-animation span:nth-child(1) {
            animation-delay: 0.0s;
        }

        .wave-animation span:nth-child(2) {
            animation-delay: 0.1s;
        }

        .wave-animation span:nth-child(3) {
            animation-delay: 0.2s;
        }

        .wave-animation span:nth-child(4) {
            animation-delay: 0.3s;
        }

        .wave-animation span:nth-child(5) {
            animation-delay: 0.4s;
        }

        @keyframes wave {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-5px) rotate(3deg);
            }

            50% {
                transform: translateY(0) rotate(0deg);
            }

            75% {
                transform: translateY(3px) rotate(-3deg);
            }
        }

        /* Animation 2: Gentle Bounce */
        .bounce-animation span {
            display: inline-block;
            animation: bounce 2s ease-in-out infinite;
        }

        .bounce-animation span:nth-child(1) {
            animation-delay: 0.0s;
        }

        .bounce-animation span:nth-child(2) {
            animation-delay: 0.1s;
        }

        .bounce-animation span:nth-child(3) {
            animation-delay: 0.2s;
        }

        .bounce-animation span:nth-child(4) {
            animation-delay: 0.3s;
        }

        .bounce-animation span:nth-child(5) {
            animation-delay: 0.4s;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }



        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(10px);
            opacity: 0;
            display: block;
            transition: var(--transition);
            pointer-events: none;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown-item {
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 1.5rem;
        }

        .dropdown-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: var(--primary);
            opacity: 0;
            transition: var(--transition);
        }

        .dropdown-item:hover:before {
            opacity: 1;
        }


        .user-img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #e9ecef;
        }

        .notification-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: #dc3545;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #6f42c1;
        }

        .notification-item {
            border-left: 3px solid transparent;
        }

        .notification-item.unread {
            border-left-color: #6f42c1;
            background-color: #f8f9ff;
        }


        /* Breadcrumb */
        .breadcrumb {
            padding: 25px 0;
            background-color: #edf3f9;
            border-radius: 10px;
            margin-bottom: 0;
        }

        .breadcrumb-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

        .breadcrumb a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.2s;
        }

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

        .breadcrumb i {
            margin: 0 10px;
            color: var(--gray);
            font-size: 14px;
        }

        .breadcrumb .current {
            color: var(--primary);
            font-weight: 500;
        }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 7rem 0 5rem;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            transform: rotate(30deg);
            animation: bgMove 20s linear infinite;
        }

        @keyframes bgMove {
            0% {
                transform: rotate(30deg) translateX(0) translateY(0);
            }

            100% {
                transform: rotate(30deg) translateX(-100px) translateY(100px);
            }
        }

        .search-box {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeUp 0.8s forwards 0.5s;
        }

        .search-input {
            padding: 1rem 1.5rem;
            border-radius: 50px !important;
            border: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .search-input:focus {
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
            transform: scale(1.02);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            border-radius: 50px !important;
            padding: 0.75rem 1.5rem !important;
            transition: var(--transition) !important;
        }

        .search-btn:hover {
            transform: translateX(3px);
        }

        /* Article Cards */
        .article-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .article-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .article-img {
            overflow: hidden;
            position: relative;
        }

        .article-img:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .article-card:hover .article-img:after {
            opacity: 1;
        }

        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .article-card:hover .article-img img {
            transform: scale(1.1);
        }

        .article-title {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
            transition: var(--transition);
        }

        .article-title a {
            color: inherit;
            text-decoration: none;
            background-image: linear-gradient(var(--primary), var(--primary));
            background-size: 0% 2px;
            background-repeat: no-repeat;
            background-position: left 85%;
            transition: background-size 0.4s ease;
        }

        .article-title a:hover {
            /* background-size: 100% 2px; */
            color: var(--primary);
        }

        .article-excerpt {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .article-meta {
            font-size: 0.85rem;
            color: var(--gray);
        }

        /* Sidebar Widgets */
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .sidebar-widget:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .widget-title {
            font-size: 1.25rem;
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .widget-title:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .sidebar-widget:hover .widget-title:after {
            width: 100px;
        }

        .category-link {
            display: flex;
            align-items: center;
            padding: 0.5rem 0.75rem;
            border-radius: 6px;
            margin-bottom: 0.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .category-link:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.1), transparent);
            transition: var(--transition);
        }

        .category-link:hover:before {
            left: 100%;
        }

        .category-link:hover {
            background-color: #f0f7ff;
            color: var(--primary);
            transform: translateX(5px);
        }

        .category-link i {
            margin-right: 0.75rem;
            width: 20px;
            text-align: center;
            transition: var(--transition);
        }

        .category-link:hover i {
            transform: scale(1.2);
            color: var(--primary);
        }

        .popular-post {
            display: flex;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #f0f0f0;
            transition: var(--transition);
        }

        .popular-post:hover {
            transform: translateX(5px);
        }

        .popular-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .popular-img {
            width: 80px;
            height: 60px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
            margin-right: 1rem;
        }

        .popular-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .popular-post:hover .popular-img img {
            transform: scale(1.1);
        }

        .popular-title {
            font-size: 0.95rem;
            color: var(--dark);
            transition: var(--transition);
        }

        .popular-title:hover {
            color: var(--primary);
        }

        /* Tools Section */
        .tool-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            cursor: pointer;
            border-radius: 6px;
            transition: var(--transition);
        }

        .tool-header:hover {
            background-color: #f8f9fa;
            transform: translateX(5px);
        }

        .tool-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }



        .tool-link {
            display: flex;
            align-items: center;
            padding: 0.5rem 0.75rem 0.5rem 1.75rem;
            border-radius: 6px;
            transition: var(--transition);
        }

        /* .tool-link a {
            background-color: var(--gray-light);
        } */

        .tool-link:hover {
            /* font-weight: bold; */
            color: var(--primary);
            transform: translateX(5px);
        }

        .tool-item {
            margin-bottom: 0.5rem;
        }

        /* .tool-item a {
            margin-bottom: 0.5rem;
        } */


        /* .tool-link i {
            margin-right: 0.75rem;
            width: 20px;
            text-align: center;
            transition: var(--transition);
        }

        .tool-link:hover i {
            transform: scale(1.2);
        } */

        .tool-item i {
            margin-right: 12px;
            /* color: var(--primary); */
            transition: transform var(--transition-fast);
            width: 24px;
            text-align: center;
        }

        .tool-item i:hover {
            transform: rotate(15deg) scale(1.2);
        }



        /* Featured Posts */
        .featured-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .featured-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .featured-img {
            overflow: hidden;
            position: relative;
        }

        .featured-img:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
            opacity: 0;
            transition: var(--transition);
        }

        .featured-card:hover .featured-img:after {
            opacity: 1;
        }

        .featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
            padding: 10px;
        }

        .featured-card:hover .featured-img img {
            transform: scale(1.1);
        }

        .featured-title {
            font-size: 1rem;
            text-align: center;
            padding: 1rem;
            color: var(--dark);
            transition: var(--transition);
        }

        .featured-title a {
            color: inherit;
            text-decoration: none;
            background-image: linear-gradient(var(--primary), var(--primary));
            background-size: 0% 2px;
            background-repeat: no-repeat;
            background-position: center 85%;
            transition: background-size 0.4s ease;
        }

        .featured-title a:hover {
            /* background-size: 100% 2px; */
            color: var(--primary);
        }

        /* Footer */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234361ee' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .footer-links {
            list-style: none;
            padding-left: 0;
        }

        .footer-link {
            margin-bottom: 0.75rem;
        }

        .footer-link a {
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .footer-link a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-link i {
            margin-right: 0.75rem;
            width: 20px;
            transition: var(--transition);
        }

        .footer-link a:hover i {
            color: var(--accent);
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.75rem;
            transition: var(--transition);
        }

        /* .social-icon:hover {
            background-color: var(--primary);
            transform: translateY(-5px) rotate(5deg);
        } */

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            position: relative;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            transform: scale(0.8);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .back-to-top:hover {
            color: var(--light) !important;
            background-color: var(--secondary-dark);
            transform: translateY(-5px) scale(1.05);
        }

        /*Ad Manager
        ================================================== */
        #adblock_manage {
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border-radius: 14px;
            padding: 10px;
            background-color: antiquewhite;
            margin-bottom: 18px;
        }

        #adblock_manage p {
            text-align: center;
            color: #c01a1a;
            font-family: initial;
            letter-spacing: 0.1em;
        }

        .fbold {
            font-weight: bold !important;
        }

        .gsc-search-button-v2 {
            font-size: large !important;
            padding: 7px 27px !important;
        }

        /* End Ad Manager
        ================================================== */

        /* Sidebar Widgets */
        .sidebar-widget {
            margin-bottom: 35px;
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }

        .sidebar-widget:nth-child(1) {
            animation-delay: 0.9s;
        }

        .sidebar-widget:nth-child(2) {
            animation-delay: 1.1s;
        }

        .sidebar-widget:nth-child(3) {
            animation-delay: 1.3s;
        }

        .sidebar-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            position: relative;
        }

        .sidebar-title:hover::after {
            width: 100%;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            transition: width var(--transition-fast);
        }

        .widget-content {
            background-color: var(--surface);
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform var(--transition-fast), box-shadow var(--transition-fast);
        }

        .widget-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }


        .featured-post {
            display: flex;
            flex-direction: column;
        }

        .featured-post-image {
            width: 100%;
            height: 180px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
        }

        .featured-post-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(67, 97, 238, 0.2) 0%, rgba(58, 12, 163, 0.2) 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .featured-post-image:hover::before {
            opacity: 1;
        }

        .featured-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .featured-post-image:hover img {
            transform: scale(1.1);
        }

        .featured-post-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
            transition: color var(--transition-fast);
            font-size: 1.1rem;
        }

        .featured-post:hover .featured-post-title {
            color: var(--primary);
        }

        .featured-post-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all var(--transition-fast);
        }

        .featured-post-link i {
            margin-left: 8px;
            transition: transform 0.2s;
        }

        .featured-post-link:hover {
            color: var(--primary-dark);
        }

        .featured-post-link:hover i {
            transform: translateX(5px);
        }




        /* Border rotation animation */
        @keyframes rotate-border {
            0% {
                transform: rotate(0deg);
                filter: hue-rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
                filter: hue-rotate(360deg);
            }
        }







        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .hero:before {
                animation-duration: 30s;
            }
        }

        @media (max-width: 992px) {
            .navbar-brand {
                font-size: 1.6rem;
            }

            .hero {
                padding: 6rem 0 4rem;
            }

            .dropdown-menu {
                opacity: 1;
                transform: translateY(0);
                display: none;
                pointer-events: auto;
            }

            .dropdown.show .dropdown-menu {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 5rem 0 3rem;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .article-img {
                height: 180px;
            }

            .featured-img {
                height: 130px;
            }

            .footer {
                padding: 3rem 0 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 4rem 0 2.5rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .search-btn {
                position: relative;
                margin-top: 1rem;
                width: 100%;
                right: 0;
                top: 0;
            }

            .article-img {
                height: 160px;
            }

            .featured-img {
                height: 120px;
            }

            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
        }


        /* Code snippet */
        pre {

            font-size: 0.95em;
            line-height: 1.6;

        }

        code {
            border-radius: 6px;
            border: 1px solid #e1e1e1;

        }

        .hljs {
            padding: 0.5em 1.3em !important;
        }


        /* Auth styles */
        .span9 {
            width: 70%;
        }

        .span3 {
            width: 30%;
        }


        @keyframes btnPulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .modern-form {
            background: linear-gradient(-45deg, #f5f7fa, #e4ecfb, #f5f7fa);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            border-radius: 12px;
            box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
            padding: 100px;
            margin-bottom: 50px;
            animation: fadeIn 0.8s ease-out;
            transition: all 0.3s ease;
        }

        .modern-form:hover {
            box-shadow: 0 18px 40px rgba(50, 50, 93, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
            animation: fadeIn 1s ease-out;
        }

        .form-header h3 {
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .form-header h3:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: linear-gradient(to right, #4f46e5, #7c3aed);
            bottom: -10px;
            left: 25%;
            border-radius: 3px;
        }

        .btn-ani {
            font-weight: 600;
            transition: all 0.3s ease;
            z-index: 1;
        }

        .btn-ani:hover {
            color: #fff;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
        }

        .btn-google:hover,
        .btn-facebook:hover {
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(99, 102, 241, 0.3);
            animation: btnPulse 1s infinite;
        }

        .form-control {
            border: none;
            border-radius: 8px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            animation: fadeIn 0.8s ease-out;
        }

        .form-control:focus {
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
            background: white;
        }

        .gender-options {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            animation: fadeIn 1s ease-out;
        }

        .gender-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
        }

        .gender-label:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
        }

        .gender-label input {
            margin-right: 8px;
        }

        .image-upload {
            margin: 20px 0;
            animation: fadeIn 1.2s ease-out;
        }

        #thumbnil {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
        }

        #thumbnil:hover {
            animation: btnPulse 1.5s infinite;
        }

        .fileinput {
            margin-top: 15px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
        }

        .fileinput:hover {
            background: white;
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
        }

        textarea {
            width: 100%;
            border: none;
            border-radius: 8px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            min-height: 100px;
            resize: vertical;
            animation: fadeIn 1.4s ease-out;
        }

        textarea:focus {
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
            background: white;
            outline: none;
        }

        .btn-account {
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, var(--secondary), var(--secondary-dark));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.11);
            animation: fadeIn 1.6s ease-out;
        }

        .btn-account:hover {
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(99, 102, 241, 0.3);
        }

        .social-info-modern {
            background: linear-gradient(-45deg, #f5f7fa, #e4ecfb, #f5f7fa);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            animation: fadeIn 1s ease-out;
        }

        .social-info-modern h3 {
            color: #2d3748;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }

        .social-info-modern h3:after {
            content: '';
            position: absolute;
            width: 40%;
            height: 3px;
            background: linear-gradient(to right, #4f46e5, #7c3aed);
            bottom: -10px;
            left: 30%;
            border-radius: 3px;
        }

        .social-icons-modern {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon-modern {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: white;
            color: #4f46e5;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeIn 1.2s ease-out;
            text-decoration: none;
        }

        .social-icon-modern:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            color: #7c3aed;
        }


        /* Responsive adjustments */
        @media (max-width: 768px) {
            .modern-form {
                padding: 20px;
            }

            .gender-options {
                flex-direction: column;
                gap: 10px;
            }

            .span9 {
                width: 100%;
            }

            .span3 {
                width: 100%;
            }
        }


        /* softwares pages */

         .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .span12 {
            width: 100%;
            padding: 0 15px;
        }

        .span9 {
            width: 70%;
            padding: 0 15px;
        }

        .span8 {
            width: 70%;
            padding: 0 15px;
        }

        .span4 {
            width: 30%;
            padding: 0 15px;
            margin-bottom: 30px;
        }

        @media (max-width: 992px) {
            .span4 {
                width: 50%;
            }
        }

        @media (max-width: 576px) {
            .span4 {
                width: 100%;
            }
        }

        .software-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .software-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .image-container {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .software-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .software-card:hover img {
            transform: scale(1.1);
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .software-card:hover .overlay {
            opacity: 1;
        }

        .view-btn {
            color: white;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            backdrop-filter: blur(5px);
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .view-btn:hover{
            color: #fff;
        }
        .software-card:hover .view-btn {
            transform: translateY(0);
            opacity: 1;
        }

        .card-content {
            padding: 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .card-content h3 {
            font-size: 22px;
            margin-bottom: 5px;
            color: #333;
        }

        .count {
            display: inline-block;
            background: #4e73df;
            color: white;
            padding: 8px 10px;
            border-radius: 20px;
            font-size: 15px;
            margin-top: 5px;
            animation: viewPulse 2s infinite;
        }

        @keyframes viewPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(78, 115, 223, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(78, 115, 223, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(78, 115, 223, 0);
            }
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
        }

        .header h1 {
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #4e73df, #224abe);
            border-radius: 2px;
        }

        .header p {
            color: #7a8590;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }