* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #1a1e24;
}

/* custom navbar style */
.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0a2b3e 0%, #1a5f7a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    font-weight: 600;
    color: #2c3e50 !important;
    transition: 0.2s;
}

.nav-link:hover {
    color: #1a5f7a !important;
}

/* breaking ticker */
.breaking-ticker {
    background: #dc3545;
    color: white;
    padding: 8px 0;
    font-weight: 500;
}

.ticker-label {
    background: white;
    color: #dc3545;
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-right: 20px;
    display: inline-block;
}

.ticker-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* hero section */
.hero-section {
    background: linear-gradient(120deg, #0b2b2f 0%, #124e5a 100%);
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
}

.hero-title {
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 1.2;
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* card hover effect */
.news-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .card-img-top {
    transform: scale(1.03);
}

.section-header {
    border-left: 5px solid #dc3545;
    padding-left: 16px;
    font-weight: 800;
    margin-bottom: 1.8rem;
}

.author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.trending-item {
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
    transition: 0.2s;
}

.trending-item:hover {
    background: #f1f3f5;
    padding-left: 8px;
    border-radius: 12px;
}

footer a {
    text-decoration: none;
    color: #cfd8dc;
    transition: 0.2s;
}

footer a:hover {
    color: white;
}

.btn-outline-custom {
    border: 2px solid #1a5f7a;
    color: #1a5f7a;
    border-radius: 40px;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: #1a5f7a;
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e293b;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0a2b3e 0%, #1a5f7a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-link {
    font-weight: 600;
    color: #2c3e50 !important;
    transition: 0.2s;
}

.nav-link:hover {
    color: #1a5f7a !important;
}

/* about hero */
.about-hero {
    background: linear-gradient(115deg, #0b1120 0%, #1a2a3f 100%);
    padding: 4rem 0;
    border-radius: 0 0 2.5rem 2.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.mission-card {
    background: #f1f5f9;
    border-radius: 2rem;
    transition: all 0.2s;
}

.team-card {
    transition: all 0.25s;
    border: none;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 28px -12px rgba(0, 0, 0, 0.12);
}

.team-img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background-color: #dc3545;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #eef2ff;
    border-radius: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #dc3545;
}

footer a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.2s;
}

footer a:hover {
    color: white;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.4rem;
    }

    .about-hero {
        padding: 2rem 0;
    }

    .stat-card {
        padding: 1rem;
    }
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #fefefe;
      color: #1e293b;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #0a2b3e 0%, #1a5f7a 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link {
      font-weight: 600;
      color: #2c3e50 !important;
      transition: 0.2s;
    }
    .nav-link:hover {
      color: #1a5f7a !important;
    }
    /* article specific */
    .article-hero {
      background: #0f172a;
      border-radius: 0 0 2rem 2rem;
      padding: 2rem 0 3rem 0;
      margin-bottom: 2rem;
    }
    .category-tag {
      background: #dc3545;
      display: inline-block;
      padding: 5px 16px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.3px;
    }
    .article-title {
      font-size: 2.8rem;
      font-weight: 800;
      line-height: 1.2;
    }
    .author-card {
      border-left: 4px solid #dc3545;
      background: #f8fafc;
      border-radius: 1rem;
      padding: 1rem 1.2rem;
    }
    .article-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #334155;
      margin-bottom: 1.5rem;
    }
    .article-content h2 {
      font-weight: 700;
      margin-top: 2rem;
      margin-bottom: 1rem;
      font-size: 1.8rem;
    }
    .pull-quote {
      background: #eef2ff;
      border-left: 5px solid #1a5f7a;
      padding: 1.5rem 2rem;
      font-style: italic;
      font-size: 1.25rem;
      font-weight: 500;
      margin: 2rem 0;
      border-radius: 1rem;
      color: #0f172a;
    }
    .share-icon {
      background: #e9ecef;
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.2s;
      cursor: pointer;
    }
    .share-icon:hover {
      background: #dc3545;
      color: white;
    }
    .related-card {
      transition: all 0.25s ease;
      border: none;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    }
    .related-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    }
    .comment-item {
      border-bottom: 1px solid #e2e8f0;
      padding: 1rem 0;
    }
    .comment-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
    }
    .btn-outline-custom {
      border: 2px solid #1a5f7a;
      color: #1a5f7a;
      border-radius: 40px;
      font-weight: 600;
    }
    .btn-outline-custom:hover {
      background: #1a5f7a;
      color: white;
    }
    footer a {
      text-decoration: none;
      color: #cbd5e1;
      transition: 0.2s;
    }
    footer a:hover {
      color: white;
    }
    @media (max-width: 768px) {
      .article-title {
        font-size: 1.9rem;
      }
      .navbar-brand {
        font-size: 1.4rem;
      }
      .article-content p {
        font-size: 1rem;
      }
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #fefefe;
      color: #1e293b;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #0a2b3e 0%, #1a5f7a 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link {
      font-weight: 600;
      color: #2c3e50 !important;
      transition: 0.2s;
    }
    .nav-link:hover {
      color: #1a5f7a !important;
    }
    /* author hero */
    .author-hero {
      background: linear-gradient(135deg, #0f172a 0%, #1e2a3a 100%);
      padding: 3rem 0 3rem 0;
      border-radius: 0 0 2rem 2rem;
      margin-bottom: 2rem;
    }
    .author-avatar {
      width: 160px;
      height: 160px;
      object-fit: cover;
      border: 5px solid rgba(255,255,255,0.3);
      border-radius: 50%;
    }
    .social-icon {
      background: rgba(255,255,255,0.15);
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.2s;
      color: white;
      font-size: 1.2rem;
    }
    .social-icon:hover {
      background: #dc3545;
      transform: translateY(-3px);
    }
    .stat-badge {
      background: rgba(255,255,255,0.12);
      backdrop-filter: blur(4px);
      padding: 8px 18px;
      border-radius: 40px;
    }
    /* article cards */
    .article-card {
      transition: all 0.3s ease;
      border: none;
      border-radius: 1.2rem;
      overflow: hidden;
      background: white;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      height: 100%;
    }
    .article-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.12);
    }
    .card-img-top {
      height: 200px;
      object-fit: cover;
    }
    .category-badge {
      background: #e9ecef;
      color: #1a5f7a;
      font-weight: 600;
      font-size: 0.7rem;
      padding: 5px 12px;
      border-radius: 30px;
    }
    .pagination-custom .page-link {
      border-radius: 50px;
      margin: 0 4px;
      color: #1e293b;
      border: 1px solid #dee2e6;
    }
    .pagination-custom .active>.page-link {
      background-color: #dc3545;
      border-color: #dc3545;
      color: white;
    }
    footer a {
      text-decoration: none;
      color: #cbd5e1;
      transition: 0.2s;
    }
    footer a:hover {
      color: white;
    }
    @media (max-width: 768px) {
      .navbar-brand { font-size: 1.4rem; }
      .author-avatar { width: 110px; height: 110px; }
      .author-hero { text-align: center; }
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #f9fafb;
      color: #111827;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #0a2b3e 0%, #1a5f7a 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link {
      font-weight: 600;
      color: #2c3e50 !important;
      transition: 0.2s;
    }
    .nav-link:hover, .nav-link.active {
      color: #1a5f7a !important;
    }
    /* category hero */
    .category-hero {
      background: linear-gradient(135deg, #0b1120 0%, #1a2a3a 100%);
      padding: 3rem 0;
      border-radius: 0 0 2rem 2rem;
      margin-bottom: 2rem;
    }
    .category-badge-large {
      background: #dc3545;
      display: inline-block;
      padding: 6px 18px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.85rem;
    }
    /* filter bar */
    .filter-bar {
      background: white;
      border-radius: 60px;
      padding: 6px 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
      border: 1px solid #e9ecef;
    }
    .filter-btn {
      border-radius: 40px;
      padding: 6px 20px;
      font-weight: 600;
      transition: all 0.2s;
      cursor: pointer;
      background: transparent;
      border: none;
    }
    .filter-btn.active-filter {
      background: #1a5f7a;
      color: white;
    }
    .filter-btn:not(.active-filter):hover {
      background: #eef2ff;
      color: #1a5f7a;
    }
    /* news cards */
    .news-card {
      transition: all 0.3s ease;
      border: none;
      border-radius: 1.2rem;
      overflow: hidden;
      background: white;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      height: 100%;
    }
    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 28px -12px rgba(0,0,0,0.12);
    }
    .card-img {
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s;
    }
    .news-card:hover .card-img {
      transform: scale(1.02);
    }
    .featured-card {
      background: white;
      border-radius: 1.5rem;
      transition: 0.2s;
    }
    .pagination-custom .page-link {
      border-radius: 50px;
      margin: 0 4px;
      color: #1e293b;
      border: 1px solid #dee2e6;
    }
    .pagination-custom .active>.page-link {
      background-color: #dc3545;
      border-color: #dc3545;
      color: white;
    }
    footer a {
      text-decoration: none;
      color: #cbd5e1;
      transition: 0.2s;
    }
    footer a:hover {
      color: white;
    }
    .subscribe-card {
      background: linear-gradient(145deg, #0f172a, #1e293b);
      border-radius: 1.5rem;
    }
    @media (max-width: 768px) {
      .navbar-brand { font-size: 1.4rem; }
      .filter-bar { border-radius: 30px; overflow-x: auto; white-space: nowrap; flex-wrap: nowrap; }
      .filter-btn { padding: 6px 14px; font-size: 0.8rem; }
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #fefefe;
      color: #1e293b;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #0a2b3e 0%, #1a5f7a 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link {
      font-weight: 600;
      color: #2c3e50 !important;
      transition: 0.2s;
    }
    .nav-link:hover {
      color: #1a5f7a !important;
    }
    /* contact hero */
    .contact-hero {
      background: linear-gradient(125deg, #0f172a 0%, #1e2a44 100%);
      padding: 3rem 0;
      border-radius: 0 0 2rem 2rem;
      margin-bottom: 2.5rem;
    }
    .contact-card {
      background: white;
      border-radius: 1.5rem;
      transition: all 0.2s;
      border: none;
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      height: 100%;
    }
    .contact-icon-lg {
      width: 70px;
      height: 70px;
      background: #eef2ff;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #dc3545;
      margin-bottom: 1rem;
    }
    .form-control, .form-select {
      border-radius: 0.75rem;
      padding: 0.75rem 1rem;
      border: 1px solid #e2e8f0;
    }
    .form-control:focus {
      border-color: #dc3545;
      box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
    }
    .btn-submit {
      background: #dc3545;
      border-radius: 60px;
      padding: 12px 28px;
      font-weight: 600;
      transition: 0.2s;
    }
    .btn-submit:hover {
      background: #bb2d3b;
      transform: translateY(-2px);
    }
    .faq-item {
      border-bottom: 1px solid #e9ecef;
      padding: 1rem 0;
      cursor: pointer;
    }
    .faq-question {
      font-weight: 600;
      display: flex;
      justify-content: space-between;
    }
    .faq-answer {
      display: none;
      margin-top: 0.75rem;
      color: #475569;
      font-size: 0.95rem;
    }
    .faq-answer.show {
      display: block;
    }
    footer a {
      text-decoration: none;
      color: #cbd5e1;
      transition: 0.2s;
    }
    footer a:hover {
      color: white;
    }
    @media (max-width: 768px) {
      .navbar-brand { font-size: 1.4rem; }
      .contact-hero { padding: 2rem 0; }
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #f8f9fc;
      color: #1a202c;
    }
    .navbar-brand {
      font-weight: 800;
      font-size: 1.8rem;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #0a2b3e 0%, #1a5f7a 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .nav-link {
      font-weight: 600;
      color: #2c3e50 !important;
      transition: 0.2s;
    }
    .nav-link:hover {
      color: #1a5f7a !important;
    }
    /* search hero */
    .search-hero {
      background: linear-gradient(105deg, #0f172a 0%, #1e2a44 100%);
      padding: 2.5rem 0;
      border-radius: 0 0 2rem 2rem;
      margin-bottom: 2rem;
    }
    .search-box {
      background: white;
      border-radius: 60px;
      padding: 6px 6px 6px 20px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .search-box input {
      border: none;
      padding: 12px 0;
      font-size: 1rem;
      outline: none;
      flex: 1;
    }
    .search-box button {
      border-radius: 50px;
      padding: 10px 28px;
      font-weight: 600;
    }
    .result-card {
      transition: all 0.2s ease;
      border: none;
      border-radius: 1.2rem;
      background: white;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      overflow: hidden;
      margin-bottom: 1.5rem;
    }
    .result-card:hover {
      transform: translateX(5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }
    .result-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }
    .filter-sidebar {
      background: white;
      border-radius: 1.2rem;
      padding: 1.5rem;
      position: sticky;
      top: 90px;
    }
    .filter-check {
      margin-bottom: 12px;
    }
    .badge-date {
      background: #e9ecef;
      color: #2d3748;
      font-weight: 500;
    }
    .pagination-custom .page-link {
      border-radius: 50px;
      margin: 0 4px;
      color: #1e293b;
      border: 1px solid #dee2e6;
    }
    .pagination-custom .active>.page-link {
      background-color: #dc3545;
      border-color: #dc3545;
      color: white;
    }
    footer a {
      text-decoration: none;
      color: #cbd5e1;
      transition: 0.2s;
    }
    footer a:hover {
      color: white;
    }
    @media (max-width: 768px) {
      .navbar-brand { font-size: 1.4rem; }
      .search-box { border-radius: 30px; }
      .search-box input { font-size: 0.9rem; }
    }