body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  
}
@font-face {
  font-family: 'Roboto';
  src: url('./fonts/Roboto-VariableFont_wdth,wght.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* ===== TOP BAR ===== */
.top-bar {
  background-color: #2f3a45;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 6rem;
  flex-wrap: wrap;
}

.top-left img {
  height: 32px;
}

/* Removed .top-center since you don’t use it in the new HTML */

/* ===== UPDATED Right section (stacked and aligned) ===== */
.top-right {
  display: flex;
  align-items: flex-end;
  text-align: right;
  align-items: center;
  font-size: 14px;
  gap: 70px; /* space between groups */
}

/* Date and Time container: horizontally aligned, right */
.top-right .datetime {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.top-right .datetime .date {
  /* same font size */
}

.top-right .datetime .time {
  background-color: #f27b3f;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
}

/* Weather & City stacked */
.top-right .weather-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-size: 14px;
}

.top-right .weather-block .weather i {
  color: #f6b21a;
  margin-right: 3px;
}

/* Central Bank Rate stacked */
.top-right .rate-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}

.rate-label {
  font-weight: 500;
}

.rates {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.red {
  color: #d9534f;
}

.green {
  color: #5cb85c;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
}
 /* Search Icon */
.fj-search-icon {
  cursor: pointer;
  color: #f58634;
  font-size: 22px;
  transition: color 0.3s ease;
}

.fj-search-icon:hover {
  color: #ff974d;
}

/* Search Bar (hidden by default) */
.fj-search-bar {
  background-color: #f58634;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.fj-search-bar input {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 28px;
  padding: 25px 60px;
  outline: none;
}

/* When active (visible) */
.fj-search-bar.active {
  max-height: 120px; /* adjust based on design */
}

/* Responsive */
@media (max-width: 768px) {
  .fj-search-bar input {
    font-size: 22px;
    padding: 20px 40px;
  }
}

@media (max-width: 480px) {
  .fj-search-bar input {
    font-size: 18px;
    padding: 15px 25px;
  }
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6rem;
  border-bottom: 4px solid #f27b3f;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #6b6e71;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 28px;
  font-size: 16px;
  display: block;
  transition: color 0.3s ease;
}

/* Active HOME tab */
.nav-links a.active {
  border-bottom: 3px solid #f27b3f;
  background-color: #2f3a45;
  color: #fff;
}

/* Hover underline from center */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #f27b3f;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-links a:hover {
  color: #f27b3f;
}

.search-icon {
  color: #f27b3f;
  font-size: 20px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
  }
   .menu-search {
    display: flex !important;
    align-items: center;
    width: 90%;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 5px 10px;
  }

  .menu-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 6px;
    color: #333;
  }

  .menu-search button {
    background: none;
    border: none;
    color: #f27b3f;
    font-size: 18px;
    cursor: pointer;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 14px;
  }

  .search-icon {
    display: none;
  }

  /* Sidebar menu styles */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background-color: #2f3a45;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 80px;
    padding-left: 20px;
    transition: right 0.4s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 17px;
  }

  .nav-links a.active {
    background: none;
    color: #f27b3f;
    border-bottom: none;
  }
    .menu-close {
    position: absolute;
    top: 20px;
    display: block !important;
    right: 20px;
    color: #f27b3f;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .menu-close:hover {
    transform: rotate(90deg);
  }
}
.menu-search{
  display: none;
}

.menu-close{
  display: none;
}


/* first section */




    /* ========== COMMON CARD STYLES ========== */
    .card {
      background: #fff;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

    }


a{
    text-decoration: none;
}
    .card img {
      width: 100%;
      height: 153px;
      object-fit: cover;
    }

    .card-content {
      padding: 18px 20px;
    }

    .category {
      color: #f15b2a;
      font-size: 13px;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 8px;
      display: block;
    }
    .right-grid h3{
        font-size: 14px !important;
    }

    .card h3 {
      font-size: 16px;
      color: #555;
      line-height: 1.2;
      font-family: 'Roboto';
      font-weight: 100;
      margin-bottom: 10px;

      cursor: pointer;
    }

    .card p {
      font-size: 14px;
      color: #555;
      line-height: 1.4;
      margin-bottom: 15px;
    }

    .meta {
      display: flex;
      justify-content: space-between;
      font-size: 9px;
      color: #888;
      border-top: 1px solid #eee;
      padding-top: 10px;
    }
.posli{
  display: flex;
}
.polsii{
  margin: 0;
  display: flex;
  gap: 10px;;
  font-size: 9px !important;
}
    /* ========== SECTION 1 ========== */
    .top-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding-top: 3.5rem !important;
      margin-bottom: 40px;
    }
    
    .people-section{
      padding-bottom: 3rem !important;
    }

    .featured-card img {
      height: 350px;
    }

    .right-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    /* ========== SECTION 2 ========== */
    .bottom-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .bottom-section h3{
        font-size: 14px;
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 992px) {
      .top-section {
        grid-template-columns: 1fr;
      }
      .featured-card img {
        height: 280px;
      }
      .fj-search-icon{
        display: none;
      }
    }

    @media (max-width: 600px) {
      .card img {
        height: 180px;
      }
      .right-grid {
        grid-template-columns: 1fr;
      }
    }

    main{
        background-color: #eeeeee;
       
    }

@media only screen and (min-width: 1024px) and (max-width: 1366px){
  .nav-container{
    padding: 0 0.5rem;
    justify-content: space-around;
  }

      .top-section,  .news-container, .bottom-section, .hekiy, .special-twitter-section, .three-column-layout, .people-section{
    padding: 2px 4rem !important;
  }
}

    /* second section */

    /* ====== SPECIAL PROJECT + TWITTER SECTION ====== */
.special-twitter-section {
  display: grid;
  grid-template-columns: 2fr 0.65fr;
  gap: 30px;
}

.section-title {
  font-size: 14px;
  font-family: 'Roboto';
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* LEFT SIDE - PROJECTS */
.project-grid {
  display: grid;
    grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.project-grid2 {
    margin-top: 1rem;
  display: grid;
    grid-template-columns: 1fr 2fr;
  gap: 20px;
}
.project-card {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.project-card .overlay {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #fff;
  z-index: 1;
}

.project-card .category {
  color: #ff6a00;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
}

.project-card h4 {
  font-size: 18px;
  font-weight: bold;margin-top: 4px;
  font-family: 'Roboto';
  margin-bottom: 5px;
}

.project-card p {
  font-size: 13px;
  line-height: 1.5;
}

/* RIGHT SIDE - TWITTER BOX */
/* .twitter-box {
  background: #fafafa;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
} */
.special-twitter-section{
  padding-bottom: 3rem !important;
}
.tweet {
  background: #fff;
      padding: 15px 11px;
}

.tweet-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tweet-header img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.tweet-header h4 {
  font-size: 14px;
  color: #333;
  margin-bottom: 3px;
}

.tweet-header span {
  font-size: 13px;
  color: #666;
}

.tweet-time {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.tweet-text {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 8px;
}

.reply {
  font-size: 13px;
  color: #f15b2a;
  text-decoration: none;
  font-weight: bold;
}

.reply:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .special-twitter-section {
    grid-template-columns: 1fr;
  }
  .project-grid, .project-grid2 {
    grid-template-columns: 1fr;
}
main{
    padding: 1rem 0px;
}
.people-section {
    display: grid
;
    grid-template-columns:  1fr !important;
    gap: 20px;
}
.top-right{
    display: none;
}
.top-bar {
    padding: 15px 1rem !important;

}
}
.sgt{
    margin-top: 1rem;
}




/* third section */

.three-column-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 20px 0;
}

.topic-section {
  margin-bottom: 40px;
}

.topic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topic-header h3 {
  font-size: 16px;
  font-family: 'Roboto';
  font-weight: 700;
  color: #333;
}

.topic-header a {
  font-size: 13px;
  color: #f15a24;
  text-decoration: none;
  font-weight: 600;
}
.caruo .topic-header a {
  font-size: 12px;
  color: #2f3a45;
  text-decoration: underline;
  font-weight: 400;
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.post-tile {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}


.post-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.tile-info {
  padding: 12px 15px;
}

.post-label {
  color: #f15a24;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tile-info h4 {
      color: #555;
    line-height: 1.2;
    font-family: 'Roboto';
    font-weight: 100;
    font-size: 14px;
    cursor: pointer;
  margin: 5px 0 10px;
}

.post-stats {
  font-size: 9px;
  color: #888;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Center Column */
.column-center {
  display: flex;
  flex-direction: column;
  gap: 65px;
}

.short-article {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.short-article img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.short-info h4 {
  font-size: 12px;
  font-family: 'Roboto';
  color: #333;
  margin-bottom: 5px;
  margin-top: 0px;
  font-weight: 200;
}

.short-info p {
  font-size: 12px;
  margin-top: 2px;
  color: #999;
}

/* Right Column */
.column-right {
  
}
.yito{
background: #f8f8f8;
  padding: 15px;
  height: fit-content;
  
}

.side-title {
  font-size: 15px;
  font-family: 'Roboto';
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 20px;
}

.featured-article .post-label {
  color: #f15a24;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.featured-article h4 {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin: 4px 0;
}

.featured-article p {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

.featured-article .post-stats {
  font-size: 9px;
  color: #999;
}

.column-right hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 15px 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .three-column-layout {
    grid-template-columns: 1fr;
  }
  .post-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .column-right {
    order: 3;
  }
}

@media (max-width: 600px) {
  .post-gallery {
    grid-template-columns: 1fr;
  }
  .short-article {
    flex-direction: column;
    align-items: flex-start;
  }
}

.caruo{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}




.site-footer {
  background: #2b3845;
  color: #ccc;
  padding: 60px 20px;

}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.footer-column h3 {
  color: #ff6600;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #ff6600;
  display: inline-block;
  padding-bottom: 4px;
}

.footer-column p {
  line-height: 1.6;
  font-size: 13px;
  color: #d8d8d8;
  margin: 0;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.contact-info li {
  font-size: 14px;
  margin: 8px 0;
}
.contact-info i {
  margin-right: 8px;
}

/* Logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.footer-logo span {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

/* News Items */
.news-list2 {
  list-style: none;
  padding: 0 !important;
  margin: 0;
  border: none !important;
}
.news-list2 li {
  display: flex;
  margin-bottom: 12px;
}
.news-list2 img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 10px;
}
.news-list2 a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: color 0.3s;
}
.news-list2 a:hover {
  text-decoration: underline;

}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.tag-list a {
  background: #1f2a35;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s;
}
.tag-list a:hover {
  background: #ccc;
  color: black;
  text-decoration: underline;
}

/* Newsletter */
.newsletter {
  display: flex;
  border: 1px solid #444;
  border-radius: 4px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  background: #1f2a35;
  color: #fff;
}
.newsletter button {
  background: #1f2a35;
  border: none;
  color: #ff6600;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter button:hover {
  background: #ff6600;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
   .top-section,  .news-container, .bottom-section, .hekiy, .special-twitter-section, .three-column-layout, .people-section{
    padding: 2px 20px !important;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .news-list2 li {
    align-items: flex-start;
  }
}




 .about-title {
      font-family: 'Roboto';
      font-weight: 400;
      color: #ff8c42; /* orange color */
      font-size: 15px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      letter-spacing: 0.5px;
    }

    .about-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 30px; /* exact underline length */
      height: 2px;
      background-color: #ff8c42;
    }
    .card-content h4{
      font-size: 12px;
    }

    @media (max-width: 768px) {
      .about-title {
        font-size: 18px;
      }
      .about-title::after {
        width: 25px;
      }
    }

    @media (max-width: 480px) {
      .about-title {
        font-size: 16px;
      }
      .about-title::after {
        width: 22px;
      }
    }     
    .hekiy{
      margin-top: 3rem;
    }


.kiyu7{
      grid-template-columns: repeat(3, 1fr) !important;
}
.kiyu7 img{
  height: 160px !important;
}
     .people-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 1rem;
    margin-bottom: 2rem;
  }

  .people-card {
    position: relative;
    overflow: hidden;
  }

  .people-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .people-card:hover img {
    transform: scale(1.05);
  }

  .people-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
  }

  .people-category {
    font-size: 14px;
    font-weight: bold;
    color: #ff8c42;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 6px;
  }

  .people-category::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 25px;
    height: 2px;
    background-color: #ff8c42;
  }

  .people-title {
    font-size: 14px;
    font-weight: 600;
    margin: 5px 0 10px;
  }

  .people-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    font-size: 9px;
    color: #ddd;
  }

  .people-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .people-meta i {
    font-style: normal;
  }

  /* Responsive tweaks */
  @media (max-width: 768px) {
    .people-title {
      font-size: 16px;
    }
  }

  @media (max-width: 480px) {
    .people-overlay {
      padding: 15px;
    }
    .people-title {
      font-size: 15px;
    }
    .people-category {
      font-size: 13px;
    }
  }
.forcy{
    background-color: #303d4a;
    padding-bottom: 2rem;
  }
    .top-section,  .news-container, .bottom-section, .hekiy, .special-twitter-section, .three-column-layout, .people-section{
    padding: 2px 6rem;
  }



  /* first section */

   .news-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
   
  }

  /* Left Featured News */
  .featured-news {
    flex: 1 1 640px;
    min-width: 300px;
    position: relative;
    overflow: hidden;
  }

  .featured-news img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
  }

  .featured-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    transition: all 0.3s ease;
  }

  .featured-category {
    color: #ff6d2d;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 2px solid #ff6d2d;
    display: inline-block;
    margin-bottom: 10px;
  }

  .featured-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .featured-text {
    font-size: 16px;
    color: #e0e0e0;
    max-width: 500px;
  }

  /* Latest News */
  .latest-news {
    flex: 0 0 340px;
    min-width: 280px;
    color: #ddd;
  }

  .latest-news h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 25px;
  }

  .news-list {
    border-left: 2px solid #4a5a66;
    padding-left: 25px;
    position: relative;
  }

  .news-item {
    margin-bottom: 50px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .news-item::before {
    content: '';
    position: absolute;
    left: -34px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #4a5a66;
    border-radius: 50%;
    border: 2px solid #2f3b46;
    transition: all 0.3s ease;
  }

  .news-item.active::before {
    background: #ff6d2d;
  }

  .news-time {
    font-size: 14px;
    color: #aab4bd;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .news-title {
    font-size: 13px;
    color: #fff;
    margin-top: 5px;
    line-height: 1.4;
  }

  .news-item.active .news-title {
    color: #ff6d2d;
  }

  .news-item:hover .news-title {
    color: #ff6d2d;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .forcy {
      display: none;
    }
    .kiyu7 img{
  height: auto ;
}
.kiyu7{
      grid-template-columns: 1fr !important;
}
    
    .fin-footer-container {
    padding: 10px !important;
    
  }

    .featured-content {
      bottom: 20px;
      left: 20px;
      right: 20px;
    }

    .featured-title {
      font-size: 28px;
    }

    .latest-news {
      width: 100%;
      max-width: 700px;
      margin-top: 30px;
    }
  }

  @media (max-width: 600px) {
    .featured-title {
      font-size: 24px;
    }

    .featured-text {
      font-size: 14px;
    }

    .latest-news h3 {
      font-size: 18px;
    }

    .news-title {
      font-size: 14px;
    }
  }

    .breaking-news {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #212a33;
      color: #fff;
      margin: 10px 6rem;
      overflow: hidden;
      gap: 15px;
      margin-bottom: 2rem;
    }
    .breaking-news a{
      color: #ffff;
      text-decoration: none;
    }

    .breaking-news a:hover{
      color: #ccc;
      text-decoration: underline;
    }

    .breaking-news .label {
      background: #f38a44;
      color: #fff;
      font-weight: 400;
      font-size: 16px;
      text-transform: uppercase;
      padding: 15px 18px;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    .shy6{
      color: #ffff;
    }

    /* --- Sliding Transition Area --- */
    .breaking-news .content {
      position: relative;
      flex: 1;
      padding: 0 20px;
      height: 30px;
      overflow: hidden;
    }

    .breaking-news .content .news-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transform: translateY(100%);
      transition: all 0.5s ease-in-out;
      white-space: nowrap;
      line-height: 30px;
    }

    .breaking-news .content .news-item.active {
      opacity: 1;
      transform: translateY(0);
    }

    .breaking-news .content .news-item.exit {
      opacity: 0;
      transform: translateY(-100%);
    }

    .breaking-news .content strong {
      color: #f38a44;
    }

    /* Navigation */
    .breaking-news .nav {
      display: flex;
      align-items: center;
      gap: 0px;
      flex-shrink: 0;
    }

    .breaking-news .nav button {
      color: #878787;
      background-color: transparent;
      border: none;
      font-size: 16px;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
    }



    .breaking-news .nav button:active {
      transform: scale(0.95);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .breaking-news {
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px;
      }

      .breaking-news .label {
        font-size: 12px;
        padding: 8px 12px;
      }

      .breaking-news .content {
        padding: 0 10px;
        font-size: 14px;
        flex: 1 1 100%;
        order: 2;
        height: auto;
        min-height: 40px;
      }

      .breaking-news .content .news-item {
        white-space: normal;
        line-height: 1.4;
      }

      .breaking-news .nav {
        order: 3;
        margin-left: auto;
      }
    }

    .fin-footer-container {
    background-color: #1f2a35;
    padding: 10px 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .fin-footer-text {
    font-size: 14px;
    color: #ccc;
  }

  .fin-footer-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
  }

  .fin-footer-icons {
    display: flex;
    gap: 10px;
  }

  .fin-footer-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  /* Individual icon border colors */
  .fin-icon-facebook { border-color: #3b5998; }
  .fin-icon-google { border-color: #dd4b39; }
  .fin-icon-twitter { border-color: #55acee; }
  .fin-icon-youtube { border-color: #cd201f; }
  .fin-icon-linkedin { border-color: #0077b5; }
  .fin-icon-pinterest { border-color: #bd081c; }
  .fin-icon-tumblr { border-color: #35465c; }
  .fin-icon-rss { border-color: #f26522; }

  /* Hover effect */
  .fin-footer-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
    .fin-footer-container {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }


  /* scroll */
  #scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 3px;
  background-color: #ccc;
  color: black;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  z-index: 9999;
}

#scrollTopBtn:hover {
  background-color: #1f2a35;
  color: #ffff;
  transform: translateY(-4px);
}

/* Visible state */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}



  .hover-shine {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
}

.hover-shine img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

/* Shiny highlight */
.hover-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 10%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.226) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
}

/* Run shine only once per hover */
.hover-shine:hover::after {
  animation: shine-once 0.9s ease forwards;
}

.hover-shine:hover img {
  transform: scale(1.05);
}

/* Keyframes for the shine sweep */
@keyframes shine-once {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}



/* detail */



  .fj-wrap {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
  }

  /* LEFT ARTICLE */
  .fj-article { width: 100%; }

  .fj-hero {
    position: relative;
    overflow: hidden;
  }

  .fj-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
  }
  .syy8{
    width: 100%;
  }
  .sgt6{
    margin-left: 10px;
  }

  /* Bottom content inside image */
  .fj-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
  }

  .fj-cat {
    background: #f27b3f;
    color: #fff;
    padding: 8px 18px;
    font-weight: 700;
    letter-spacing: .6px;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  }

  .fj-time {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 6px;
    margin-top: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
  }

  .fj-share {
    display: flex;
    gap: 8px;
    margin-right: 10px;
  }

  .fj-share a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #333;
    padding: 6px 4px;
    border-radius: 4px;
    font-size: 11px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    opacity: .95;
  }

  .fj-share a i { font-size: 12px; }

  .fj-title {
    margin: 36px 0 12px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
  }

  .fj-title::after {
    content:"";
    display:block;
    width:48px;
    height:4px;
    background:#f27b3f;
    margin:10px auto 0;
    border-radius:2px;
  }

  .fj-content {
    max-width: 760px;
    margin: 18px auto 0;
    color:#4c4c4c;
    line-height:1.4;
    font-size:14px;
  }

  /* RIGHT TIMELINE */
  .fj-feed {
    background: #2f3a45;
    color: #fff;
    padding: 28px 22px;
    position: sticky;
    top: 24px;
    height: fit-content;
  }

  .fj-feed h4 {
    margin: 6px 0 18px;
    font-size:20px;
    font-weight:700;
  }

  .fj-timeline {
    position: relative;
    padding-left: 26px;
    margin:0;
  }

  .fj-timeline::before {
    content:"";
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.08);
  }

  .fj-item {
    position: relative;
    padding: 16px 0 22px 16px;
  }

  .fj-dot {
    position: absolute;
    left: -3px;
    top: 18px;
    width: 14px;
    height: 14px;
    border-radius:50%;
    background: #2f3a45;
    border: 3px solid #8dc3ff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }

  .fj-item .fj-item-time {
    display:flex;
    align-items:center;
    gap:8px;
    color: #cfd7db;
    font-size:13px;
    margin-bottom:6px;
  }

  .fj-item p {
    margin: 0;
    color:#fff;
    font-size:15px;
    line-height:1.5;
  }

  /* Hover shine effect */
  .hover-shine { position:relative; overflow:hidden; display:block; }
  .hover-shine::after {
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:6%;
    height:100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
  }
  .hover-shine:hover::after { animation: fj-shine 0.9s ease forwards; }
  .hover-shine img { transition: transform .45s ease; }
  .hover-shine:hover img { transform: scale(1.03); }
  @keyframes fj-shine { 0%{ left:-75% } 100%{ left:125% } }

  /* Responsive */
  @media (max-width: 1100px){
    .fj-wrap { grid-template-columns: 1fr 320px; gap:24px; padding:0 18px; }
    .fj-hero img { height: 360px; }
  }

  @media (max-width: 900px){
    .fj-wrap { grid-template-columns: 1fr; padding: 0 16px; }
    .fj-feed {
      position: relative;
      height: auto;
      top: auto;
      margin-top: 32px;
    }
    .fj-hero img { height: 300px; }
    .fj-title { font-size:24px; }
  }

  @media (max-width: 480px){
    .fj-hero img { height: 220px; }
    .fj-title { font-size:18px; }
    .fj-content { font-size:15px; padding:0 6px; }
    .fj-share a { padding:6px 8px; font-size:12px; }
    .fj-feed { padding:18px; }
  }

  /* --- TAGS --- */
  .tags-box {
    border-left: 3px solid #2f3a45;
    padding: 10px 14px;
    margin-bottom: 25px;
  }

  .tags-box p {
    margin: 0;
    font-style: italic;
    color: #666;
    font-size: 14px;
  }

  .post-tags {
    margin: 20px 0 35px;
  }

  .post-tags span {
    display: inline-block;
    margin-right: 10px;
    padding: 6px 12px;
    background: #f27b3f;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }

  .post-tags span:hover {
    background: #e1672e;
  }

  /* --- COMMENTS TITLE --- */
  .comments-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
  }

  /* --- SINGLE COMMENT --- */
  .comment {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .comment img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
  }

  .comment-body {
    flex: 1;
  }

  .comment-header {
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }

  .comment-header h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #333;
  }

  .comment-header span {
    font-size: 13px;
    color: #888;
  }

  .comment-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
  }

  /* --- COMMENT FORM --- */
  .comment-form {
    margin-top: 30px;
  }

  .comment-form input,
  .comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 14px;
    border-radius: 2px;
    margin-bottom: 16px;
    box-sizing: border-box;
    transition: 0.3s;
  }

  .comment-form input:focus,
  .comment-form textarea:focus {
    outline: none;
    border-color: #f27b3f;
  }

  .comment-form textarea {
    resize: none;
    height: 130px;
  }

  .comment-form button {
    background: #f27b3f;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s;
  }

  .comment-form button:hover {
    background: #e0682a;
  }

  .comment-form button i {
    margin-right: 6px;
  }

  /* --- RESPONSIVE --- */
  @media (max-width: 600px) {
    .comment {
      flex-direction: column;
      align-items: flex-start;
    }

    .comment img {
      margin-bottom: 8px;
    }

    .comment-header {
      flex-wrap: wrap;
    }
  }



    /* =====================
   AUTHOR PAGE STYLES
   ===================== */

.author-section {
  background-color: #eeeeee;
  padding: 4rem 6rem;
  font-family: 'Roboto', sans-serif;
  color: #2f3a45;
}

/* Header */
.author-header {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.author-image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f27b3f;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 26px;
  font-weight: 600;
  color: #1f2a35;
  margin: 0;
}

.author-role {
  font-size: 16px;
  color: #6b6e71;
  margin: 8px 0 15px 0;
}

.author-socials a {
  color: #f27b3f;
  margin-right: 12px;
  font-size: 16px;
  transition: color 0.3s;
}
.author-socials a:hover {
  color: #1f2a35;
}

/* Bio Section */
.author-bio {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* Articles Section */
.author-articles h3 {
  color: #f27b3f;
  font-size: 20px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.author-article-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.author-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.author-article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-content h4 a {
  color: #1f2a35;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}
.card-content h4 a:hover {
  color: #f27b3f;
}

.card-content .date {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #6b6e71;
}

/* Responsive */
@media (max-width: 992px) {
  .author-section { padding: 2rem 1rem; }
  .author-header { flex-direction: column; text-align: center; }
  .author-image img { margin-bottom: 1rem; }
}

.fj-search-bar input::placeholder{
  color: #fff;
}


/* about */



    .about-us-section {
  background: #f7f7f7;
  padding: 40px 4rem;
}
.about-us-section h1{
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

.about-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 25px;
  max-width: 1400px;
  margin: auto;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #ddd;
  background: #fff;
}

.about-nav li {
  border-bottom: 1px solid #ddd;
}

.about-nav li:last-child {
  border-bottom: none;
}

.about-nav a {
  display: block;
  padding: 12px 16px;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s;
}

.about-nav a:hover {
  background: #f2f2f2;
}

.contact-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 18px;
}

.contact-box h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-box p {
  margin: 0 0 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

.contact-box a {
  color: #e57b25;
  text-decoration: none;
  font-size: 14px;
}

.about-main {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border: 1px solid #ddd;
}

.about-dots {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.about-dots .dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 3px;
}

.about-dots .dot.active {
  background: #e57b25;
}

.about-highlight {
  margin-top: 10px;
  font-weight: 500;
  color: #444;
  font-size: 17px;
  line-height: 1.6;
}

.about-text p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-sidebar {
    order: 2;
  }
  .about-main {
    order: 1;
  }
   .about-us-section {
  padding: 40px 10px;
}
}

