   :root {
      --primary: #1a5276;
      --secondary: #2980b9;
      --accent: #ffb65a;
      --light: #ecf0f1;
      --dark: #2c3e50;
      --dark-blue: #0d2035;
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }


    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
      color: var(--dark);
      line-height: 1.6;
      padding-top: 80px;
    }

    /* News Details Section */
    .news-details { 
      padding: 80px 0; 
      background: white; 
    }

    .section-container { 
      max-width: 1100px; 
      margin: auto; 
      padding: 0 20px;
    }

    /* Breadcrumb */
    .breadcrumb {
      margin-bottom: 30px;
      font-size: 14px;
      color: #666;
      background-color: #f8f9fa;
      padding: 12px 15px;
      border-radius: 8px;
    }
    
    .breadcrumb a {
      color: var(--primary);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .breadcrumb a:hover {
      color: var(--accent);
      text-decoration: underline;
    }

    /* Title */
    .news-title {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--dark-blue);
      position: relative;
      padding-bottom: 15px;
    }
    
    .news-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, var(--accent), var(--primary));
      border-radius: 2px;
    }

    /* Meta Information */
    .news-meta {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
      color: #666;
      font-size: 0.9rem;
      flex-wrap: wrap;
    }
    
    .news-meta i {
      color: var(--accent);
      margin-right: 5px;
    }

    /* Featured Image */
    .featured-img {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      margin-bottom: 40px;
    }
    
    .featured-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition);
    }
    
    .featured-img:hover img {
      transform: scale(1.03);
    }

    /* Content */
    .news-content {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 50px;
    }
    
    .news-content p {
      margin-bottom: 20px;
    }

    /* Social Sharing */
    .social-sharing {
      display: flex;
      gap: 15px;
      margin-bottom: 50px;
    }
    
    .social-sharing a {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--dark-blue));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }
    
    .social-sharing a:hover {
      background: linear-gradient(135deg, var(--accent), #ff9e2a);
      transform: translateY(-5px);
    }

    /* Gallery Section */
    .news-gallery {
      margin-bottom: 60px;
    }
    
    .section-heading {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px;
      color: var(--dark-blue);
      position: relative;
      padding-bottom: 15px;
    }
    
    .section-heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, var(--accent), var(--primary));
      border-radius: 2px;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }
    
    .gallery-item {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      position: relative;
    }
    
    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    .gallery-item::after {
      content: '\f002';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 1.5rem;
      opacity: 0;
      transition: var(--transition);
      z-index: 2;
    }
    
    .gallery-item:hover::after {
      opacity: 1;
    }
    
    .gallery-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(26, 82, 118, 0.3);
      opacity: 0;
      transition: var(--transition);
      z-index: 1;
    }
    
    .gallery-item:hover::before {
      opacity: 1;
    }

    /* Related News Section */
    .related-news {
      margin-bottom: 60px;
    }
    
    .related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .related-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
    }
    
    .related-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .related-img {
      height: 200px;
      overflow: hidden;
    }
    
    .related-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .related-card:hover .related-img img {
      transform: scale(1.1);
    }
    
    .related-content {
      padding: 25px;
    }
    
    .related-content h4 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: var(--dark-blue);
      font-weight: 600;
    }
    
    .related-content p {
      color: #666;
      font-size: 0.95rem;
      margin-bottom: 15px;
    }
    
    .related-meta {
      font-size: 0.85rem;
      color: #888;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .related-meta i {
      color: var(--accent);
      margin-right: 5px;
    }
    
    .read-more {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: var(--transition);
    }
    
    .read-more:hover {
      color: var(--accent);
      gap: 10px;
    }

    /* Back to News Button */
    .back-to-news {
      margin-top: 50px;
      text-align: center;
    }
    
    .back-to-news a {
      display: inline-flex;
      align-items: center;
      padding: 12px 25px;
      background: var(--primary);
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 500;
      transition: var(--transition);
    }
    
    .back-to-news a:hover {
      background: var(--dark-blue);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(26, 82, 118, 0.3);
    }
    
    .back-to-news a i {
      margin-right: 8px;
    }

    /* Footer */
    footer {
      background: linear-gradient(to right, var(--dark-blue), var(--primary));
      color: white;
      padding: 80px 0 30px;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 10px;
      background: linear-gradient(to right, var(--accent), #ff9e2a);
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition);
      display: block;
      margin-bottom: 15px;
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 5px;
    }

    .social-media a {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      margin-right: 10px;
    }

    .social-media a:hover {
      background: var(--accent);
      transform: translateY(-5px);
      color: white;
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--accent), #ff9e2a);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
      box-shadow: 0 5px 15px rgba(255, 182, 90, 0.3);
    }

    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(255, 182, 90, 0.4);
    }

    /* Animation */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fadeIn {
      animation: fadeIn 0.8s ease-out forwards;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .news-title {
        font-size: 2.2rem;
      }
      
      .news-content {
        font-size: 1rem;
      }
      
      .related-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .news-title {
        font-size: 1.8rem;
      }
      
      .news-meta {
        flex-direction: column;
        gap: 8px;
      }
      
      .related-grid {
        grid-template-columns: 1fr;
      }
      
      .social-sharing {
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      .news-title {
        font-size: 1.5rem;
      }
      
      .gallery-grid {
        grid-template-columns: 1fr;
      }
      
      .social-sharing {
        flex-wrap: wrap;
        justify-content: center;
      }
    }