
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  body {
    background-color: #ffffff;
  }

  /* Top Bar */
  .top-bar {
    background-color: #f9f9fa;
    border-bottom: 1px solid #eaeef2;
    padding: 8px 0;
    font-size: 13px;
  }

  .top-bar a {
    color: #6f6f6f;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 400;
  }

  .top-bar a:hover {
    color: #00a82d;
  }

  .top-bar .social-icons a {
    margin-right: 15px;
    color: #6f6f6f;
  }

  /* Main Header with Burger */
  .main-header {
    background-color: white;
    border-bottom: 1px solid #eaeef2;
    padding: 10px 0;
  }

  .logo {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1e2b;
    text-decoration: none;
  }

  .burger-menu {
    width: 40px;
    height: 40px;
    background-color: #00a82d;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 20px;
  }

  .burger-menu span {
    width: 20px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
  }

  .burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-menu.active span:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .search-icon {
    color: #1a1e2b;
    font-size: 18px;
    cursor: pointer;
    margin-left: 25px;
  }

  .subscribe-btn {
    background-color: #00a82d;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    margin-left: 20px;
  }

  .subscribe-btn:hover {
    background-color: #008a24;
    color: white;
  }

@media (max-width: 450px){
  .subscribe-btn {
    display: none;
  }
}

  /* Mega Menu - Full Width */
  .mega-menu {
    position: absolute;
    top: 104px;
    left: 0;
    width: 100%;
    background: #00a72c;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    z-index: 1000;
    display: none;
    border-top: 1px solid #eaeef2;
    border-bottom: 1px solid #eaeef2;
  }

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

  .mega-menu h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
  }

  .mega-menu ul {
    list-style: none;
    padding: 0;
  }

  .mega-menu ul li {
    margin-bottom: 0px;
  }

  .mega-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
  }

  .mega-menu ul li a:hover {
    color: #000;
    padding-left: 5px;
  }

  /* NEW: Green Hero Section - Like Screenshot */
  .green-hero-section {
    background-color: #00a82d;
    padding: 30px 0;
    color: white;
  }

  .tc-logo-white {
    font-size: 42px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: -1px;
  }

  .tc-logo-white span {
    font-weight: 400;
  }

  /* Main Featured Story */
  .featured-story {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
  }

  .featured-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
  }

  .featured-story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  }

  .featured-story .category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
  }

  .featured-story h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  @media (max-width: 768px) {
    .featured-story h1 {
      font-size: 24px;
      line-height: 1.2;
      margin-bottom: 10px;
    }
  }

  .featured-story h1 a {
    color: white;
    text-decoration: none;
  }

  .featured-story h1 a:hover {
    text-decoration: underline;
  }

  .featured-story .meta {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Side Stories */
  .side-story-card {
    position: relative;
    height: 190px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
  }

  .side-story-card:last-child {
    margin-bottom: 0;
  }

  .side-story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
  }

  .side-story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  }

  .side-story-card .category {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
  }

  .side-story-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .side-story-card h3 a {
    color: white;
    text-decoration: none;
  }

  .side-story-card h3 a:hover {
    text-decoration: underline;
  }

  .side-story-card .meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Top Headlines Sidebar - Green Theme */
  .headlines-sidebar {
    padding-left: 25px;
  }

  .headlines-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
  }

  .headline-sidebar-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }

  .headline-sidebar-item:last-child {
    border-bottom: none;
  }

  .headline-sidebar-item a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    display: inline-block;
    padding-left: 15px;
  }

  .headline-sidebar-item a:hover {
    text-decoration: underline;
  }

  .headline-sidebar-item::before {
    content: "■";
    color: white;
    font-size: 8px;
    position: absolute;
    top: 17px;
  }

  /* Hero Section - Exactly like screenshot */
  .hero-section {
    padding: 30px 0;
    border-bottom: 1px solid #eaeef2;
  }

  .main-story {
    padding-right: 20px;
  }

  .main-story h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin: 10px 0 15px;
    letter-spacing: -0.5px;
  }

  .main-story h1 a {
    color: #1a1e2b;
    text-decoration: none;
  }

  .main-story h1 a:hover {
    color: #00a82d;
  }

  .main-story .meta {
    color: #6f6f6f;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .main-story .meta i {
    margin-right: 5px;
  }

  .main-story .excerpt {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.5;
  }

  .story-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  .story-image img {
    width: 100%;
    height: auto;
  }

  /* Side Stories */
  .side-story-item {
    padding: 15px 0;
    border-bottom: 1px solid #eaeef2;
  }

  .side-story-item:first-child {
    padding-top: 0;
  }

  .side-story-item:last-child {
    border-bottom: none;
  }

  .side-story-item h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .side-story-item h3 a {
    color: #1a1e2b;
    text-decoration: none;
  }

  .side-story-item h3 a:hover {
    color: #00a82d;
  }

  .side-story-item .meta {
    color: #6f6f6f;
    font-size: 13px;
  }

  .side-story-item .meta i {
    margin-right: 5px;
  }

  /* Top Headlines Section - Exactly like screenshot */
  .headlines-section {
    border-left: 1px solid #eaeef2;
    padding-left: 25px;
  }

  .headlines-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeef2;
  }

  .headline-item {
    padding: 12px 0;
    border-bottom: 1px solid #eaeef2;
  }

  .headline-item:last-child {
    border-bottom: none;
  }

  .headline-item a {
    color: #1a1e2b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    display: block;
  }

  .headline-item a:hover {
    color: #00a82d;
  }

  /* Banner Ad - Exactly like screenshot */
  .banner-ad {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .banner-ad::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: url('https://placehold.co/600x400/ffffff/00a82d?text=AI') center/cover;
    opacity: 0.1;
  }

  .banner-ad .small-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 10px;
  }

  .banner-ad h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .banner-ad .date {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.95;
  }

  .banner-ad .btn {
    background-color: white;
    color: #1a1e2b;
    border: none;
    border-radius: 30px;
    padding: 12px 40px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
  }

  .banner-ad .btn:hover {
    background-color: #00a82d;
    color: white;
  }

  /* Section Headers */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 25px;
  }

  .section-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 3px solid #00a82d;
  }

  .view-all {
    color: #00a82d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }

  /* Article Cards */
  .article-card {
    margin-bottom: 30px;
  }

  .article-card .card-image {
    width: 100%;
    height: 160px;
    background-color: #f0f0f0;
    margin-bottom: 12px;
    overflow: hidden;
  }

  .article-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .article-card .category {
    color: #00a82d;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
  }

  .article-card h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .article-card h3 a {
    color: #1a1e2b;
    text-decoration: none;
  }

  .article-card .meta {
    color: #6f6f6f;
    font-size: 13px;
  }

  /* Events Section */
  .events-section {
    background-color: #f9f9fa;
    padding: 30px;
    margin: 30px 0;
  }

  .events-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .event-item {
    padding: 15px 0;
    border-bottom: 1px solid #eaeef2;
  }

  .event-item:last-child {
    border-bottom: none;
  }

  .event-item .event-title {
    font-weight: 700;
    margin-bottom: 5px;
  }

  .event-item .event-date {
    color: #00a82d;
    font-size: 14px;
    font-weight: 600;
  }

  .event-badge {
    background-color: #00a82d;
    color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
  }

  /* Podcast Section */
  .podcast-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }

  .podcast-cover {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0;
    flex-shrink: 0;
  }

  .podcast-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .podcast-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .podcast-info p {
    color: #6f6f6f;
    font-size: 13px;
    margin-bottom: 5px;
  }

  .podcast-meta {
    color: #6f6f6f;
    font-size: 12px;
  }

  .episode-count {
    background-color: #00a82d;
    color: white;
    padding: 2px 8px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
  }


  /* Additional styles for the TechCrunch style section */
  .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
  }

  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #00a82d;
  }

  /* Thumbnail styles */
  .thumbnail-wrapper {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .article-item:hover .thumbnail-img {
    transform: scale(1.05);
  }

  .article-item h3 {
    line-height: 1.4;
    transition: color 0.2s;
    font-size: 1.1rem;
  }

  .article-item h3 a:hover {
    color: #00a82d !important;
  }

  .badge.bg-success {
    background-color: #00a82d !important;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
  }

  .badge.bg-primary {
    background-color: #0066cc !important;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
  }

  .badge.bg-warning {
    background-color: #ffc107 !important;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
  }

  .badge.bg-info {
    background-color: #17a2b8 !important;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
  }

  .in-brief-section {
    border-left: 4px solid #00a82d;
    background-color: #f8f9fa !important;
  }

  .brief-item p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .events-sidebar .event-item-sidebar:last-child,
  .popular-sidebar .popular-item:last-child {
    border-bottom: none !important;
  }

  .popular-item a {
    display: block;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 2px 0;
  }

  /*.popular-item a:hover {
  color: #00a82d !important;
}*/
  .popular-item {
    transition: padding-left 0.2s;
  }

  .popular-item:hover {
    padding-left: 5px;
  }

  .event-item-sidebar p:first-child {
    font-size: 1rem;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .thumbnail-wrapper {
      width: 80px;
      height: 80px;
    }

    .article-item h3 {
      font-size: 1rem;
    }
  }

  

  /* Footer */
  .footer {
    background-color: #060606;
    color: white;
    padding: 50px 0 30px;
    margin-top: 50px;
  }

  .footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
  }

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

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
  }

  .footer-links a:hover {
    color: #00a82d;
  }

  .footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 30px;
    color: #6f6f6f;
    font-size: 13px;
  }

  @media (max-width: 992px) {

    .green-hero-section .col-lg-6,
    .green-hero-section .col-lg-3 {
      margin-bottom: 20px;
    }

    .featured-story {
      height: 300px;
    }

    .side-story-card {
      height: 150px;
    }

    .headlines-sidebar {
      padding-left: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      padding-top: 20px;
      margin-top: 20px;
    }
  }

  @media (max-width: 768px) {
    .headlines-section {
      border-left: none;
      padding-left: 0;
      margin-top: 30px;
    }

    .main-story h1 {
      font-size: 32px;
    }
  }

  .popular-card {
    background: linear-gradient(180deg, #6a46ff, #4c2ccf);
    color: white;
    padding: 25px;
    border-radius: 6px;
    position: relative;
  }

  .popular-card .popular-item {
    position: relative;
  }

  .popular-card .popular-item a {
    color: #fff;
    display: inline-block;
    padding-left: 15px;
  }

  .popular-card .popular-item a:before {
    content: "■";
    color: white;
    font-size: 8px;
    margin-right: 10px;
    position: absolute;
    top: 8px;
    left: 0;
  }

  .popular-card .popular-item a:hover {
    color: #fff !important;
    text-decoration: underline !important;
  }

  /* MAIN SECTION */
  .nvx-newsletters-section {
    padding: 80px 0;
    background: #f5f5f5;
    position: relative;
    /*overflow:hidden;*/
    font-family: Arial, Helvetica, sans-serif;
  }

  /* HEADER */
  .nvx-header h2, .section-title h2, .section-title {
    font-size: 64px;
    font-weight: 800;
    color: #008036;
    margin: 0;
  }

  .nvx-see-more {
    border: 1px solid #008036;
    padding: 10px 18px;
    border-radius: 30px;
    color: #008036;
    font-size: 14px;
    text-decoration: none;
  }

  .nvx-see-more i {
    font-size: 12px;
    margin-left: 5px;
  }

  .nvx-subtitle {
    margin-top: 10px;
    font-size: 18px;
    color: #444;
  }

  /* CARDS */
  .nvx-card {
    background: white;
    border: 1px solid #ddd;
    padding: 20px;
    height: 100%;
  }

  .nvx-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .nvx-card h5 {
    font-size: 16px;
    font-weight: 700;
  }

  .nvx-card i {
    border: 1px solid #008036;
    color: #008036;
    border-radius: 50%;
    padding: 6px;
    font-size: 12px;
  }

  .nvx-card p {
    font-size: 14px;
    color: #555;
    /*margin-top:10px;
*/
  }

  /* RIGHT SIDE */
  .nvx-subscribe-box {
    padding-left: 20px;
  }

  .nvx-none {
    font-size: 16px;
    color: #333;
  }

  .nvx-email {
    width: 100%;
    padding: 12px;
    border: 2px solid red;
    margin-top: 10px;
  }

  .nvx-subscribe-btn {
    margin-top: 12px;
    background: #ddd;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    color: #777;
  }

  .nvx-terms {
    font-size: 12px;
    margin-top: 10px;
  }

  .nvx-terms a {
    color: #008036;
  }

  /* GRADIENT BARS */
  .nvx-bar1 {
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 40px;
    width: 65%;
    background: linear-gradient(90deg, #5f35ff, #4224d6);
    z-index: 1;
  }

  .nvx-bar2 {
    position: absolute;
    bottom: -40px;
    left: 0;
    height: 40px;
    width: 35%;
    background: #c6c2e0;
    z-index: 1;
  }

  .nvx-bar3 {
    position: absolute;
    bottom: 0px;
    right: 0;
    height: 40px;
    width: 65%;
    background: linear-gradient(90deg, #5f35ff, #4224d6);
    z-index: 1;
  }

  .nvx-bar4 {
    position: absolute;
    bottom: -40px;
    right: 0;
    height: 40px;
    width: 35%;
    background: #c6c2e0;
    z-index: 1;
  }

  .nxst-section {
    padding: 90px 0;
    background: white;
  }

  .nxst-header h2 {
    font-size: 64px;
    font-weight: 800;
    color: #0b7d34;
    margin: 0;
  }

  .nxst-more {
    border: 1px solid #0b7d34;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: #0b7d34;
    font-size: 14px;
  }

  .nxst-main {
    position: relative;
  }

  .nxst-main img {
    width: 100%;
  }

  .nxst-overlay {
    position: absolute;
    bottom: 0;
    padding: 30px;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  }

  .nxst-overlay h3 {
    font-size: 34px;
    font-weight: 700;
  }

  .nxst-overlay span {
    font-size: 12px;
    color: #7cff9f;
  }

  .nxst-small span {
    font-size: 12px;
    color: #0b7d34;
    font-weight: 600;
  }

  .nxst-small h6 {
    margin-top: 6px;
    font-size: 14px;
  }

  .nxst-small p {
    font-size: 12px;
    color: #666;
  }

  .nxst-side img {
    width: 100%;
    margin-bottom: 10px;
  }

  .nxst-side span {
    font-size: 12px;
    color: #0b7d34;
    font-weight: 600;
  }

  .nxst-side h4 {
    font-size: 22px;
    font-weight: 700;
  }

  .nxst-ad img {
    width: 100%;
  }

  .nxai-section {
    padding: 80px 0;
    background: #f6f6f6;
  }

  .nxai-header h2 {
    font-size: 64px;
    font-weight: 800;
    color: #0b7d34;
    margin: 0;
  }

  .nxai-more {
    border: 1px solid #0b7d34;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    color: #0b7d34;
    font-size: 14px;
  }

  .nxai-main-story {
    position: relative;
    overflow: hidden;
  }

  .nxai-main-story img {
    width: 100%;
  }

  .nxai-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: white;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  }

  .nxai-overlay h3 {
    font-size: 34px;
    font-weight: 700;
  }

  .nxai-tag {
    font-size: 12px;
    color: #8cffad;
    display: block;
    margin-bottom: 10px;
  }

  .nxai-meta {
    font-size: 13px;
    opacity: 0.8;
  }

  .nxai-brief span {
    font-size: 12px;
    color: #0b7d34;
    font-weight: 600;
  }

  .nxai-brief h6 {
    font-size: 15px;
    margin-top: 8px;
  }

  .nxai-brief p {
    font-size: 12px;
    color: #666;
  }

  .nxai-side-story img {
    width: 100%;
    margin-bottom: 10px;
  }

  .nxai-side-story h4 {
    font-size: 22px;
    font-weight: 700;
  }

  .nxai-startup span {
    font-size: 12px;
    color: #0b7d34;
    font-weight: 600;
  }

  .nxai-startup h6 {
    margin-top: 8px;
  }

  .nxai-ad img {
    width: 100%;
  }

  .position-relative{
    position: relative;
  }
  .nxvn-section{
background:#d9e55a;
padding:90px 0;
}

.nxvn-header h2{
font-size:64px;
font-weight:800;
background:linear-gradient(90deg,#5f35ff,#3a2dbf);
-webkit-background-clip:text;
color:transparent;
margin:0;
}

.nxvn-more{
border:1px solid #1b7f34;
padding:10px 20px;
border-radius:30px;
text-decoration:none;
color:#1b7f34;
font-size:14px;
}

.nxvn-main-img img{
width:100%;
}

.nxvn-main-content{
margin-top:18px;
}

.nxvn-tag{
font-size:12px;
font-weight:600;
color:#333;
display:block;
margin-bottom:6px;
}

.nxvn-main-content h3{
font-size:34px;
font-weight:800;
line-height:1.3;
}

.nxvn-main-content i{
margin-right:8px;
}

.nxvn-meta{
font-size:13px;
color:#444;
margin-top:8px;
}

.nxvn-card{
border-bottom:1px solid rgba(0,0,0,0.2);
padding-bottom:18px;
}

.nxvn-card-inner{
display:flex;
gap:14px;
}

.nxvn-card img{
width:70px;
height:70px;
object-fit:cover;
}

.nxvn-card span{
font-size:11px;
font-weight:700;
color:#333;
line-height: 1.2;
display: inline-block;
}

.nxvn-card h6{
font-size:14px;
font-weight:700;
margin:4px 0;
}

.nxvn-card p{
font-size:12px;
color:#333;
margin:0;
}

.nxvn-ad{
background:#d9d9d9;
height:250px;
}
  
.nxpd-section {
  padding: 90px 0;
  background: #f6f6f6;
}

.nxpd-header h2 {
  font-size: 64px;
  font-weight: 800;
  color: #0b7d34;
  margin: 0;
}

.nxpd-more {
  border: 1px solid #0b7d34;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: #0b7d34;
  font-size: 14px;
}

.nxpd-card img {
  width: 100%;
  margin-bottom: 14px;
}

.nxpd-card h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.nxpd-desc {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
}

.nxpd-meta {
  font-size: 13px;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.nxpd-meta i {
  margin-right: 6px;
}

.nxpd-link {
  font-size: 14px;
  text-decoration: none;
  color: #0b7d34;
  font-weight: 600;
}

.nxpd-ad img {
  width: 100%;
  border: 5px solid #ddd;
}

.nxpd-adbox {
  background: red;
  height: 220px;
  margin-top: -5px;
}

.footer-social a{
  color: #fff;
}