* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --black: #0f0300;
  --light-black: #2d2d2d;
  --primary-color: #74fa8c;
  /* --accent-green: #10b981; */

  --accent-green: #0a7c59;

  /* --accent-green: #00a152; */
  /* --accent-green: #1B5E20; */
  /* --accent-green: #00c853; */
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", Arial, sans-serif;
  /* font-family: "Inter", sans-serif; */
  font-style: normal;
  font-weight: 400;
  line-height: 1.55;
  background-color: var(--black);
  color: var(--white);
}

.light-mode {
  background-color: var(--white);
  color: var(--black);
}

/* Theme toggle button */
.theme-toggle {
  cursor: pointer;
  font-size: 24px;
  padding: 10px;
}

.light-mode .theme-toggle i {
  color: var(--black);
  /* Change icon color in light mode */
}

.grid-container {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1200px !important;
  padding: 20px;
  margin: auto;
}

h1 {
  font-size: 2.5rem;
}

h3 {
  font-size: 27px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: var(--white);
}

.light-mode a {
  color: var(--black);
}

.white {
  color: var(--white);
}

.light-mode .white {
  color: var(--black);
}

.black {
  color: var(--black);
}

.light-mode .black {
  color: var(--white);
}

i {
  color: var(--white);
}

.light-mode i {
  color: var(--black);
}

#simplehai,
#viveklaw,
#team {
  scroll-margin-top: 60px;
}

@media (max-width: 600px) {
  #simplehai,
  #viveklaw,
  #team {
    scroll-margin-top: 100px;
  }
}

/* ------- Card ----------- */

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background-color: var(--white);
  /* background-color: #f7f3f3; */
  /* margin: 10px auto; */
  /* width: 400px;
    height: 610px; */
  border-radius: 15px;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
}

.recent-title {
  font-size: 30px;
}

.card .card-image {
  margin: 8px auto;
  width: 97%;
  /* height: 250px; */
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 16 / 9;
}

.card .card-image img {
  /* margin: 7px auto; */
  /* border-radius: 15px; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 20px 0;
}

.card-grid .card-body {
  padding: 20px;
  font-weight: bold;
  margin-top: 8px;
}

.card-grid .card-body:hover .title,
.card-grid .card-body:hover .title-1 {
  text-decoration: underline;
}

.card-grid .card-body .title {
  text-align: center;
  color: var(--black);
  margin-bottom: 12px;
}

.card-grid .card-body .title-1 {
  text-align: center;
  color: var(--black);
  line-height: 22px;
}

@media (max-width: 600px) {
  .card .card-image {
    height: auto;
  }
  .recent-title {
    font-size: 20px;
  }
}

/* @media screen and (min-width: 600px) and (max-width: 768px) {
  .card .card-image {
    height: 350px;
  }
} */

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  #podcast-section {
    margin: 0 30px;
  }
}

@media (max-width: 500px) {
  #podcast-section {
    margin: 0 8px;
  }
}

/* ----  Card end ----- */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown a {
  display: flex;
  align-items: center;
}

.dropdown i {
  margin-left: 5px;
  transition: transform 0.3s ease;
  /* color: var(--white); */
}

/* Rotate the icon on hover */
/* .dropdown:hover i {
  transform: rotate(180deg);
} */

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #2b2a2a;
  min-width: max-content;
  text-align: left;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.light-mode .dropdown-content {
  background-color: #f3f3f3;
}

.dropdown-content a {
  color: var(--black);
  padding: 12px 16px !important;
  text-decoration: none;
  display: block;
  font-size: 15px !important;
}

.dropdown-content a:hover {
  /* background-color: #3d3c3c; */
  background-color: var(--primary-color);
}

.light-mode .dropdown-content a:hover {
  /* background-color: #d5d5d5; */
  background-color: var(--primary-color);
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ========================= */

/* header.sticky{
  position: sticky;
  top: 0;
  z-index: 111;
  transition: background-color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
  background-color: var(--light-black);
  padding: 8px !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
} */

/*  -------- Scrolled navbar -------- */
#scrolled-navbar {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* padding: 20px 50px; */
  transition: background-color 0.5s ease, padding 0.3s ease;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Scrolled navbar default state (hidden) */
#scrolled-navbar {
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 14px 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
}

/* Show the scrolled navbar (after scrolling) */
#scrolled-navbar.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.light-mode #scrolled-navbar {
  background-color: var(--white);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  /* border-bottom: 1px solid #ccc; */
}

@media screen and (max-width: 768px) {
  #scrolled-navbar {
    display: none;
  }
  #navbar {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* -------- Scrolled navbar end---------- */

nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /* position: relative; */
  /* padding: 0 !important; */
}
.logo {
  width: 140px;
}

.logo img {
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 12px;
}

.nav-links li {
  margin: 0 4px;
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 15px;
  font-weight: bold;
  padding: 10px 6px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.light-mode .nav-links a {
  color: var(--black);
}

.nav-links a:hover {
  color: #28ff7a;
}

.light-mode .nav-links a:hover {
  color: var(--black);
}

/* .nav-link.active {
  border-bottom: 2px solid var(--accent-green);
}

.nav-link {
  border-bottom: 2px solid transparent;
} */

.nav-link {
  position: relative;
  /* display: inline-block;
  text-decoration: none;
  color: var(--white); 
  font-weight: bold;
  padding: 10px;
  text-transform: uppercase; */
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--accent-green);
  /* background-color: var(--primary-color); */
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* .nav-link.active,
.nav-link:hover {
  color: var(--accent-green) !important;
} */

/* .nav-link:hover {
  border-bottom: 2px solid var(--accent-green);
} */

/* ====== */

/* .navMenu {
  transform: translateX(0);
  z-index: 1;
  display: none;
} */

.navMenu {
  position: absolute;
  top: 95px;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  z-index: 1;
  display: none;
}

.light-mode .navMenu {
  background-color: var(--white) !important;
}

.navMenu .nav-mobile-ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
}

.navMenu li {
  list-style: none;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  color: var(--white);
  /* padding: 15px 0; */
}
.navMenu li a {
  padding-bottom: 6px;
}

.navMenu li .submenu-a {
  padding-bottom: 0 !important;
}
/* Styles for the hamburger menu icon */
#hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 10;
}

#hamburger div {
  width: 22px;
  height: 2px;
  background-color: var(--white);
  margin: 4px 0;
  transition: 0.5s;
}

#hamburger {
  display: none;
}

header {
  /* padding: 4px 20px !important; */
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  #hamburger {
    display: block;
    top: 35px;
  }

  .navMenu {
    display: block;
    /* Display set to block for mobile view */
  }

  .logo img {
    width: 120px;
  }

  .nav-active {
    transform: translateX(0);
    /* Slide-in effect */
  }

  header {
    padding: 4px 20px !important;
    background-color: var(--black);
    position: sticky;
    top: 0;
    z-index: 11;
  }

  .light-mode header {
    background-color: var(--white);
  }

  /* .navMenu {
    position: absolute;
    top: 105px;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: black;
    transform: translateY(-100%);
    transition: 1s ease-in-out;
    z-index: 1;
  } */

  /* .navMenu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navMenu li {
    color: white;
    padding: 15px 0;
  } */

  /* .nav-active {
    display: block;
    transform: translateY(0);
  } */

  .nav-links {
    display: none;
  }
}

#hamburger.toggle div {
  background-color: var(--white);
}

.light-mode #hamburger div {
  background-color: var(--black);
}

.toggle #bar1 {
  transform: rotate(-45deg) translate(-5px, 4px);
}

.toggle #bar2 {
  opacity: 0;
}

.toggle #bar3 {
  transform: rotate(45deg) translate(-5px, -4px);
}

.dropdown-link {
  color: var(--black);
  font-weight: 500;
  text-transform: uppercase;
}

.sub-menu-dropdown-content {
  /* max-height: 0;  */
  /* opacity: 0; */
  overflow: hidden;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-left: 100px;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.sub-menu-dropdown-content li {
  padding: 10px;
}

.sub-menu-dropdown-content a {
  color: var(--black);
  /* padding: 0 16px; */
  text-decoration: none;
  /* display: block; */
  font-size: 14px;
}

/* When the submenu is active (open) */
/* .sub-menu-dropdown-content.open {
  max-height: 200px; 
  opacity: 1;
} */

#about-section {
  margin-top: 50px;
}

.about-section {
  padding: 20px 40px;
  line-height: 32px;
  color: var(--white);
}

.light-mode .about-section {
  color: var(--black);
}

.about-section p {
  margin-bottom: 20px;
  line-height: 28px;
}

.about-section h3 {
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--accent-green);
  font-weight: 500;
}

.team-section {
  margin-top: 20px;
  padding: 20px 40px;
  line-height: 32px;
}

.team-section h3 {
  margin-bottom: 20px;
  font-size: 32px;
  color: var(--accent-green);
  font-weight: 500;
}

.team-section p {
  margin-bottom: 20px;
  line-height: 28px;
}

.team-section a {
  text-decoration: underline;
  /* color: #4d80d9; */
  color: #0056b3;
  cursor: pointer;
}

#viveklaw .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

#viveklaw .social-icon a {
  display: block;
  width: 37px !important;
  height: 37px !important;
  border: 1px solid var(--light-black);
  border-radius: 50%;
  transition: all 0.2s linear;
  cursor: pointer;
}

#viveklaw .social-icon a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#viveklaw .social-icon a:hover {
  background-color: var(--primary-color);
}

@media (max-width: 640px) {
  .about-section {
    padding: 0;
  }
  .team-section {
    padding: 0;
    margin-top: 30px;
  }
  #about-section {
    margin-top: 20px;
  }
}

/* ----- footer  start  ---- */

/* .footer-wrapper {
  background-color: #f2f8f1;
  background-color: #f4f7f9;
} */

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 3fr;
  gap: 30px;
  border-top: 1px solid var(--white);
  padding-top: 40px;
  /* padding: 30px; */
}

.light-mode .footer-grid {
  border-top: 1px solid var(--black);
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid var(--black);
  border-top: 1px solid rgba(1, 15, 28, 0.1);
}
.footer-bottom .copyright {
  text-align: center;
}

.footer_link {
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  color: var(--white);
}

.light-mode .footer_link {
  color: var(--black);
  transition: color 0.3s ease-in-out;
}

.light-mode .footer_link:hover {
  color: var(--accent-green);
  text-decoration: underline;
}

.footer-form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0 0;
}

.form-input.is-footer-input {
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.footer-form input {
  width: 50%;
  height: 44px;
  padding: 0.75rem;
  color: #1f2937;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
  color: var(--light-black);
}

.footer-form input:focus {
  outline: none;
  border-color: var(--accent-green);
}

.footer-form button {
  /* width: 22%; */
  height: 44px;
  padding: 0 20px;
  color: var(--light-black);
  background-color: var(--primary-color);
  border-radius: 0.5rem;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: none;
}

.button.is-small.is-footer-button {
  background-color: var(--white);
  color: var(--black);
  justify-content: center;
  align-items: center;
  /* padding-top: 0.75rem;
  padding-bottom: 0.75rem; */
  padding: 0.75rem;
  display: flex;
  border: 1px solid var(--black);
  cursor: pointer;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  gap: 16px;
  /* margin-bottom: 15px; */
}

.footer-social-icon a {
  width: 37px;
  height: 37px;
  border: 1px solid var(--light-black);
  /* border: 1px solid #d9dbde; */
  border-radius: 50%;
  transition: all 0.2s linear;
  background-color: var(--white);
}

.footer-social-icon a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.footer-social-icon a:hover {
  background-color: var(--primary-color);
}

.footer-grid .title {
  margin: 12px 0;
  line-height: 22px;
}

.footer-grid .newsletter .title {
  color: var(--accent-green);
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 20px;
}

@media only screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid .newsletter {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 550px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid .newsletter {
    grid-column: auto;
  }
}

/* @media only screen and (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
} */

/* ----- footer  end  ---- */

/* ----- video banner start ----- */

.responsive-video-container {
  position: relative;
  /* padding-bottom: 56.25%; */
  /* height: 0; */
  /* overflow: hidden; */
  background-color: var(--black);
  width: 100%;
  height: calc(100vh - 108px);

  /* position: relative;
  width: 100%;
  height: calc(100vh - 108px);
  overflow: hidden;
  background-color: #000; */
}

.responsive-video-container video {
  /* position: absolute;
  top: 0;
  left: 0; */
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* border: 0; */
}

.video-banner-btn {
  position: absolute;
  bottom: 30px;
  left: 60px;
  right: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.video-controls i {
  font-size: 22px;
  color: var(--white);
}

.header-social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-social-icon a i {
  font-size: 24px;
  color: var(--white);
}
.header-social-icon a i:hover {
  color: var(--primary-color);
}
@media only screen and (max-width: 600px) {
  .video-banner-btn {
    bottom: 15px;
    left: 25px;
    right: 25px;
  }

  .video-controls i {
    font-size: 17px;
  }

  .header-social-icon a i {
    font-size: 17px;
  }
}

@media only screen and (max-width: 1024px) {
  .responsive-video-container {
    /* padding-bottom: 56.25%; */
    height: auto;
  }
}

/* ----- video banner End ----- */

/*-----  Start Episodes Css  ------   */
.youtube-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--white);
  padding: 12px 20px;
  width: 165px;
  cursor: pointer;
  margin: 20px 0;
  transition: color 0.4s, background-color 0.4s;
  border-radius: 8px;
}

.light-mode .youtube-btn {
  border: 1px solid var(--black);
}

.youtube-btn:hover {
  background-color: var(--white);
  color: var(--black);
}

.light-mode .youtube-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.youtube-btn:hover i {
  color: var(--black);
}

.light-mode .youtube-btn:hover i {
  color: var(--white);
}

/* ----------- episode pagination ----------- */

.episodes {
  opacity: 0;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: Sequel Sans Head, sans-serif;
}

#prev-button,
#next-button {
  padding: 10px 15px;
  background-color: transparent;
  color: var(--black);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

#prev-button i,
#next-button i {
  font-size: 18px;
}

#prev-button:disabled,
#next-button:disabled {
  cursor: not-allowed;
  color: lightgray;
}

#prev-button:disabled i,
#next-button:disabled i {
  color: lightgray;
}

#page-info {
  font-size: 1rem;
  color: var(--black);
}

/* ------- episode paginations end --------- */

.episodes .episode-grid {
  /* display: flex;
  align-items: center; */
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  border-bottom: 1px solid var(--white);
  padding-bottom: 20px;
  margin: 25px 0;
  transition: opacity 0.5s ease-in-out;
}

.light-mode .episodes .episode-grid {
  border-bottom: 1px solid var(--black);
}

.episodes .feature-image {
  height: 240px;
  aspect-ratio: 16 / 9;
}

.episodes .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episodes .content {
  margin-top: 12px;
}

.episodes .content p {
  margin-bottom: 10px;
}

.episodes .content .ep {
  font-size: 13px;
  text-transform: uppercase;
}

.episodes .content .date {
  font-weight: 300;
  font-size: 15px;
}

.episodes .content .title {
  font-size: 20px;
  margin: 20px 0 30px 0;
  font-weight: 600;
}

.episodes .content .read-more {
  font-size: 13px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--white);
  text-transform: capitalize;
}

/* From Uiverse.io by nikk7007 */
.watch-now {
  padding: 10px 15px;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid var(--accent-green);
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  font-weight: 300;
  font-size: 14px;
  color: var(--black);
}

.watch-now::after,
.watch-now::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  transform: skew(90deg) translate(-50%, -50%);
  position: absolute;
  inset: 50%;
  left: 25%;
  z-index: -1;
  transition: 0.5s ease-out;
  background-color: var(--primary-color);
}

.watch-now::before {
  top: -50%;
  left: -25%;
  transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.watch-now:hover::before {
  transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.watch-now:hover::after {
  transform: skew(45deg) translate(-50%, -50%);
}

.watch-now:hover {
  color: var(--color2);
}

.watch-now:active {
  filter: brightness(0.7);
  transform: scale(0.98);
}

.light-mode .episodes .content .read-more {
  border-bottom: 1px solid var(--black);
}

@media (max-width: 600px) {
  .episodes .feature-image {
    height: auto;
  }
}

@media screen and (min-device-width: 600px) and (max-device-width: 768px) {
  .episodes .feature-image {
    height: auto;
  }
}

@media (max-width: 768px) {
  .episodes .episode-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .episodes .content .title {
    margin: 15px 0;
  }
}

/*-----  End Episodes Css  ------   */

/*  -------  Start Blogs Css ------ */

.blogs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.blogs .blog-img {
  aspect-ratio: 16 / 9;
  /* background-color: var(--light-black); */
}

.blogs .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blogs .blog-content {
  padding: 12px 12px;
}

.blogs .blog-content .date {
  font-size: 14px;
  color: #333333;
  opacity: 0.8;
}

.blogs .blog-content .title {
  font-size: 18px;
  margin-top: 12px;
  line-height: 24px;
  font-weight: 600;
}

.blogs .blog-content .title:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .blogs {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .blogs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blogs {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*  -------  End Blogs Css ------ */

/*  -------  Start blog_1 css ------ */
/* .blog-1 {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 30px;
  align-items: center;
} */

.blog-1 .feature-img {
  height: 420px;
  padding: 10px 15px;
}

.blog-1 .feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-1 .blog-1-content .date {
  font-size: 14px;
}

.blog-1 .blog-1-content .title {
  font-size: 26px;
  line-height: 36px;
  margin-top: 10px;
  /* margin-bottom: 20px; */
  font-weight: 600;
  padding: 0 30px;
}

.blog-1 .blog-1-content .desc {
  font-size: 17px;
  line-height: 26px;
  font-style: italic;
  padding: 20px 30px;
}

.blog-1-transcript {
  padding: 30px;
}

.blog-1-transcript p {
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 25px;
}

.blog-1-transcript .footer-desc {
  margin-top: 40px;
}

.blog-1-transcript .footer-desc a {
  text-decoration: underline;
  color: #0056b3;
  font-weight: 600;
}

.transcript .speaker {
  font-weight: 600;
}

.transcript .content {
  margin-bottom: 15px;
}

.transcript {
  padding: 0 30px;
}
.transcript p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}

.list-container {
  line-height: 1.6;
  margin-top: 20px;
  padding-left: 15px;
}

.list-container ol {
  list-style-type: decimal;
  margin-left: 1.5em;
}

.list-container li {
  margin-bottom: 1em;
}

.share-post {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
}

.share-post .title {
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .blog-1-transcript {
    padding: 20px 10px;
  }
  .blog-1-content,
  .share-post {
    padding: 0 10px;
  }
  .blog-1 .blog-1-content .title,
  .blog-1 .blog-1-content .desc,
  .blog-1 .feature-img {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .blog-1 {
    grid-template-columns: 1fr;
  }
}

.related-blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 25px 10px;
}

.related-blogs .blog-img {
  aspect-ratio: 1;
  background-color: var(--light-black);
}

.related-blogs .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-blogs .blog-content {
  padding: 12px 0;
}

.related-blogs .blog-content .date {
  font-size: 14px;
  color: darkgrey;
}

.related-blogs .blog-content .title {
  font-size: 18px;
  margin-top: 12px;
  line-height: 28px;
}

@media (max-width: 600px) {
  .related-blogs {
    margin: 20px 0;
  }
}

@media (max-width: 768px) {
  .related-blogs {
    grid-template-columns: 1fr;
  }

  .related-blogs .blog-img {
    aspect-ratio: 0;
  }
}

.blog-content {
  padding: 30px 20px;
}

.blog-content h3 {
  margin-bottom: 20px;
}

.blog-content p {
  margin-bottom: 12px;
}

/*  -------  End blog_1 css ------ */

@media (max-width: 768px) {
  .no-scroll {
    overflow: hidden;
  }
}

.episode-video-banner {
  width: 100%;
  height: calc(100vh - 108px);
}

.episode-video-banner iframe {
  width: 100%;
  height: 100%;
}

.episode-content {
  margin: 40px 0;
}
.episode-content .date {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.episode-content .title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 30px;
}

.episode-content .desc {
  margin-top: 40px;
}

.episode-content .desc p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.episode-content .timestamps {
  margin: 20px 0;
  font-family: Sequel Sans Head, sans-serif;
}

.episode-content .timestamps p {
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0;
}

.episode-content .timestamps ul {
  padding-left: 20px;
}
.episode-content .timestamps li {
  margin-bottom: 10px;
}

.episode-content .episode-resource {
  margin: 20px 0;
  font-family: Sequel Sans Head, sans-serif;
}

.episode-content .episode-resource p {
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0;
}

.episode-content .episode-resource ul {
  padding-left: 20px;
}
.episode-content .episode-resource li {
  margin-bottom: 10px;
}

/* ------- blogs filter section start -------- */

.blog-item {
  opacity: 0;
  /* transform: translateY(20px);  */
  transition: opacity 0.5s, transform 0.5s;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.blog-item.show {
  opacity: 1;
  /* transform: translateY(0);  */
}

#blog_layout p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.fade-out {
  opacity: 0;
  /* transform: translateY(20px); */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in {
  opacity: 1;
  /* transform: translateY(0); */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.filter-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 30px 0;
  gap: 20px;
}

.filter-section .categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-section .categories a {
  border-bottom: 1px solid transparent;
  padding: 0 4px 6px;
}

.filter-section .categories a.active {
  /* border-bottom: 1px solid var(--light-black); */
  border-bottom: 1px solid var(--accent-green);
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.search-bar input {
  width: 250px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 25px;
  outline: none;
  transition: border 0.3s ease;
}

.search-bar input::placeholder {
  color: #aaa;
}

.search-bar input:focus {
  /* border-color: var(--light-black); */
  border-color: var(--accent-green);
}

.search-bar svg {
  width: 22px;
  height: 22px;
  position: absolute;
  right: 20px;
  fill: #c1c1c1;
}

.clear-icon {
  position: absolute;
  right: 45px;
  top: 0;
  cursor: pointer;
  font-size: 30px;
  color: #888;
}

/* ------- blogs filter section end -------- */

.collaborations-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 20px 0;
}

.collaborations-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* width: 300px; */
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.collaborations-card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.collaborations-card .collaborations-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.collaborations-card .card-content {
  padding: 20px;
}

.collaborations-card .card-content .card-date {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.collaborations-card .card-content .card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.collaborations-card .card-content .card-description {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .collaborations-card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* -------  View all btn  ------ */

.explore-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  background-color: #f9fafb;
  border: 2px solid #f9fafb;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.explore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-green); /* Emerald background */
  border-radius: 50px;
  z-index: -1;
  transition: all 0.7s ease-in-out;
}

.explore-btn:hover::before {
  left: 0;
}

.explore-btn:hover {
  color: #fff;
}

.icon {
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  border: 2px solid #333;
  padding: 5px;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease,
    border-color 0.3s ease;
}

.explore-btn:hover .icon {
  transform: rotate(90deg);
  background-color: #fff;
  border-color: transparent;
}

.arrow-path {
  fill: #333;
  transition: fill 0.3s ease;
}

.explore-btn:hover .arrow-path {
  fill: #333;
}

@media (max-width: 600px) {
  .explore-btn {
    padding: 8px;
    font-size: 15px;
  }
}

/* -------  View all btn   End ------ */

/* ----------- Contact us  ------- */
.contact-info {
  margin: 30px 0;
}

.contact-info .contact-us-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-info .main-title {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 40px;
}

.contact-info .contact .title {
  margin-bottom: 18px;
  line-height: 22px;
}

.contact-info .contact .title span {
  font-weight: bold;
}

.contact-info .email {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info .email a {
  text-decoration: underline;
  color: #0056b3;
  font-weight: 500;
  margin: 0 4px;
}

.contact-info .email .write {
  font-weight: 700;
}

#pagination {
  margin-top: 20px;
  text-align: center;
}

.pagination-btn {
  padding: 8px 12px;
  margin: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
}

.pagination-btn.active {
  background: #007bff;
  color: white;
}

.pagination-btn:disabled {
  /* background: #ccc; */
  cursor: not-allowed;
}

.pagination-btn:disabled i {
  color: lightgray;
}

.clamp-3-lines {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limits to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 1;
  /* border: none; */
  outline: none;
  border: 1px solid var(--accent-green);
  background-color: #fff;
  /* background-color: var(--primary-color); */
  /* background-color: var(--accent-green); */
  color: black;
  cursor: pointer;
  /* padding: 10px 15px; */
  /* padding: 2px 5px; */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transition: opacity 0.4s ease, visibility 0.4s ease; */
  transition: opacity 0.4s ease, visibility 0.4s ease,
    background-color 0.3s ease;
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollToTopBtn:hover {
  background-color: var(--primary-color);
}

/* ----   skeleton loader start  -----  */
.skeleton {
  background: linear-gradient(90deg, #ececec 25%, #f3f3f3 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite linear;
  border-radius: 6px;
}

.skeleton-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.skeleton-line {
  height: 14px;
  margin: 10px 0;
}

.skeleton-line-short {
  width: 50%;
  margin: 0 auto;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ----   skeleton loader end  -----  */
