@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
*{
    margin: 0;
    top: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none !important;
    scroll-behavior: smooth;
    padding: 0;
}
:root{
    --main-color: #0f172a;
    --secondary-color: #111827;
    --third-color: #22c55e;
    --fourth-color: #28365a;
    --white: #fff;
    --black: #000;
    --box-shadow: 0 4px 6px -5px rgba(0, 0, 0, 0.5);
    --color-opacity: #ffffff12;
    --box-shadow-bottom: 0 4px 6px -5px rgba(0, 0, 0, 1);
}
/* Target the entire scrollbar */
::-webkit-scrollbar {
    width: 8px;             /* Width of the scrollbar */
  }
  ::-webkit-scrollbar-track {
    background: var(--nav_color);      
  }
  
  /* Style the scrollbar thumb (the moving handle) */
  ::-webkit-scrollbar-thumb {
    background-color: var(--white);   /* Dark grey color */
  }
  
  /* Hover effect for the scrollbar thumb */
  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--white);   /* Darker color on hover */
  }
body{
    color: var(--white);
     font-family: "Quicksand", sans-serif;
    font-weight: 400;
}
header{
    position: relative;
    z-index: 900;
}
#header{
    background: linear-gradient(180deg, var(--main-color) 0%, var(--secondary-color) 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    backdrop-filter: saturate(1.2) blur(6px);
}
.header{
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .5rem 3rem;
    z-index: 900;
}
#nav-bar{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0rem !important;
    gap: 1rem;
}
.nav-item a{
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    padding: .5rem 1.5rem;
    border-radius: 50px;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}
.contact-us{
    border: 2px solid var(--fourth-color);
}
.nav-item a:hover,
.nav-item a.active{
    background-color: var(--fourth-color);
    color: var(--white);
}
.authors-logo{
    padding: 1rem 0rem;
}
.authors-logo img{
    width: 180px;
}
.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 900;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  transition: all .4s ease-in-out;
}
/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 999;
transition: all 0.4s ease-in-out;

}

#overlay.active {
  display: block;
}
#menu-icon{
    display: none;
}
#menu-icon{
    font-size: 25px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
}
#menu-icon:hover{
    color: var(--fourth-color);
}
#mobileClose{
    display: none;
}
.mobile-close a{
    font-size: 50px;
    color: var(--white);
    font-weight: 600;
    float: right !important;
    transition: all 0.4s ease-in-out;
    position: absolute;
    right: 1rem;
    top: .7rem;
}
.mobile-close a:hover{
    color: var(--fourth-color);
}
@media (max-width: 768px){
.header{
    padding: .5rem 1rem;
}
.authors-logo img{
    width: 150px;
}
    #menu-icon{
    display: block;
}
#mobileClose{
    display: block;
}
#nav-bar.active{
    left: 0;
}
#nav-bar{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    overflow-y: auto;
    background-color: var(--main-color);
    text-align: left;
    padding: 0;
    z-index: 9999 !important;
    transition: all 0.4s ease-in-out;
}
.nav-item a{
    font-size: 20px !important;
}
#nav-bar{
    gap: 2rem !important;
}
}
 #home{
    position: relative;
    z-index: 1;
 }
.home{
    max-width: 1400px;
    margin: auto;
    padding: 3rem;
}
.home-img,
.book-synopsis{
    width: 50%;
}
.home-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-btns a{
    display: inline-block;
    background-color: var(--third-color);
    color: var(--white);
    padding: .7rem 2rem;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}
.home-btns a:hover{
    background-color: var(--white);
    color: var(--third-color);
}
#video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    
.swiper-slide {
    font-size: 18px;
    background: transparent;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

    .swiper-slide img {
      display: block;
      max-width: 100%;
      width: 40vw;
      object-fit: cover;
    }

    .swiper {
      margin-left: auto;
      margin-right: auto;
    }
.swiper-button-next,
.swiper-button-prev{
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: var(--main-color) !important;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background-color: var(--main-color);
    color: var(--white) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 20px;
}
#about{
    background-color: var(--main-color);
}
.abouts{
    max-width: 1400px;
    margin: auto;
    padding: 3rem;
}
.about{
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}
.about-image img{
    width: 400px;
    background-color: var(--fourth-color);
    border-radius: 100%;
    padding: 10px;
}
.about-details h3{
    font-family: "Alata", sans-serif;
    font-weight: 600;
    font-size: 50px;
    color: var(--white);
}
.career-titles ul{
    padding: 0;
    display: inline-block;
}
.career-titles ul li{
    position: relative;
    display: inline-block;
    background-color: var(--fourth-color);
    padding: 10px;
    margin: 5px;
    font-size: 15px;
    border-left: 5px solid var(--white);
}
.career-titles .professional{
    margin-bottom: 1rem;
    font-size: 25px;
    font-weight: 600;
}
@media(max-width: 768px){
.home{
    max-width: 1400px;
    margin: auto;
    padding: 1rem;
}
    .swiper-slide{
        flex-direction: column !important;
    }
    .home-img,
    .book-synopsis{
    width: 100%;
}
.book-synopsis{
    padding: 2rem;
}
.book-synopsis h2{
    font-size: 20px;
}
.book-synopsis p{
    font-size: 18px;
}
.swiper-slide img {
    display: block;
    max-width: 100%;
    width: 80vw !important;
    object-fit: cover;
}
.swiper-button-prev{
    margin-left: -8px;
}
.swiper-button-next{
    margin-right: -8px;
}
.career-titles ul{
    padding: 0;
    display: inline-block;
    text-align: left !important;
}
.career-titles ul li{
    font-size: 13px !important;
}
.books,
.secondBook{
    padding: 1rem !important;
}
.book-show-details{
    flex-direction: column;
}
.book-show-details-second{
    flex-direction: column-reverse;
}
.book-show-details .books-item-1 img,
.book-show-details-second .books-item-1 img{
    width: 100% !important;
}
.book_scroll{
    padding: 0rem !important;
}
.books-item-2 h3{
    font-size: 20px !important;
    font-weight: 700;
}
.purchase_img img{
    width: 100% !important;
}
}
#books{
    background-image: url('../images/bg/book-bg-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#secondBook{
    background-image: url('../images/bg/book-bg-2.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.books,
.secondBook{
    max-width: 1400px;
    margin: auto;
    padding: 3rem;
}
.book-show-details,
.book-show-details-second{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-show-details .books-item-1 img,
.book-show-details-second .books-item-1 img{
    width: 400px;
}
.books-item-2{
    padding: 2rem;
    background-color: #28365aa9; 
}
.book_scroll{
    overflow-y: scroll;
    height: 400px;
    width: 100%;
    padding: 1rem;
    box-shadow: inset var(--box-shadow-bottom)
}
.book_scroll p{
    font-size: 18px;
}
.footer-btns a{
    display: inline-block;
    margin-top: 1rem;
    background-color: var(--main-color);
    padding: .7rem 2rem;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}
.footer-btns a:hover{
    background-color: var(--white);
    color: var(--main-color);
}
#purchase{
    background-image: url('../images/bg/purchase-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.purchase{
    max-width: 1400px;
    margin: auto;
    padding: 3rem;
}
.purchase h2{
    text-align: center;
    margin: 1rem 0rem;
    font-style: italic;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 25px;
}
#owl-purchase-books{
    display: flex;
    align-items: center;
    justify-content: center;
}
.purchase_img{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.purchase_img img{
    width: 350px;
}
.owl-wrapper-outer{
    padding: 2rem 0rem !important;
    width: 50px;
}
.owl-prev,
.owl-next{
    background-color: transparent !important;
    opacity: unset !important;
}
.owl-prev i::before,
.owl-next i::before{
    background-color: var(--main-color) !important;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--white);
     font-size: 20px;  
     transition: all 0.3s ease-in-out;
}
.owl-prev i:hover::before,
.owl-next i:hover::before{
    background-color: var(--white);
    color: var(--main-color);
}
/* CONTACT */
#contact{
    background-image: url('../images/bg/contact-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact{
    max-width: 1400px;
    margin: auto;
    padding: 3rem;
}
.contact-form{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}
.form{
    background-color: var(--main-color);
    padding: 2rem;
    border-radius: 10px;
}
.form,
.contact-address{
    width: 50%;
}
.contact-form .form form input,
.contact-form .form form textarea{
    width: 100%;
    margin: 5px 0px;
    padding: .8rem;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: var(--color-opacity);
    border-bottom: 3px solid var(--third-color);
    color: var(--white);
}
.contact-form .form form input::placeholder,
.contact-form .form form textarea::placeholder {
  color: #bbb;   /* light gray */
  font-style: italic;  /* optional */
  transition: color 0.3s;
}

.contact-form .form form input:focus::placeholder,
.contact-form .form form textarea:focus::placeholder {
  color: transparent; /* hide when focused if you want */
}
.contact-form .form form .wpcf7-submit{
    width: 150px;
    border: none;
    font-weight: 600;
    border-radius: 50px;
    padding: .8rem;
    color: white;
    background-color: var(--third-color);
    transition: all 0.3s ease-in-out;
}
.contact-form .form form .wpcf7-submit:hover{
    background-color: var(--white);
    color: var(--main-color);
}
.wpcf7-response-output{
    display: none;

}
.screen-reader-response{
    text-align: center;
}
.contact .heading-title{
    text-align: center;
    margin-bottom: 3rem;
}
.contact-form .form form textarea{
    height: 8rem;
    resize: none;
}
.contact-address .address i,
.contact-address .email-address i,
.contact-address .phone-number i{
    float: left;
    background-color: var(--main-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin-right: 1rem;
}
.contact-address .address h4,
.contact-address .email-address h4,
.contact-address .phone-number h4{
    color: var(--main-color);
    font-size: 20px;
}
.contact-address .address p,
.contact-address .email-address p,
.contact-address .phone-number p{
    color: var(--black);
    padding: 0 0 0 55px;
}
/* FOOTER  START*/
footer{
    background-color: var(--main-color);
    text-align: center;
}
#footer p{
    margin-bottom: 0rem !important;
}
.footer-container{
    padding: 2rem;
}
.footer-container span,
.footer-container span .quippy{
    color: var(--third-color);
}
/* FOOTER END */
@media (max-width: 768px){
    .contact-form{
        flex-direction: column;
    }
    .about{
        flex-direction: column-reverse;
    }
.form,
.contact-address{
    width: 100%;
}
.abouts{
    padding: 2rem;
}
.contact{
    padding: 2rem;
}
.form{
    padding: 1rem;
}
.about-image img {
    width: 300px;
}
}
@media (max-width: 500px){
    .abouts{
    padding: 1rem;
}
.contact{
    padding: 1rem;
}
}
/* CONTACT END */
.scrollUp {
  position: fixed;
  right: 2rem;
  bottom: -50%;
  background-color: var(--main-color);
  color: var(--white);
  box-shadow: var(--box-shadow);
  display: inline-flex;
  padding: 1rem;
  font-size: 1rem;
  z-index: 99;
  border-radius: 50px;
  transition: bottom .3s, transform .3s;
}

.scrollUp:hover {
  transform: translateY(-.5rem);
}

.show-scroll {
  bottom: 3rem;
}
