    /*---------------------------- GENERAL START -------------------------*/

    @import url("/assets/css/splide.min.css");


    @font-face {
      font-family: "Poppins";
      src: url("/assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
    }
    
    

    *{
        scroll-behavior: smooth;        
        margin: 0;
        word-wrap: break-word;
        
    }
   
    
   :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        body {
            font-family: Poppins;
            color: #333;
            
        }
        
        /* Header Styles */
        header {
            position: sticky;
            top: 0;
            z-index: 9999999999999 !important;
        }
        .navbar {
            background-color: var(--primary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 5px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: white !important;
        }
        .logo-img{
            width: 200px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        /* Page Header */
        .page-header {
            background-color: var(--light-color);
            padding: 60px 0;
            margin-bottom: 50px;
        }
        
        .page-title {
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
        }
        
        .page-title::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }


        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 50px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        /* Card Styles */
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .card-img-top {
            height: 180px;
            object-fit: cover;
        }
        
        .card-body {
            padding: 20px;
        }
        
        .card-title {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .card-text {
            color: #666;
        }
        
        /* Button Styles */
        .btn-primary {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            padding: 10px 20px;
            font-weight: 500;
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
        }
        
        .btn-outline-primary {
            color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .btn-outline-primary:hover {
            background-color: var(--secondary-color);
            color: white;
        }

        /* Publications Styles */
        .publication-card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .publication-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .publication-source {
            display: inline-block;
            padding: 3px 10px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .publication-meta {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .publication-meta i {
            margin-right: 5px;
        }
        
        .publication-excerpt {
            color: #555;
            margin: 15px 0;
        }
        
        /* Pagination Styles */
        .pagination {
            justify-content: center;
            margin-top: 40px;
        }
        
        .page-item.active .page-link {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }
        
        .page-link {
            color: var(--secondary-color);
            border: 1px solid #dee2e6;
            margin: 0 5px;
            border-radius: 4px !important;
        }
        
        .page-link:hover {
            color: #1a5276;
            background-color: #e9ecef;
            border-color: #dee2e6;
        }
        
        /* Filter Styles */
        .filter-section {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .filter-title {
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Article Header */
        .article-header {
            background-color: var(--light-color);
            padding: 80px 0 40px;
            margin-bottom: 40px;
        }
        
        .article-source {
            display: inline-block;
            padding: 5px 15px;
            background-color: var(--secondary-color);
            color: white;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .article-meta {
            color: #6c757d;
            margin-bottom: 30px;
        }
        
        .article-meta i {
            margin-right: 5px;
        }
        
        /* Article Content */
        .article-content {
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .article-content img {
            max-width: 100%;
            height: auto;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .article-content h2, 
        .article-content h3, 
        .article-content h4 {
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .article-content blockquote {
            border-left: 4px solid var(--secondary-color);
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #555;
        }
        
        /* Related Articles */
        .related-articles {
            background-color: #f9f9f9;
            padding: 60px 0;
            margin-top: 60px;
        }
        
        .related-card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            height: 100%;
        }
        
        .related-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .related-source {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }
        
        /* Timeline Styles */
        .timeline-section {
            position: relative;
            padding: 50px 0;
        }
        
        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50px;
            width: 2px;
            height: 100%;
            background-color: var(--secondary-color);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 100px;
            margin-bottom: 50px;
        }
        
        .timeline-item-link{
            text-decoration: none !important;
            color: #333;
        }
        .timeline-date {
            position: absolute;
            left: 0;
            top: 0;
            width: 80px;
            padding: 5px 10px;
            background-color: var(--secondary-color);
            color: white;
            text-align: center;
            border-radius: 4px;
            font-weight: 600;
        }
        
        .timeline-content {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 20px;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-right: 15px solid white;
        }
        
        .timeline-title {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .timeline-documents {
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .document-badge {
            display: inline-block;
            background-color: var(--light-color);
            padding: 5px 10px;
            border-radius: 4px;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 0.85rem;
        }
        
        .document-badge a {
            color: var(--dark-color);
            text-decoration: none;
        }
        
        .document-badge a:hover {
            color: var(--secondary-color);
        }

        /* Video Card Styles */
        .video-card {
            border: none;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-meta {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .video-meta i {
            margin-right: 5px;
        }
        
        .video-duration {
            display: inline-block;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
            position: absolute;
            bottom: 10px;
            right: 10px;
        }
        
        /* Footer Styles */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
            padding-bottom: 0 !important;
            margin-bottom: 0 !important;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            
            .section {
                padding: 50px 0;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }

            .page-header {
                padding: 40px 0;
            }
            
            .page-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .article-header {
                padding: 60px 0 30px;
            }
            
            .article-content {
                font-size: 1rem;
            }

            .timeline-section::before {
                left: 30px;
            }
            
            .timeline-item {
                padding-left: 70px;
            }

            

            .timeline-date {
                width: 60px;
            }
            
            .timeline-content::before {
                left: -10px;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
                border-right: 10px solid white;
            }


        }