*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'sans-serif',poppins;
}
body{
    height: 100vh;
    background-color: #d0d0d0;
    background-image: url('clear\ bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}

li{
 list-style: none;
}

a{
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}

a:hover{
    color: red;
}

header {
    position: relative;
    padding: 0 2rem;
}
.logo{
    color:red;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    font-size: 25px;
}

.navbar{
    margin-top: 300px;
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo .a{
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links{
    display: flex;
    gap: 4.5rem;
}

.navbar .toggle-btn{
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action-btn{
    background-color: red;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    -o-transition: scale 0.2eas;
}
.action-btn:hover{
    scale: 1.05;
    color: rgb(28, 28, 159);
}

.action-btn:active{
    scale: 0.95;
}
 
.dropdown-menu {
display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgb(255, 255, 255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.dropdown-menu.open{
    height: 350px;
}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-menu .action-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

/*HERO */
section#hero{
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
#hero h3{
    font-size: 40px;
    font-family:alice;
    font-weight: 100;
    margin-right: 235px;
}
#hero h4{
    font-size: 40px;
    font-family:alice;
    font-weight: 100;
    margin-left: 330px;
}
#hero h1{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 100px;
    color: red;
    text-shadow: #000000;
}
#hero p{
    font-family: alice;
    font-size:28px ;
    font-weight: 100;
}
.container {
    display: flex;
    flex-wrap: wrap; /* Wrap boxes to next line if necessary */
    justify-content: center;
    align-items: center;
    margin: 60px;
  }

  /* Style for individual box */
  .box {
    width: calc(50% - 20px); /* 50% width with margin */
    max-width: 300px; /* Maximum width for responsiveness */
    margin: 10px;
    background-color: #f9f9f9;
    border: 4px solid #ff0000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: floatAnimation 2s infinite alternate; /* Animation effect */
  }

  /* Animation keyframes */
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-10px);
    }
  }

  /* Style for book image */
  .book-image {
    margin-top: 15px;
    margin-left: 15px;
    width: 90%;
    margin-bottom: 20px;
    height: auto;
    display: block;
    border-radius: 30px;
  }

  /* Style for the "Visit Now" button */
  .visit-button {
    margin-bottom: 20px;
    display: block;
    font-size: 15px;
    width: 30%;
    padding: 10px;
    margin-left: 93px;
    background-color: #1c0247;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    transition: background-color 0.30s ease; /* Transition effect */
  }

  .visit-button:hover {
    background-color: #d10000;
    color: #fff;
  }
  /* Style for the about section container */
  .about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }

  /* Style for the author details container */
  .author-details-container {
    background-color: #020c55;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; /* Animation effect */
    margin-bottom: 20px;
  }

  /* Hover effect for author details container */
  .author-details-container:hover {
    transform: translateY(-5px);
  }

  /* Style for the author's photo container */
  .author-photo-container {
    margin-top: 20px;
    border: 5px solid  #ffffff; /* Border around the photo */
    border-radius: 50%; /* Make the container round */
    width: 220px;
    height: 220px;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s ease; /* Animation effect */
  }

  /* Hover effect for author's photo container */
  .author-photo-container:hover {
    transform: scale(1.1); /* Zoom in effect */
  }

  /* Style for the author's photo */
  .author-photo {
    width: 110%;
    height: auto;
    display: block;
  }

  /* Style for the author's name */
  .author-name {
    color: #e50404;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  /* Style for the author's bio */
  .author-bio {
    font-size: 13px;
    line-height: 1.6;
    color: #f9f4f4;
    margin-bottom: 20px;
    font-family: poppins;
  }

  /* Media query for responsiveness */
  @media (max-width: 768px) {
    .about-container {
      padding: 10px;
    }

    .author-photo-container {
      width: 150px;
      height: 150px;
    }

    .author-name {
      font-size: 20px;
    }

    .author-bio {
      font-size: 14px;
    }
  }
/* CSS Styles */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9; /* Container Background Color */
  border-radius: 100px; /* Rounded Corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow Effect */
}

#podcast-section h2 {
  color: #d10000;
margin-right: 50px;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 2px;
}

#podcast-section ul {
  list-style-type: none;
  padding: 40;
  margin-top: 10px;
  margin-right: 50px;
  margin-left: 300px;
  font-size: large;
  
}

#podcast-section li {
  margin-bottom: 20px;
}

#podcast-section li a {
  text-decoration: none;
  color: #050246;
  font-size: 18px;
}

#podcast-section li a:hover {
  color: #ff0000; /* Change color on hover if you like */
}

@media (max-width: 768px) {
  .podcast-item {
      width: 100%;
  }
}
/* Style for the feedback form container */

 .feedback-container {
    font-size: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #e50404;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  /* Style for the feedback form */
  .feedback-form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Style for the feedback input fields */
  .feedback-input {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #020e90;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  /* Style for the feedback submit button */
  .feedback-submit {
    padding: 10px 20px;
    background-color: #08038c;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: #000000;
    transition: background-color 0.3s ease;
  }

  .feedback-submit:hover {
    background-color: #d40606;
  }

  /* Style for the review section container */
  .review-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
  }

  /* Style for individual reviews */
  .review {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #020c55;
    border-radius: 5px;
    background-color: #fff;
  }


  footer {
    background-color: #080da9;
    color: #ff0000;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 50px;
    color: #fff;
    font-size:15px;
    font-weight: 400;
}

.footer-content p {
    margin: 0;
   margin-right: 50px;

}

.social-icons a {
    color: #f3eded;
    font-size: 24px;
    margin: 0 5px;
}

/* Desktop styles */
@media only screen and (min-width: 768px) {
  /* Add any desktop-specific styles here */
}

/* Tablet styles */
@media only screen and (max-width: 767px) {
  header {
      padding: 10px;
  }
  













  
















  

  /* Media query for responsiveness */
  @media (max-width: 768px) {
    .box {
      width: calc(100% - 20px); /* 100% width with margin */
    }
  }














/*ressponsive design*/
@media(max-width:992px){
    .navbar .links,
    .navbar .action-btn{
        display: none;
    }


    .navbar .toggle-btn{
        display: block;
    }
    .dropdown-menu{
        display: block;
    }
}
@media(max-width:576px) {
.dropdown-menu {
    left: 2rem;
    width: unset;
}
}

@media only screen and (max-width: 768px) {
  .container {
      width: 90%;
  }
}
