html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: radial-gradient(circle at center, rgba(0, 0, 0,0.1), rgba(0,0,0,0.1));
}

body {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-top: constant(safe-area-inset-top);
    padding-top: env(safe-area-inset-top);
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
    background: radial-gradient(circle at center, rgba(0, 0, 0,0.1), rgba(0,0,0, 0.1));
}

main {
    margin-top: calc(160px + 3rem + 6vh);
    position: relative;
    z-index: 5;
    flex: 1;
    padding: 1.5rem;
    box-sizing: border-box;
    background: radial-gradient(circle at center, rgba(0, 0, 0,0.1), rgba(0,0,0, 0.1));
}

.footer {
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8em;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    background: radial-gradient(circle at center, rgba(0, 0, 0,0.1), rgba(0,0,0, 0.1));
}

.content-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}
.scroll-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 260px;
    pointer-events: none;
    z-index: 998;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px) saturate(180%) brightness(120%);
    -webkit-backdrop-filter: blur(0px) saturate(180%) brightness(120%);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}
.skip-link {
    position: absolute;
    top: auto;
    left: -999px;
    width: 1vw;
    height: 1vh;
    overflow: hidden;
    z-index: -999;
}
.skip-link:focus {
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: auto;
    z-index: 999;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    background-color: #fff;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    padding: 10px 0;
    z-index: 1002;
    background: transparent;
    box-sizing: border-box;
}

.header-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    position: relative;
}

.logo-link {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 80%;
    z-index: 2;
}

.logo {
    height: 200px;
    display: block;
}

.bag-link {
    position: absolute;
    right: -480px;
    left: 90%;
    top: 40%;
    transform: translateY(-50%);
    z-index: 2;
}

.bag {
    height: 20px;
    display: block;
}

.bag:hover, .logo:hover {
    transform: scale(1.05);
    animation: jump 0.6s ease-in-out forwards;
}

@keyframes jump {
    0% { transform: translateY(0) scale(1.05); }
    20% { transform: translateY(-5px) scale(1.05); }
    40% { transform: translateY(0) scale(1.05); }
    60% { transform: translateY(-2px) scale(1.05); }
    80% { transform: translateY(0) scale(1.05); }
    100% { transform: translateY(0) scale(1.05); }
}

.nav {
    position: fixed;
    top: 200px;
    left: 1rem;
    width: calc(100% - 2rem);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: black;
    border-radius: 2rem;
    box-sizing: border-box;
}

.nav-liquid {
    flex: 1;
    padding: 1rem;
    width: 100%;
    height: 6vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px) saturate(180%) brightness(120%);
    -webkit-backdrop-filter: blur(10px) saturate(180%) brightness(120%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.nav-liquid > * {
    max-width: 100%;
    height: auto;
}

.nav-liquid a {
    text-decoration: none;
}

.nav-books, .nav-courses, .nav-seminars, .nav-services {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 2rem;
    perspective: 1000px;
    padding: 1px;
    margin: 1rem auto;
    width: 100%;
    flex: 1;
}

.nav-books a, .nav-courses a, .nav-seminars a, .nav-services a {
    text-decoration: none;
    color: white;
}

.nav-books:hover, .nav-courses:hover, .nav-seminars:hover, .nav-services:hover {
    background-color: rgba(255, 255, 255, 0.8);
    height: 3rem;
    width: 100%;
}

.glowing-background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 0, 0,0.7), rgb(0,0,0));
    z-index: -1;
}

.glowing-blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    filter: blur(120px);
    opacity: 0.6;
    animation: blob-base-animation 10s infinite alternate ease-in-out;
    will-change: transform, opacity, border-radius;
}
.glowing-blob-1 {
    background: radial-gradient(circle, #ffe600, #ff6600);
    width: 100px;
    height: 100px;
    top: 15%;
    left: 10%;
    animation-duration: 3s;
    animation-delay: 0s;
    animation-name: blob-animate-1;
}
.glowing-blob-2 {
    background: radial-gradient(circle, #00fffb, #0099ff);
    width: 100px;
    height: 100px;
    top: 65%;
    left: 60%;
    animation-duration: 3s;
    animation-delay: 0.5s;
    animation-name: blob-animate-2;
}
.glowing-blob-3 {
    background: radial-gradient(circle, #33ff57, #33fff0);
    width: 150px;
    height: 100px;
    top: 25%;
    left: 35%;
    animation-duration: 3s;
    animation-delay: 1s;
    animation-name: blob-animate-3;
}
.glowing-blob-4 {
    background: radial-gradient(circle, #5733ff, #bd33ff);
    width: 150px;
    height: 150px;
    bottom: 5%;
    right: 15%;
    animation-duration: 3s;
    animation-delay: 1.5s;
    animation-name: blob-animate-1;
}
.glowing-blob-5 {
    background: radial-gradient(circle, #ffbd33, #ffe600);
    width: 150px;
    height: 150px;
    top: 5%;
    right: 5%;
    animation-duration: 3s;
    animation-delay: 2s;
    animation-name: blob-animate-2;
}
.glowing-blob-6 {
    background: radial-gradient(circle, #00c0ff, #007bff);
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 5%;
    animation-duration: 3s;
    animation-delay: 2.5s;
    animation-name: blob-animate-3;
}
.glowing-blob-7 {
    background: radial-gradient(circle, #33ff99, #00e673);
    width: 120px;
    height: 120px;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    animation-duration: 3s;
    animation-delay: 4s;
    animation-name: blob-animate-1;
}
.glowing-blob-8 {
    background: radial-gradient(circle, #ff33cc, #cc33ff);
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 5%;
    animation-duration: 3s;
    animation-delay: 3.5s;
    animation-name: blob-animate-2;
}

@keyframes blob-animate-1 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { transform: translate(7vw, -10vh) scale(1.1) rotate(20deg); opacity: 0.75; border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%; }
    50% { transform: translate(-12vw, 15vh) scale(0.9) rotate(-15deg); opacity: 0.5; border-radius: 70% 30% 40% 60% / 30% 60% 40% 70%; }
    75% { transform: translate(10vw, -7vh) scale(1.05) rotate(12deg); opacity: 0.68; border-radius: 30% 70% 60% 40% / 70% 40% 60% 30%; }
    100% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}
@keyframes blob-animate-2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
    30% { transform: translate(-9vw, 13vh) scale(1.15); opacity: 0.7; border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%; }
    60% { transform: translate(7vw, -18vh) scale(0.85); opacity: 0.55; border-radius: 30% 70% 30% 70% / 70% 30% 70% 30%; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.6; border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
}
@keyframes blob-animate-3 {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.6; border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%; }
    25% { transform: translate(12vw, 0) scale(1.08) rotate(100deg); opacity: 0.65; border-radius: 50% 50% 60% 40% / 50% 50% 40% 60%; }
    50% { transform: translate(0, 12vh) scale(0.92) rotate(200deg); opacity: 0.58; border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%; }
    75% { transform: translate(-12vw, 0) scale(1.05) rotate(300deg); opacity: 0.62; border-radius: 50% 50% 40% 60% / 50% 50% 60% 40%; }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); opacity: 0.6; border-radius: 40% 60% 50% 50% / 60% 40% 50% 50%; }
}

.flashing-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    will-change: transform, opacity;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
}
.flashing-light-1 {
    background-color: #aefc05;
    width: 50px; height: 50px;
    top: 20%; left: 5%;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-name: flash-move-1;
}
.flashing-light-2 {
    background-color: #ffcc00;
    width: 60px; height: 60px;
    bottom: 10%; right: 15%;
    animation-delay: 0.5s;
    animation-duration: 3s;
    animation-name: flash-move-2;
}
.flashing-light-3 {
    background-color: #00ffff;
    width: 40px; height: 40px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
    animation-duration: 3s;
    animation-name: flash-move-3;
}
.flashing-light-4 {
    background-color: #ff00ff;
    width: 70px; height: 70px;
    top: 5%; right: 30%;
    animation-delay: 1.5s;
    animation-duration: 3s;
    animation-name: flash-move-1;
}
@keyframes flash-move-1 {
    0% { transform: translate(0, 0) scale(0.5); opacity: 0; }
    10% { opacity: 0.9; transform: scale(1.0); }
    30% { transform: translate(20vw, 15vh) scale(0.8); opacity: 0.7; }
    60% { transform: translate(-10vw, -20vh) scale(0.6); opacity: 0.4; }
    100% { transform: translate(0, 0) scale(0.5); opacity: 0; }
}
@keyframes flash-move-2 {
    0% { transform: translate(0, 0) scale(0.3); opacity: 0; }
    15% { opacity: 1; transform: scale(1.1); }
    40% { transform: translate(-25vw, 10vh) scale(0.9); opacity: 0.8; }
    70% { transform: translate(15vw, -5vh) scale(0.7); opacity: 0.5; }
    100% { transform: translate(0, 0) scale(0.3); opacity: 0; }
}
@keyframes flash-move-3 {
    0% { transform: translate(0, 0) scale(0.4); opacity: 0; }
    20% { opacity: 0.8; transform: scale(0.9); }
    50% { transform: translate(10vw, -10vh) scale(1.0); opacity: 0.6; }
    80% { transform: translate(-10vw, 10vh) scale(0.7); opacity: 0.3; }
    100% { transform: translate(0, 0) scale(0.4); opacity: 0; }
}
@keyframes liquidBreath {
    0% { transform: scale(1); }
    50% { transform: scale(1); }
    100% { transform: scale(1); }
}

.index {
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.index-liquid {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px) saturate(180%) brightness(120%);
    -webkit-backdrop-filter: blur(10px) saturate(180%) brightness(120%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    transition: backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.index-liquid video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.index-liquid h1 {
    position: relative;
    z-index: 1;
    color: white;
}
.index-liquid > * {
    max-width: 100%;
}
.books {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    gap: 1rem;
    flex: 1;
}

.books-div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    border-radius: 1rem;
    flex: 1 1 25%;
    min-height: auto;
}

.books-liquid {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.liquid-glass {
    flex: 1;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2rem;
    backdrop-filter: blur(10px) saturate(180%) brightness(120%);
    -webkit-backdrop-filter: blur(10px) saturate(180%) brightness(120%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    
}

.liquid-glass h1,
.liquid-glass h2,
.liquid-glass p {
    box-sizing: border-box;
    padding: 0 1rem;
}

.liquid-glass p {
    text-align: justify;
    padding-bottom: 1rem ;
}

.buy-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    margin-top: 2rem;
}

.buy-button-liquid {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.buy-button-liquid:hover {
    background-color: rgb(222, 255, 4, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.buy-button-liquid h4 {
    color: white;
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    white-space: nowrap;
}

.buy-button-liquid a {
    text-decoration: none;
    color: inherit;
}

.title {
    display: flex;
    color: white;
	font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    justify-content: center;
	font-size: clamp(2.5rem, 4vw, 3rem);
    line-height: 3rem;
    word-wrap: break-word; 
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
    text-wrap: balance;
}
.subtitle {
    display: flex;
    font-style: italic;
    color:  rgb(222, 255, 4);
	font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    justify-content: center;
	font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 3rem;
    word-wrap: break-word; 
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
    text-wrap: balance;
}
.heading {
    display: flex;
    color:  rgb(234, 11, 133);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", 
    Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
    justify-content: center;
	font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 3rem;
}
.subheading {
    display: flex;
    color:  white;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", 
    Roboto, Helvetica, Arial, sans-serif;
    text-align: center;
    justify-content: center;
	font-size: clamp(1rem, 1vw, 1.5rem);
    line-height: 2rem;
    word-wrap: break-word; 
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
    text-wrap: balance;
}
.paragraph {
    display: flex;
    color: white;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", 
    Roboto, Helvetica, Arial, sans-serif;
	font-size: clamp(1rem, 1vw, 1.5rem);
    line-height: 2rem;
    text-align: center;
    justify-content: center;
    word-wrap: break-word; 
    overflow-wrap: break-word;
    white-space: normal;
    box-sizing: border-box;
    text-wrap: balance;
    
}

.courses {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    gap: 1rem;
    flex: 1;
}

.courses-div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    border-radius: 1rem;
    min-width: 250px;
    flex: 1 1 33%;
    height: auto;
    min-height: auto;
}

.courses-liquid {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

.seminars {
        display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    gap: 1rem;
    flex: 1;
}
.seminars-div{
     display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    border-radius: 1rem;
    min-width: 250px;
    flex: 1 1 25%;
    height: auto;
    min-height: auto;
}
.seminars-liquid {
flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
   
}
.services{
   display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    gap: 1rem;
    flex: 1;
}
.services-div {
  display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    border-radius: 1rem;
    min-width: 250px;
    flex: 1 1 25%;
    height: auto;
    min-height: auto;
}

.services-liquid {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    
}
.services-liquid h2{
    color: white;
    
}
.services-liquid a{
text-decoration: none;
}
@media (max-width: 1024px) {
    .services, .courses {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        
    }

    .services-div {
        width: 100%;
       max-height: 100px;
    }

    .services-liquid,
    .content-overlay {
        width: 100%;
        height: auto;
    }

    .services-liquid .subtitle {
        font-size: 1.5em;
    }
}
@media (max-width: 720px) {
    .services {
        gap: 15px;
    }
    .courses-liquid .title,
    .books-liquid .title,
    .seminars-liquid .title,
    .tiers-liquid .title,
    .cart-liquid .title
    {
        font-size: 2em;
    }
    .services-liquid .subtitle
    .courses-liquid .subtitle,
    .books-liquid .subtitle,
    .seminars-liquid .subtitle,
    .tiers-liquid .subtitle,
    .cart-liquid .subtitle
    {
        font-size: 1.5em;
    }
    .services-liquid .heading
    .courses-liquid .heading,
    .books-liquid .heading,
    .seminars-liquid .heading,
    .tiers-liquid .heading,
    .cart-liquid .heading
    {
        font-size: 1.2em;
    }
     

}
.tiers {
        display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    gap: 1rem;
    flex: 1;
}
.tiers-div{
     display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    border-radius: 1rem;
    min-width: 250px;
    flex: 1 1 25%;
    height: auto;
    min-height: auto;
}
.tiers-liquid {
     flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    
}
.lists {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0.5rem 0;
    width: 100%;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}
.lists li {
    display: flex;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: clamp(0.85em, 2.6vw, 1.0em);
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0.5rem;
    line-height: 1.4;
    word-break: break-word;
    width: 100%;
    box-sizing: border-box;
}

.cart {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    gap: 1rem;
    flex: 1;
    margin-bottom: 2rem;
}

.cart-div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    border-radius: 1rem;
    min-width: 250px;
    flex: 1 1 25%;
    height: auto;
    min-height: auto;
    margin-top: 1.5rem;
}

.cart-liquid {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}
.cart-liquid:hover{
    background-color: rgb(222, 255, 4, 0.5);
}

.cart-item {
    margin-bottom: 1rem;
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item .course-liquid {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-radius: 2rem;
    background-color: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px) saturate(180%) brightness(120%);
    -webkit-backdrop-filter: blur(10px) saturate(180%) brightness(120%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}
.quantity-controls {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
}

.quantity-controls button {
    background-color: rgba(222, 255, 4, 0.8);
    border: none;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0.8rem;
    color: white;
}

.quantity-controls span {
    min-width: 20px;
    text-align: center;
    font-size: 1.1em;
}
.empty-cart {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}
.bag-link {
  position: relative;
  display: inline-block;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: rgba(222, 255, 4, 0.8);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  display: none;
}
.success-overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: rgba(64, 239, 128, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    font-weight: bold;
    text-align: center;
    min-width: 300px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
.honeypot-field-wrapper {
    display: none;
}
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    display: none;
}
.error-message {
    color: red;
    background-color: #ffe0e0;
    border: 1px solid red;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.contact{
     display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    gap: 1rem;
    flex: 1;
    
}
.form {
       display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    text-align: center;
    border-radius: 1rem;
    min-width: 250px;
    flex: 1 1 25%;
    height: auto;
    min-height: auto;
   
}
.form-liquid {
    flex: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 2rem;
    perspective: 1000px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
                0 0 10px rgba(255, 255, 255, 0.1),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    animation: liquidBreath 6s infinite alternate ease-in-out;
    transform: rotateY(0deg) scale(1);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
}

input[type=text] {
    display: flex;
    box-sizing: border-box;
    border: none;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    font-family: Georgia;
	text-align: center;
    justify-content: center;
    width: 80%;
    padding:0.5rem;
    border-radius: 0.5rem;
    font-size: 1em;
  }
  input[type=email] {
    display: flex;
    border: none;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    font-family: Georgia;
	text-align: center;
    justify-content: center;
    box-sizing: border-box;
    width: 80%;
    padding:0.5rem;
    border-radius: 0.5rem;
    font-size: 1em;
  }
  input[type=tel] {
    display: flex;
    border: none;
    background-color: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    color: black;
    font-family: Georgia;
	text-align: center;
    justify-content: center;
    padding:0.5rem;
    border-radius: 0.5rem;
    font-size: 1em;
    width: 80%;
  }
  input[type=submit] {
    display: flex;
    border: none;
	text-align: center;
    justify-content: center;
    width: 50%;
    padding:1rem;
    margin-top: 2rem;
    border-radius: 3rem;
  }
  #submit{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1em;
    background-color: rgba(255, 255, 255, 0.15);
   backdrop-filter: blur(10px) saturate(180%);
  }
  #submit:hover{
    transform: scale(1.05);
    background-color:  rgba(222, 255, 4, 0.8); 
  }
  input[type=submit]:hover {
    transform: scale(1.05);
    background-color:  rgba(222, 255, 4, 0.8); 
}
  select {
    display: flex;
    border: none;
    background-color: rgba(255, 255, 255, 0.7);
    color: black;
    font-family: Georgia;
	text-align: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 80%;
    padding:0.5rem;
    border-radius: 0.5rem;
    font-size: 1em;
}
  label {
    display: flex;
    border: none;
    color: white;
    font-family: Georgia;
	text-align: center;
    justify-content: center;
    width: 100%;
    border-radius: 0.5rem;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 1rem;
    padding-top: 1rem;
}
.videos{
position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; 
  pointer-events: none; 
  display: block;
}