/* ## Slider ##################################### */

body, html {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

.container-with-animations {
  overflow-x: hidden;
  width: 100%;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-130px * 14)); }
}

.slider {
    height: 160px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(130px * 28); /* 14 images * 2 for seamless looping */
}

.slide {
    height: 120px;
    width: 130px;
}

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

/* ###########################################33 */
  
.banner__content{
    padding-left: 20px;
}

.about.about--style1{
    margin-top: 160px;
    padding-top: 100px !important;
    margin-bottom: 160px;
}


.service{
    position: relative;
    top: 30px;
}
.pricing__wrapper .trk-btn.trk-btn--outline
{
    border-radius: 15px;
}



.crypto-slider {
    /* background-color: #002A1E; */
    height: 160px;
    padding-top: 22px;
    padding-bottom: 20px;
}

.section-header--max--100 {
    margin-top: 160px !important;
    max-inline-size: 60%;
    margin: auto;
    padding: 10px 0px 0px 10px ;
    text-align: center;
    margin-bottom: 70px;
}

.custom-form input , .custom-form button{

    border-radius: 15px;
}

.custom-form button{
    background-color: var(--brand-color) !important;
    border: 1px solid var(--brand-color);
    color: var(--titlet-color);
}





.pricing__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 2 equal columns */
    list-style: none;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pricing__list-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .pricing__list-item img {
    width: 20px;
    height: 20px;
  }

.menu-item-has-children .submenu{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    box-shadow: none !important;
    margin-top: 5px;
    border-radius: 15px !important;
    background-color: var(--bg-color) !important;
}

.botschart {
    width: 70%;
    margin: auto;
}
.bots-image{
    margin-left: 40px;
}

.hero-section{

  padding-bottom: 120px;
  background: linear-gradient(194deg, var(--body-color), var(--gradient-second-color));
}

.pricing-hero-section
{
    padding-top: 270px;
    padding-bottom: 190px;
}

.search-blog
{
    width: 60%;
    padding: 20px;
    margin: auto;
    margin-top: 30px !important;
}

.blogs-hs {

    width: 40%;
    margin: auto;
    padding-top: calc(9%);
}

.search-button , .search-input
{ 
    border-radius: 15px !important;
}
.search-button{
    margin-left: 10px !important;
    width: 200px;
    background-color: var(--brand-color);
    color: #002A1E;
    border: none;
}


/* ################################################################################### */


.app {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 0px;
}

.tag-list {
  width: 100%;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  overflow: hidden;
}

.loop-slider {
  .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: 30000ms;
  }
}
  
.tag {
  width: 160px;
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  color: var(--title-color);
  font-size: 0.9rem;
  background-color: var(--body-color);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  margin-right: 1rem;
  border: 0.5px solid var(--border-color);
  span {
    font-size: 1.2rem;
    color: var(--title-color);
  }
}

/* .fade {
  pointer-events: none;
  background: linear-gradient(90deg, #1e293b, transparent 30%, transparent 70%, #1e293b);
  position: absolute;
  inset: 0;
} */



/* ################################################################################### */

.contactus-hs
{
    padding-top: 260px;
    padding-bottom: 200px;
}


/* ######################################################################################### */
  
  .info-card {
    width: 64%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    padding: 4em 2em;
    perspective: 1000px;
    transform-style: preserve-3d;
  }
  
  .bg {
    width: 8em;
    height: 8em;
    background: var(--brand-color);
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  
  .info-card .info-card-img{
    position: absolute;
    top: 55px;
    left: 60px;
    width: 40%;
    transform: translate(24%, -16%) rotate(29deg);
    transition: transform 0.3s ease;
  }
  
  .name {
    font-size: 28px;
    margin: 1.2em 0 0.5em;
    transition: transform 0.3s ease;
  }
  
  .shoe-size {
    display: flex;
    justify-content: space-between;
    transition: transform 0.3s ease;
  }
  
  .shoe-size span {
    display: inline-block;
    background-color: #ddd;
    color: #2b2b2b;
    text-align: center;
    padding: 0.3em 1.4em;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
  }
  
  .shoe-size input {
    opacity: 0;
    position: absolute;
  }
  
  .shoe-size input:checked + span {
    background-color: #ff9800;
    color: #fff;
  }
  
  .description {
    margin-top: 0.8em;
    transition: transform 0.3s ease;
  }
  
  .buy {
    margin-top: 2em;
    width: 100%;
    border: 0;
    padding: 0.6em 0;
    font-weight: 500;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 50px;
    background-color: #ff9800;
    color: #fff;
    cursor: pointer;
    outline: none;
  }
  
  .hover-state img {
    transform: translateZ(180px) translate(24%, -16%) rotate(0);
  }
  
  .hover-state .name {
    transform: translateZ(150px);
  }
  
  .hover-state .shoe-size {
    transform: translateZ(100px);
  }
  
  .hover-state .description {
    transform: translateZ(75px);
  }

  
/* ######################################################################################### */


.contactform_img
{
  
  margin-top: 100px;
  margin-left: 160px;
  margin-bottom: 20px;
}
.contact__wrapper .accordion__button 
{
  padding-right: 20px;
  padding-bottom: 14px;
  padding-left: 20px;
  background-color: #ffffff00  !important;
}
.contact__wrapper .accordion-body{
  padding-left: 20px;
  padding-bottom: 10px;
}

.About-hs
{
    padding-top: 290px;
    padding-bottom: 200px;
}

.pages-navigations-item
{
  width: 16%;
  min-height: 204px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background-color: var(--wh-color);
  border: 2px solid transparent;
  box-shadow: 0px 16px 40px 0px rgba(26, 64, 137, 0.06);
  border-radius: 16px;
  margin: 0px 5px;
  padding-top: 10px;
}

.pages-navigations-item.active, .pages-navigations-item:hover {
  border: 2px solid var(--brand-color);
  box-shadow: 0px 32px 80px 0px rgba(26, 64, 137, 0.12);
}

.blog__wrapper .blog-item{
  width: 98%;
  margin-right: 20px !important;
  margin-left: 10px;
}

.row-about
{
  margin-bottom: 50px;
  margin-top: 100px;
}

.sidebar .col-12 div{

    border-radius: 10px !important;
}

.blog.padding-top.padding-bottom.bg-color{
  margin-top: 160px !important;
}

.arrow-back {
  width: 50px;
  height: 50px;
  background: var(--border-color);
  padding: 12px 21px;
  border-radius: 14px;
  color: var(--title-color);
  position: relative;
  top: -2px;
}
.auth-page-nav
{
  position: relative;
  top: -20px;
}

.pading-b-fp
{
  padding-bottom: 300px;
  padding-top: 120px;
}

.blog-details__item-inner
{
  border-radius: 8px;
}

.bg-white-shadow
{
  background-color: white !important;
}

.error-page{
  padding-top: 150px;
  padding-bottom: 120px;
}


.image-anime{
  animation: left-right 3s cubic-bezier(0.41, 0.15, 0.64, 0.86) infinite alternate;
}

.image-anime-float{
  animation: floating 3s cubic-bezier(0.41, 0.15, 0.64, 0.86) infinite alternate;
}


.feature-card {
  border-radius: 1rem;
  padding: 3rem;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.feature-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-second-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card.active .icon-wrapper {
  background: #fff;
}

/* Optional hover effect */
.feature-card:hover {
  /* background: #0BC279;
  color: #fff !important; */
  transform: translateY(-4px);
}

.text-align-justify{
  text-align: justify;
}

.border-radius-top{
  border-radius: 10% 10% 0% 0%; ;
}

.border-radius-bottom{
  border-radius: 0% 0% 10% 10% ;
}

.text-color
{
  color: var(--text-color);
}



.header {
  text-align: center;
  margin-bottom: 40px;
}
.header h1 {
  font-weight: 600;
  color: #000;
  font-size: 32px;
  margin-bottom: 10px;
}
.header h1 span {
  color: #00c486;
}
.header p {
  color: #6c757d;
  font-size: 16px;
}
.sidebar-item {
  padding: 25px 30px;
  background-color: var(--bg-color);
  border-radius: 12px;
  margin-bottom: 15px;
  cursor: pointer;
  font-weight: 500;
}
.sidebar-item.active {
  /* border: 1px solid #e5e5e5ab; */
  background-color: var(--gradient-second-color);
}
.content-card {
  border-radius: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5ab;
  /* background-color: var(--gradient-second-color); */
  min-height: 400px;
  overflow: hidden;
}
.content-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: Lato;
}
.content-text {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 20px;
}
.chart-container {
  height: 180px;
  margin-top: 20px;
}
.sidebar-container {
  padding-right: 20px;
}


.step-card {
  background-color: var(--gradient-second-color);
  border-radius: 20px;
  padding: 50px 30px;
  height: 100%;
  transition: transform 0.3s;
}
.step-card:hover {
  transform: translateY(-5px);
}
.step-number {
  color: var(--title-color);
  font-family: 'Calsans';
}
.exchange-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.exchange-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.bot-option {
  background-color: white;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.bot-option:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.bot-icon {
  width: 32px;
  height: 32px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-tag {
  background-color: #e6f3ff;
  color: #0066cc;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 10px;
}
.top-tag {
  background-color: #e6fff0;
  color: #00994d;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 10px;
}
.trading-row {
  background-color: white;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.pair-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.long-tag {
  background-color: #e6fff0;
  color: #00994d;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
}
.price-text {
  font-weight: bold;
  text-align: right;
}
.btn-signup {
  background-color: #00b377;
  color: white;
  border: none;
  padding: 13px 34px;
  border-radius: 13px;
  font-weight: 600;
}
.btn-signup:hover {
  background-color: #009966;
  color: white;
}
.section-title {
  font-weight: bold;
  margin-bottom: 40px;
}
.indicator-pill {
  background-color: #f3f3f3;
  border-radius: 15px;
  padding: 3px 10px;
  font-size: 0.8rem;
  margin-right: 5px;
}




.promo-section {
  background: var(--cover-color);
  border-radius: 30px;
  padding: 0px 40px;
  position: relative;
  overflow: hidden;

}

.promo-heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.1;
  margin-bottom: 25px;
}

.promo-text {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-promo {
  background-color: #0BC279;
  border: none;
  color: white;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s;
}

.btn-promo:hover {
  background-color: #0BC279;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: white;
}

.image-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.percent-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.ribbon {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 150px;
  height: auto;
  z-index: 2;
  transform: rotate(-10deg);
}

.dashboard-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.promo-content {
  padding-top: 10px;
  padding-left: 50px;
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #212529;
}
.feature-description {
  color: #6c757d;
}
.security-card {
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 0.5rem;
  background-color: #1b2d2900;
}

.security-card h4{
  font-size: 20px;
}

.security-card:hover {
  transform: translateY(-5px);
}

.showcase-section {
  background-color: var(--gradient-second-color);
  padding: 3rem 1rem;
  overflow: visible;
  position: relative;
}

.download-text {
  font-weight: 600;
  margin-bottom: 2rem;
}

.qr-code {
  max-width: 140px;
  height: auto;
}




.tab-content .nav-link {
  
  padding: 25px 30px;
  background-color: var(--bg-color);
  color: var(--text-color);
  border-radius: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 500;

}
.tab-content .nav-link.active {
  color: var(--title-color) !important;
  background-color: var(--gradient-second-color) !important;
  font-weight: 600;
}

.nav-link:hover:not(.active) {
  background-color: var(--gradient-second-color);
}
.view-more-btn {
  background-color: #00c486;
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 15px;
}
.view-more-btn:hover {
  background-color: #00a86b;
}
.content-card {
  border-radius: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e5e5ab;
  background-color: var(--wh-color);
  min-height: 400px;
  overflow: hidden;
}


.tab-content .content-text{
  text-align: justify;
  line-height: 32px;
  margin-bottom: 40px;
}






/* Mobile Menu Styles */
.desktop-menu {
  display: block;
}

.mobile-menu-toggle {
  display: none;
}

.menu-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
}

.menu-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--body-color);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-container {
  padding: 20px;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-item {
  position: relative;
  border-bottom: 1px solid var(--bg-color);
}

.mobile-menu-link {
  display: block;
  padding: 20px 0;
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
}

.mobile-submenu-toggle {
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 20px;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  list-style: none;
  padding-left: 15px;
  margin-bottom: 10px;
}

.mobile-submenu li a {
  display: block;
  padding: 10px 0;
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
}

.mobile-header-btn {
  margin-top: 20px;
}

.mobile-header-btn a{
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
}

/* Media queries */
@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

.footer__links-tittle h6{
  font-family: 'Calsans' !important;
  font-weight: 400;
}

.accordion__button
{
  text-transform: none !important;
}


/* ------------------------- Splash Design --------------------------- */


.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

/* Logo container */
.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
}

/* Base logo (robox) */
.logo-base {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

/* Eyes logo */
.logo-eyes {
    position: absolute;
    top: 4px;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeInEyes 1s ease-in-out 0.5s forwards;
}

/* Animation for eyes appearing */
@keyframes fadeInEyes {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Content that appears after splash screen */
.content {
    text-align: center;
    opacity: 0;
    transition: opacity 1s ease-in;
}

/* Hide splash and show content */
.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.content.visible {
    opacity: 1;
}

.message-alert{
  background-color: var(--title-color);
}

.img-radius
{
  border-radius: 8px;
}

.navigation-section{
  min-height: 50px;
  background-color: var(--wh-color);
  padding: 10px 30px;
  margin-top: 50px;
  border-radius: 10px;
  margin-bottom: -31px;
}


.post-box {
  padding-right: 0px !important;
}


















  :root {
    --primary-color: #0BC279;
    --dark-color: #121212;
    --light-gray: #f5f5f5;
    --text-gray: #6c757d;
  }

  .news-item {
      border: none;
      border-radius: 12px;
      transition: transform 0.2s ease;
      overflow: hidden;
  }
  
  .news-image {
    width: 100%;
    min-height: 80%;
    object-fit: cover;
    border-radius: 13px;
  }
  
  .author-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(45deg, #007bff, #0056b3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 12px;
  }
  
  .news-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--title-color);
      line-height: 1.4;
      margin-bottom: 8px;
  }
  
  .news-excerpt {
      font-size: 13px;
      color: var(--text-color);
      line-height: 1.4;
  }
  
  .author-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-color);
      margin-bottom: 2px;
  }
  
  .time-stamp {
      font-size: 11px;
      color: var(--text-color);
  }
  
  .read-more {
      color: var(--brand-color);
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
  }
  
  .read-more:hover {
      color: var(--text-color);
      text-decoration: underline;
  }
  
  body {
      font-family: 'Lato';
  }
  
  
  /* News Update Bar */
  .news-update-bar {
      overflow: hidden;
  }
  .news-search-bar , .news-update-bar{
    background-color: var(--gradient-second-color);
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--text-color);
  }

  .news-search {
    width: 100%;
    margin: auto;
    margin-top: 0px !important;
    padding-right: 0px;
  }
  
  .news-update-label {
      color: var(--primary-color);
      font-weight: 600;
      margin-right: 10px;
  }
  
  .news-update-content {
      display: flex;
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
  }
  
  .news-update-content::-webkit-scrollbar {
      display: none;
  }
  
  .news-update-item {
      margin-right: 25px;
      position: relative;
  }
  
  .news-update-item::after {
      content: '•';
      position: absolute;
      right: -15px;
      color: #ccc;
  }
  
  .news-update-item:last-child::after {
      display: none;
  }
  
  /* Hero Section */
  .news-hero-section {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 2rem;
  }
  
  .hero-image {
      width: 100%;
      height: 80%;
      object-fit: cover;
      transition: transform 0.3s ease;
      border-radius: 15px;
  }
  
  .hero-overlay {
      position: absolute;
      bottom: 6%;
      left: 11px;
      right: 11px;
      padding: 2rem;
      background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3) 60%, transparent);
      color: white;
      border-radius: 0px 0px 15px 15px; 
  }
  
  .category-tag {
      background-color: var(--primary-color);
      color: white;
      padding: 4px 12px;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 10px;
  }
  
  .hero-title {
      margin-bottom: 30px;
      color: white;
      font-family: Calsans;
      letter-spacing: 2.3px;
  }
  
  /* News Cards */
  .news-card {
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 20px;
  }

  .news-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      margin-bottom: 10px;
      border-radius: 10px;
  }
  
  .news-card-content {
      padding: 15px;
  }
  
  .news-card-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 10px;
      line-height: 1.4;
  }
  
  .news-card-text {
      color: var(--text-gray);
      font-size: 0.9rem;
      margin-bottom: 15px;
  }
  
  .news-source {
      display: flex;
      align-items: center;
      font-size: 0.8rem;
      color: var(--text-gray);
  }

  .news-source span{
    color: var(--title-color);
  }
  
  .news-source img {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      margin-right: 8px;
  }
  
  /* Section Titles */
  .section-title {
      font-size: 1.4rem;
      font-weight: 700;
      margin: 2rem 0 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  
  .see-more {
      font-size: 0.9rem;
      color: var(--primary-color);
      text-decoration: none;
      display: flex;
      align-items: center;
  }
  
  .see-more i {
      margin-left: 5px;
      transition: transform 0.3s ease;
  }
  
  .see-more:hover i {
      transform: translateX(3px);
  }
  
  /* Trending News */
  .trending-card {
      margin-bottom: 1rem;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
  }
  
  .trending-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease;
  }
  
  .trending-card:hover img {
      transform: scale(1.05);
  }
  
  /* Featured Article */
  .featured-article {
      display: flex;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 3rem;

  }
  
  .featured-article-img {
      width: 40%;
      min-height: 250px;
      object-fit: cover;
      border-radius: 15px;
  }
  
  .featured-article-content {
      padding: 40px;
      width: 60%;
  }
  
  .featured-article-title {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 10px;
  }
  
  .featured-article-desc {
      color: var(--text-gray);
      font-size: 0.95rem;
      margin-bottom: 15px;
      line-height: 1.6;
  }
  
  
  /* Animations */
  @keyframes pulse {
      0% {
          transform: scale(1);
      }
      50% {
          transform: scale(1.05);
      }
      100% {
          transform: scale(1);
      }
  }
  
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .news-card, .trending-card, .featured-article, .video-card, .highlight-card {
      animation: fadeIn 0.5s ease-out forwards;
  }
  
  /* Staggered animation for news cards */
  .news-card:nth-child(1) { animation-delay: 0.1s; }
  .news-card:nth-child(2) { animation-delay: 0.2s; }
  .news-card:nth-child(3) { animation-delay: 0.3s; }
  .news-card:nth-child(4) { animation-delay: 0.4s; }
  
  .trending-card:nth-child(1) { animation-delay: 0.1s; }
  .trending-card:nth-child(2) { animation-delay: 0.2s; }
  .trending-card:nth-child(3) { animation-delay: 0.3s; }
  .trending-card:nth-child(4) { animation-delay: 0.4s; }
  
  .highlight-card:nth-child(1) { animation-delay: 0.1s; }
  .highlight-card:nth-child(2) { animation-delay: 0.2s; }
  .highlight-card:nth-child(3) { animation-delay: 0.3s; }
  .highlight-card:nth-child(4) { animation-delay: 0.4s; }
  
  /* News update scroll animation */
  @keyframes scrollText {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(-100%);
      }
  }
  
  .scrolling-text {
      white-space: nowrap;
      animation: scrollText 20s linear infinite;
  }

  .small-card-news{
      border-radius: 5px;
      height: 100%;
      object-fit: cover;
  }


.news-image-height-140{
  max-height: 140px;
}

.news-sidebar-box{
  padding: 30px;
  margin: 20px;
  border-radius: 14px;
  min-height: 150px;
  width: 100%;
}

.news-boxes{
  border-radius: 10px !important;
  box-shadow: none !important;
}