* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}


.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  color: white;
  padding: 15px 30px;
}

.header-left,
.header-center,
.header-right {
  display: flex;
  align-items: center;
}

.header-left {
  width: 25%;
  gap: 15px;
  justify-content: flex-start;
}

.header-left i,
.header-right i {
  color: black;
}

.header-left i {
  transition: all 0.3s ease-in-out;
  padding: 10px;
  border-radius: 100px;
}

.header-left i:hover {
  background: yellow;
  scale: 1.1;
}

.header-center {
  width: 50%;
  justify-content: center;
  text-align: center;
}

.logo-img {
  width: 40%;
}

.header-right {
  width: 25%;
  justify-content: flex-end;
  gap: 15px;
}

.header-right a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}

.header-right a:hover {
  background: yellow;
  padding: 10px;
}

i {
  font-size: 20px;
  cursor: pointer;
}

.header-right i {
  transition: all 0.3s ease-in-out;
}

.header-right a:hover i {
  scale: 1.1;
}

/* menu css */
/* Menu Section Styling */
.main-nav {
  background-color: #ffffff;
  padding: 10px 30px;
}

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.menu li {
  position: relative;
}

.menu li a {
  font-family: 'Poppins';
  color: #000;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease-in-out;
}

.menu li a:hover {
  background-color: #FBFF00;
  border-radius: 50px;
  color: black;
}

/* Dropdown Menu */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  list-style: none;
}

.dropdown li a {
  padding: 10px 20px;
}

.menu li:hover .dropdown {
  display: block;
}

.dropdown li a:hover {
  background-color: #555;
}

/* banner */
/* Banner Section */
.banner {
  background-color: #2B2D30;
  /* Banner Background Color */
  padding: 0 0;
}

.inner-banner {
  width: 90%;
  margin: 0 auto;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.col-left {
  width: 50%;
  color: white;
}


.bnr-sub-heading {
  font-size: 18px;
  font-weight: 600;
  font-family: poppins;
  margin-bottom: 10px;
  background: #FBFF00;
  color: black;
  padding: 8px 17px;
  border-radius: 50px;
  width: 258px;
  letter-spacing: 10px;
}

.bnr-main-heading {
  font-size: 85px;
  font-weight: 400;
  font-family: Impact;
  margin-bottom: 20px;
  line-height: 80px;
}

.bnr-content {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
}

.button-group {
  display: flex;
  gap: 15px;
}

.bnr-btn {
  background-color: #ffffff;
  color: #000000;
  padding: 0px 0px 0px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  display: inline-flex;
  font-family: 'Poppins';
  align-items: center;
  transition: all 0.3s ease-in-out;

}

.bnr-btn:hover {
  background: #FBFF00;
}

.col-left .fas.fa-arrow-right {
  margin-left: 10px;
  background: #2B2D30;
  color: #FBFF00;
  padding: 13px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: -3px;
}

a.bnr-btn:hover .fas.fa-arrow-right {
  transform: rotate(360deg);

}

.bnr-btn-secondary {
  /* background-color: #f39c12; */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins';
  transition: all 0.3s ease-in-out;
}

.bnr-btn-secondary:hover {
  color: #FBFF00;
}

.btn i {
  margin-right: 8px;
  /* Space between icon and text */
}



/* Right Column with Background Image */
.col-right {
  width: 45%;
  height: 700px;
  background-image: url('images/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  color: white;
}

/* section one */
.about-inner-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 70px 0px;
  width: 100%;
  margin: 0 auto;
}

.about-left .about-mini-heading {
  color: black;
  font-family: 'Poppins';
  font-size: 17px;
  letter-spacing: 6px;
  padding-bottom: 50px;
}

.about-about-right {
  padding-top: 75px;
  width: 45%;
}

.about-main-heading {
  font-family: 'Poppins';
  font-weight: 500;
  float: right;
  font-size: 34px;
  width: 55%;
  text-align: right;
  letter-spacing: 13px;
  /* background: yellow; */
  padding-bottom: 60px;
}

.about-highlighted {
  background: yellow;
  border-radius: 50px;
}

.about-bold-heading {
  font-family: impact;
  font-size: 51px;
  font-weight: 500;
}

.about-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-check-list li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #000000;
  font-family: poppins;
}

.about-check-list i {
  color: #ffffff;
  margin-right: 10px;
  background: #00B400;
  padding: 3px;
  border-radius: 5px;
}

.about-cta-button {
  background-color: #2B2D30;
  color: #ffffff;
  padding: 0px 0px 0px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Poppins';
  font-size: 16px;
  display: inline-flex;
  font-family: 'Poppins';
  align-items: center;
  margin-top: 30px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.about-cta-button:hover {
  background: #FBFF00;
  color: black;
}

.about-cta-button .fa-arrow-right {
  margin-left: 10px;
  background: #ffffff;
  color: #000000;
  padding: 13px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.about-cta-button:hover .fa-arrow-right {
  transform: rotate(360deg);
  background: #000000;
  color: white;
}

/* news secion */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 24px;
  font-family: 'Poppins';
}


.highlight {
  background: yellow;
  font-weight: bold;
  border-radius: 100px;
}

.tabs {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.tab {
  font-weight: bold;
  color: #888;
  transition: all 0.3s ease-in-out;
  font-family: 'Poppins';
}

.tab:hover {
  color: yellow;
}

.tab.active {
  color: black;
  border-bottom: 2px solid black;
}

.news-content {
  display: flex;
  gap: 30px;
}

.featured-card {
  flex: 1;
  position: relative;
}

.featured-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.featured-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

.featured-info .tag {
  background: black;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.featured-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.read-more {
  color: yellow;
  font-weight: bold;
}

.news-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-card img {
  width: 100%;
  border-radius: 6px;
}

.news-card h4 {
  font-size: 23px;
  margin: 10px 0 5px;
  font-family: Libre Caslon Display;
  font-weight: 500;
}

.category {
  font-size: 12px;
  color: #666;
}

.news-cta-button {
  background-color: #2B2D30;
  color: #ffffff;
  padding: 0px 0px 0px 20px;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Poppins';
  font-size: 13px;
  display: inline-flex;
  font-family: 'Poppins';
  align-items: center;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.news-cta-button:hover {
  background: #FBFF00;
  color: black;
}

.news-cta-button .fa-arrow-right {
  margin-left: 10px;
  background: #ffffff;
  color: #000000;
  padding: 7px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.news-cta-button:hover .fa-arrow-right {
  transform: rotate(360deg);
  background: #000000;
  color: white;
}

/* aricle section */
#news-section {
  padding: 40px;
  background: #fff;
}

.inner-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 300px;
}

.left-column .news-article {
  margin-bottom: 30px;
}

.news-article {
  padding: 30px 0px;
}

.article-img {
  width: 40%;
  float: right;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.category {
  font-size: 0.9rem;
  color: #777;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.article-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: Libre Caslon Display;
}

.article-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}


.highlight-article {
  text-align: center;
}

.highlight-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
}

.article-main-title {
  text-align: left;
}

.main-btn {
  text-align: left;
}

.article-left-column {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* suggest-news */
.suggest-news-col1,
.suggest-news-col2,
.suggest-news-col1 {
  width: 33%;
  display: flex;
  align-items: center;
}

.suggest-news-innr {
  display: flex;
  gap: 30px;
}

.suggest-news-hdng {
  font-size: 16px;
  font-weight: 400;
  font-family: Libre Caslon Display;
}

.suggest-news {
  padding: 40px 0px;
}

/* four-col */

.fourcol-section-innr {
  display: flex;
  padding: 0;
  /* optional spacing between columns */
  justify-content: space-between;
}

.fourcol-section-col1:hover {
  background: #FBFF00;
  border-radius: 20px;
}

.fourcol-section-col1 {
  flex: 1 1 calc(24% - 20px);
  /* for 4 columns */
  box-sizing: border-box;
  padding: 10px;
  transition: all 0.3s ease-in-out;
}

.fourcol-section {
  padding: 50px 0px;
}

.fourcol-section-col1 .fourcol-section-hdng {
  padding-top: 20px;
  font-weight: 400;
  font-family: Libre Caslon Display;
  font-size: 25px;
}

.fourcol-section-col1 .fourcol-article-description {
  font-size: 14px;
  font-weight: 300;
  color: #403f3f;
  padding-top: 10px;
  font-family: 'Poppins';
}

/* footer */
#main-footer {
  background-color: #f8f8f8;
  padding: 50px 30px 20px;
  font-family: sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #000;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  color: #333;
  font-size: 15px;
}

.footer-column ul li span {
  color: #888;
  font-size: 14px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter {
  margin-top: 20px;
}

.newsletter input[type="email"] {
  width: 67%;
  padding: 15px;
  margin-top: 6px;
  border: 1px solid #f4d32a;
  outline: none;
}

.submit-btn {
  margin-top: 10px;
  background: #f4d32a;
  border: none;
  padding: 8px 15px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 20px;
}

.submit-btn span {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 4px 8px;
  margin-left: 8px;
  border-radius: 50%;
  font-size: 12px;
}

/* .footer-bottom {
  margin-top: 40px;
  text-align: center;
  background: #222;
  color: #ccc;
  padding: 15px;
  font-size: 14px;
} */

.footer-bottom a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-bottom a:hover {
  color: #facc15;

}

.full-width-footer {
  width: 100%;

  text-align: center;
  background: #222;
  color: #ccc;
  padding: 15px;
  font-size: 14px;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

ul li a:hover {
  color: #facc15;
  /* or any accent color */
  text-decoration: underline;
}


/* about us css */
.about-us-section {
  width: 100%;
  height: 400px; /* Full screen height */
  background-image: url(images/close-up-view-of-newspapers-with-economic-news-nex-2024-11-09-14-17-31-utc.jpg); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-us-section .overlay,
.terms-section .overlay,
.blogs-sec .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.5);
}

.about-us-section h1,
.terms-section h1 {
  color: white;
  font-size: 85px;
    font-weight: 400;
  font-family: Impact;
  text-align: center;
  margin: 0;
}
.about-image-collage img {
  border-radius: 15px;
}

/* terms and conditions */

.terms-section {
  width: 100%;
  height: 400px; /* Full screen height */
  background-image: url(images/terms.jpg); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* section 1 */
/* ===== Terms Section ===== */
.terms-inner.container {
  padding: 70px 0px;
}

.terms-inner {
  display: flex;
  gap: 40px;
}

.terms-left {
  flex: 0 0 70%;
}

.terms-right {
  flex: 0 0 30%;
}

.terms-heading {
  font-family: Impact;
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 400;
}

.terms-content {
  font-family: 'Poppins';
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* --- Most Viewed --- */
.most-viewed-heading {
  font-family: 'Poppins';
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.most-viewed-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.mv-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.mv-subheading {
  font-family: 'Libre Caslon Display';
  font-size: 18px;
  margin: 0 0 5px;
}

.mv-snippet {
  font-family: 'Poppins';
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* privacy policy */
nav.policy-nav .privacy-policy li {
  font-family: 'Poppins';
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* Blogs */

.blogs-sec {
  width: 100%;
  height: 400px; /* Full screen height */
  background-image: url(images/Blogs.png); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  position: relative;
}
.blogs-sec h1 {
  color: white;
  font-size: 85px;
    font-weight: 400;
  font-family: Impact;
  text-align: center;
  margin: 0;
}
/* Contact */

section.contact-section h3 {
  font-family: impact;
  font-weight: 300;
  font-size: 30px !important;
  background: #EEE646;
  border-radius: 50px;
  width: 161px;
  padding: 12px;
  border-radius: 34px;
  
}
.contact-inner button {
  background: #EEE646 !important;
  color: black !important;
  font-family: 'Poppins';
  transition: all 0.3s ease-in-out !important;
}
.contact-inner button:hover{
  background: yellow !important;

}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    text-align: center;
  }

  .col-left,
  .col-right {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
    /* Adjust height for smaller screens */
  }

  /* Optional: Add a background image to the left column too */
  .col-left {
    background-image: url('images/left-column-bg.jpg');
    background-size: cover;
    background-position: center;
  }

  /* terms section 1 */
  .terms-left,
  .terms-right {
    flex: 0 0 100%;
  }
}