        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        html {
            scroll-behavior: smooth;
        }

        .navbar {
            padding: 1rem 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo .logo {
            height: 40px;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .nav-logo .logo:hover {
            transform: scale(1.05);
            filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            background: none;
            border: none;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .nav-menu {
            display: flex;
            align-items: center;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        /* News Hero Section */
        .news-hero {
            padding: 140px 0 80px;
            /* background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(102, 126, 234, 0.3) 100%), url('../images/home1.jpg') no-repeat center center; */
            background: url('../images/31.png') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .news-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            z-index: 1;
            animation: heroGlow 4s ease-in-out infinite;
        }

        @keyframes heroGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        .news-hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        @keyframes titleSlideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes subtitleSlideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 0.95; transform: translateY(0); }
        }

        @keyframes statsSlideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* News Section */
        .news-section {
            padding: 6rem 0;
            background: #f8fafc;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .news-filters {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: #fff;
            border: 2px solid #e2e8f0;
            color: #64748b;
            padding: 0.75rem 1.75rem;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
        }

        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .filter-btn:hover::before,
        .filter-btn.active::before {
            left: 100%;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #4d4d4d 0%, #1a1a1b 100%);
            color: #fff;
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        /* Featured News Card */
        .featured-news {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #4d4d4d 0%, #1a1a1b 100%);
            color: #fff;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            position: relative;
        }

        .featured-news::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .featured-news:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
        }

        .featured-image {
            height: 350px;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .featured-image i {
            font-size: 5rem;
            color: rgba(255,255,255,0.9);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.9; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        .featured-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .featured-badge {
            background: rgba(255,255,255,0.2);
            color: #fff;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            align-self: flex-start;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .featured-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .featured-excerpt {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .featured-btn {
            background: #fff;
            color: #4d4d4d;
            text-decoration: none;
            padding: 1rem 2.5rem;
            border-radius: 15px;
            font-weight: 700;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            align-self: flex-start;
            box-shadow: 0 8px 25px rgba(255,255,255,0.2);
        }

        .featured-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255,255,255,0.3);
            background: #f8fafc;
        }

        /* Regular News Cards */
        .news-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            animation: cardSlideUp 0.8s ease-out;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.2);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .news-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #4d4d4d 0%, #1a1a1b 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .news-card:hover::before {
            transform: scaleX(1);
        }

        @keyframes cardSlideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .news-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #4d4d4d 0%, #1a1a1b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .news-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
        }

        .news-image i {
            font-size: 3.5rem;
            color: rgba(255,255,255,0.95);
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-image i {
            transform: scale(1.1);
        }

        .news-category {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: rgba(255,255,255,0.95);
            color: #4d4d4d;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            backdrop-filter: blur(10px);
        }

        .news-content {
            padding: 2.5rem;
        }

        .news-date {
            color: #64748b;
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        .news-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1.2rem;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .news-card:hover .news-title {
            color: #4d4d4d;
        }

        .news-excerpt {
            color: #475569;
            line-height: 1.7;
            margin-bottom: 2rem;
            font-size: 1rem;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid #e2e8f0;
        }

        .read-more-btn {
            background: linear-gradient(135deg, #4d4d4d 0%, #1a1a1b 100%);
            color: #fff;
            text-decoration: none;
            padding: 0.8rem 1.8rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
        }

        .read-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
        }

        .news-tags {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .news-tag {
            background: #f1f5f9;
            color: #475569;
            padding: 0.3rem 0.9rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .news-tag:hover {
            background: #4d4d4d;
            color: #fff;
            border-color: #4d4d4d;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 4rem;
        }

        .pagination-btn {
            background: #fff;
            border: 2px solid #e2e8f0;
            color: #64748b;
            padding: 1rem 1.2rem;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            font-weight: 600;
            min-width: 50px;
            text-align: center;
        }

        .pagination-btn:hover,
        .pagination-btn.active {
            background: linear-gradient(135deg, #4d4d4d 0%, #1a1a1b 100%);
            color: #fff;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            color: #fff;
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
        }

        .newsletter-content {
            position: relative;
            z-index: 1;
        }

        .newsletter-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .newsletter-content p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            max-width: 550px;
            margin: 0 auto;
            gap: 1rem;
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .newsletter-input {
            flex: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            background: rgba(255,255,255,0.9);
            color: #333;
            font-weight: 500;
        }

        .newsletter-input::placeholder {
            color: #64748b;
        }

        .newsletter-btn {
            background: linear-gradient(135deg, #4d4d4d 0%, #1a1a1b 100%);
            color: #fff;
            border: none;
            padding: 1.2rem 2.5rem;
            border-radius: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .newsletter-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .loading.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        /* Smooth Transitions */
        .news-card,
        .filter-btn,
        .pagination-btn {
            will-change: transform;
        }