/* .header{
      padding: 25px;
      display: flex;
      justify-content: center;
  }
  .logo {
      font-weight: 900;
      font-size: 2rem;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      display: flex;
      max-width: fit-content;
      padding: 5px;
      border: solid black 3px;
      border-radius: 10px;
      gap: 10px;
  }
  .logo_left{
      border-radius: 7px; 
      padding: 6px 20px;
      background-color:black;
      color: white;
  }
  .logo_right{
      padding: 6px;
  }

  .hero{
    display: flex;
    justify-content: space-around;
  }
  .hero_left{
    margin-top:8rem;
    font-size: x-large;
  } */
/* Responsive styles for tablets */
/* @media (max-width: 768px) {
    .header {
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem; 
    }

    .hero {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .hero_left {
      font-size: large;
      text-align: center; 
      margin-top: 3rem;
      margin-bottom: 3rem;
    }
  } */

/* Responsive styles for mobile */
/* @media (max-width: 480px) {
    .header {
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    
    }

    .logo {
      font-size: 1.2rem; 
    }

    .hero {
      padding: 10px;
    }

    .hero_left {
      margin-top: 2rem;
      margin-bottom: 1rem;
      font-size: medium;
    }
    .hero_svg_1 {
      width: 100%; 
      display: flex;
      justify-content: center;
      align-items: centers;
      margin-top:-4rem;
    }
  } */

/* ============================== 
        Body Styles
      ============================== */
body {
  overflow-x: hidden;
  background-color: #f9fafb;
  padding: 0 2rem; /* Apply left and right padding to the entire page */
}

html,
body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  scroll-behavior: smooth; /* Enables smooth scrolling */
}
html {
  scroll-behavior: smooth;
}

/* ============================== 
        General Section Styles
============================== */
.section {
  padding: 20px;
  margin-bottom: 4rem;
}

.section {
  scroll-margin-top: 60px; /* Adjust this value to match your navbar height */
}

/* ============================== 
            Reset Styles
 ============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

/* ============================== 
            Navbar Styles
  ============================== */
.nav {
  position: fixed; /* Fixes the navbar at the top */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  color: white;
  font-weight: bold;
  height: 80px;
  padding: 2rem;
  margin-left: -3rem; /* Remove the padding effect from the body */
  margin-right: -3rem; /* Remove the padding effect from the body */
  width: calc(
    100% + 6rem
  ); /* Extend width to account for the negative margins */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect at the bottom */
  transition: box-shadow 0.3s ease; /* Smooth transition for shadow effect */
  z-index: 100;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
}

.logo img {
  width: 3rem; /* Adjusted size for responsiveness */
}

.logo h1 {
  color: #2f4156;
  font-size: 1.3rem;
}

.links {
  display: flex;
  gap: 1rem;
  margin-right: 7rem;
}

.links a {
  color: #2f4156;
  font-weight: bold;
  font-size: 1.3rem;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.1s;
}

.links a:hover {
  background-color: rgba(47, 65, 86, 0.1);
  transform: translateY(-2px);
}

.links a:active {
  background-color: rgba(47, 65, 86, 0.2);
  transform: translateY(0);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.3rem;
  padding: 1rem;
}

.hamburger div {
  width: 2rem;
  height: 0.2rem;
  border-radius: 4px;
  background-color: #2f4156;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none; /* Hide by default */
  flex-direction: column;
  position: fixed; /* Change to fixed to overlay on screen */
  top: 0; /* Align to top */
  right: 0; /* Align to the right */
  background-color: #f9f9f9;
  width: 70%; /* 70% width of the screen */
  height: 100vh; /* Full height */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1010;
  overflow-y: auto; /* Allow scrolling if needed */
  padding: 1rem;
}

.mobile-menu a {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #2f4156; /* Default link color */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition for color change */
  display: block; /* Ensure the whole area is clickable */
}

.mobile-menu a.active {
  background-color: #2f4156; /* Background color when clicked */
  color: white; /* Text color when active */
}
/* Responsive Styles */
@media (max-width: 768px) {
  .links {
    display: none; /* Hide regular links on mobile */
  }

  .hamburger {
    display: flex; /* Show hamburger on small screens */
  }
  .logo {
    padding: 1rem;
  }

  .logo img {
    width: 1.5rem; /* Smaller logo size */
  }

  .logo p {
    font-size: 1rem; /* Smaller font size */
  }
  .nav {
    height: 50px;
  }
}

.show {
  display: flex !important; /* Show the mobile menu */
}

/* ============================== 
    Hero Section
    ============================== */
/* General styles for the hero section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 150px;
  background-color: #f9fafb; /* Adjust as necessary */
  /* margin-bottom: 2rem; */
  margin-top: 2rem;
  gap: 4rem;
}

/* Styling for the content on the left side */
.hero-content {
  max-width: 50%;
}

.hero-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2a3950;
  margin-bottom: 10px;
  line-height: 1.2; /* Ensures proper line spacing */
  max-width: 700px; /* Controls the width for text wrapping */
  word-wrap: break-word; /* Forces text to wrap if needed */
}

/* .hero-highlight{
    color:#35B5FF;
  } */
.hero-content p {
  font-size: 1.3rem;
  color: #59667b;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Form styling for email subscription */

.subscribe {
  padding: 10px 20px;
  background-color: #2a3950;
  color: white;
  border: none;
  font-size: 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background-color: #1f2b40;
}

.hero-video iframe {
  width: 560px;
  height: 315px;
  border-radius: 10px;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    align-items: center; /* Center align items */
    padding: 2px; /* Adjust padding for mobile */
    margin-top: 2.5rem;
  }

  .hero-content h1 {
    font-size: 2rem; /* Smaller size for mobile */
    text-align: center; /* Center align text */
  }

  .hero-content p {
    font-size: 0.9rem; /* Slightly smaller text for mobile */
    text-align: center; /* Center align text */
  }

  .hero-video iframe {
    width: 100%; /* Full width for mobile */
    height: 200px; /* Adjust height for mobile */
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem; /* Even smaller for very small screens */
  }

  .hero-content p {
    font-size: 0.8rem; /* Smaller text for very small screens */
    line-height: 1.3;
  }
  .hero-section {
    margin-bottom: 2rem;
  }
}

/* ============================== 
    Why TUne In Section
    ============================== */

.tune-in-row {
  display: flex;
  justify-content: space-between;
  gap: 5rem; /* Adjusted gap for better alignment */
  align-items: center; /* Align items vertically */
}

.col-tune-in {
  flex: 1;
  min-width: 300px;
}
.col-tune-in h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.col-tune-in p {
  text-align: justify;
  font-size: 1.3rem;
  color: #2f4156;
  line-height: 1.6;
}

.recent-guest-name {
  width: 100%;
  background-color: grey;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  margin-bottom: 5px;
  box-sizing: border-box;
  border-radius: 0 0 15px 15px;
}

.tune-in-img {
  flex: 1;
  max-width: 25%; /* Ensure image container takes the correct width */
  position: relative;
  display: flex;
  flex-direction: column; /* Stacking image, name, and designation */
  align-items: center;
  justify-content: flex-end;
}
.tune-in-img img {
  width: 100%;
  height: 300px; /* Set a fixed height to ensure consistent size */
  object-fit: cover; /* Ensure the image fills the container proportionally */
  border-radius: 15px;
}

@media (max-width: 768px) {
  .tune-in-row {
    flex-direction: column; /* Stack the content vertically */
    gap: 2rem; /* Adjust gap for better spacing */
  }

  .tune-in-img {
    max-width: 100%; /* Make the image container take full width */
    height: auto; /* Ensure image container height adjusts */
  }

  .tune-in-img img {
    width: 100%; /* Ensure the image is responsive */
    height: auto; /* Keep the height proportional */
    object-fit: cover;
  }

  .col-tune-in {
    padding: 0 1rem; /* Add padding for better readability */
    text-align: center; /* Center the text for mobile screens */
  }

  .col-tune-in p {
    font-size: 1rem; /* Slightly reduce the font size for smaller screens */
    text-align: justify;
    line-height: 1.3;
  }

  .col-tune-in h2 {
    font-size: 1.8rem; /* Adjust heading size for smaller screens */
  }
}

/* ============================== 
        Info Section Styles
  ============================== */
.info {
  color: #2f4156;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  margin-bottom: 5rem;
}

.col-info {
  display: flex;
  flex-direction: column;
}

.col-info h2 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.col-info p {
  text-align: justify;
  font-size: 1.3rem;
  line-height: 1.6;
}
.info2 img {
  width: 100%;
  max-width: 350px;
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
}

.info1,
.info2 {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
/* Default h2 style */
.col-info h2 {
  font-family: "Arial", sans-serif;
  font-size: 2rem; /* Adjust as needed */
  font-weight: 700; /* Adjust as needed */
  color: #2f4156; /* Change color if needed */
  margin-bottom: 2rem;
}

/* Media query for mobile view */
@media (max-width: 480px) {
  .col-info h2 {
    font-size: 1.3rem; /* Mobile size */
    font-family: "Arial", sans-serif; /* Keep the same font on mobile */
  }
  .col-info p {
    font-size: 1rem;
    font-family: "Arial", sans-serif;
    line-height: 1.3;
  }
}

/* Styling for the 'Know More' button */
.know-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2f4156;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 15px;
  width: auto;
  max-width: max-content; /* Ensures the width is limited to the button's content */
  white-space: nowrap; /* Prevents the text from wrapping */
  box-sizing: border-box; /* Ensures padding is considered inside the width */
}

.know-more-btn:hover {
  background-color: #1f2b40; /* Slightly darker navy on hover */
  transition: background-color 0.3s ease;
}

/* ============================== 
        Slider Styles
============================== */
/* Slider container */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
}

/* Slider with flexbox */
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Make all images take the same width but keep aspect ratio */
.slider img {
  flex-shrink: 0;
  width: 100%; /* Let images take full width */
  object-fit: cover; /* Ensures images cover the area without stretching */
  height: 300px; /* Fixed height for the slider */
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .slider-container {
    max-width: 600px;
  }

  .slider img {
    height: 250px; /* Adjust height for smaller screens */
  }

  .info1,
  .info2 {
    flex-direction: column; /* Stack items vertically on medium screens */
    align-items: center; /* Center align items */
  }
}

@media (max-width: 480px) {
  .slider-container {
    max-width: 400px;
  }

  .slider img {
    height: 200px; /* Adjust height for very small screens */
  }

  .info1,
  .info2 {
    gap: 0.5rem; /* Smaller gap for very small screens */
  }
}

/* ============================== 
        Control Button Styles
  ============================== */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(142, 113, 113, 0.5);
  color: white;
  font-size: 24px;
  padding: 8px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  z-index: 1;
}

/* Left (prev) button */
.prev {
  left: 10px; /* Position it on the left of the slider */
}

/* Right (next) button */
.next {
  right: 10px; /* Position it on the right of the slider */
}

/* Optional: Hover effect for buttons */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8); /* Darken the background on hover */
}

/* ============================== 
        Recent guest 
  ============================== */
.recent-guest-row {
  display: flex;
  justify-content: space-between;
  gap: 5rem; /* Adjusted gap for better alignment */
  align-items: center; /* Align items vertically */
}

.col-recent-guest {
  flex: 1;
  min-width: 300px;
}
.col-recent-guest h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.col-recent-guest p {
  text-align: justify;
  font-size: 1.3rem;
  color: #2f4156;
  line-height: 1.6;
}
.col-recent-guest ul,
.col-recent-guest ul li {
  text-align: justify;
  font-size: 1.3rem;
  color: #2f4156;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.col-recent-guest ul li strong {
  font-weight: bold; /* Keeps the strong elements bold */
}

.recent-guest-image {
  flex: 1;
  max-width: 19%; /* Ensure image container takes the correct width */
  position: relative;
  display: flex;
  flex-direction: column; /* Stacking image, name, and designation */
  align-items: center;
  justify-content: flex-end;
}

.recent-guest-image img {
  width: 100%;
  height: 300px; /* Set a fixed height to ensure consistent size */
  object-fit: cover; /* Ensure the image fills the container proportionally */
  border-radius: 15px 15px 0 0;
}

.recent-guest-name {
  width: 100%;
  background-color: grey;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  margin-bottom: 5px;
  box-sizing: border-box;
  border-radius: 0 0 15px 15px;
}

@media (max-width: 768px) {
  .recent-guest-row {
    flex-direction: column;
    gap: 2rem;
  }

  .recent-guest-image {
    max-width: 100%;
    height: auto;
  }

  .recent-guest-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .col-recent-guest {
    padding: 0 1rem;
    text-align: center;
  }

  .col-recent-guest p {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.3;
  }

  .col-recent-guest h2 {
    font-size: 1.8rem;
  }
}

/* ============================== 
        Upcoming guest 
  ============================== */
.upcoming-guest-row {
  display: flex;
  justify-content: space-between;
  gap: 5rem; /* Adjusted gap for better alignment */
  align-items: center; /* Align items vertically */
}

.col-upcoming-guest {
  flex: 1;
  min-width: 300px;
}
.col-upcoming-guest h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.col-upcoming-guest p {
  text-align: justify;
  font-size: 1.3rem;
  color: #2f4156;
  line-height: 1.6;
}
.col-recent-guest ul {
  padding-left: 1.5rem;
  list-style-type: none; /* Remove default bullets */
}

.col-recent-guest ul li {
  text-align: justify;
  font-size: 1.3rem;
  color: #2f4156;
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem; /* Space for the custom bullet */
}

.col-recent-guest ul li::before {
  content: "•"; /* Custom bullet symbol */
  position: absolute;
  left: 0;
  font-size: 1.5rem; /* Adjust size of bullet */
  color: #35b5ff; /* Customize the bullet color */
}

.col-recent-guest ul li strong {
  font-weight: bold;
}

.upcoming-guest-image {
  flex: 1;
  max-width: 19%; /* Ensure image container takes the correct width */
  position: relative;
  display: flex;
  flex-direction: column; /* Stacking image, name, and designation */
  align-items: center;
  justify-content: flex-end;
}

.upcoming-guest-image img {
  width: 100%;
  height: 300px; /* Set a fixed height to ensure consistent size */
  object-fit: cover; /* Ensure the image fills the container proportionally */
  border-radius: 15px 15px 0 0;
}

.upcoming-guest-name {
  width: 100%;
  background-color: grey;
  color: white;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  margin-bottom: 5px;
  box-sizing: border-box;
  border-radius: 0 0 15px 15px;
}
@media (max-width: 768px) {
  .upcoming-guest-row {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .upcoming-guest-image {
    max-width: 100%;
    height: auto;
  }

  .upcoming-guest-image img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .col-upcoming-guest {
    padding: 0 1rem;
    text-align: center;
  }

  .col-upcoming-guest p {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.3;
  }
    /* New styles for .col-recent-guest */
  .col-recent-guest ul li {
    font-size: 1rem; /* Adjust bullet text size for mobile */
    line-height: 1.4; /* Adjust line height for better readability */
  }

  .col-recent-guest ul li::before {
    font-size: 1.2rem; /* Adjust size of custom bullet */
  }
}

/* ============================== 
        Footer Section Styles
  ============================== */
.footer {
  margin-top: 5rem;
  color: #2f4156;
  padding: 10px 0;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.footer p {
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-left: auto; /* Push social icons to the right */
  margin-right: 2rem; /* Add margin to the right */
}

.social-icon.disabled {
  opacity: 0.5; /* Makes the disabled icon look faded */
  pointer-events: none; /* Disables click events */
}

.social-icon.enabled {
  opacity: 1; /* Fully visible */
  pointer-events: auto; /* Enables click events */
}

.footer-content {
  width: 100%; /* Make footer content take full width */
}
/* ============================== 
        Media Queries
  ============================== */

/* Laptop Adjustments */

/* Tablet Adjustments */

/* Mobile Phone Adjustments */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero,
  .info,
  .last {
    width: 100%;
    margin: 0;
    padding: 1rem;
  }

  .subscribe {
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
  }

  .info {
    padding: 10px; /* Reduce padding */
    margin-bottom: 2rem; /* Reduce margin */
    font-size: 14px; /* Smaller font size */
  }

  .info h2 {
    font-size: 1.5rem; /* Smaller heading */
  }

  .info p {
    font-size: 12px; /* Smaller paragraph text */
  }

  .podcast-item {
    width: 80%; /* Full width for mobile */
    margin-bottom: 1rem; /* Space between items */
  }

  .guest img {
    width: 150px; /* Adjust size for mobile */
    height: 150px; /* Maintain square shape */
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .footer {
    font-size: 12px; /* Smaller footer text */
  }

  .footer p {
    margin-bottom: 1rem;
    text-align: center;
  }

  .footer-content {
    flex-direction: column; /* Stack footer items vertically */
    align-items: center; /* Center items */
  }

  .social-icons {
    justify-content: center; /* Center social icons */
    margin-left: 2rem; /* Reset margin */
  }

  .nav {
    padding: 20px; /* Reduce padding for mobile */
    position: relative;
  }
}
