body{
    margin: 0;
     padding-top: 225px;
     font-family: Helvetica;
}
a{
    text-decoration: none;
    color: inherit;
}
/* navbar */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: white; 
}

.navbar-top{
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
}
.logo {
  height: 80px;         /* Default size */
  width: auto;
  transition: height 0.8s ease;
  cursor: pointer;
}

.logo.shrink {
  height: 50px;         /* Shrinks to this size on scroll */
}

.nav-button-section{
    display: flex;
    gap: 15px;
    justify-content: center;
}
.btn-r{
    font-size: 17px;
    font-weight: 700;
    color: white;
    margin: 0;
  background-color: #000;
    padding: 10px 15px;
    width: auto;
    cursor: pointer;
    border-radius: 5px;
}
.btn-r a{
    color: white;
}
.btn-g{
    font-size: 17px;
    font-weight: 700;
    color: #000;
    margin: 0;
    background-color: #E9E9E9;
    padding: 10px 15px;
    width: auto;
    border-radius: 5px;
    cursor: pointer;
}
.btn-g a{
    color: #000;
}
.contact-section{
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.contact{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}
.contact a{
    color: #000;
}
.contact-b{
    font-size: 16px;
    font-weight: 400;
}
.menu{
    height: 15px;
    width: auto;
    display: none;
}
.nav-mid{
  background-color: #000;
text-align: center;
padding: 8px 0px;
margin: 0px 50px;
}
.nav-mid {
  transition: all 0.8s ease;
}

.nav-mid.hidden {
  display: none;
}


.statement{
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: white;
}
.statement a{
    color: white;
}
.mission{
     font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}
.nav-bottom{
    border-top: 1px solid #e9e9e9;
     border-bottom: 1px solid #e9e9e9;
     margin-top: 10px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding:15px 50px ;
}
.option-section{
    display: flex;
    justify-content: flex-start;
    gap: 30px;
}
.option{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
}
.option a{
    color: #000;
}
.search{
    height: 20px;
    width: auto;
}
/* trending-section */
.trending-section {
  padding: 15px 50px;
  background-color: #F4F4F4;
  border-bottom: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}
.trending {
  margin: 0;
  text-transform: uppercase;
  color: #00108b;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.marquee-wrapper {
  overflow: hidden;
  flex: 1;
  position: relative;
}


.moving {
  display: flex;
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

.marquee-text {
  display: inline-block;
  padding-right: 50px; 
  font-size: 18px;
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.line-mid {
  color: #c9c9c9;
  font-weight: 100;
  padding: 0px 10px;
}
/* Mobile Menu Styling */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: white;
  position: fixed;
  top: 70px; /* below the navbar */
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  border-top: 1px solid #e9e9e9;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-item {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 700;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  margin: 0;
}
.mobile-item a{
  color: #000;
}
.mobile-item::after {
  content: "▼";
  float: right;
  font-size: 14px;
  opacity: 0.6;
}

/* Show only on mobile */
@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}



/* body-content */
.body-content{
    padding: 20px 50px;
}


/* first-section */
.first-section{
    padding: 30px 0px;
}
.first-section-grid{
    display: flex;
    gap: 30px;
}
.first-section-side{
    width: 25%;
}
.first-section-mid{
    width: 50%;
}
.news-grid-section{
    padding-bottom: 15px;
}
.image-wrapper {
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;

}
.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-head{
    color: #000;
    margin: 0;
    font-size: 18px;
font-weight: 700;
padding: 5px 0px;
}
.para {
  margin: 0;
  font-size: 17px;

  display: -webkit-box;             
  display: -moz-box;             
  display: -ms-flexbox;            
  display: box;                      
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.main-head{
    color: #000;
    margin: 0;
    font-size: 36px;
font-weight: 700;
padding: 5px 0px;
}
.main-para {
  margin: 0;
  font-size: 20px;

  display: -webkit-box;             
  display: -moz-box;             
  display: -ms-flexbox;            
  display: box;                      
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.button-wrapper {
  text-align: center;
  padding-top: 30px;
  cursor: pointer;
}

.section-btn {
  font-size: 18px;
  margin: 0;
  color: white;
  font-weight: 700;
background-color: #000;
  text-transform: uppercase;
  padding: 8px 15px;
  display: inline-block;
}

/* section */
.section{
    padding: 40px 0px;
    padding-top: 20px;
}
.section.r{
    background-color: #000;
     padding: 20px 50px;
     border-bottom: 2px solid white;
}


.section-head{
    font-size: 70px;
    font-weight: 700;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
}
.section-head a{
    color: #000;
}
.section-head.w{
    color: white;
    border-bottom: 2px solid white;
}
.section-head.w a{
    color: white;
}
.grid-section{
    display: flex;
    gap: 30px;
}

.grid{
    width: 33.33%;
    display: flex;
    gap: 10px;
    padding: 15px 0px;
    border-bottom: 1px solid #000;
}
.grid.w{
    border-bottom: 1px solid white;
}
.grid.b{
    border: none;
}
.grid.wb{
    border: none;
}
.grid-l{
    width: 35%;
}
.grid-r{
    width: 65%;
}
.grid-image-wrapper{
     width: 100%;
  height: 160px; /* or any desired height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.date{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}
.date span{
  font-weight: 700;
}
.date a{
    color: #000;
}
.date.w{
    color: white;
}
.date.w a{
    color: white;
}
.grid-head{
    margin: 0;
    font-weight: 500;
    font-size: 22px;
    color: #000;
    line-height: 1.5rem;
    padding: 5px 0px;
}
.grid-head a{
    color: #000;
}
.grid-head.w{
    color: white;
}
.grid-head.w a{
    color: white;
}
.country {
  margin: 0;
  font-size: 14px;
  color: white;
background-color: #000;
  padding: 3px 8px;
  display: inline-block; 
  margin-top: 5px;  
}
.country a{
    color: white;
}
.ad-section-v{
    width: 100%;
}
.ad-v{
    width: 100%;
    height: auto;
}

/* footer */
.footer{
    padding: 30px 50px;
    background-color: #1E1E1E;
}
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.footer-logo{
    height: 70px;
    width: auto;
}
.footer-paragraph-section{
    width: 60%;
    padding: 20px 0px;
}
.footer-para{
    margin: 0;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    opacity: 0.4;
    padding: 5px 0px;
    line-height: 1.6rem;
}
.footer-para a{
    color: #fff;
}
.footer-bottom {
  padding: 20px 0px;
  font-size: 14px;
  padding-bottom: 0;
  color: #ccc; 
  display: flex;
  justify-content: space-between;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 700;
  font-size: 18px;
}

.footer-text {
  color: #aaa;
  margin-bottom: 15px;
  width: 60%;
    font-size: 16px;
}

.footer-text a {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.footer-socials img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #555;
  padding: 5px;
}



.mini-head a,
.para a,
.main-head a,
.main-para a,
.section-btn a {
    color: inherit;
    text-decoration: none;
    display: block;
}

/* For the main headlines */
.main-head a {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

/* For the section button */
.section-btn a {
    color: white;
    padding: 8px 15px;
}

/* Hover effects */
.mini-head a:hover,
.para a:hover,
.main-head a:hover,
.main-para a:hover {
    text-decoration: underline;
}

.section-btn a:hover {
    opacity: 0.9;
}
