@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap');
* {
  padding: 0;
  margin: 0;
}

.navbar {
    --bs-navbar-padding-x: 0;
   --bs-navbar-padding-y: 0rem !important;
}

/* Topbar responsiveness */
.topbar {
    font-size: 1.1rem;
}
@media (max-width: 991px) {


    .topbar {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1rem;
        text-align: center;
    }
    .topbar > div {
        justify-content: center !important;
    }
}

/* Navbar custom styles */
.navbar-nav .nav-link.nav-custom {

    font-size: 1.2rem;
    transition: color 0.2s;
    color: #1A2B4C;
font-family: "Inknut Antiqua";

font-style: normal;
font-weight: 400;
line-height: normal;
text-transform: uppercase;
}
.navbar-nav .nav-link.nav-custom:hover,
.navbar-nav .nav-link.nav-custom.active {
    color: #f7b731;
}
@media (max-width: 991px) {
    .navbar-nav .nav-link.nav-custom {
        font-size: 1.3rem;
        text-align: center;
    }
    .navbar-brand img {
        height: 50px;
    }
}




/* About Section Styles */
.about-subtitle {
  letter-spacing: 3px;
  color: #6c757d;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #F7B731;
  margin-bottom: 1.5rem;
}

.about-desc {
  max-width: 900px;
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.about-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  border: none;
  
}

.circle-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.circle-number span {
  font-size: 2rem;
  font-weight: 700;
  color: #25355a;
}

.circle-blue {
  background-color: #e8e9f7;
}

.circle-pink {
  background-color: #fbe7ec;
}

.circle-yellow {
  background-color: #fef7e6;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #25355a;
  margin-bottom: 2rem;

}

.card-text {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.learn-more {
  color: #25355a;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.learn-more svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.learn-more:hover {
  color: #F7B731;
}

.learn-more:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {



  .company-details{
    
  border-left: none !important;
}
  .about-title {
    font-size: 2rem;
  }
  .about-desc {
    font-size: 1rem;
  }
  .circle-number {
    width: 70px;
    height: 70px;
  }
  .circle-number span {
    font-size: 1.7rem;
  }
}


.company-details{
  border-left:  2px solid #1A3663;
}


#heroCarousel .carousel-indicators {
    bottom: -15px !important;
}


#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #1A2B4C !important;
    border: none;
    margin: 0 5px;
}





  /* Carousel styling */
  #heroCarousel {
    position: relative;
    overflow: hidden;
  }
  
  #heroCarousel .carousel-item {
    height: auto;
  }
  
  /* Enhanced indicators */
  #heroCarousel .carousel-indicators {
    bottom: 20px;
  }
  
  #heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
  }
  
  #heroCarousel .carousel-indicators button.active {
    background-color: #F7B731;
    transform: scale(1.2);
  }
  
  /* Caption animations */
  #heroCarousel .animated {
    animation-duration: 1s;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -30px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 30px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeInDown {
    animation-name: fadeInDown;
  }
  
  .fadeInUp {
    animation-name: fadeInUp;
  }
  
  /* Caption styling */
  #heroCarousel .carousel-caption {
    bottom: 20%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(26, 41, 70, 0.6);
    backdrop-filter: blur(5px);
    left: 0;
    right: 0;
  }
  
  /* Control buttons */
  #heroCarousel .carousel-control-prev,
  #heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 41, 70, 0.7);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  #heroCarousel .carousel-control-prev {
    left: 20px;
  }
  
  #heroCarousel .carousel-control-next {
    right: 20px;
  }
  
  #heroCarousel:hover .carousel-control-prev,
  #heroCarousel:hover .carousel-control-next {
    opacity: 1;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #heroCarousel .carousel-caption {
      bottom: 10%;
      padding: 10px;
      max-width: 90%;
    }
    
    #heroCarousel .carousel-caption h1 {
      font-size: 1.75rem;
    }
    
    #heroCarousel .carousel-caption p {
      font-size: 1rem;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
      display: none;
    }
  }





.col-lg-15 {
    width: 20%;
}

@media (max-width: 992px) {
    .col-lg-15 {
        width: 25%;
    }
}

@media (max-width: 768px) {
    .col-lg-15 {
        width: 33.33%;
    }
}

@media (max-width: 576px) {
    .col-lg-15 {
        width: 50%;
    }
}

.featured-books-section {
    background: linear-gradient(180deg, #F2F7FF 0%, #FFF5E2 100%);
}

.view-all-btn {
    background-color: #1a2946;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.view-all-btn:hover {
    background-color: #0d1627;
    color: white;
}

.book-card {
    padding: 10px;
    transition: transform 0.3s;
}

.book-card:hover {
    transform: translateY(-5px);
}

/* . {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
} */

/* . img {
    height: 250px;
    width: 100%;
    object-fit: cover;
} */

.book-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2946;
    margin-bottom: 5px;
    margin-top: 10px;
}

.book-author {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.book-rating {
    color: #f7b731;
}

.book-rating i {
    margin-right: 2px;
}



.recommended-books-section {
    background-color: #fff;
    padding: 60px 0;
}

.recommended-book-card {
    /* padding: 20px; */
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.recommended-book-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.book-image {
    width: 200px;
    min-width: 180px;
}

.book-image img {
    height: 240px;
    object-fit: cover;
    /* border-radius: 8px; */
}

.book-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #000;
font-family: Rubik;
font-style: normal;
font-weight: 400;
line-height: 35px; /* 140% */
text-transform: capitalize;
}

.book-author {
    font-size: 1rem;
    color: #666;
    margin-bottom: 8px;
}

.book-rating {
    font-size: 0.9rem;
    color: #FF971D;
    margin-bottom: 12px;
}


.book-rating2 {
   color: rgba(0, 0, 0, 0.30);
font-family: Rubik;
font-size: 16px;
font-style: normal;
font-weight: 300;
line-height: 16px; /* 100% */
letter-spacing: 0.032px;
}




.book-description {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.30);
font-family: Rambla;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 156.25% */
letter-spacing: 0.048px;
}

@media (max-width: 767px) {

.recommended-book-card {
    padding: 10px;

}

    .book-image {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .book-image img {
        max-width: 180px;
        height: auto;
    }
}



@media (max-width: 991px) {
    .why-choose-section .d-flex {
        flex-direction: column;
    }

    .why-choose-section .number-box {
        margin-bottom: 1rem;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
    }

    .why-choose-section .number-box .fs-1 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 768px) {

    
    .why-choose-section h2 {
        font-size: 1.7rem !important;
    }
}



.testimonials-section {
    padding: 60px 0;
}

/* Custom carousel arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(26, 41, 70, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 10%;
}

.carousel-control-next {
    right: 10%;
}

/* Custom indicators */
.testimonial-indicators {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
    justify-content: center;
}

.testimonial-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    opacity: 1;
}

.testimonial-indicators .active {
    background-color: #1a2946;
}

/* Media queries for responsiveness */
@media (max-width: 991px) {
    .carousel-control-prev {
        left: 5%;
    }

    .carousel-control-next {
        right: 5%;
    }
}

@media (max-width: 767px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}



/* Custom styles for FAQ accordion */
.faq-accordion .accordion-button {
    padding: 1.2rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #1a2946;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.faq-accordion .accordion-button:after {
    content: "+";
    background-image: none;
    font-size: 1.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #1a2946;
}

.faq-accordion .accordion-button:not(.collapsed):after {
    content: "−";
    transform: rotate(0);
    color: #1a2946;
}

.faq-accordion .accordion-body {
    padding: 1rem 1.5rem 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .faq-section h2 {
        font-size: 2.2rem !important;
    }

    .faq-accordion .accordion-button {
        font-size: 1.1rem !important;
    }
}



.contact-form-section {
    position: relative;
    background-color: #f5f5f5;
}

/* On mobile, add a faded background image */
@media (max-width: 991px) {
    .contact-form-section {
        background-image: url('assets/banner/newslider.png');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .contact-form-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);
    }

    .form-container {
        position: relative;
        z-index: 10;
    }
}

.form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #1a2946;
}

/* Make the form look like the image */
.form-control,
.form-select {
    height: 55px;
}

/* Custom select dropdown arrow */
.form-select {
    background-position: right 20px center;
}

/* Submit button hover effect */
button[type="submit"]:hover {
    background-color: #10192e !important;
}

/* Full height image container */
.library-image {
    min-height: 600px;
}




.contact-info i {
    margin-right: 0px !important;
    color: #0b014d;
}
  
/* Hero Wave Shape */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

/* Card hover effect */
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Form styles */
.form-control:focus, .form-select:focus {
  box-shadow: none;
  border-color: #1a2946;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: #1a2946;
}

/* Accordion styling */
.accordion-button:not(.collapsed) {
  background-color: rgba(247, 183, 49, 0.1);
  color: #1a2946;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Social media hover effects */
.btn-outline-primary:hover, .btn-outline-danger:hover, .btn-outline-info:hover {
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-hero {
    min-height: 300px;
  }
  
  .custom-shape-divider-bottom svg {
    height: 40px;
  }
}




/* Custom shape divider */
.custom-shape-divider-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

/* Hover effects */
.hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Partner logos hover */
.partners img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Team image hover effect */
.team-image-container {
  overflow: hidden;
}

.team-image {
  transition: transform 0.5s ease;
}

.team-image-container:hover .team-image {
  transform: scale(1.1);
}

.reserved-style{
  font-size:1rem;
}

/* Media queries */
@media (max-width: 991px) {
  .display-3, .display-4, .display-5 {
    font-size: calc(1.1rem + 1.2vw);
  }
  
  .custom-shape-divider-bottom svg {
    height: 40px;
  }
}

@media (max-width: 767px) {

  .reserved-style{
  font-size:0.8rem;
}
  .process-item {
    text-align: center;
  }
  
  .timeline-line {
    display: none !important;
  }
  
  .process-point {
    margin: 20px auto !important;
  }
}





/* header css */


    /* Mobile Navigation Styles */
    .mobile-nav {
        background-color: white;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-toggle {
        background: none;
        border: none;
        color: #0b014d;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu-overlay.active .mobile-menu-content {
        transform: translateX(0);
    }

    .mobile-menu-header {
        padding: 20px;
        text-align: right;
        /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    }

    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #333;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-body {
        padding: 20px;
    }

    .mobile-menu-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-items li {
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }


    .mobile-menu-items a {
        display: block;
        padding: 15px 0;
        color: #0b014d;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .mobile-menu-items a:hover {
        color: #0b014d;
        padding-left: 10px;
    }

    .mobile-menu-contact {
        margin-top: 30px;
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .contact-info {
        display: flex;
        align-items: center;
        color: #0b014d;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .contact-info i {
        margin-right: 10px;
        color: #0b014d;
    }

    .mobile-book-btn {
        width: 100%;
        padding: 12px 20px;
        background-color: #0b014d;
        color: white;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .mobile-book-btn:hover {
        background-color: #0b014d;
        transform: translateY(-2px);
    }

    .mobile-menu-footer {
        /* margin-top: 30px; */
        padding: 20px 0;
        /* border-top: 1px solid rgba(0, 0, 0, 0.1); */
        text-align: center;
    }

    .mobile-logo-footer {
        margin-bottom: 5px;
    }

    .mobile-copyright {
        color: #666;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .mobile-copyright p {
        margin: 2px 0;
    }

    /*.thyo-link {*/
    /*    color: #0b014d;*/
    /*    font-weight: 600;*/
    /*}*/

    /* Prevent body scroll when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }

    /* Responsive adjustments */
    @media (max-width: 576px) {
        .mobile-menu-content {
            width: 100%;
            max-width: 100%;
        }
    }


/* footer css */

.footer-links a {
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #F7B731 !important;
}

.social-icons a {
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  /* .footer .row > div {
    margin-bottom: 30px;
  } */
}

