:root {
    --primary-color: #03542f;
    --primary-light: #04884d;
    --primary-dark: #02361f;
    --primary-hover: #003a20;
    --link-color: #159241;
    --secondry-color: #159241;
    --secondry-light: rgba(158, 219, 179, 0.256);
    --secondry-dark: #159241;
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: #222;
}

/* Top Bar (Date + Breaking News) */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 40px;
  font-size: 15px;
  background-color: #fff;
  border-bottom: 1px solid var(--primary-color);
}

.section-titlee {
  color: var(--primary-color);
  font-size: 2rem;
  margin: 0rem 0rem 1rem 0rem;
}

.breaking-news {
  /* font-weight: 600; */
  color: #000;
}

.breaking-news strong {
  color: #000;
}

/* Header Section */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  flex-wrap: wrap;
  background-color: #fff;
}

.social-icons i {
  font-size: 18px;
  color: #444;
  margin-right: 18px;
  margin-top: 5px;
  margin-top: 5px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.social-icons {
  padding-right: 100px;
}
.social-icons i:hover {
  color: var(--primary-color);
}

.logo-nd-srch-cont {
  display: flex;
  align-items: center;
  width: 55%;
  justify-content: space-between;
}

.logo img {
  height: 90px;
  width: 300px;
}

.search-bar {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.search-bar input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border: 2px solid #a1aebf;
  border-radius: 20px;
  font-size: 15px;
  color: #333;
}

.search-bar i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
}

/* Navigation Bar */
.navbar {
  background-color: #fefaf2;
  padding: 0 40px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  /* padding: 12px 0; */
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #2b2b2b;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.nav-links a.active,
.nav-links a:hover {
  background-color: var(--link-color);
  color: #fff;
}


.responsive-menu {
  display: none;
}

/* Dropdowns */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  /* top: 38px; */
  left: 0;
  background-color: #fff;
  /* border: 1px solid #ddd; */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: none;
  flex-direction: column;
  min-width: 160px;
  z-index: 1000;
}

.dropdown-menu a {
  background-color: #ffffff;
  padding: 10px 14px;
  font-size: 15px;
  transition: background-color 0.2s;
  min-width: 160px !important;
}

.dropdown-menu a:hover {
  background-color: var(--primary-color);
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown i {
  margin-left: 4px;
  font-size: 12px;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.dropdown-menu li {
  margin: 10px 0px;
  /* width: 100%; */
}

.dropdown-menu li :hover {
  background-color: #ffffff;
  /* width: 100%; */
}

/* Responsive Styles */
@media (max-width: 992px) {
  .right-section {
    display: none;
  }
  .main-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .responsive-menu {
    display: block;
  }

  .logo img {
    height: 40px;
  }

  .main-header {
    padding: 16px 20px;
  }

  .logo-nd-srch-cont {
    width: 100%;
  }

  .navbar {
    padding: 0 0 !important;
  }

  .top-bar {
    display: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 12px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .dropdown-menu {
    background-color: transparent;
  }

  .dropdown-menu a {
    background-color: transparent;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: -95px;
  }

  .left-section {
    width: 100% !important;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 20px;
  }
  .headlines-section {
    margin: 40px 20px !important;
  }

  .social-icons i {
    font-size: 1rem !important;
  }
  .prev {
    left: 0px !important;
  }
  .next {
    right: 0px !important;
  }
}

/* styling of body container starts here  */

body,
html {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden; /* Prevent body from scrolling */
  font-family: sans-serif;
}

.container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

.left-section,
.right-section {
  overflow-y: auto;
  height: 100%;
}

#rightSectionNew{
  display: None;
}

.left-section {
  width: 80%;
  background-color: #f4f4f4;
  /* padding: 20px; */
  border-right: 1px solid #ccc;
}

.right-section {
  width: 20%;
  background-color: #fefaf4;
  /* padding: 20px; */
}

/* styling of body container ends here  */

/* Short takes section styling starts here */

.short-takes-container {
  display: flex;
  gap: 40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  flex-wrap: wrap;
}

.carousel-column {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.carousel {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  height: 250px;
}

.carousel-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.carousel-slide.active {
  display: block;
  animation: fade 0.5s ease-in-out;
}

.short-item a :hover {
  color: var(--primary-color);
  text-decoration: underline;
}

@keyframes fade {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.slide-heading {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  /* border-radius: 50%; */
}

.nav:hover {
  /* background-color: rgba(228, 228, 228, 0.5); */
  color: var(--primary-color);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

.cta-text {
  margin-top: 20px;
  width: 100%;
}

.cta-text p {
  margin: 10px 0;
  font-size: 1rem;
  line-height: 1.4;
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.cta-bold {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: bold;
}

.subscribe-btn {
  /* margin-top: 12px; */
  padding: 12px 30px;
  font-size: 1rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 1px;
  width: 100%;
}

/* RIGHT COLUMN */
.short-takes-column {
  flex: 1 1 30%;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.short-item {
  margin-bottom: 20px;
}

.short-item h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: bold;
}

.short-item p {
  margin: 0;
  font-size: 1rem;
  color: #666;
  line-height: 1.2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .short-takes-container {
    flex-direction: column;
    padding: 20px;
  }

  #rightSectionNew{
    display: block;
    width: 100%;
    overflow-y:unset;
  }

  .carousel-column,
  .short-takes-column {
    flex: 1 1 100%;
  }

  .section-title {
    text-align: center;
  }
}

/* second grid section styling starts here  */

.headlines-section {
  /* max-width: 1200px; */
  margin: 40px 40px;
  /* padding: 0 20px; */
}

.section-title {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.headlines-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.main-article {
  flex: 1 1 65%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* height: 480px; Fixed height */
  display: flex;
  flex-direction: column;
}

.main-article :hover {
  background-color: #fffcf3;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.main-article :hover h3 {
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.main-article img {
  width: 100%;
  height: 350px; /* Fixed image height */
  object-fit: cover;
}

.main-article .content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.main-article h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.main-article .meta {
  font-size: 0.9rem;
  color: #777;
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}

.main-article p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.note-float-left{
  margin-right: 15px;
}

.social-icons i {
  font-size: 1.2rem;
  margin-right: 10px;
  cursor: pointer;
  color: #333;
}

.category-label {
  background: var(--primary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 10px;
  width: fit-content;
}

.side-articles {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-articles :hover {
  cursor: pointer;
  background-color: #fffcf3;
  transition: background-color 0.3s ease;
}

.side-articles :hover h4 {
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.side-articles .side-article {
  /* margin-bottom: 20px; */
  display: flex;
}

.side-article {
  background: white;
  display: flex;
  /* gap: 14px; */
  border-radius: 20px;
  /* padding: 12px; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-items: flex-start;
  height: 140px; /* Fixed card height */
  overflow: hidden;
}

.side-article img {
  width: 100px;
  height: 100%;
  /* border-radius: 8px; */
  object-fit: cover;
}

.side-article .text {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 14px;
}

.side-article .text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.2em;
  max-height: 2.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.side-article .meta {
  font-size: 0.8rem;
  color: #777;
  display: flex;
  gap: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .headlines-grid {
    flex-direction: column-reverse;
  }

  .main-article,
  .side-articles {
    flex: 1 1 100%;
  }
}

.inverted {
  padding-top: 24px;
}
/* second grid section styling ends here  */

/* Video section starts here  */

.force-video {
  background-color: #1e1e1e;
  padding: 40px 20px;
  /* max-width: 1200px; */
  margin: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.header h1 {
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.logo .e {
  font-size: 36px;
  color: #ffffff;
  background: var(--primary-color);
  padding: 0 4px;
  margin-left: 2px;
}

.view-more {
    color: var(--primary-color) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.videos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.video-card {
  width: 100%;
  max-width: 340px;
  background-color: transparent;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.thumbnail {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-card:hover .thumbnail img {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.85);
  mask: url("https://img.icons8.com/ios-filled/50/000000/play-button-circled--v1.png")
    no-repeat center;
  mask-size: contain;
  -webkit-mask: url("https://img.icons8.com/ios-filled/50/000000/play-button-circled--v1.png")
    no-repeat center;
  -webkit-mask-size: contain;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

.video-card:hover .play-btn {
  background-color: rgba(255, 255, 255, 1);
}

.video-card p {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
}

@media (max-width: 768px) {
  .videos {
    flex-direction: column;
    align-items: center;
  }

  .header {
    flex-direction: row;
    align-items: center;
    /* align-items: flex-start; */
    gap: 10px;
  }
}

/* styling for columns starts here  */

.containerr {
  max-width: 1200px;
  margin: auto;
  background-color: #f9f6f1;
  text-align: center;
  padding: 20px 10px;
}

.title {
  color: var(--primary-color);
  font-size: 2rem;
  margin: 2rem 0rem;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.content a {
  text-decoration: none;
  color: #222222;
}

.cards a {
  color: #222222;
  text-decoration: none;
}

.card {
  width: 160px;
  padding: 1rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card img {
  width: 100%;
  border-radius: 12px;
  height: auto;
}

.card p {
  margin-top: 0.8rem;
  font-weight: bold;
  font-size: 0.95rem;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.highlight {
  color: var(--primary-color);
}

.hidden {
  display: none;
}

#toggleBtn {
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border: none;
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 60px;
}

#toggleBtn:hover {
  background-color: var(--primary-color);
}

/* support section styling starts here  */

.support-section {
  padding: 3rem 1.5rem;
  text-align: center;
  background-color: #f9f6f1;
}

.support-content h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.support-content p {
  font-size: 1.1rem;
  margin: 0.5rem auto;
  color: #222;
}

#supportBtn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Georgia", serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 1rem 0;
}

#DonateNow {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Georgia", serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin: 1rem 0;
}



#supportBtn:hover {
  background-color: var(--primary-color);
}

.impact-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin-top: 15px !important;
  margin: 1rem auto;
  font-weight: 500;
}

.strike {
  text-decoration: line-through;
  font-weight: bold;
}

.note {
  font-size: 0.95rem;
  color: #777;
  margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
  .support-content h2 {
    font-size: 1.3rem;
  }
  .support-content p,
  .impact-text {
    font-size: 1rem;
  }

  #supportBtn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Advertisement styling starts here  */
.advertisement-section {
  background-color: #000;
  color: #fff;
}

.advertisement-text {
  /* font-size: 2.4rem; */
  font-weight: 900;
  padding: 80px 0px;
  text-align: center;
}
/* Advertisement styling ends here  */

/* Advertisement styling starts here  */
.advertisement-section-b {
  background-color: #000;
  border-radius: 10px;
  color: #fff;
}

.advertisement-text-b {
  font-weight: 900;
  padding: 35px 5px;
  text-align: center;
}


.advertisement-section-side-a {
  background-color: #000;
  margin: 20px;
  border-radius: 15px;
  padding: 10px;
  color: #fff;
}

.advertisement-text-side-a {
  font-weight: 900;
  padding: 80px 0px;
  text-align: center;
}

.advertisement-section-side-b {
  background-color: #000;
  margin: 20px;
  border-radius: 15px;
  padding: 10px;
  color: #fff;
}

.advertisement-text-side-b {
  font-weight: 900;
  padding: 80px 0px;
  text-align: center;
}

/* Advertisement styling ends here  */

.logo-for-vid {
  color: #fff;
  font-size: 1rem;
}

.logo-for-vid img {
  width: 350px;
}

/* Footer styling starts here  */
body {
  margin: 0;
  font-family: "Georgia", serif;
}

.footer {
  background-color: var(--secondry-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: rgb(0, 0, 0) !important;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  flex: 1 1 350px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-left h3 {
  color: #000000;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-left p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #000000;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  margin-bottom: 0.7rem;
  color: rgb(0, 0, 0);
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-socials {
  margin-top: 1.5rem;
  font-size: 1.5rem;
}

.footer-socials i {
  margin-right: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials i {
  transform: scale(1.1);
  color: #000000;
}


.footer-socials a {
  color: rgb(255, 255, 255);
}
.footer-socials a :hover {
  color: var(--primary-color);;
}

.copyright {
  font-size: 0.85rem;
  margin-top: 2rem;
  background-color: var(--primary-color);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .footer-links ul {
    margin-bottom: 1rem;
  }

  .footer-socials {
    font-size: 1.3rem;
  }
}

/* Footer styling ends here  */

/* sidebar styling starts here  */
.sidebar {
  font-family: "Georgia", serif;
  background-color: #fefaf4;
  color: #000;
  /* padding: 20px; */
  /* width: 280px; */
  /* height: 2937px; */
}

.red {
  color: var(--primary-color);
}
.intro-box {
  background: var(--primary-color);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
  position: relative;
  margin-right: 20px;
  margin-left: 20px;
  margin-top: 20px;
}

.advertise-btn {
  margin-top: 16px;
  background: #fff;
  color: var(--primary-color);
  font-weight: bold;
  border: none;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-family: "Georgia", serif;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
}

.section-title {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 2rem;
  text-align: start;
  margin: 24px 0px;
}

.section-title-2 {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 16px;
  text-align: start;
  margin: 24px 0px 12px 20px;
}

.cover-box img,
.book-box img {
  width: 100%;
  border-radius: 16px;
  padding: 6px 20px;
}

.cover-caption {
  font-size: 13px;
  text-align: left;
  font-style: italic;
  color: #444;
  padding-left: 20px;
}

.archives-list {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  line-height: 1.7;
}

.archives-list li {
  margin-bottom: 4px;
  margin-left: 20px;
}

.archives-list a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.archives-list a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.book-box {
  margin-bottom: 24px;
}

.subscribe-box {
  background: var(--primary-color);
  /* border-radius: 8px; */
  color: #fff;
  padding: 20px;
  font-size: 15px;
  line-height: 1.5;
  height: 400px;
}

.subscribe-btn-ftr {
  margin-top: 50px;
  background: #fff;
  color: var(--primary-color);
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
}

/* sidebar styling ends here  */

/* new navbar styling  */
.navbar {
  background-color: var(--secondry-light);
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
  cursor: pointer;
  color: #333;
  font-weight: 500;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 1.5rem;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 100;
}

.dropdown-content a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  background-color: white;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: var(--primary-color);
  color: white !important;
  border-radius: 0;
}

.dropdown-content a:first-child {
  /* background-color: var(--primary-color); */
  /* color: var(--primary-color); */
  font-weight: bold;
  font-size: 14px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Blog list css */


.main-container-of-list {
  margin-top: 40px;
}

.content a :hover {
  color: var(--primary-color);
}

.book-grid {
  display: grid;
  margin: 20px;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* space between images */
}

.book-box img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
  border-radius: 4px;
}
