/**
 * Theme Name:     Hello Elementor Child
 * Author:         Elementor Team
 * Template:       hello-elementor
 * Text Domain:	   hello-elementor-child
 * Description:    Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
 */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* =========================
   CSS VARIABLES (SAFE)
========================= */
:root {
  --color-primary: #1e293b;
  --color-secondary: #475569;
  --color-bg: #ffffff;
  --color-black: #000;

  --container-width: 1200px;

  --font-size-base: 16px;
  --line-height-base: 1.6;
}

/* Only inside site */
.site a {
  color: inherit;
  text-decoration: none;
}

.site ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===============================
   NEWS HEADER (SCOPED)
================================ */
/* ===== Base Header ===== */
.news-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;

  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
}

/* Inner container */
.news-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

/* Logo */
.news-header__logo {
  margin-bottom: 0;
  max-width: 260px;
  margin-inline: auto;
}

/* Navigation menu desktop */
.news-header__menu {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-header__nav-logo {
  display: none;
}

.news-header__menu a {
  font-size: 18px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: all 0.3s ease;
}

/* Hover effect */
.news-header__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #1687eb; /* Blue underline */
  transition: width 0.3s ease;
}

.news-header__menu a:hover::after {
  width: 100%;
}

/* news-active page */
.news-header__menu li.news-active a {
  color: #ea275f;
  font-weight: 600;
}

/* Hamburger */
.news-header__toggle {
  display: none;
  position: absolute;
  top: 25px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.news-header__toggle:hover {
  background-color: white;
}

.news-header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #111827;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hamburger news-active animation */
.news-header__toggle.news-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.news-header__toggle.news-active span:nth-child(2) {
  opacity: 0;
}
.news-header__toggle.news-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Slide Menu ===== */
.news-header__nav {
  display: flex;
  justify-content: center;
  /* border-bottom: 1px solid #e5e7eb; */
}

.news-active a::after {
  width: 100%;
}

.news-header__logo img.pink-img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 1440px) {
  .news-header__logo {
    max-width: 180px;
  }

  .news-header__logo a.custom-logo-link {
    line-height: 0;
    height: auto;
    display: block;
  }
}

@media (max-width: 991px) {
  .news-header__nav-logo {
    display: block;
  }
  .news-header__toggle {
    display: block;
  }
  .news-header__logo {
    margin-inline: initial;
    margin: 0;
    max-width: 200px;
  }
  .news-header__nav {
    position: fixed;
    top: 0;
    right: -300px; /* hidden */
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px;
    transition: right 0.3s ease;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .news-header__nav.is-open {
    right: 0;
    justify-content: flex-start;
    text-align: left;
    align-items: self-start;
    width: 40%;
  }

  .news-header__nav-logo {
    max-width: 200px;
  }

  .news-header__menu {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }

  .news-header-close {
    width: 100%;
  }

  .news-header__menu a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .news-header__menu a::after {
    display: none; /* remove underline for mobile */
  }

  .news-header__menu li.news-active a {
    color: #ea275f;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .news-header__nav.is-open {
    width: 100%;
  }
}

/* ===============================
   NEWS HEADER (SCOPED)
================================ */

/* ===============================
   NEWS FOOTER
================================ */
.news-footer {
  background-color: #272727;
  border-top: 1px solid #e5e7eb;

  color: white;
}

.news-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Column title */
.news-footer__title {
  border: 1px solid #fff;
  border-left: 4px solid #fff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Text */
.news-footer__text {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
}

/* Contact */
.news-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}

.news-footer__contact li {
  margin-bottom: 10px;
}

.news-footer__contact li a {
  color: white;
}

.news-footer__contact li a:hover {
  color: white;
  text-decoration: underline;
}

/* Feature posts */
.news-footer__posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-footer__posts li {
  font-size: 0.9rem;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}

/* Links */
.news-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-footer__links li {
  margin-bottom: 10px;
}

.news-footer__links a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.news-footer__links a:hover {
  text-decoration: underline;
  color: white;
}

.popular-list {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
.popular-list:hover {
  text-decoration: underline;
  color: white;
}
/* Newsletter */
.news-footer__form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
}

.news-footer__form button {
  width: 100%;
  padding: 12px;
  background-color: white;
  color: black;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 5px;
}

.news-footer__form button:hover {
  background-color: #000;
  border: 1px solid white;
  color: white;
}

.news-footer__col .news-header__logo {
  max-width: 100%;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .news-footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .news-footer__container {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .news-footer__col .news-header__logo {
    max-width: 250px;
  }
}

/* Footer Copyright Section */
.news-footer__copyright {
  background-color: #272727;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid #333;
  margin-top: 40px;
}
.news-footer__copyright .news-footer__container {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.news-footer__copyright p {
  margin: 8px 0;
}

.news-footer__copyright p:first-child {
  font-weight: 500;
  color: #fff; /* copyright line को थोड़ा हाइलाइट */
}

/* Responsive - small screens पर */
@media (max-width: 768px) {
  .news-footer__copyright {
    padding: 15px 10px;
    font-size: 13px;
  }
}

/* ===============================
   NEWS FOOTER
================================ */

/* Home Page Section CSS Start */

/* ================= WRAPPER ================= */
.news-hero-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 30px 20px;
}

.news-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 30px;
}

/* ================= LEFT SIDE ================= */
.news-hero-main-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.news-hero-main-card img {
  width: 100%;
  display: block;
}

.news-hero-badge {
  position: absolute;
  top: 20px;
  left: 10px;
  background: #1687EB;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  font-weight: bold;
}

.news-hero-main-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
}

.news-hero-main-content h2 {
  font-size: 25px;
  margin-bottom: 6px;
  font-weight: 500;
}

.news-hero-main-content p {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
  text-transform: uppercase;
}

/* ================= BOTTOM GRID ================= */
.news-hero-bottom-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-hero-small-card img {
  width: 100%;
  border-radius: 6px;
}

.news-hero-small-card h3 {
  font-size: 19px;
  margin: 10px 0 5px;
  line-height: 1.3;
  font-weight: 500;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-hero-small-card p {
  font-size: 12px;
  color: #777;
  margin: 0;
  text-transform: uppercase;
}

/* ================= RIGHT SIDE (LATEST) ================= */
.news-hero-right h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.news-hero-latest-box {
  border: 1px solid #dcdcdc;
}

.news-hero-latest-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
  align-items: start;
}
.news-hero-latest-media {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.news-hero-latest-media img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.news-hero-latest-count {
  color: #1687eb;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}

.news-hero-latest-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.news-hero-latest-content h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000;
}
.news-hero-latest-heading {
  margin-bottom: 10px;
  font-weight: 500;
}
.news-hero-latest-wrapper-inner {
  position: sticky;
  top: 150px;
}
.news-hero-latest-content p {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  margin: 0;
}

/* ================= BUTTON ================= */
.news-hero-explore-btn,
.news-hero-latest-btn {
  width: 100%;
  display: block;
  text-align: center;
  padding: 14px;
  background: #ededed;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.news-hero-explore-btn:hover,
.news-hero-latest-btn:hover {
  background: #e0e0e0;
}

/* ================= ANCHOR RESET ================= */
.news-hero-wrapper a {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.news-hero-latest-item {
  display: flex;
  align-items: center;
}

/* ================= HOVER EFFECTS ================= */
.news-hero-small-card:hover h4,
.news-hero-latest-item:hover h4 {
  color: #1687eb;
}

.news-hero-latest-btn::after {
  content: "";
  position: absolute;
  top: 49%;
  right: unset;
  border-style: solid;
  border-width: 5.5px 5.5px 0 5.5px;
  border-color: #000 transparent transparent transparent;
  transition: transform 0.3s ease;
  transform: translateY(-50%) rotate(270deg);
}

.news-hero-latest-btn {
  position: relative;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .news-hero-container {
    grid-template-columns: 1fr;
  }

  .news-hero-bottom-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .news-hero-main-content {
    position: unset;
    background: white;
    color: black;
    padding: 0 15px;
  }

  .news-hero-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .news-hero-bottom-grid {
    padding-inline: 15px;
    gap: 0px;
  }

  .news-hero-latest-wrapper-inner {
    padding-inline: 15px;
  }

  .news-hero-bottom-grid {
    grid-template-columns: 1fr;
  }

  .news-hero-wrapper .news-hero-small-card-inner {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #e4e4e4;
  }

  .show-img {
    max-width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .news-hero-small-card h3 {  
  -webkit-line-clamp: 2; 
}

}

@media (max-width: 576px) {
  .news-hero-bottom-grid {
    grid-template-columns: 1fr;
  }

  .news-hero-main-content h2 {
    font-size: 18px;
  }

  .news-hero-latest-item {
    grid-template-columns: 20px 70px 1fr;
  }

  .news-hero-latest-item img {
    width: 70px;
    height: 70px;
  }
  .news-hero-latest-media img {
    width: 70px;
    height: 70px;
  }
}

/* Category Wise Section Start */
/* ===============================
   BOLLYWOOD SECTION
================================ */
.bollywood-main-inner {
  background-color: #fff;
}

.bollywood-main-inner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
}

/* Heading */
.bollywood-main-inner__heading {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 24px;
  color: black;
}

/* Grid */
.bollywood-main-inner__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
}

/* ===== Featured Post ===== */
.bollywood-main-inner__featured img {
  width: 100%;
  display: block;
  margin-bottom: 16px;
  border-radius: 5px;
}

.bollywood-main-inner__featured h3 {
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 600;
  color: black;
}

.bollywood-main-inner__featured p {
  color: black;
  font-size: 18px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bollywood-main-inner__author {
  font-size: 14px;
  letter-spacing: 1px;
  color: #6b7280;
  margin: 0;
  margin-top: 5px;
  display: inline-block;
  text-transform: uppercase;
}

/* ===== Right List ===== */
.bollywood-main-inner__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-left: 1px solid #e5e7eb;
  padding-left: 24px;
}

.bollywood-main-inner__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bollywood-main-inner__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
}
.image-inner {
  max-width: 220px;
  width: 100%;
}
.bollywood-main-inner__item-text h4 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
  margin: 0;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bollywood-main-inner__item-text span {
  font-size: 14px;
  letter-spacing: 1px;
  color: #6b7280;
  text-transform: uppercase;
}

/* Explore More */
.bollywood-main-inner__more {
  margin-top: 32px;
  /* padding: 14px;
  background-color: #e5e5e5;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600; */
  cursor: pointer;
}
.bollywood-main-inner a {
  text-decoration: none;
  color: black;
}
.bollywood-main-inner__featured:hover h3,
.bollywood-main-inner__item:hover h4 {
  color: #1687eb;
}
.bollywood-main-inner__container:nth-child(even)
  .bollywood-main-inner__grid
  .bollywood-main-inner__featured {
  order: 2;
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .bollywood-main-inner__grid {
    grid-template-columns: 1fr;
  }
  .bollywood-main-inner__item {
    justify-content: space-between;
  }

  .bollywood-main-inner__list {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
  }
  .bollywood-main-inner__container:nth-child(even)
    .bollywood-main-inner__grid
    .bollywood-main-inner__featured {
    order: unset;
  }
}

@media (max-width: 576px) {
  .bollywood-main-inner__item {
    flex-direction: column;
  }

  .image-inner {
    max-width: 100%;
  }

  .bollywood-main-inner__item img {
    width: 100%;
    height: auto;
  }
}

/* Category Wise Section End   */

/* Home Page Section CSS End   */

/* Inner Page Start */
/* ===============================
   BLOG INNER PAGE
================================ */
.new-inner-blog-main {
  background: #fff;
  padding: 0 20px;
}

.new-inner-blog-main__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0px 0px;
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 40px;
}

/* Breadcrumb */
.new-inner-blog-main__breadcrumb {
  font-size: 18px;
  color: black;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Tags */
.new-inner-blog-main__tags span {
  font-size: 0.7rem;
  background: #1687eb;
  color: #fff;
  padding: 4px 8px;
  margin-right: 6px;
}

/* Title */
.new-inner-blog-main__title,
.new-inner-blog-main__title_inner {
  font-size: 1.9rem;
  line-height: 1.4;
  margin: 16px 0;
  font-weight: 600;
}

/* Excerpt */
.new-inner-blog-main__excerpt {
  font-size: 18px;
  color: #374151;
  margin-bottom: 16px;
}

/* Meta */
.new-inner-blog-main__meta {
  font-size: 18px;
  color: #6b7280;
  display: flex;
  gap: 16px;
}

/* Image */
.new-inner-blog-main__image img {
  width: 100%;
  margin-bottom: 6px;
}

.new-inner-blog-main__image figcaption {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 30px;
}

/* Content */
.new-inner-blog-main__content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 500;
}

.new-inner-blog-main__disclaimer {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Next story */
.new-inner-blog-main__next {
  margin-top: 32px;
  padding-top: 20px;
}

.new-inner-blog-main__next span {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 500;
}

/* Sidebar */
.new-inner-blog-main__sidebar-title {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.new-inner-blog-main__sidebar-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding: 0 0 18px;
  border-bottom: 1px dashed #ccc;
}

.new-inner-blog-main__sidebar-item img {
  width: 100px;
  height: 70px;
  object-fit: cover;
}

.new-inner-blog-main__sidebar-item span {
  font-size: 14px;
  color: #1687eb;
}

.new-inner-blog-main__sidebar-item p {
  font-size: 18px;
}
.new-inner-blog-main__prev a {
  font-size: 18px;
  color: #1687eb;
}

.new-inner-blog-main__next p {
  font-size: 18px;
}

/* Sticky Sidebar */
.new-inner-blog-main__right {
  position: sticky;
  top: 150px;
  align-self: start;
}

/* Trending Scroll */
.new-inner-blog-main__sidebar-scroll {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

.new-inner-blog-main__sidebar-scroll::-webkit-scrollbar {
  width: 4px;
}

.new-inner-blog-main__sidebar-scroll::-webkit-scrollbar-thumb {
  background: #1687eb;
}

/* Share Buttons */
.new-inner-blog-main__share {
  display: flex;
  gap: 10px;
  margin: 16px 0 24px;
}

.new-inner-blog-main__share button {
  font-size: 0.7rem;
  padding: 6px 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
}

.new-inner-blog-main__share button:hover {
  background: #111;
  color: #fff;
}

/* Tags */
.new-inner-blog-main__tags span {
  display: inline-block;
  font-size: 0.7rem;
  background: #1687eb;
  color: #fff;
  padding: 4px 8px;
  margin: 0 6px 6px 0;
}

.content-img {
  width: 60px;
  height: 60px;
}

.content-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.new-inner-blog-main__meta-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  margin-bottom: 20px;
}
.social-icon-shere {
  max-width: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.background-section {
  background-image: repeating-linear-gradient(
    90deg,
    #000,
    #000 10px,
    transparent 0,
    transparent 12px
  );
  color: #fff;
  padding: 0.5px;
  margin: 20px 0;
  position: relative;
}
.abs-text {
  position: absolute;
  background: #fefefe;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.9px;
  color: #0c0c0f;
  padding: 0 10px;
  margin: 2px 0 0;
  width: fit-content;
}

.new-inner-blog-main__sidebar-item:hover p {
  color: #1687eb;
}

.new-inner-blog-main__sidebar-item:hover span {
  color: black;
}
.new-inner-blog-main__sidebar-scroll a {
  text-decoration: none;
  color: black;
}
/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .new-inner-blog-main__container {
    grid-template-columns: 1fr;
  }
  .new-inner-blog-main__right {
    position: static;
  }
}

@media (max-width: 576px) {
  .new-inner-blog-main__title,
  .new-inner-blog-main__title_inner {
    font-size: 1.4rem;
  }

  .new-inner-blog-main__sidebar-item {
    align-items: flex-start;
  }
  .new-inner-blog-main__meta-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .social-icon-shere {
    max-width: 120px;
  }
}

/* Inner Page End */

/* Blog News Main Page */
.new-blog-trending-main {
  padding: 30px 16px;
}

.new-blog-trending-main__container {
  max-width: 1200px;
  margin: 0 auto;
}

.new-blog-trending-main__title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Layout */
.new-blog-trending-main__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

/* Featured */
.new-blog-trending-main__featured {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.new-blog-trending-main__featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.new-blog-trending-main__featured a {
  color: #fff;
  display: block;
  height: 100%;
  position: relative;
}
.new-blog-trending-main__featured a:hover {
  color: white;
}
.new-blog-trending-main__featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  z-index: 1;
}

.new-blog-trending-main__featured-content {
  /* position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2; */

  position: absolute;
  left: 0px;
  right: 16px;
  z-index: 2;
  height: 100%;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-left: 15px;
  padding-bottom: 15px;
}
.new-inner-blog-main__title_inner a {
  color: #1687eb;
}
.new-blog-trending-main__tag {
  display: inline-block;
  background: #1687eb;
  padding: 4px 8px;
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.new-blog-trending-main__featured h3 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}

.new-blog-trending-main__featured:hover img {
  transform: scale(1.05);
}

/* Right list */
.new-blog-trending-main__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.new-blog-trending-main__card a {
  text-decoration: none;
  color: #111;
}

.new-blog-trending-main__card img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 6px;
  transition: transform 0.4s ease;
}

.new-blog-trending-main__card h4 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 14px;
}

.new-blog-trending-main__card p.card--time--style-s1,
.new-blog-trending-main__featured p.card--time--style-s1,
.news-blog-recent__item p.card--time--style-s1 {
  margin: 0;
  font-size: 18px;
}

.new-blog-trending-main__card:hover img {
  transform: scale(1.05);
}

.new-blog-trending-main__card:hover h4 {
  color: #1687eb;
}
.new-blog-trending-main__featured-img {
  height: 100%;
}
/* Responsive */
@media (max-width: 992px) {
  .new-blog-trending-main__layout {
    grid-template-columns: 1fr;
  }

  .new-blog-trending-main__list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (max-width: 768px) {
  .new-blog-trending-main__featured h3 {
    color: black;
  }

  .new-blog-trending-main__featured p.card--time--style-s1 {
    color: black;
  }

  .new-blog-trending-main__featured::after {
    display: none;
  }

  .new-blog-trending-main__featured {
    overflow: unset;
    padding: 10px;
  }

  .new-blog-trending-main__featured-img {
    height: auto;
  }

  .new-blog-trending-main__featured-content {
    position: unset;
    height: auto;
    width: auto;
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .new-blog-trending-main__list {
    display: flex;
    overflow-x: auto;
    gap: 12px;
  }

  .new-blog-trending-main__card {
    min-width: 220px;
  }
}

/* Blog News Main Page */

.news-blog-recent {
  padding: 30px 16px;
}

.news-blog-recent__container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid */
.news-blog-recent__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

/* Item */
.news-blog-recent__item a {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: #111;
  align-items: flex-start;
  transition: transform 0.25s ease;
}

.news-blog-recent__item:hover {
  transform: translateY(-2px);
}

/* Image */
.news-blog-recent__thumb {
  width: 100px;
  height: 85px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

.news-blog-recent__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-blog-recent__item:hover img {
  transform: scale(1.08);
}

/* Title */
.news-blog-recent__title {
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-blog-recent__item:hover .news-blog-recent__title {
  color: #1687eb;
}
/* Item box stronger */
.news-blog-recent__item,
.new-blog-trending-main__card {
  background: #fff;
  border-radius: 6px;
  padding: 14px 12px;
  border: 1px solid #e5e7eb;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Hover effect */
.news-blog-recent__item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Anchor inside */
.news-blog-recent__item a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* Title slightly stronger */
.news-blog-recent__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 10px;
}

/* Tablet */
@media (max-width: 992px) {
  .news-blog-recent__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .new-blog-trending-main {
    padding: 0px 16px;
  }

  .new-inner-blog-main__container {
    padding-bottom: 10px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .news-blog-recent__grid {
    grid-template-columns: 1fr;
  }

  .news-blog-recent__thumb {
    width: 110px;
    height: 80px;
  }
}

/* About Us Page */
.news-about-main {
  padding: 40px 16px;
  background: #f5f3f2;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

.news-about-main__container {
  max-width: 1200px;
  margin: 0 auto;
}

.news-about-main__title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.news-about-main__card {
  background: #fff;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.news-about-main h2 {
  font-size: 24px;
  margin: 24px 0 10px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: #000;
}

.news-about-main p {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* CEO block */
.news-about-main__ceo {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
}

.news-about-main__ceo-img img {
  width: 310px;
  border-radius: 6px;
}

.news-about-main__ceo-content h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.news-about-main__ceo-content h4 {
  font-size: 18px;
  color: #1687eb;
  margin: 0;
  margin-bottom: 10px;
}

/* Contact */
.news-about-main__contact p {
  margin: 6px 0;
}

/* Social */
.news-about-main__social {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.news-about-main__social a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #111;
  border-bottom: 1px solid transparent;
}

.news-about-main__social a:hover {
  border-color: #1687eb;
  color: #1687eb;
}

/* Responsive */
@media (max-width: 768px) {
  .news-about-main__ceo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .news-about-main__ceo-img img {
    width: 120px;
  }
}

/* About Us Page */

/* ============================ */
:root {
  --primary: #1687EB; /* Netflix/YouTube red – energetic feel */
  --primary-dark: #b20710;
  --text: #222;
  --text-light: #555;
  --bg: #f8f9fa;
  --card-bg: #ffffff;
  --border: #e0e0e0;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* Main Container */
.all-news-section {
  padding: 2.5rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  width: 100%;
}

/* Heading */
.all-news-heading {
  font-size: 2.5rem;
  font-weight: 500;
  color: #1687EB;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
  position: relative;
}

.all-news-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--primary);
  display: block;
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* News Grid – Responsive */
.all-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 640px) {
  .all-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .all-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual News Card */
.news-item {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.news-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Image */
.news-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Content inside card */
.news-item h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 1.2rem 1.2rem 0.6rem;
  line-height: 1.3;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item p {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0 1.2rem 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item span {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin: 0 1.2rem 1.2rem;
  font-weight: 500;
}

/* About Us, Newsletter, Useful Links sections */
.about-section,
.newsletter-section,
.useful-links-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.about-section h2,
.newsletter-section h2,
.useful-links-section h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.about-section h2::after,
.newsletter-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
}

/* Newsletter form styling (basic – improve as per your form) */
.newsletter-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.newsletter-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-section input[type="email"] {
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-section button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-section button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Pagination – attractive */
.pagination {
  text-align: center;
  margin: 3rem 0 1rem;
  font-size: 1.1rem;
}

.pagination a,
.pagination span {
  padding: 0.6rem 1.2rem;
  margin: 0 0.4rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  background: #f0f0f0;
  transition: var(--transition);
}

.pagination .current {
  background: var(--primary);
  color: white;
  font-weight: bold;
}

.pagination a:hover {
  background: var(--primary);
  color: white;
}

/* FEATURE POSTS – when no posts */
.no-posts {
  text-align: center;
  font-size: 1.3rem;
  color: #777;
  padding: 3rem 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px dashed #ccc;
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .all-news-heading {
    font-size: 2rem;
  }

  .news-item img {
    height: 180px;
  }

  .news-item h3 {
    font-size: 1.2rem;
  }
}

.news-header button:focus {
  background-color: transparent;
}

.new-inner-blog-main__breadcrumb a {
  color: #1687eb;
}
.current-menu-item a::after {
  background-color: #1687eb;
  content: "";
  width: 100%;
}
/* Contact Us */

h1.entry-title {
  padding-top: 60px;
  margin-bottom: 20px;
}

p.contact-us-pera {
  font-size: 18px;
  font-weight: 500;
}

.news-input input[type="text"] {
  width: 100%;
  max-width: 100%;
}

.news-contact-inner .wpforms-container .wpforms-first.news-input,
.wpforms-field-container .news-email {
  width: 50%;
}

.news-contact-inner .wpforms-container .wpforms-first.news-input label,
.wpforms-container .news-email label,
.wpforms-field-container .news-text-area label {
  font-weight: 500;
  font-size: 16px;
}

.news-contact-inner .wpforms-field-container .news-email input {
  width: 100%;
  max-width: 100%;
}

.news-contact-inner .wpforms-container-full button[type="submit"] {
  font-size: 18px;
  font-weight: 500;
}

.contact-privacy {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 50px;
}

.email-details {
  max-width: 400px;
  padding: 29px 20px;
  border-radius: 5px;
  background-color: #066aab14;
  position: absolute;
  top: 175px;
  right: 210px;
}

.page-content {
  position: relative;
}

.email-inner p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.email-inner a,
.contact-privacy a {
  color: #066aab;
  font-weight: 600;
  font-size: 18px;
  margin-top: 5px;
  display: inline-block;
}

@media (max-width: 1199px) {
  .email-details {
    right: 0;
    top: 200px;
  }
}

@media (max-width: 991px) {
  .news-contact-main-email .email-details {
    position: unset;
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }

  .news-contact-inner .wpforms-container .wpforms-first.news-input,
  .wpforms-field-container .news-email {
    width: 100%;
  }
  .page-header .entry-title {
    padding-left: 0 !important;
  }
}

.news-content a,
.new-inner-blog-main__content p a {
  color: #1687eb;
}

/* Table Design */
/* ===== WordPress Table Base ===== */
.wp-block-table {
  width: 100%;
  overflow-x: auto;
}

/* Table */
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

/* TH Styling */
.wp-block-table thead th {
  background-color: #0b1e46;
  color: #fff;
  text-align: center !important;
  padding: 14px 12px;
  font-size: 16px;
  border: 1px solid #000;
  white-space: normal;
}

/* TD Styling */
.wp-block-table tbody td {
  text-align: center !important;
  padding: 14px 12px;
  font-size: 15px;
  color: #000;
  border: 1px solid #000;
  white-space: normal;
  word-break: break-word;
}

/* Odd / Even Row Background */
.wp-block-table tbody tr:nth-child(odd) {
  background-color: #f2f7fd;
}

.wp-block-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Hover Effect */
.wp-block-table tbody tr:hover {
  background-color: #cae0f4;
  transition: background-color 0.3s ease;
}

/* Responsive text size */
@media (max-width: 768px) {
  .wp-block-table thead th,
  .wp-block-table tbody td {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .wp-block-table thead th,
  .wp-block-table tbody td {
    font-size: 13px;
    padding: 8px;
  }
}

ul.wp-block-list,
ol.wp-block-list {
  padding-left: 20px;
}

ul.wp-block-list li,
ol.wp-block-list li {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
  padding-left: 10px;
}

.new-inner-blog-main__content h2 {
  color: #000;
  font-size: 1.9rem;
  line-height: 1.4;
  margin: 16px 0;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.new-inner-blog-main__content h2 strong {
  font-weight: 500;
}
/* Table Design */

.news-footer__social {
    margin-top: 20px;
    display: flex;
    gap: 18px;           /* icons के बीच की दूरी */
    margin-left: -9px;
}

.social-link {
    display: inline-block;
    width: 30px;         /* size adjust कर सकते हो */
    height: 30px;
    transition: all 0.25s ease;
}

.social-link svg {
    width: 100%;
    height: 100%;
    fill: #fff;          /* default color */
}

.social-link:hover svg {
    transform: translateY(-3px) scale(1.1);
}

/* हर icon का अपना hover color */
.social-link.fb:hover svg     { fill: #1877f2; }
.social-link.pin:hover svg    { fill: #e60023; }
.social-link.x:hover svg      { fill: #000000; }
.social-link.li:hover svg     { fill: #0a66c2; }
.social-link.ig:hover svg     { fill: #e1306c; }  /* Instagram gradient जैसा pink */






/* =====================================
   Author Box - Single Post Bottom
===================================== */
.author-box {
    display: flex;
    align-items: flex-start;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px 20px;
    margin: 40px 0 60px;
    gap: 20px;
}

.author-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.author-info {
    flex: 1;
}

.author-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-name {
    font-size: 1.35rem;
    margin: 0 0 10px;
    color: #222;
}

.author-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 16px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f2f5;
    transition: all 0.25s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #555;
}

.social-link.linkedin:hover {
    background: #0a66c2;
    transform: translateY(-2px);
}

.social-link.linkedin:hover svg {
    fill: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 15px;
    }
    
    .author-avatar img {
        width: 90px;
        height: 90px;
        margin-bottom: 12px;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .author-name {
        font-size: 1.25rem;
    }
    
    .author-bio {
        font-size: 0.95rem;
    }
}

.rank-math-block {
    padding: 20px;
    background-color: #1f85d917;
    border-radius: 15px;
}

.rank-math-question {
    font-size: 22px;
    font-weight: 600;
}