/*News annd Update*/



/*Featured Article Section */
        .featured-articles {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            font-size: 3rem;
            color: #4fc3f7;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-header p {
            font-size: 1.125rem;
            color: #90caf9;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .divider {
            height: 4px;
            width: 80px;
            background: linear-gradient(90deg, #01192d, #4fc3f7, #01192d);
            margin: 15px auto 25px;
            border-radius: 2px;
        }
        
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
        }
        
        .article-card {
            background: linear-gradient(145deg, #012640, #01192d);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 1px solid #0c3557;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
            border-color: #4fc3f7;
        }
        
        .article-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .article-card:hover .article-image img {
            transform: scale(1.05);
        }
        
        .article-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .article-category {
            display: inline-block;
            background: rgba(79, 195, 247, 0.15);
            color: #4fc3f7;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .article-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #e0f0ff;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .article-excerpt {
            color: #90caf9;
            margin-bottom: 20px;
            flex-grow: 1;
            line-height: 1.6;
        }
        
        .article-author {
            display: flex;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #0c3557;
        }
        
        .author-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 12px;
            border: 2px solid #4fc3f7;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info {
            color: #90caf9;
            font-size: 0.9rem;
        }
        
        .author-name {
            font-weight: 600;
            color: #e0f0ff;
        }
        
        .article-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        
        .view-all {
            text-align: center;
            margin-top: 50px;
        }
        
        .view-all-btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            color: #4fc3f7;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #4fc3f7;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .view-all-btn:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 195, 247, 0.2), transparent);
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .view-all-btn:hover {
            color: #01192d;
            border-color: #4fc3f7;
        }
        
        .view-all-btn:hover:before {
            left: 100%;
        }
        
        .view-all-btn:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: #4fc3f7;
            transition: all 0.3s ease;
            z-index: -2;
        }
        
        .view-all-btn:hover:after {
            width: 100%;
        }
        
        @media (max-width: 768px) {
            .articles-grid {
                grid-template-columns: 1fr;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }