/*------------------------------------------------------------------
[Table of contents]

1. Import libraries
2. Custom properties
3. General Styles
4. Typography
5. Header and Navbar
6. Buttons and Links
7. Utilities
8. Sections
9. Swiper
10.Boxes and Cards
11.Footer
12.Accordion
13.Error 404
14.Responsive Layouts

-------------------------------------------------------------------*/

/* ---------------------------- */

/* Import libraries             */

/* ---------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('../css/vendor/bootstrap.min.css');
/* ---------------------------- */

/* Custom properties            */

/* ---------------------------- */

:root {
    --primary-color: #582AD4;
    --secondary-color: #F291A3;
    --text-color: #191919;
    --text-color-2: #7A7A7A;
    --accent-color: #3B67BF;
    --accent-color-2: #F2BBC5;
    --accent-color-3: #FBEAED;
    --font-1: "Nunito", sans-serif;
    --font-2: "Source Sans 3", sans-serif;
}
.text-primary{
    color: var(--primary-color) !important;
}
/* ---------------------------- */

/* General Styles               */

/* ---------------------------- */

body {
    font-family: var(--font-2);
    color: var(--text-color);
    background-color: #FFFFFF;
}

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

.bg-primary-color-2 {
    background-color: var(--accent-color);
}

.bg-secondary-color {
    background-color: var(--secondary-color);
}

.bg-secondary-color-2 {
    background-color: var(--accent-color-2);
}

.bg-accent-color {
    background-color: var(--accent-color-2);
}

.bg-accent-color-2 {
    background-color: var(--accent-color-3);
}

.bg-gradient-primary {
    background: linear-gradient(to bottom, var(--primary-color), #518ef8);
}

.bg-gradient-secondary {
    background: linear-gradient(45deg, #8BACEE, #F7D3DA);
}

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

.text-black-color-2 {
    color: var(--text-color);
}

.text-secondary-color-2 {
    color: var(--secondary-color);
}

.text-muted-color {
    color: var(--text-color-2);
}

.accent-primary-color {
    color: var(--accent-color);
}

.accent-secondary-color {
    color: var(--accent-color-2);
}

.accent-tertiary-color {
    color: var(--accent-color-3);
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.b-container {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
}

/* ---------------------------- */

/* Typography                   */

/* ---------------------------- */

h1 {
    font-size: 72px;
}

h2 {
    font-size: 48px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 26px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

button,
a {
    font-size: 18px;
    font-family: var(--font-1);
}

ul {
    list-style: none;
}

p,
li {
    font-size: 18px;
}

img {
    object-fit: cover;
}

/* ---------------------------- */

/* Header and Navbar            */

/* ---------------------------- */

.top-bar {
    background-color: var(--primary-color);
    /* padding-block: 1.2rem; */
    min-height: 80px;
}

.social-box {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-box a {
    background-color: var(--secondary-color);
    text-align: center;
    vertical-align: middle;
    transition: all 0.3s ease-in-out;
}

.social-box a:hover {
    background-color: var(--accent-color-2);
    /* transform: scale(1.1); */
}

.logo-box img {
    max-height: 110px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.nav-link {
    font-size: 1.15rem;
    color: var(--text-color);
    font-weight: 600;
    padding-block: 1.85rem;
    padding-inline: 1.50rem;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: 0;
    border-radius: 0 0 25px 25px;
    padding: 15px 0px;
    width: 220px;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: var(--text-color);
    font-size: 1.15rem;
    padding: 15px;
    font-weight: 600;
    padding-block: 0.75rem;
    padding-inline: 0.75rem;
}

.dropdown-item:hover {
    color: var(--accent-color) !important;
    background-color: transparent;
}

.dropdown-item:focus {
    color: var(--accent-color) !important;
}

.dropdown-item.active {
    color: var(--primary-color) !important;
    background-color: transparent;
}

/* ---------------------------- */

/* Buttons and Links            */

/* ---------------------------- */

.btn-quotes {
    width: 180px;
    background-color: var(--text-color);
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    border: none;
}

.btn-quotes:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
}

.btn-primary-solid {
    background-color: var(--primary-color);
    color: #FFFFFF;
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-primary-solid:hover {
    background-color: var(--accent-color);
    color: #FFFFFF;
    border: none;
    transform: scale(1.1);
}

.btn-secondary-solid {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-secondary-solid:hover {
    background-color: var(--accent-color-2);
    color: #FFFFFF;
    border: none;
    transform: scale(1.1);
}

.btn-secondary-solid-2 {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn-secondary-solid-2:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    transform: scale(1.1);
}

.links-primary {
    font-family: var(--font-2);
    color: var(--text-color);
    font-size: 18px;
    text-decoration: none;
}

.links-primary:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.links-secondary {
    font-family: var(--font-2);
    color: #FFFFFF;
    font-size: 18px;
    text-decoration: none;
}

.links-secondary:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.badge-primary-color {
    background-color: var(--primary-color);
    color: #FFFFFF;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
}

.badge-primary-color:hover {
    background-color: var(--accent-color);
    color: #FFFFFF;
}

/* ---------------------------- */

/* Utilities                    */

/* ---------------------------- */

.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-box {
    width: 100%;
    max-width: 960px;
    height: auto;
}

.video-overlay .ratio {
    width: 100%;
    height: auto;
}

.video-overlay iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.img-container {
    width: 100%;
    max-width: 100%;
    max-width: 1000px;
}

.ratio-wrapper-429 {
    position: relative;
    aspect-ratio: 3 / 4;
    /* default: portrait */
    overflow: hidden;
}

.img-circle {
    width: 275px;
    height: 275px;
}

.ratio-wrapper-419 {
    position: relative;
    aspect-ratio: 3 / 4;
    /* default: portrait */
    overflow: hidden;
}

.bg-overlay-secondary {
    background: linear-gradient(45deg, rgba(59, 103, 191, 0.9), rgba(247, 211, 218, 0.8));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.scale-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.bg-secondary-gradient {
    background: linear-gradient(to right, white 0%, white 50%, #F8DAE0 50%, #F7D9DF 100%);
}

.breadcrumb {
    font-size: 22px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: white !important;
}

.breadcrumb-item a:hover,
.breadcrumb-item.active {
    color: white !important;
}

.list-unstyled {
    padding-left: 0;
    margin-bottom: 0;
}

/* ---------------------------- */

/* Sections                     */

/* ---------------------------- */

.banner-section {
    position: relative;
    overflow: hidden;
    padding: 50px 75px 0 75px;
    color: white;
}

.hero-section {
    background-image: url('../image/Homehero.png');
    background-size: cover;
    background-position: center;
    padding-bottom: 80px;
}

/* ---------------------------- */

/* Swiper                       */

/* ---------------------------- */

.swiper-container-outer {
    position: relative;
    overflow: hidden;
}

.swiper {
    padding: 30px 0;
}

.swiper-slide {
    height: auto;
}

/* ---------------------------- */

/* Boxes and Cards              */

/* ---------------------------- */

.step-box {
    position: relative;
    margin-bottom: 3rem;
}

.step-box h1 {
    position: absolute;
    font-family: var(--font-1);
    font-weight: 900;
    opacity: 0.8;
    top: -10px;
    left: 13%;
    transform: translateX(-50%);
    z-index: 0;
    background: -webkit-linear-gradient(var(--primary-color), #9abbfd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-box h3 {
    position: relative;
    font-family: var(--font-1);
    font-weight: 700;
    margin: 25px 0 20px 0;
    z-index: 1;
}

.step-box p {
    position: relative;
    z-index: 1;
}

.feedback-card {
    background: #fff;
    border: var(--primary-color) 2px solid;
    border-radius: 30px;
    padding: 35px;
}

.quotes-section {
    padding: 6em 2em 6em 2em;
    position: relative;
    overflow: hidden;
}

.quotes-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-image: url('../image/men-and-women-sitting-in-a-circle-during-group-the-2024-10-21-08-45-31-utc.jpg');
    background-size: cover;
    background-position: center center;
    opacity: 0.8;
    z-index: -1;
    /* place behind of content */
}

.quotes-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(58, 95, 169, 0.9), rgba(244, 197, 206, 0.8));
    opacity: 0.9;
    z-index: 1;
    /* place in-front of content */
}

.quotes-section>.container {
    position: relative;
    /* Force container in-front of background */
    z-index: 2;
}

.quotes-section>.card {
    margin-top: 30px;
    /* Space from heading */
}

.news-card {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.news-card .card-title {
    font-family: var(--font-1);
    font-weight: 800;
    text-decoration: none;
}

.news-card .card-title:hover {
    font-family: var(--font-1);
    font-weight: 800;
    /* font-size: 22px; */
    text-decoration: none;
    color: var(--primary-color);
}

/* ---------------------------- */

/* Footer                       */

/* ---------------------------- */

.footer {
    position: relative;
    overflow: hidden;
    color: white;
}

.footer-background {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/multiethnic-women-with-tattoo-and-coffee-to-go-hol-2024-11-08-08-18-58-utc.jpg');
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(23, 71, 166, 0.9), rgba(59, 103, 191, 0.9));
    z-index: 1;
    /* place in-front of content */
}

.footer-logo>img {
    max-height: 125px;
|}

/* ---------------------------- */

/* Accordion                    */

/* ---------------------------- */

.accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: transparent;
}

.accordion .accordion-button {
    font-size: large;
    font-weight: 700;
    color: #fff;
    background-color: var(--accent-color);
    /* Default blue */
    border-radius: 1.5rem;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: none;
}

.accordion .accordion-button.collapsed {
    background-color: var(--accent-color);
    /* Blue for collapsed */
    color: #fff;
}

.accordion .accordion-button:not(.collapsed) {
    background-color: var(--accent-color-2);
    /* Pink for expanded */
    color: #000;
}

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

.accordion i {
    font-size: 1.2rem;
}

.accordion .accordion-collapse {
    margin-top: 0.5rem;
    /* Gap between header and body */
}

.accordion .accordion-body {
    font-size: large;
    background-color: #F5F5F5;
    padding: 1.5rem;
    border-radius: 1rem;
    /* margin-top: 0.5rem; */
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* ---------------------------- */

/* Error 404                    */

/* ---------------------------- */

.error-code {
    font-size: 18rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.error-code span:nth-child(2) {
    background: linear-gradient(180deg, var(--primary-color), #FFC2B3);
    color: white;
    padding: 20px 0;
    border-radius: 1.5rem;
}

/* ---------------------------- */

/* Responsive Layouts           */

/* ---------------------------- */

@media only screen and (max-width: 1199.98px) {
    .ratio-wrapper-429 {
        aspect-ratio: 3 / 2;
    }
    .ratio-wrapper-419 {
        aspect-ratio: 1 / 1;
    }
    .step-box h1 {
        left: 17%;
    }
}

@media only screen and (max-width: 991.98px) {
    /* ---------------------------- */
    /* Typography                   */
    /* ---------------------------- */
    h1 {
        font-size: 56px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 18px;
    }
    button,
    a {
        font-size: 17px;
    }
    p {
        font-size: 16px;
    }
    /* ---------------------------- */
    /* Header and Navbar            */
    /* ---------------------------- */
    /* padding: 4em 2em 4em 2em; */
    .section {
        padding: 4em 1em;
    }
    .top-bar {
        display: none;
    }
    .logo-box img {
        max-height: 86px;
    }
    .logo-drawer img {
        max-height: 60px;
    }
    .nav-link {
        font-size: 1rem;
        padding-block: 0.5rem;
        padding-inline: 0.5rem;
    }
    .nav-link.active,
    .nav-link:hover,
    .nav-link:focus {
        color: var(--primary-color) !important;
    }
    .navbar-nav .nav-link {
        padding-block: 0.5rem;
        padding-inline: 0.5rem;
    }
    .dropdown-menu {
        border-radius: 0;
        width: 100%;
        padding: 5px 0px 5px 0px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
    .dropdown-item {
        font-size: 1rem;
        padding-block: 0.5rem;
        padding-inline: 0.5rem;
    }
  
    .img-circle {
        width: 275px;
        height: 275px;
    }
    .step-box h1 {
        left: 5%;
    }
    .feedback-slide {
        width: 33.333%;
        /* 3 slides per-row for desktop */
    }
    .bg-secondary-gradient {
        background: linear-gradient(to top, white 0%, white 62%, #F8DAE0 62%, #F7D9DF 100%);
    }
    .quotes-section {
        position: relative;
        /* Force container in-front of background */
        overflow: hidden;
        padding: 0;
    }
    .quotes-section>.container {
        position: relative;
        /* Force container in-front of background */
        z-index: 2;
        padding: 0;
    }
    .quotes-section>.card {
        margin-top: 70px;
    }
    .img-container {
        width: 90%;
    }
    .ratio-wrapper-429 {
        aspect-ratio: 16 / 9;
    }
    .img-circle {
        width: 300px;
        height: 300px;
    }
    .footer-logo {
        text-align: center;
        padding: 0 4rem;
    }
    .footer-logo>img {
        max-height: 85px;
    }
    .error-code {
        font-size: 15rem;
    }
}

@media only screen and (max-width: 767.98px) {
    .btn-play {
        width: 80%;
    }
    .badge-cta {
        display: none;
    }
    .bg-secondary-gradient {
        background: linear-gradient(to top, white 0%, white 61%, #F8DAE0 61%, #F7D9DF 100%);
    }
    .img-container {
        width: 85%;
    }
    .ratio-wrapper-429 {
        aspect-ratio: 1 / 1;
    }
    .img-circle {
        width: 300px;
        height: 300px;
    }
    .step-box h1 {
        left: 6%;
    }
    .footer-logo>img {
        max-height: 65px;
    }
}

@media only screen and (max-width:576.98px) {
    .ratio-wrapper-429 {
        aspect-ratio: 3 / 4;
    }
    .img-circle {
        width: 185px;
        height: 185px;
    }
    .step-box h1 {
        left: 8%;
    }
    .error-code {
        font-size: 10rem;
    }
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.gallery-one .container-fluid {
  width: 100%;
  max-width: 1572px;
}
.gallery-one--page {
  padding-top: 100px;
}
.gallery-one .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
@media (min-width: 992px) {
  .gallery-one__carousel .owl-nav {
    display: none;
  }
}
.gallery-one__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-one__filter__list li {
  cursor: pointer;
}
.gallery-one__filter__list li span {
  display: block;
  font-size: 10px;
  background-color: var(--wallpi-gray, #f9f6f1);
  transition: all 500ms ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: var(--wallpi-letter-space, 0.1em);
  padding: 15px 20px;
  line-height: 1.2em;
}
.gallery-one__filter__list li.active span, .gallery-one__filter__list li:hover span {
  background-color: var(--wallpi-base, #d18548);
  color: var(--wallpi-white, #fff);
}
.gallery-one__card {
  position: relative;
  overflow: hidden;
  background-color: var(--wallpi-black, #2a2826);
}
.gallery-one__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--wallpi-base-rgb, 209, 133, 72), 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-one__card__hover .img-popup {
  position: relative;
}
.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-one__card__icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}
.gallery-one__card__icon::after, .gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--wallpi-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-two {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}
.gallery-two .container-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .gallery-two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.gallery-two .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.gallery-two__col-one {
  width: 65%;
}
@media (max-width: 1199px) {
  .gallery-two__col-one {
    width: 100%;
  }
}
.gallery-two__col-two {
  width: 35%;
}
@media (max-width: 1199px) {
  .gallery-two__col-two {
    width: 100%;
  }
}
.gallery-two__card {
  position: relative;
  overflow: hidden;
  background-color: var(--wallpi-black, #2a2826);
}
.gallery-two__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-two__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--wallpi-black-rgb, 42, 40, 38), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-two__card__hover .img-popup {
  position: relative;
}
.gallery-two__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-two__card:hover .gallery-two__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-two__card a {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--wallpi-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-two__card a:hover .gallery-two__card__icon::after, .gallery-two__card a:hover .gallery-two__card__icon::before {
  background-color: var(--wallpi-base, #d18548);
}
.gallery-two__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}
.gallery-two__card__icon::after, .gallery-two__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--wallpi-black, #2a2826);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-two__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gallery-two__info {
  position: relative;
  background-color: var(--wallpi-base, #d18548);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 50px 0 100px;
  height: 100%;
}
@media (min-width: 1200px) {
  .gallery-two__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 1500px) {
  .gallery-two__info {
    padding-left: 40px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .gallery-two__info {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .gallery-two__info {
    padding: 50px 30px;
  }
}
.gallery-two__info__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}
.gallery-two__info__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-two__info__title {
  color: var(--wallpi-white, #fff);
  font-size: 44px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 45px;
  }
}

/* ================= COVER ================= */
.cover{
    text-align:center;
    padding:40px 20px;
}
.cover h1{
    font-family:'Playfair Display', serif;
    font-size:70px;
    font-weight:800;
}
.cover span{ color:#7b3fe4; }
.cover p{
    font-size:22px;
    max-width:700px;
    margin:20px auto;
}
.start-reading{
    margin-top:40px;
    padding:16px 44px;
    font-size:18px;
    background:#7b3fe4;
    color:#fff;
    border:none;
    border-radius:40px;
    cursor:pointer;
}

/* ================= SLIDER ================= */
.book-slider-wrapper{
    position:relative;
    max-width:1200px;
    margin:auto;
    overflow:hidden;
}

.book-slider{
    display:flex;
    transition:transform 0.7s ease-in-out;
    width:100%;
}

/* ================= OPEN BOOK ================= */
.open-book{
    min-width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-radius:20px;
    box-shadow:0 30px 80px rgba(0,0,0,0.1);
    position:relative;
    overflow:hidden;
}

/* CENTER BIND */
.open-book::before{
    content:"";
    position:absolute;
    width:3px;
    height:100%;
    background:linear-gradient(to bottom,#ddd,#bbb,#ddd);
    left:50%;
    top:0;
}

/* ================= PAGE ================= */
.page{
    padding:60px;
    background:#fffdf8;
    min-height: 40vh;
}
.page h2{
    font-family:'Playfair Display', serif;
    font-size:38px;
    margin-bottom:20px;
}
.page p{
    font-size:18px;
    line-height:1.9;
    color:#333;
    margin-bottom:18px;
}

/* ICON TITLE */
.icon-title{
    display:flex;
    align-items:center;
    gap:12px;
}
.icon-title span{ font-size:30px; }

/* QUOTE */
.quote{
    font-style:italic;
    background:#f4edff;
    padding:20px;
    border-left:4px solid #7b3fe4;
    margin-top:30px;
}

/* FOUNDERS */
.founders{text-align:center;}
.founder-wrap{
    display:flex;
    justify-content:center;
    gap:50px;
    margin-top:40px;
}
.founder img{
    width:170px;
    height:170px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #7b3fe4;
}
.founder h4{ margin-top:14px; }

/* ================= NAV BUTTONS ================= */
/* Navigation Buttons – refined */
.book-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    background:#6b2fa5;
    color:#fff;
    border:none;
    font-size:22px;
    border-radius:50%;
    cursor:pointer;
    z-index:20;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    transition:all 0.25s ease;
}

/* Left & Right positioning */
.book-nav.left{
    left:0px;
}
.book-nav.right{
    right:0px;
}

/* Hover effect */
.book-nav:hover{
    background:#4d1f7d;
    transform:translateY(-50%) scale(1.08);
}

/* Mobile adjustment */
@media(max-width:768px){
    .book-nav{
        width:40px;
        height:40px;
        font-size:20px;
    }
    .book-nav.left{ left:30px; }
    .book-nav.right{ right:30px; }
}

/* Mobile & Tablet */
@media (max-width: 900px){

    /* Book shows only one page */
 .open-book{
        display:grid;
        grid-template-columns: 1fr;   /* ONE PAGE PER ROW */
        width:100%;
    }

    .open-book::before{
        display:none;
    }

    .page{
        padding:40px 10px;
        min-height:auto;
    }
    .book-slider{
        align-items:center;
    }

    /* Navigation buttons adjust */
    .book-nav{
        top:50%;
    }
    .founder img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #7b3fe4;
}
}


.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    color: #fff;
    text-decoration: none;
}
.section-title{
    font-weight:700;
    letter-spacing:-0.4px;
}
.subtle{
    color:#6b7280;
}
.pricing-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    height:100%;
    box-shadow:0 18px 35px rgba(0,0,0,0.08);
    transition:.35s ease;
    border-top:6px solid transparent;
}
.pricing-card:hover{
    transform:translateY(-6px);
    box-shadow:0 28px 55px rgba(0,0,0,0.12);
}
.price{
    font-size:34px;
    font-weight:800;
    color:#5b2ddb;
}
.tag{
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:600;
    color:#6b7280;
}
.feature{
    padding:6px 0;
}
.cta-btn{
    border-radius:40px;
    padding:12px 24px;
    font-weight:600;
}
.border-intro{ border-color:#8b5cf6; }
.border-onetime{ border-color:#6366f1; }
.border-basic{ border-color:#22c55e; }
.border-preferred{ border-color:#a855f7; }
.border-priority{ border-color:#111827; }
.border-corporate{ border-color:#64748b; }

.badge-best{
    background:#ede9fe;
    color:#5b2ddb;
    font-size:12px;
    padding:6px 14px;
    border-radius:30px;
    font-weight:600;
    display:inline-block;
    margin-bottom:10px;
}

.priority{
    background: linear-gradient(135deg,#1f1147,#3b1a91);
    color:#fff;
}
.priority .price,
.priority .subtle{
    color:#fff;
}
.preview{
    background:#fff;
    border-radius:14px;
    padding:22px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.disclaimer-box{
    max-width:520px;
    background:#f5f3ff;
    border-left:5px solid #5b2ddb;
    border-radius:14px;
    padding:20px 25px;
    text-align:center;
    font-size:14px;
    color:#4b5563;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.disclaimer-box strong{
    color:#1f1147;
}
.section-title{
    font-weight:700;
    color:var(--text-color);
    letter-spacing:-0.3px;
}

.subtle{
    color:var(--text-color-2);
}

.homepage-pricing{
    background: linear-gradient(135deg,var(--accent-color-3),#ffffff);
    border-radius:26px;
    padding:40px;
    box-shadow:0 30px 70px rgba(88,42,212,0.18);
}

.preview-card{
    background:#ffffff;
    border-radius:20px;
    padding:26px 22px;
    text-align:center;
    position:relative;
    transition:all .35s ease;
    box-shadow:0 14px 32px rgba(0,0,0,0.08);
    border:1px solid var(--accent-color-3);
}

.preview-card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 50px rgba(88,42,212,0.16);
}

.preview-card .tag{
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    color:var(--text-color-2);
}

.preview-card .price{
    font-size:30px;
    font-weight:800;
    color:var(--primary-color);
    margin:10px 0 4px;
}

.preview-card .dot{
    width:10px;
    height:10px;
    border-radius:50%;
    display:block;
    margin:0 auto 14px;
}

/* Accent dots */
.preview-card.intro .dot{ background:var(--primary-color); }
.preview-card.monthly .dot{ background:var(--accent-color); }
.preview-card.priority .dot{ background:var(--secondary-color); }

.cta-box{
    background:#ffffff;
    border-radius:22px;
    padding:34px;
    height:100%;
    box-shadow:0 14px 32px rgba(0,0,0,0.08);
    border-left:6px solid var(--primary-color);
}

.cta-box h5{
    font-weight:700;
    color:var(--text-color);
}

.cta-btn{
    border-radius:40px;
    padding:12px 24px;
    font-weight:600;
}

.btn-primary{
    background:var(--primary-color);
    border:none;
}

.btn-primary:hover{
    background:#4721b5;
}

.btn-outline-primary{
    border-color:var(--primary-color);
    color:var(--primary-color);
}

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

.section{
    padding:90px 0;
}

.hero{
    background:linear-gradient(135deg,#f7f2ff,#fff1f4);
}

.section-title{
    font-weight:800;
    letter-spacing:-0.5px;
}

.subtitle{
    color:#7A7A7A;
    max-width:720px;
    margin:auto;
    font-size:18px;
}

.badge-soft{
    background:#FBEAED;
    color:#582AD4;
    padding:6px 18px;
    border-radius:50px;
    font-weight:600;
}

.learn-card{
    background:linear-gradient(135deg,#ffffff,#f8f5ff);
    border-radius:32px;
    padding:50px;
    box-shadow:0 30px 65px rgba(88,42,212,.18);
}

.learn-list{
    list-style:none;
    padding:0;
}

.learn-list li{
    padding-left:28px;
    margin-bottom:14px;
    position:relative;
}

.learn-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#582AD4;
    font-weight:700;
}

.learn-visual{
    background:#FBEAED;
    border-radius:24px;
    padding:30px;
    height:100%;
}

.not-included{
    color:#c1556c;
    font-size:14px;
}

.info-card{
    background:#fff;
    border-radius:26px;
    padding:40px;
    box-shadow:0 20px 45px rgba(88,42,212,.14);
}

.list-ui li{
    margin-bottom:10px;
}

.pricing-section{
    background:#faf7ff;
}

.pricing-box{
    background:#fff;
    border-radius:26px;
    padding:36px;
    text-align:center;
    box-shadow:0 20px 45px rgba(88,42,212,.15);
}

.pricing-box.highlight{
    border:2px solid #582AD4;
}

.price{
    font-size:36px;
    font-weight:800;
    color:#582AD4;
}

.certificate-card{
    background:linear-gradient(135deg,#fbeaed,#f3edff);
    border-radius:34px;
    padding:60px 40px;
    box-shadow:0 35px 70px rgba(88,42,212,.25);
}

.cert-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#582AD4;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin:0 auto 20px;
}

.muted{
    color:#7A7A7A;
    font-size:14px;
}

.cta-strip{
    background:linear-gradient(135deg,#f7f2ff,#fff1f4);
    border-radius:30px;
    padding:50px;
}

.cta-btn{
    border-radius:50px;
    padding:14px 32px;
    font-weight:600;
}
.soft-bg{
    background:linear-gradient(135deg,#f7f2ff,#fff6f8);
}

.pro-card{
    background:#ffffff;
    border-radius:30px;
    padding:45px 40px;
    box-shadow:0 28px 60px rgba(88,42,212,.18);
    position:relative;
    overflow:hidden;
    height:100%;
}

.pro-card::after{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:160px;
    height:160px;
    background:#FBEAED;
    border-radius:50%;
    opacity:.6;
}

.pro-card.highlight{
    border:2px solid #582AD4;
}

.card-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#582AD4;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:20px;
}

.list-ui{
    list-style:none;
    padding:0;
    margin:0;
}

.list-ui li{
    position:relative;
    padding-left:30px;
    margin-bottom:14px;
    font-size:16px;
}

.list-ui li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:#582AD4;
    font-weight:700;
}
