@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #1bc4de;
  --heading-font: "General Sans", sans-serif;
  --primary-font: "Inter Tight", sans-serif;
}

body {
  font-family: var(--primary-font);
}
section {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Top Bar */
.top-bar {
  background: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 8px;
  color: #000;
}

.navbar-brand img {
  border-radius: 7px;
  max-width: 150px;
}

/* Navbar */
.navbar {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.offcanvas .navbar-nav .menu-item{
	margin-bottom:10px;
}

.offcanvas .navbar-nav .menu-item a{
	color:#000;
}
.offcanvas .menu-item-has-children:after{
	color:#000;
	right: 0;
    top: -3px;
}
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 10px;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9999;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  position: relative;
  width: 60%;
}

.search-box input {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  border-radius: 50px;
  border: none;
  outline: none;
}

.close-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #000;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #9188ff, #5547ff, #d2ceff);
  color: #fff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  font-size: 18px;
}

.yellow-text {
  color: #fff700;
  font-weight: 600;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero p {
  margin: 20px 0;
  color: #ddd;
}

.btn-cta {
  background: var(--primary-color);
  border-radius: 50px;
  padding: 10px 20px;
  border: none;
  color: #fff;
  margin-right: 10px;
  border: 1px solid var(--primary-color);
}

.btn-cta:hover {
  border: 1px solid var(--primary-color);
}

.btn-outline-light {
  border-radius: 50px;
}

/* Floating tags */
.floating-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 16px;
  z-index: 5;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.tag1 {
  top: 280px;
  left: 100px;
}

.tag2 {
  bottom: 280px;
  right: 0px;
}

.tag3 {
  top: 200px;
  right: 50px;
}

/* Hero Image */
.hero-img {
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.about-img img {
  border-radius: 50px;
  width: 100%;
  object-fit: cover;
}

.label {
  font-size: 18px;
  color: #434343;
}

.section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.4;
}

.colored-text {
  color: var(--primary-color);
}

.text {
  color: #434343;
  line-height: 1.6;
}

.books-section {
  padding: 80px 0;
}

.books-section .books-box {
  background: linear-gradient(45deg, #3db1c8, #195c71);
  border-radius: 30px;
  padding: 60px;
  color: #fff;
}

/* CARD */
.books-section .book-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  height: 400px;
}

.book-card img {
  height: 230px;
  object-fit: contain;
}

.book-card h6 {
  font-size: 18px;
  margin: 20px 0;
  color: #000;
  font-weight: 600;
}

.book-card button {
  border: 1px solid #000;
  border-radius: 20px;
  padding: 5px 12px;
  background: transparent;
}

/* CENTER SCALE EFFECT */
.books-slider .owl-item.active.center .book-card {
  transform: scale(1.05);
}

/* DOTS */
.books-slider .owl-dots {
  margin-top: 25px;
  display: flex !important;
  gap: 5px;
  justify-content: center;
  align-items: center;
}

.books-slider .owl-dot span {
  height: 7px;
  width: 7px;
  display: block;
  border-radius: 50%;
  background: #fff;
}

.books-slider .owl-dot.active span {
  background: #fff700;
}

/* ARROWS */
.books-slider .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex !important;
  width: 100%;
  justify-content: space-between;
}

.books-slider .owl-nav button {
  position: absolute;
  background: none !important;
  color: #fff !important;
  font-size: 16px !important;
}

.books-slider .owl-nav .owl-prev {
  left: -50px;
  height: 40px;
  width: 40px;
  border: 1px solid #fff !important;
  border-radius: 50%;
}

.books-slider .owl-nav .owl-next {
  right: -50px;
  height: 40px;
  width: 40px;
  border: 1px solid #fff !important;
  border-radius: 50%;
}

.feature-box {
  background: #faf8f8;
  padding: 16px;
  border-radius: 13px;
  margin-bottom: 15px;
  align-items: flex-start;
  gap: 15px;
  border: 1px solid #e8e8e8;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* ICON */
.icon-box {
  min-width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.build-sec .icon-box {
  background: linear-gradient(45deg, #3db1c8, #195c71);
}

.feature-box span {
  color: #195c71;
  font-weight: 600;
}

/* TEXT */
.feature-box h6 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 20px;
  color: #195c71;
}

.feature-box p {
  font-size: 16px;
  color: #434343;
  margin: 0;
}

/* IMAGE */
.why-img img {
  border-radius: 50px;
  width: 100%;
  object-fit: cover;
}

.resource-section {
  background: var(--primary-color);
}

/* CARD */
.resource-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  height: 100%;
}

.resource-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK OVERLAY */
.resource-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%),
    linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent 60%);
}

/* TEXT OVERLAY */
.overlay {
  position: absolute;
  bottom: 40px;
  left: 25px;
  right: 25px;
  color: #fff;
  z-index: 2;
}
.overlay a {
  text-decoration: none;
}
.overlay h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: #fff;
}

.resource-card .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: #fff;
  color: #333;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
}

.resource-card:hover .badge {
  background: #195c71;
  color: #fff;
}

.resource-card:hover img {
  transform: scale(1.05);
}

.resource-card img {
  transition: 0.5s;
}

.testimonial-section {
  padding: 80px 0;
}

.testimonial-section h2 {
  margin-bottom: 50px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 40px 20px 10px;
  transition: 0.3s;
  margin: 30px 10px;
  display: flex;
}

.testimonial-card:hover {
  background: #e9dfd6;
  transform: scale(1.02);
}

/* IMAGE */
.user-img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

.quote img {
  width: 40px !important;
  color: #ff5fa2;
}

.testimonial-card p {
  font-size: 24px;
  color: #050505;
  margin-top: 20px;
  font-family: var(--heading-font);
}

.testimonial-card hr {
  margin: 10px 0;
}

.testimonial-slider .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex !important;
}

.testimonial-slider .owl-nav button {
  position: absolute;
  background: none !important;
  font-size: 22px !important;
}

.testimonial-slider .owl-nav .owl-prev {
  left: -20px;
}

.testimonial-slider .owl-nav .owl-next {
  right: -20px;
}

/* DOTS */
.testimonial-slider .owl-dots {
  margin-top: 20px;
  display: flex !important;
  justify-content: center;
  gap: 5px;
}

.testimonial-slider .owl-dot span {
  background: #ccc;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  display: block !important;
}

.testimonial-slider .owl-dot.active span {
  background: #00a6c7;
}

.video-section {
  padding-bottom: 80px;
}

#heroVideo {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  color: var(--primary-color);
  transition: 0.3s ease;
}

.play-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.build-sec {
  background: #f5ede5;
}

.blog-section {
  padding: 80px 0px;
}

.blog-section .blog-card {
  text-align: center;
}

.blog-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
}

.blog-card h6 {
  font-size: 23px;
  font-weight: 600;
  color: #222;
  max-width: 360px;
  margin: 0 auto 15px;
}
.blog-card:hover h6 {
  color: #fff;
}
.text a {
  color: var(--primary-color);
  text-decoration: none;
}
.learn-more a {
  text-decoration: none;
}
.blog-btn {
  border: 1px solid #000;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 16px;
  background: transparent;
  transition: 0.3s;
}

.blog-card:hover .blog-btn {
  background: #3bb4c1;
  color: #fff;
  border-color: #3bb4c1;
}

.blog-btn:hover {
  background: #3bb4c1;
  color: #fff;
  border-color: #3bb4c1;
}

.contact-wrapper {
  background: #195c71;
  border-radius: 30px;
  padding: 60px;
}

/* LEFT */
.contact-label {
  font-size: 14px;
  opacity: 0.8;
}

.contact-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.3;
}

.contact-text {
  color: #fff;
  font-size: 20px;
  max-width: 440px;
}

.contact-btn {
  background: var(--primary-color);
  color: #282828;
  border-radius: 50px;
  padding: 8px 18px;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #fff;
  color: #000;
}

/* FORM BOX */
.form-box {
  background: #fff;
  padding: 30px;
  border-radius: 25px;
}

.form-label {
  color: #000;
}

.form-title {
  font-size: 32px;
  font-weight: 600;
}

.form-box label {
  font-size: 18px;
  margin-bottom: 5px;
}

.form-control {
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  background: #f4f4f4;
  border: 1px solid #b4b4b4;
}

.form-control:focus {
  box-shadow: none;
  border-color: #3bb4c1;
}

.submit-btn {
  background: #3bb4c1;
  color: #fff;
  border-radius: 15px;
  padding: 12px;
}

.submit-btn:hover {
  background: #2aa2af;
}

.faq-section {
  padding: 30px 0px 80px;
}

.faq-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  margin: 20px 0px;
}

.faq-title span {
  color: var(--primary-color);
  position: relative;
}

.faq-title span:after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 60px;
  background: #000;
  top: 54%;
  right: -80px;
}

/* ACCORDION */
.custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
}

.custom-accordion .accordion-button {
  background: transparent;
  font-weight: 600;
  font-size: 26px;
  padding: 18px 0;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #000;
}

.accordion-button::after {
  transition: 0.3s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 0 15px 0;
  font-size: 16px;
  color: #434343;
  max-width: 100%;
}

.newletter-wrap {
    background: url(../img/newsletter-bg.png) center center / cover no-repeat;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    gap: 30px;
    overflow: hidden;
    position: relative;
    padding: 100px 0px 60px;
}

.newletter-wrap::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  inset: 0;
  z-index: 1;
}

.newletter-wrap h2 {
  font-size: 42px;
  max-width: 620px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.newsletter-form .form-control {
  border-radius: 50px;
  width: 300px;
}

.footer-section {
  background: linear-gradient(to bottom, #1bc4de, #69ebff, #fff);
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.footer-section h6 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
  color: #000;
}

/* LINKS */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.download-btns {
  background: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-around;
  width: max-content;
  gap: 20px;
}

.download-btns .btn-cta {
  margin-right: 0;
}

.download-btns .btn-cta:hover {
  color: var(--primary-color);
}

.contact-strip {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
}

.contact-item {
  display: flex;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.contact-item:nth-child(2) {
  border-left: 1px solid #b4b4b4;
  border-right: 1px solid #b4b4b4;
  justify-content: center;
  width: 35%;
}

.contact-item i {
  color: #3bb4c1;
  font-size: 20px;
  margin-top: 3px;
}

.footer-bottom {
  font-size: 16px;
  color: #000;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
}

/* inner page css  */
.breadcrum-sec {
  padding: 100px 0px 55px;
  background: url(../img/breadcrum-bg.png) no-repeat center center/cover;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.breadcrum-sec .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  height: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrum-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #559fff, #1bc4de);
    z-index: 1;
}

.breadcrum-sec::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 320px;
  background: radial-gradient(circle, rgba(2 28 190 / 75%), transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(120px);
  z-index: 1;
}

.breadcrum-sec h1 {
  font-size: 50px;
  font-weight: 600;
}
.breadcrum-sec p {
  max-width: 540px;
  font-size: 18px;
}
.breadcrum-nav {
    background: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    max-width: fit-content !important;
}

.breadcrum-nav a {
  color: #fff;
  text-decoration: none;
}

.about-us {
  padding: 80px 0px 30px;
}
.color-text {
  color: #016f80;
}

.about-us img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
}

.tab-section {
  padding: 60px 0;
  background: #fff;
}

.custom-tabs {
  border-bottom: 1px solid #ddd;
}

.custom-tabs .nav-link {
  border: none;
  border-radius: 0;
  color: #434343;
  font-weight: 500;
  padding: 12px 25px;
  background: #f4f4f4;
  margin-right: 2px;
  transition: 0.3s;
  font-size: 15px;
}

/* ACTIVE TAB */
.custom-tabs .nav-link.active {
  color: #000;
  background: #fff;
  position: relative;
  border-top: 3px solid var(--primary-color) !important;
}

.custom-tabs .nav-link:hover {
  color: #000;
}

.tab-content .about-us {
  padding: 60px 0px 0px;
}

.tab-pane {
  animation: fadeIn 0.3s ease;
}

.interview-section {
  background: linear-gradient(310deg, #195c71, #1bc4de);
  border-radius: 30px;
  padding: 60px 30px;
  color: #fff;
}

.video-card {
  text-align: center;
}
.video-card a{
  color: #fff;
  text-decoration: none;
  font-weight: bolder;
}
.video-thumb {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #fff;
}

.video-thumb img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ff3b3b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.video-text {
  font-size: 18px;
  margin-top: 12px;
  color: #fff;
  font-weight: 600;
  max-width: 385px;
  margin: 15px auto;
}

/* BUTTON */
.video-btn {
  margin-top: 10px;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 16px;
  color: #fff;
}

.video-btn:hover {
  background: #fff;
  color: #2f6f7c;
}

.profile-link {
  color: #0599af;
  font-weight: 600;
}

.author-section {
  padding: 60px 0px 40px;
}

.book-stack {
  background: #f4f4f4;
  border-radius: 69px;
  border: 1px solid #d0d0d0;
  padding: 30px 0px;
}

.sample-box {
  background: linear-gradient(135deg, #2f6f7c, #3bb4c1);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.sample-title span {
  color: #ffcc00;
}

.sample-subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.tags span {
  display: inline-block;
  background: #019cba;
  border: 1px solid #32e4ff;
  padding: 12px 20px 6px 10px;
  border-radius: 7px;
  margin: 5px 5px 0 0;
  font-size: 16px;
  position: relative;
  text-align: left;
}
.orange-text {
  color: #e9910a;
}

.divider {
  border-top: 1px solid var(--primary-color);
  padding-bottom: 30px;
}

.badge {
  position: absolute;
  top: -10px;
  left: 5px;
  background: #e9910a;
}
.book-img {
  max-width: 250px;
  transform: rotate(14deg);
}

.faq-item {
  background: #daf1f9;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 16px;
  margin-bottom: 12px;
  color: #1e2b32;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #a1daeb;
  transition: 0.3s;
  font-weight: 600;
}

.faq-item:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.faq-item::before {
  content: "✔";
  background: #2aa3a3;
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-section {
  padding: 40px;
  border: 1px solid #e6e6e6;
}
.buy-section h5 {
  font-size: 24px;
}
.amazon-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
}

.price-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  max-width: 70%;
}

.price-list li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
  padding-left: 25px;
  font-size: 16px;
}

.price-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 8px;
  background: #e9910a;
  color: #fff;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.price-list .sub {
  padding-left: 30px;
  border-bottom: none;
}

.destination-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.buy-btn {
  background: #ffd140;
  border: none;
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #ffd140;
  transition: 0.3s ease;
}
.buy-btn:hover {
  border: 1px solid #ffd140;
  background: transparent;
}
.cards img {
  height: 40px;
  margin-left: 8px;
}
.form-select {
  width: 340px;
}

.destination-box h6 {
  font-size: 20px;
  margin-bottom: 20px;
}

.item-list {
  border: 1px solid #e6e6e6;
  padding: 15px 20px 15px 20px;
  position: relative;
  border-radius: 10px;
  transition: 0.3s ease;
  color: #434343;
}
.item-list:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 5px;
}
.item-list:hover {
  background: #019cba;
  border: 1px solid #019cba;
  color: #fff;
  transform: translateX(-3px);
}
.learn-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.other-book {
  padding: 50px 0px;
}

.books-box {
  background: #f4f4f4;
  padding: 70px 30px;
  border: 1px solid #dfdede;
  border-radius: 32px;
	overflow:hidden;
}
.other-books-slider .owl-stage-outer {
    margin-top: 100px;
	overflow:visible !important;
}
.other-books-slider .item {
  position: relative;
  text-align: center;

}

.other-books-slider .book-item {
  position: relative;
  display: inline-block;
}

.number {
  position: absolute;
  color: #fff;
  background: var(--primary-color);
  display: flex;
  height: 25px;
  width: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
}

.number:after {
  content: "";
  position: absolute;
  height: 35px;
  width: 1px;
  border-right: 1px dotted #000;
  top: 30px;
}

.book-img {
 transform:rotate(0);
}
.download-book .col-auto {
  padding: 0 35px;
}
.download-book .col-auto {
  padding: 0 35px;
  border-right: 1px solid #e6e6e6;
}
.download-book .col-auto:last-child {
  border: none;
}

.chapters-section {
  border: 1px solid #e6e6e6;
  padding: 40px;
}

.chapter-item {
  padding: 30px 0px;
  border-bottom: 1px solid #e6e6e6;
  color: #434343;
}
.chapter-item:hover {
  background: linear-gradient(71deg, #195c71, #1bc4de);
  color: #fff;
  padding: 30px 30px;
  border-radius: 29px;
  color: #fff;
}

.chapter-badge {
  background: #e9910a;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
}
.chapters-section h5 {
  color: #1f6d78;
  margin-top: 8px;
  font-size: 26px;
}

.chapter-item:hover h5 {
  color: #fff;
}
.book-cover {
  max-width: 220px;
}
.open-btn {
  border: 1px solid #000;
  border-radius: 30px;
  transition: 0.3s ease;
}
.chapter-item:hover .open-btn {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}

/* ACCORDION HEADER */
.inner-custom-accordion .accordion-item {
  border: 1px solid #dfdfdf !important;
  border-radius: 25px !important;
  padding: 15px 30px;
  margin-bottom: 30px !important;
}
.inner-custom-accordion .accordion-button {
  font-weight: 600;
  box-shadow: none;
  padding: 10px 0px;
  color: #000;
  font-size: 26px;
}
.inner-custom-accordion .accordion-header {
  margin-bottom: 0;
  --bs-accordion-active-bg: transparent !important;
}

/* ICON */
.inner-custom-accordion .accordion-button::after {
  content: "+";
  font-size: 20px;
  background: none;
  transform: none;
  border: 2px solid #000;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.inner-custom-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
  background-image: none !important;
  border: 2px solid #fff;
}

/* BODY */
.inner-custom-accordion .accordion-item.active {
  background: linear-gradient(-225deg, #195c71, #1bc4de);
  border-radius: 25px;
  color: #fff;
}
.inner-custom-accordion .accordion-item.active .accordion-button {
  color: #fff;
}
.book-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    border-bottom: 1px dotted #fff;
    padding: 40px;
    color: #fff;
	flex-flow: column;
}
.inner-custom-accordion .accordion-body {
  max-width: 100%;
}

.book-item img {
  width: 220px;
  object-fit: cover;
}

/* BADGE */
.badge-custom {
  background: #e9910a;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 8px;
}

.book-item h6 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
}
.link-item h6 {
  color: var(--primary-color);
}
.link-item {
  margin-bottom: 10px;
  padding: 20px 40px;
}
.book-item p {
  font-size: 16px;
}

/* BASE */
.navbar-nav .menu-item {
  position: relative;
  list-style: none;
}

.navbar-nav .menu-item a {
  color: #fff;
  text-decoration: none;
}

.navbar-nav a {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

/* SUBMENU */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 320px;
  display: none;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

.sub-menu .menu-item a {
  padding: 8px 20px;
  color: #333;
  font-size: 14px;
}

.sub-menu li a:hover {
  background: #f5f5f5;
}

.menu-item-has-children:after {
    content: "\f078";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    right: -6px;
    top: 10px;
    color: #fff;
    font-weight: 900;
}
.sub-menu .menu-item-has-children:after {
    content: "\f078";
    position: absolute;
    font-family: "Font Awesome 6 Free";
    top: 10px;
    transform: rotate(-90deg);
    color: #000;
    font-weight: 900;
    right: 10px;
}
.search-box .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}
.blog-list-section .search-box {
  width: 100%;
}
.blog-list-section .search-box input {
  width: 100%;
  padding: 6px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #dee2e6;
  outline: none;
  background: transparent;
}

.blog-list-section .form-select {
  width: 100%;
}

.blog-card {
  background: #f4f4f4;
  border-radius: 29px;
  overflow: hidden;
  transition: 0.3s;
  padding: 20px;
  color: #000;
  text-align: left;
}
.blog-content h5 {
  font-size: 24px;
  max-width: 90%;
}
.blog-card:hover {
  background: linear-gradient(62deg, #195c71, #1bc4de);
  color: #fff;
}
.blog-card img {
  width: 100%;
  border-radius: 29px;
  margin-bottom: 15px;
}
.blog-card p {
  margin-bottom: 50px;
}
.blog-card:hover .blog-info {
  color: #fff;
  border-color: #fff;
}
.blog-info {
  color: #929292;
  display: flex;
  gap: 30px;
  border-top: 1px dotted #929292;
  padding-top: 10px;
  font-size: 14px;
}
.blog-info p {
  margin: 0;
}
.comment {
  padding: 0px 20px;
  border-left: 1px solid #929292;
  border-right: 1px solid #929292;
}
.recent-comments .section-title {
  padding-bottom: 15px;
  border-bottom: 1px solid #d6d6d6;
}
.recent-comments .item-list {
  margin-bottom: 15px;
}

.book-news .book-item {
  display: flex;
  gap: 20px;
  color: #000;
}
.book-li-item {
  margin-bottom: 25px;
  border-bottom: 1px dotted #000;
  padding: 40px;
}

.worksheet-card {
  color: #000;
  text-align: center;
}

.work-list {
  margin-top: 20px;
  text-align: left;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.work-list a {
  text-decoration: none;
  color: #000;
  transition: 0.3s ease;
}
.work-list a:hover {
  color: var(--primary-color);
}

.newsletter-card {
    color: #000;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.newsletter-card .work-list {
  margin-top: 20px;
  text-align: left;
  list-style: decimal;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
}

form.wpcf7-form.init {
    position: relative;
}
form.wpcf7-form.init .form-select{
  padding: .65rem .25rem .65rem .75rem;
  width: 100%;
  
}
.newsletter-section {
    background: linear-gradient(310deg, #195c71, #1bc4de);
    border-radius: 30px;
    padding: 25px;
    color: #fff;
}

.newsletter-section p {
    color: #fff !important;
}

form.wpcf7-form.init .col-lg-auto p{
  display: flex;
}
.wpcf7-spinner{
  flex-shrink: 0;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    padding: 10px 2rem;
    background: var(--primary-color) !important;
}
.divider-bottom {
  height: 1px;
  border-top: 1px dotted #555555;
  margin: 50px 0px;
}

.img-wrap {
  border-radius: 29px;
  margin: 30px 0px 40px;
  overflow: hidden;
}
.img-wrap img {
  width: 100%;
  object-fit: cover;
}

.bibilography-sec img {
  border-radius: 29px;
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px 20px 30px;
  transition: 0.3s;
  margin: 30px 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d6d6d6;
}
.review-card p {
  font-size: 18px;
  color: #050505;
  margin-top: 20px;
  font-family: var(--heading-font);
}
.sub-menu ul.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0;
    min-width: 180px;
}

.footer-bottom ul {
  flex-wrap: wrap;
}
.read-more-btn {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  text-decoration: none;
  padding: 10px 0px !important;
  border-radius: 50px;
  transition: 0.3s ease;
}
.read-more-btn:hover {
  background: transparent;
  color: var(--primary-color);
  text-decoration: none;
  padding: 10px 0px !important;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
}
section.faq-section img {
    border-radius: 40px;
}


.book-li-item a{
  color: #000;
  text-decoration: none;
}
.learn-more .row {
  row-gap: 20px;
}
.review-text.collapsed::after {
  content: "";
  display: block;
  height: 20px;
  margin-top: -20px;
  background: none;
}
.banner-card {
    height: 100%;
    background: #f4f4f4;
}
.banner-img .img-fluid {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
}

.book-item a,.link-item a{
  color:#fff;
  text-decoration: none;
  
}
.book-item a{
  text-decoration: underline;
}
.book-item.link-item li {
    list-style: circle;
}


section.conference-presentation a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 22px;
}
section.conference-presentation strong{
    margin-bottom: 10px;
}
.worksheet-sec .row{
  row-gap: 20px;
}

.worksheet-card {
    color: #000;
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}


div#news-form .form-select{
  width: 100%;
  padding: 10px;
}


div#news-form br{
display: none !important;
}

div#news-form .col-lg-auto {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 34px;
}
div#news-form .col-lg-auto p{
  margin: 0;
}
div#news-form  .wpcf7-spinner {
    margin: 0 5px !important ;
}
@media (min-width: 992px) {
  .menu-item-has-children:hover > .sub-menu {
    display: block;
  }
}
@media (max-width: 1410px) {
  .navbar-nav .menu-item a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 0px 5px;
  }
}
@media (max-width: 1160px) {
  .navbar-brand img {
    border-radius: 7px;
    max-width: 100px;
  }
  .btn-cta {
    background: var(--primary-color);
    border-radius: 50px;
    padding: 7px 15px;
    border: none;
    color: #fff;
    margin-right: 10px;
    border: 1px solid var(--primary-color);
    font-size: 14px;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 0 !important;
  }
  .navbar-nav .menu-item a {
    padding: 0px 4px;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px 10px 20px 10px;
    transition: 0.3s;
    margin: 30px 10px;
    display: flex;
  }
  .testimonial-slider .owl-nav .owl-prev {
    left: -8px;
  }

  .testimonial-slider .owl-nav .owl-next {
    right: -8px;
  }
}

/* DESKTOP HOVER */

@media (max-width: 991px) {
  .hero {
    text-align: center;
  }

  .floating-tag {
    display: none;
  }
  .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 15px;
  }

  .menu-item.open > .sub-menu {
    display: block;
  }
	
	.sub-menu li a:hover {
    background: #fff;
}
	.sub-menu ul.sub-menu {
     position:static;
    min-width: 100%;
}
	
	.sub-menu .menu-item-has-children:after {
    top: -3px;
    transform: rotate(0deg);
}
}


.bottom-tagline {
    font-size: 24px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 420px;
}