@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --header-height: 3rem;

  --hue-color: 250;
  --first-color: hsl(var(--hue-color), 69%, 61%); /* #6e57e0 */
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%); /* #7d6bd6 */
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%); /* #c2b6fc */
  --title-color: hsl(var(--hue-color), 8%, 15%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(var(--hue-color), 60%, 99%);
  --container-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);

  --body-font: "Poppins", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px */
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  --font-medium: 500;
  --font-semi-bold: 600;

  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}


/* Navbar.css */

.logo {
    margin-right: 15px;
    margin-left: 20px;
    object-fit: cover;
    clip-path: circle(50%);
  }

  .navbar-brand-name {
    font-weight: bold;
  }
  
  
  .nav-contents {
    margin-left: 37%;
    display: flex;
    justify-content: space-between;
    width: 60%; 
    align-items: center; 
  }
  
/* button */
 .footer-btn button {
    background-color: #000000;
    color: #fff;
    opacity: 0.6;
  }

/* Nav Shadow while scroll */
.navbar-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease-in-out;
}

nav {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

/* Purpose.css */
.purpose-container {
    max-width: 1000px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
  }
  
  .purpose-heading {
    font-size: 36px;
    font-weight: 600;
    color: #1A4B5F; /* Dark blue */
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  /* style.css */
.navbar-shadow {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
  }


  .purpose-quote {
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: #666666; /* Medium gray */
    margin-bottom: 20px;
  }
  
  .purpose-paragraph {
    font-size: 18px;
    line-height: 1.6;
    color: #444444; /* Dark gray */
    margin-bottom: 16px;
    text-align: justify;
  }
  
  .purpose-paragraph em {
    font-style: italic;
    font-weight: 500;
  }
  
  #loading {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin: 20px 0;
  }

.sliders-container {
    display: flex;  
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
    margin: 20px auto;  
    max-width: 1000px; 
    padding: 20px;
    max-height: 300px;
    margin-bottom: 5%;
    margin-top: 2%;
}

.slider-wrapper {
    flex: 1; 
    max-width: 50%; 
    min-width: 0;  
    overflow: hidden; 
}

.each-slide-effect > div {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    height: 350px;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

.each-slide-effect span {
    padding: 20px;
    font-size: 20px;
    background: #efefef;
    text-align: center;
}

/* Customize the navigation arrows */
.react-slideshow-container .nav {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.react-slideshow-container .nav.default-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.react-slideshow-container .nav.default-nav.previous {
    left: 20px;
}

.react-slideshow-container .nav.default-nav.next {
    right: 20px;
}

.react-slideshow-container .nav.default-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Leo Library */

/* Responsive Table Section */
.book-table-section {
  margin-top: 30px;
  margin-bottom: 50px;
}

.book-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.book-table th, .book-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.book-table th {
  background-color: #1A4B5F;
  color: #fff;
}

.book-table tbody tr:hover {
  background-color: #f1f1f1;
}

.book-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

@media screen and (max-width: 768px) {
  
  .book-table {
    width: 100%;
    overflow-x: auto; 
  }

  .book-table th, .book-table td {
    padding: 8px; 
    font-size: 12px; 
  }

  .btn-remove {
    width: 20%; 
    text-align: center;
    display: block;
  }
  
}

/* Search Bar Styling */
.search-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.search-bar input[type="text"] {
  width: 50%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 25px;
  box-sizing: border-box;
  margin-top: 100px;
}


@media (max-width: 768px) {
  .search-bar input[type="text"] {
      width: 80%; /* Adjust width for smaller screens */
      font-size: 14px;
      padding: 8px;
  }
}


/* Footer */

footer textarea{
    width: 247px;
    outline: none;
    border: 2px solid #AFAFB6;
    background: white;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #000000;
    margin-top: 5px;
}
footer textarea::placeholder{
    color: #AFAFB6;
    font-size: 16px;
}
footer img{
    width: 65px; 
  height: auto; 
}

footer iframe{
    border-radius: 20px;
}

footer{
    background: #1A4B5F;
    width: 100%;
    bottom: 0;
    left: 0;
    
  }
  footer::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 100%; 
    height: 1px;
    width: 100%;
    background: #AFAFB6;
}
  footer .content{
    max-width: 1250px;
    margin: auto;
    padding: 30px 40px 40px 40px;
  }
  footer .content .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .content .top .logo-details{
    color: #fff;
    font-size: 28px;
  }
  .content .top .media-icons{
    display: flex;
  }
  .content .top .media-icons a{
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  .top .media-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    background: white;
    color: #000; 
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}
  .top .media-icons a:nth-child(1){
    background: white;
    color: rgb(38, 0, 250);
  }
  .top .media-icons a:nth-child(1):hover{
    color: white;
    background: rgb(38, 0, 250);
  }
  .top .media-icons a:nth-child(2){
    background: white;
    color: #E1306C;
  }
  .top .media-icons a:nth-child(2):hover{
    color: white;
    background: #E1306C;
  }
  .top .media-icons a:nth-child(3){
    background: white;
    color: #000000;
  }
  .top .media-icons a:nth-child(3):hover{
    color: white;
    background: #000000;
  }

  footer .content .link-boxes{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 5 - 10px);
  }
  .content .link-boxes .box .link_name{
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    position: relative;
  }
  .link-boxes .box .link_name::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 35px;
    background: #fff;
  }
  .content .link-boxes .box li{
    margin: 6px 0;
    list-style: none;
  }
  .content .link-boxes .box li a{
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.4s ease
  }
  .content .link-boxes .box li a:hover{
    opacity: 1;
    text-decoration: underline;
  }
  .content .link-boxes .input-box{
    margin-right: 55px;
  }
  .link-boxes .input-box input{
    height: 40px;
    width: calc(100% + 55px);
    outline: none;
    border: 2px solid #AFAFB6;
    background: white;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 15px;
    color: #000000;
    margin-top: 5px;
  }
  .link-boxes .input-box input::placeholder{
    color: #AFAFB6;
    font-size: 16px;
  }
  .link-boxes .input-box input[type="button"]{
    background: #fff;
    color: #1A4B5F;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .input-box button{
    background: #fff;
    color: #140B5C;
    border: none;
    font-size: 18px;
    font-weight: 500;
    margin: 4px 0;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.4s ease;
  }
  .input-box button:hover{
    opacity: 1;
  }
  .input-box input[type="button"]:hover{
    opacity: 1;
  }
  footer .bottom-details{
    width: 100%;
    background: black;
  }
  footer .bottom-details .bottom_text{
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
  }
  .bottom-details .bottom_text a:hover{
    opacity: 1;
    text-decoration: underline;
  }
  .bottom-details .bottom_text a{
    margin-right: 10px;
  }
  .footer.fixed {
    position: fixed;
  }

  @media (max-width: 900px) {
    footer .content .link-boxes{
      flex-wrap: wrap;
    }
    footer .content .link-boxes .input-box{
      width: 40%;
      margin-top: 10px;
    }
  }
  @media (max-width: 700px){
    /* footer{
      position: relative;
    } */
    .content .top .logo-details{
      font-size: 25px;
    }
    .content .top .media-icons a{
      height: 35px;
      width: 35px;
      font-size: 14px;
      line-height: 35px;
    }
    footer .content .link-boxes .box{
      width: calc(100% / 3 - 10px);
    }
    footer .content .link-boxes .input-box{
      width: 60%;
    }
    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a{
      font-size: 12px;
    }
    iframe {
      width: 250px;
      height: 200px;    
    }
  }
  @media (max-width: 520px){
    /* footer::before{
      top: 145px;
    } */
    footer .content .top{
      flex-direction: column;
    }
    .content .top .media-icons{
      margin-top: 16px;
    }
    footer .content .link-boxes .box{
      width: calc(100% / 2 - 10px);
    }
    footer .content .link-boxes .input-box{
      width: 100%;
    }
  }
