:root{
    --primary-color: #1a315c;
}
@keyframes fadeIn {
    from { 
    opacity: 0; 
    transform: translateY(20px); 
    }
    to { 
    opacity: 1; 
    transform: translateY(0); 
    }
}
a{
  text-decoration: none!important;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}
    /* Main dropdown on hover */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
}

/* Nested (sub) dropdown */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .sub-menu {
  display: none;
  top: 0;
  left: 100%;
  margin-top: -1px;
  min-width: 200px;
}

.dropdown-submenu:hover > .sub-menu {
  display: block;
}

/* Optional styling */
.dropdown-menu {
  border-radius: 0.5rem;
  border: none;
}

.dropdown-item i {
  font-size: 0.8rem;
  color: #555;
}


.logo-wrapper {
    width: 58px;
    height: 58px;
}

.logo-wrapper img{
    width: 65px;
    height: 72px;
}

.nav-rounded {
    background: #08c9fc;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-rounded .nav-link {
    color: white !important;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-rounded .nav-link:hover {
    color: #f3f4f6 !important;
}

.search-wrapper {
    position: relative;
}

.search-input {
    border-radius: 50px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    width: 300px;
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px white;
}

.search-icon {
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    pointer-events: none;
}

.action-icons-wrapper {
    background: #204f66;
    border-radius: 50px;
    padding: 0.65rem 1rem;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn svg {
    width: 24px;
    height: 24px;
    color: white;
}

.mobile-menu-btn {
    background: #08c9fc;
    border-radius: 50px;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    padding-top: 10rem;
}

.hero-title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 2.55rem;
    line-height: 1.2;
     /*-webkit-text-stroke: 2px #f4c145;*/
}

.hero-subtitle {
    color: #4b5563;
    font-size: 1.125rem;
}

.hero-button {
    background: #08c9fc;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-button:hover {
    background: #3aa3bc;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.hero-image {
    position: absolute;
    top: 131px;
    right: 157px;
    height: 767px;
    width: 714px;
    max-width: 60%;
    object-fit: contain;
    z-index: 20;
}

/* Footer Styles */
.footer-border {
    display: none;
    position: absolute;
    left: 35%;
    top: 2.5rem;
    width: 2px;
    height: 40%;
    background: linear-gradient(to bottom, #fde047, #a3e635, #84cc16);
}
footer p{
      font-size: 15px!important;
}footer p a{
      font-size: 15px!important;
}footer  a{
      font-size: 15px!important;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.footer-subheading {
    font-size: 1rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a,
.footer-contact a {
    color: #4b5563;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #84cc16;
}

.footer-contact {
    font-size: 0.875rem;
    color: #4b5563;
}

address {
    font-style: normal;
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Social Icons */
.social-icon {
    /* width: 32px;
    height: 32px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center; */
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon img {
  width: 30px;
  height: 30px;
}

/* Responsive Adjustments */
@media (min-width: 576px) {

    .hero-title {
    font-size: 3rem;
    }

    .hero-subtitle {
    font-size: 1.3rem;
    }

    .hero-button {
    padding: 1rem 2rem;
    }
}

@media (min-width: 992px) {


    .search-input {
    width: 300px;
    }

    .hero-section {
    padding-top: 0;
    }

    .hero-title {
    font-size: 3.75rem;
    }

    .hero-subtitle {
    font-size: 1.5rem;
    }

    .footer-border {
    display: block;
    }
}

@media (min-width: 1400px) {
    .hero-title {
    font-size: 4.75rem;
    }
}

/* Header background  */

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

/* Hidden state */
.header-fixed.header-hidden {
  transform: translateY(-100%);
}

.hero-bg-decoration {
    position: absolute;
    top: 0;    
    right: 0;  
    pointer-events: none;
    width: 883px;
    height: 952px;
}

.hero-bg-decoration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
}

/* Section needs overflow-hidden */
.overflow-hidden {
  overflow: hidden !important;
}

/* Header stays on top */
.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* Hero content stays above backgrounds */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
}
.hero-content-container{
  height: 600px;
}

/* .hero-outer-section{
    overflow: hidden;
} */
/* Z-index hierarchy */
.hero-bg-decoration {
    z-index: 1;
}

.hero-content-wrapper {
    z-index: 10;
}

.hero-left {
    position: relative;
    z-index: 15;
}

.hero-image {
    z-index: 20;
}

.header-fixed {
    z-index: 1050;
}

.offcanvas {
    z-index: 1055;
}

/* Recommended Books Section */
.recommended-books-section {
  /* z-index: 30; */
  margin-bottom: 3rem;
  padding: 1rem 0 4rem 0;
  background-color: #08c9fc;
  position: relative;
  margin-top: -1px;
}

/* Cloud Background */
.cloud-background {
  position: relative;
  z-index: 1;
}

/* .cloud-background img {
  width: 100%;
  height: auto;
  display: block;
} */

/* Red Books Container */
.books-container {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  border-radius: 50px;
  padding: 2rem 2rem;
  z-index: 2;
}

/* Book Card */
.book-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Book Image */
.book-image {
  margin-bottom: 0.75rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-image img {
  width: 110px !important;
  height: 171px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.book-card:hover .book-image img {
  transform: scale(1.05);
}

/* Title & Author */
.book-title {
  font-size: 0.75rem;
  font-weight: normal;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  min-height: 2.6rem;
  text-align: center;
}

.book-author {
  font-size: 0.7rem;
  color: #fff;
  margin-bottom: 1rem;
  font-style: italic;
  text-align: center;
}
.book-author a{
    color: #fff;
}

/* Book Button */
.book-btn {
  background: #e9c053;
  border: none;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-size: 12px !important;
  font-weight: 500;
  color: #1a315c !important;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.book-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

/* Force equal height for all items in carousel */
.owl-item {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.owl-item .item {
  display: flex;
}

.owl-item .book-card {
  height: 100%;
}

/* --- OWL NAV BUTTONS --- */
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.owl-nav button {
  pointer-events: all;
  background: white !important;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.owl-nav button span,
.owl-nav button i {
  font-size: 18px;
  color: #c0392b;
}

/* Hide nav on large screens if needed */
@media (min-width: 768px) {
  .owl-nav {
    display: none;
  }
}



/* recommended section end */

/* Bottom Cloud Image */
.hero-bottom-cloud {
  position: absolute;
  bottom: -187px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
.recommended-books-section {
  position: relative;
  z-index: 10;
}

@media (min-width: 1400px) {
  .hero-bottom-cloud {
    max-width: 1600px;
  }
}

/* Clouds */
.books-bottom-cloud1{
  position: absolute;
  bottom: -50px;
  z-index: 1;
  width: 130px;
}
.books-bottom-cloud2 {
  position: absolute;
  bottom: -80px;
  z-index: 1;
  width: 180px;
}

.books-bottom-cloud1 {
  left: 5%;
}

.books-bottom-cloud2 {
  left: 25%;
}

/* browse by section */
.browse-left-image{
  height: 528px;
  width: 341px;
}
.browse-section-head{
  font-size: 44px;
  color: var(--primary-color);
}
.browse-options-section-right{
  position: relative;
}
.browse-section-head{
  position: absolute;
  top: 86px;
}

.browse-options-section-right {
    position: relative;
    width: 100%;
    min-height: 250px;
}

.browse-cloud {
    position: absolute;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    text-align: center;
    line-height: 20px;
    display: flex;            /* center text */
    align-items: center;      /* vertical center */
    justify-content: center;
    text-decoration: underline!important;
    transition: all ease 0.3s;
}
.browse-cloud:hover {
    transform: scale(1.01);
    text-decoration: underline!important;
}

.cloud-orange { 
  top: 167px;
  left: 160px;
  width: 209px;
  height: 184px;
}
.cloud-green { 
  top: 189px;
  left: 483px;
  width: 219px;
  height: 222px;
}
.cloud-yellow { 
  top: 64px;
  right: 104px;
  width: 238px;
  height: 200px;
}
.cloud-pink { 
  bottom: -414px;
  left: -34px;
  width: 221px;
  height: 221px;
}
.cloud-red { 
  bottom: -344px;
  left: 305px;
  width: 196px;
  height: 232px;
}
.cloud-blue { 
  bottom: -383px;
  right: 137px;
  width: 231px;
  height: 190px;
}
.browse-cloud-sm-1{
  position: absolute;
  bottom: -190px;
  right: 384px;
  width: 66px;
  height: 50px;
}
.browse-cloud-sm-2{
  position: absolute;
  top: 127px;
  left: 28px;
  width: 93px;
  height: 62px;
}
.red-dot{
  position: absolute;
  top: 407px;
  left: -7px;
  width: 12px;
  height: 12px;
}
.pink-dot{
  position: absolute;
  top: 113px;
  left: 282px;
  width: 6px;
  height: 6px;
}
/* browse by section end */

/* featured section */
.featured-characters-section {
  position: relative;
  margin-bottom: 150px;
  padding: 100px 0 120px;
  overflow: visible;
  height: 980px;
  width: 100%;
}
.section-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #e9c053;
  margin-bottom: 60px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.featured-books-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.featured-book-card {
  padding: 15px;
  transition: transform 0.3s ease;
  max-width: 260px;
}

.featured-book-card:hover {
  transform: translateY(-10px);
}

.featured-book-cover {
  width: 100%;
  height: 340px;
  margin-bottom: 10px;
}

.featured-book-title {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-top: 10px;
}

.featured-book-author {
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
  margin-top: 2px;
}

/* featured section */
.new-books-section {
  position: relative;
  /* margin-bottom: 150px; */
  padding: 100px 0 120px;
  overflow: visible;
  height: auto;
  width: 100%;
}
.new-books-head {
  font-size: 46px;
  color: var(--primary-color);
  text-align: center;
  margin: 0 auto 97px;
}
.new-book-yellow-outer{
  position: relative;
  background: #f4c145ff;
  padding: 115px 82px 65px 82px;
  margin: 0 auto;
  text-align: center;
  border-radius: 40px;
}
.new-book-rainbow{
  position: absolute;
  top: -66px;
  right: 0px;
  height: 167px;
  width: 244px;
}
.new-book-girl{
  position: absolute;
  bottom: 24px;
  left: -66px;
  height: 206px;
  width: 143px;
}

/* .new-book-card:hover {
  transform: translateY(-10px);
} */
 .new-books-row{
  gap: 80px;
 }

.new-book-cover {
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
  object-fit: contain;
}

.new-book-title {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 16px;
}

.new-book-author {
  text-align: center;
  font-size: 14px;
  color: var(--primary-color);
  margin-top: 11px;
  margin-bottom: 20px;
}

.new-book-yellow-outer .btn-read-more{
  background: var(--primary-color);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 37px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.new-book-red-outer .btn-read-more{
  background: #f4c145ff;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 37px;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.new-book-red-outer{
  position: relative;
  background: #de5a46ff;
  padding: 115px 82px 65px 82px;
  margin: 0 auto;
  text-align: center;
  border-radius: 40px;
}

.number-box{
  position: absolute;
  top: -15px;
  left: -86px;
  height: 130px;
  width: 96px;
  z-index: -1;
}

.girl-with-book{
  position: absolute;
  bottom: 92px;
  right: -77px;
  height: 210px;
  width: 133px;
}

.new-book-yellow-outer .btn-read-more:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 10px rgb(238, 61, 33);
}
.new-book-red-outer .btn-read-more:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 10px #294e94;
}
/* parents section */
.for-parents-section {
  position: relative;
  margin-top: 894px;
  /* margin-bottom: 150px; */
  padding: 15px 0 120px;
  overflow: visible;
  height: 690px;
  width: 100%;
}
.parents-content-box {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding-top: 50px;
}
.parents-title{
  font-size: 44px;
  color: var(--primary-color);
  font-weight: 500;
}
.parents-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.parents-features li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 500;
}
/* parents section end */

/* ===============================
    MOBILE RESPONSIVE STYLES
   =============================== */

/* Up to 575px */
@media (max-width: 575.98px) {

  /* General */
  body {
    overflow-x: hidden;
  }

  /*.container-fluid {
    padding: 0 1rem !important;
  }*/

  /* Header */
  .logo-wrapper {
    width: 48px;
    height: 48px;
  }

  .logo-wrapper img {
    width: 52px;
    height: 60px;
  }

  .nav-rounded {
    display: none;
  }

  .mobile-menu-btn {
    padding: 0.4rem 0.6rem;
  }
  .hero-subtitle {
    display: none;
    }

  /* Hero Section */
  .hero-section,
  .hero-outer-section {
    min-height: 400px !important;
    /* padding-top: 11rem!important; */
    /* text-align: center; */
    /*background-size: cover !important;*/
  }

  .hero-content-wrapper {
    padding-top: 13.4rem !important;
    padding-left: 0 !important;
  }
  .hero-content-container {
    height: auto;
    padding-left: 1rem !important;
  }

  .hero-title {
    font-size: 1.4rem;
    line-height: 1.0;
    /*-webkit-text-stroke: 0.3px #f4c145;*/
  }

  .hero-subtitle {
    font-size: 0.7rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem!important;
  }

  .hero-button {
    font-size: 0.875rem;
    padding: 0.4rem 1.2rem;
    margin-top: 0;
  }

  .hero-image {
    position: absolute;
    max-width: 100%;
    height: 196px;
    margin-top: 0rem;
    top: 106px;
    right: 7px;
    width: 186px;
  }
  .hero-bottom-cloud {
    bottom: auto;
}

  /* Recommended Books Section */
  .books-container {
    border-radius: 25px;
    padding: 1.5rem 0.2rem;
  }
  .recommended-books-section {
    z-index: 9;
    padding: 1rem 0.4rem 3rem 0.4rem;
  }
  .book-card {
    max-width: 120px;
    margin-bottom: 1rem;
  }

  .book-image img {
    width: 120px !important;
    height: 160px;
  }

  .book-title {
    font-size: 0.8rem;
    min-height: auto;
  }

  .book-author {
    font-size: 0.7rem;
  }

  .book-btn {
    padding: 0.4rem 1rem;
    font-size: 11px !important;
  }
  
.books-bottom-cloud2 {
    bottom: -28px;
    left: 33%;
    z-index: 1;
    width: 81px;
}
.books-bottom-cloud1 {
    bottom: -28px;
    left: 4%!important;
    z-index: 1;
    width: 61px;
}

  /* Browse Section */
.browse-left-image {
    height: 122px;
    width: 100px;
}
  
  /*.browse-options-section .col-3{*/
  /*    margin-top: 28px;*/
  /*}*/

.browse-section-head {
    font-size: 22px;
    position: absolute;
    /* text-align: center; */
    margin-bottom: 1rem;
    top: 0;
    left: 0;
}

.browse-options-section-right {
    min-height: 300px;
}

.browse-cloud {
    position: absolute;
    width: 69px !important;
    height: 57px !important;
    font-size: 10px;
}
.cloud-orange {
    top: 25px;
    left: 46px;
}
.cloud-yellow {
    top: 25px;
    right: 4px;
}
.cloud-green {
    top: 84px;
    left: 98px;
    width: 73px !important;
    height: 61px !important;
    line-height: 11px;
}
.cloud-red {
    bottom: 65px;
    left: 61px;
}
.cloud-pink {
    bottom: 111px;
    left: -34px;
}
.cloud-blue {
    bottom: 110px;
    right: 5px;
}
.browse-cloud-sm-1 {
    position: absolute;
    bottom: 114px;
    right: 78px;
    width: 15px;
    height: 12px;
}
.browse-cloud-sm-2 {
    position: absolute;
    top: 130px;
    left: 43px;
    width: 18px;
    height: 14px;
}
.pink-dot {
    position: absolute;
    top: 28px;
    left: 139px;
    width: 6px;
    height: 6px;
}
.red-dot {
    position: absolute;
    top: 104px;
    left: 17px;
    width: 7px;
    height: 7px;
}
.browse-options-section{
    margin-bottom: 0!important;
    overflow-x: hidden;
}


  /* Featured Characters */
.featured-characters-section {
    height: auto;
    padding: 0px 0 60px 0;
}
  
.section-content {
    padding-top: 0;
}


.section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-shadow: none;
}

  .featured-characters-section {
    padding: 40px 10px;
    border-radius: 0;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .featured-books-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .featured-book-card {
    max-width: 130px;
  }

.featured-book-cover {
    height: 150px;
}

.featured-book-title {
    font-size: 0.75rem;
}
.featured-book-title {
    margin-top: 0px;
}
 .curved-bg {
    background-size: 120% auto; /* slight horizontal zoom for better coverage */
    background-position: center top;
  }

  .featured-book-author {
    font-size: 0.75rem;
  }

  /* New Books Section */
  .new-books-section {
    height: auto;
    padding: 40px 0;
  }

.new-books-head {
    font-size: 20px;
    margin: 0 auto 70px;
}

  .new-book-yellow-outer,
  .new-book-red-outer {
    padding: 3.5rem 2.5rem 1.5rem 2.5rem;
    border-radius: 20px;
  }
.new-book-rainbow {
    position: absolute;
    top: -17px;
    right: 3px;
    height: 45px;
    width: 76px;
}
.new-book-cover {
    height: 170px;
    margin-bottom: 0px;
}
.new-book-girl {
    bottom: 52px;
    left: -42px;
    height: 118px;
    width: 85px;
    object-fit: contain;
}
.girl-with-book {
    bottom: 47px;
    right: -43px;
    height: 115px;
    width: 75px;
}
/*.new-curve-bottom{*/
/*    display: none;*/
/*}*/
  .new-books-row {
    gap: 2rem;
    padding: 0 60px
  }

 .new-book-title {
    font-size: 10px;
    margin-top: 13px;
    line-height: 12px;
}

.new-book-author {
    font-size: 9px;
    margin-top: 5px;
    margin-bottom: 11px;
}

  .btn-read-more {
    font-size: 13px !important;
    padding: 5px 12px 6px 12px !important;
  }
  .number-box {
    position: absolute;
    top: -15px;
    left: -46px;
    height: 66px;
    width: 57px;
    object-fit: contain;
    z-index: -1;
}

.for-parents-section {
    margin-top: 277px;
    padding: 0px 0 99px;
    height: auto;
}
/*.parents-bg {*/
/*    background-size: cover;*/
/*}*/
.parents-content-box {
    padding-top: 4px;
}
.parents-title {
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 7px !important;
}
.parents-features li::before {
    top: 50%!important;
    width: 17px!important;
    height: 17px!important;
}
.parents-features li {
    position: relative;
    padding-left: 24px!important;
    margin-bottom: 4px!important;
    font-size: 13px!important;
    font-weight: 500;
}
.parents-content-box .row{
    justify-content: left!important;
    padding-left: 40px;
}
  /* Footer */
  .footer-border {
    display: none;
  }

  .footer-heading {
    font-size: 1.1rem;
  }

  .footer-links a {
    font-size: 0.875rem;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }
  .parents-bg {
    height: 315px;
    }
    .parents-content-box {
        padding-top: 0px;
    }

}

/* Tablets - 576px to 767px */
@media (min-width: 576px) and (max-width: 767.98px) {

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-button {
    padding: 0.7rem 1.4rem;
  }

  .book-image img {
    width: 120px !important;
    height: 170px;
  }

  .browse-cloud {
    transform: scale(0.8);
  }

  .featured-book-card {
    max-width: 45%;
  }

  .new-book-yellow-outer,
  .new-book-red-outer {
    padding: 3rem 2rem;
  }

  .new-books-head {
    font-size: 38px;
  }
}

@media (max-width: 320px) {

  .hero-title {
    font-size: 1.3rem;
  }
}