@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tulpen+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Story+Script&display=swap');
:root {
    /* ================== COLORS ================== */
    /* 🌟 Primary (Golden) */
    --color-primary: #de9f00;
    /* Base golden */
    --color-primary-hover: #b37e00;
    /* Darker golden for hover */
    --color-primary-light: #ffd54d;
    /* Softer, lighter golden */
    --color-primary-dark: #8a5c00;
    /* Deep golden brown */
    /* 🌟 Secondary (Neutral Support) */
    --color-secondary: #f5e6b3;
    /* Warm pale gold */
    --color-secondary2: #d9c88c;
    /* Muted golden beige */
    --color-secondary3: #fff2cc;
    /* Very light cream */
    /* 🌟 Accents (Gold gradient) */
    --color-accent-start: #daab00;
    /* Bright gold highlight */
    --color-accent-end: #ffb700;
    /* Rich amber gold */
    --color-accent-end-op-50: rgba(255, 183, 0, 0.5);
    /* 🌟 Reds (for alerts/errors) */
    --color-red: #e63946;
    /* Strong vivid red */
    --color-red-hover: #b71c1c;
    /* Darker red for hover */
    --color-red-light: #ff6b6b;
    /* Soft coral red */
    --color-red-dark: #7f0000;
    /* Deep crimson */
    /* 🌟 Text */
    --color-text-dark: #2d3436;
    /* Dark gray */
    --color-text-light: #ffffff;
    /* White */
    /* 🌟 Backgrounds */
    --color-background: #f7f7f7;
    /* Light gray background */
    --color-background2: #ffffff;
    --color-backgroundRed: #940c00;
    /* White */
    /* 🌟 Tags */
    --color-tag-pink: #fdcb6e;
    /* Warm sandy pink */
    --color-tag-green: #55efc4;
    /* Mint green */
    --color-tag-yellow: #ffeaa7;
    /* Soft yellow */
    --color-tag-neutral-lavender: #dfe6e9;
    /* Neutral light gray */
    /* 🌟 Forms */
    --color-form-bg: rgba(222, 159, 0, 0.1);
    /* Subtle golden tint */
    /* ================== TYPOGRAPHY ================== */
    --font-heading: 'Poppins', sans-serif;
    --font-heading2: "Tulpen One", sans-serif;
    --font-heading3: "PT Sans Narrow", sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Nunito', sans-serif;
    /* Font sizes */
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 2.25rem;
    --font-size-4-5xl: 3.25rem;
    /* 36px */
    --font-size-5xl: 4rem;
    /* 48px */
    /* Line heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    /* ================== BUTTONS ================== */
    --btn-padding-y: 0.75rem;
    /* 12px */
    --btn-padding-x: 1.5rem;
    /* 24px */
    --btn-radius: 9999px;
    /* pill shape */
    --btn-font-size: var(--font-size-sm);
    --btn-font-weight: 600;
    --btn-shadow: 0 4px 12px rgba(108, 92, 231, 0.25);
    --btn-bg: var(--color-primary);
    --btn-bg-hover: var(--color-primary-hover);
    --btn-text: var(--color-text-light);
    --btn-secondary-bg: transparent;
    --btn-secondary-border: var(--color-primary);
    --btn-secondary-text: var(--color-primary);
    --btn-secondary-hover-bg: rgba(108, 92, 231, 0.1);
}

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

body {
    background-color: var(--color-background);
    overflow-x: hidden;
}

.text-dark {
    color: var(--color-text-dark) !important;
}

.text-light {
    color: var(--color-text-light) !important;
}

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

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

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

.bg-accent {
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
}

.bg-light {
    background-color: var(--color-background) !important;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

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

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

.text-xs {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-normal);
}

.text-sm {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
}

.text-base {
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
}

.text-lg {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal);
}

.text-xl {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-tight);
}

.text-2xl {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-tight);
}

.text-3xl {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
}

.text-4xl {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-tight);
}

.text-4-5xl {
    font-size: var(--font-size-4-5xl);
    line-height: var(--line-height-tight);
}

.text-5xl {
    font-size: var(--font-size-5xl);
    line-height: var(--line-height-tight);
}

.button {
    display: inline-block;
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-radius: var(--btn-radius);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: var(--btn-shadow);
    border: 1px solid transparent;
}


/* Primary */

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

.button-primary:hover {
    background-color: var(--btn-bg-hover);
    color: var(--btn-text);
}


/* Secondary / Outline */

.button-secondary {
    background-color: var(--btn-secondary-bg);
    border: 1px solid var(--btn-secondary-border);
    color: var(--btn-secondary-text);
}

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


/* Gradient Style (optional) */

.button-gradient {
    background: linear-gradient(135deg, var(--color-accent-start), var(--color-accent-end));
    color: var(--color-text-light);
    border: none;
}

.button-light {
    background: var(--color-text-light);
    color: var(--color-text-dark);
    border: none;
}

.button-light:hover {
    background: var(--color-text-dark);
    color: var(--color-text-light);
    border: none;
}

.button-gradient:hover {
    opacity: 0.9;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

header .logo {
    width: 90px;
    /* height: 90px; */
    background-color: white;
    border-radius: 100%;
}

header nav {
    background-color: var( --color-tag-neutral-lavender);
}

header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

header nav ul li:hover>a {
    color: var(--color-backgroundRed);
}

.designLine {
    width: 100%;
    display: block;
    height: 5px;
    background-color: var( --color-tag-neutral-lavender);
    position: relative;
}

.designLine .leftend.rightend {
    right: -8px;
    left: auto;
    transform: rotateY(180deg) translateY(-50%);
    /* background-color: rebeccapurple; */
}

.designLine .leftend {
    width: 20px;
    height: 20px;
    background-color: var( --color-tag-neutral-lavender);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    z-index: -1;
    left: -4.1px;
}

.designLine .leftend::before {
    content: "";
    position: absolute;
    top: 0;
    width: calc(100% + 10px);
    height: calc(100% + 5px);
    background-color: var(--color-backgroundRed);
    border-radius: 100vh;
    transform: translateY(-68%) translateX(4%);
}

.designLine .leftend::after {
    content: "";
    position: absolute;
    top: 0;
    width: calc(100% + 10px);
    height: calc(100% + 5px);
    background-color: var(--color-backgroundRed);
    border-radius: 100vh;
    transform: translateY(52%) translateX(3%);
}

header nav ul li .dots {
    /* content: ""; */
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--color-text-dark);
    margin-top: 5px;
}

.search {
    background-color: var( --color-tag-neutral-lavender);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100vh;
}

.search input {
    position: absolute;
    transform: translateX(-60%);
    background-color: var(--color-tag-neutral-lavender);
    color: var(--color-text-dark);
    border: none;
    border-top-left-radius: 100vh;
    border-bottom-left-radius: 100vh;
    padding: 0px 10px;
    border-radius: 100vh;
    height: calc(100%);
    width: auto;
    display: none;
    outline: none;
}

.btn.button-primary:hover>.icon i {
    animation: ring 1s infinite ease-in-out;
}

@keyframes ring {
    0% {
        transform: rotateZ(-0deg);
    }
    50% {
        transform: rotateZ(-20deg);
    }
    100% {
        transform: rotateZ(-0deg);
    }
}

.pillVideo {
    height: 80px;
    background-color: var(--color-accent-end-op-50);
}


/* .pillVideo:hover>.icon {
    animation: roll 2s forwards ease-in-out;
}

@keyframes roll {
    0% {
        transform: translateX(0%) translateY(-50%) rotate(0);
    }
    100% {
        transform: translateX(300%) translateY(-50%) rotate(360deg);
    }
} */

.pillVideo .icon {
    transition: all 1s;
    width: 75px;
    height: 75px;
    border-radius: 100vh;
    background-color: var(--color-tag-pink);
    transform: translateX(0%) translateY(-50%);
    top: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
}

.pillVideo .icon i {
    mix-blend-mode: difference;
}

.pillVideo .vid {
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    object-fit: cover;
    object-position: center 45%;
}

img.mask {
    -webkit-mask-image: url('../media/PNG/blob.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url('../media/PNG/blob.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    /* Optional: smooth edges */
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
}

.deg45 {
    transform: rotate(45deg);
}

.HeroSection {
    /* background-color: white; */
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    margin: auto;
}

.MainMedia {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    z-index: 2;
    background: url(../media/maskbgRed.png);
    background-size: 100%;
    background-position: center;
}

.mainContent {
    overflow: hidden;
    position: relative;
    z-index: 22;
}

.videobg {
    top: 90px !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 90%;
    position: fixed;
    /* top: 0; */
    /* left: 0; */
    z-index: -1;
    /* transition: all 5s; */
}

.Mycontainer {
    width: 90%;
    margin: auto;
}

.infoB1 {
    background-color: var(--color-tag-yellow);
}

.infoB2 {
    background-color: var(--color-tag-neutral-lavender);
}

.infoB3 {
    background-color: var(--color-tag-green);
}

.catCards {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    padding-left: 100px;
}

.categories {
    /* position: relative; */
    margin-top: 90vh;
}

.catCard {
    position: relative;
    width: 100%;
    border-radius: 40px;
    height: 400px;
    background-size: 100%;
    background-position: center center;
    overflow: hidden;
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-repeat: no-repeat;
}

.catCard .link {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    /* font-size: 1.5em; */
    background-color: #da000090;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.364);
    /* border: 1px solid #ffffff; */
    backdrop-filter: blur(4px);
    color: var(--color-text-dark);
    /* background-color: var(--color-tag-pink); */
    border-radius: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-45deg);
    transition: all .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.catCard:hover {
    background-size: 110%;
}

.catCard:hover>.link {
    scale: 5;
    top: 20px;
    right: 20px;
    font-size: 1em;
}

.catCard .content {
    padding: 30px;
    box-shadow: inset 0 -150px 100px var(--color-tag-pink);
    /* background: linear-gradient(to top, var(--color-tag-pink) 30%, transparent 50%); */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    /* align-items: end; */
    flex-direction: column;
    color: var(--color-text-dark);
}

.catCard .content h3 {
    font-weight: bold;
}

.circleProfile {
    width: 50px;
    height: 50px;
    position: relative;
    background: var(--color-accent-end);
}

.circleProfile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.circleProfile:nth-child(2) {
    transform: translateX(-50%);
}

.circleProfile:nth-child(3) {
    transform: translateX(-100%);
}

.circleProfile:nth-child(4) {
    transform: translateX(-150%);
}

.bgWhite {
    background-color: var(--color-background2);
}

.aboutVideo {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    height: 700px;
}

.aboutVideo .vid {
    /* mask-image: url(../media/logo.png);
    mask-position: center;
    mask-size: cover;
    mask-repeat: no-repeat; */
    border-radius: 50px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.aboutVideo .vidLogo {
    top: 20px;
    left: 40px;
    width: 50px;
    height: 50px;
    border-radius: 100vh;
    background-color: white;
}

.allAwards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    /* grid-template-columns: 1fr; */
    /* grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); */
    /* responsive columns */
    /* grid-template-rows: minmax(100px, auto); */
}

.awards {
    width: 100%;
    border-radius: 8vh;
    overflow: hidden;
    height: 230px;
}

.awards img {
    object-fit: cover;
    object-position: center;
}

.testiContainer {
    width: 100%;
    background-color: var(--color-accent-start);
    height: 90vh;
    border-radius: 150px;
    overflow: hidden;
}

.testiCards {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-wrap {
    position: relative;
    width: 100%;
    display: flex;
    align-items: start;
    height: 100%;
    /* max-width: 1200px; */
    /* margin: 40px; */
}

.slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: visible;
    user-select: none;
}

.testiCard {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: var(--color-text-light);
    border-radius: 40px;
    box-shadow: 0 18px 40px rgba(20, 20, 20, .12);
    will-change: transform, opacity;
    touch-action: pan-y;
    cursor: grab;
    padding: 50px;
    /* position: relative; */
}

.quote {
    position: absolute;
    bottom: 0px;
    right: 50px;
    font-size: 4em;
    line-height: 100px;
    color: #ddd;
}

.course {
    position: absolute;
    bottom: 20px;
    background-color: var(--color-tag-pink);
    padding: 5px 10px;
    border-radius: 100px;
    color: var(--color-text-dark);
    /* font-weight: bold; */
}

.testiCard .testiImg {
    width: 80px;
    height: 80px;
}

.controls {
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 99;
    justify-content: center;
    font-size: var(--font-size-3xl);
}

.object-fit-cover {
    object-fit: cover;
    object-position: center;
}

.progress {
    width: 200px;
    position: relative;
    flex: 1;
    height: 6px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10%;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    border-radius: 10px;
    transition: width 0.4s ease;
}

button {
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    background: var(--accent);
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.categoriesFun {
    position: relative;
    width: 100%;
    height: 70vh;
    /* choose what you want */
    background: var(--color-background);
    overflow: hidden;
    /* keep tags inside visual area */
    touch-action: none;
    /* prevent browser touch scrolling interference */
}

.categoriesNames {
    background: var(--color-accent-start);
    position: absolute;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    /* border-radius: 100px!important; */
    overflow: hidden;
    font-size: 4rem;
    /* reduced from 5em for demo - tune as needed */
    user-select: none;
    cursor: grab;
    z-index: 999;
    /* <-- keep DOM elements above the canvas */
    touch-action: none;
    /* important for pointer events on touch devices */
    -webkit-user-drag: none;
    pointer-events: auto;
    /* ensure DOM receives pointer events */
    will-change: transform;
}

.categoriesNames:active {
    cursor: grabbing;
}

canvas {
    pointer-events: auto;
    /* Allow pointer events, but we'll control them in JS */
}

.contactWrapper {
    background: url(../media/SVG/bg.svg);
    position: relative;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    height: 400px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contactWrapper input,
.contactWrapper textarea,
.contactWrapper select {
    width: 100%;
    height: 60px;
    font-size: 1.5em;
    text-align: center;
    background-color: var(--color-secondary);
    border: 7px solid var(--color-secondary3);
    border-radius: 100px;
    outline: none;
    /* margin-bottom:10px ; */
}

.contactWrapper textarea {
    height: 100px;
}

.error {
    color: rgb(255, 221, 0);
    font-size: 13px;
    margin-top: 4px;
    position: absolute;
    top: -25px;
    left: 30px;
}

input.error-border,
select.error-border {
    border: 5px solid red !important;
}

.contactWrapper input::placeholder,
.contactWrapper textarea::placeholder,
.contactWrapper select option[disabled][selected],
.contactWrapper select.placeholder {
    color: var(--color-secondary2);
}

.contactWrapper.register input::placeholder,
.contactWrapper.register textarea::placeholder,
.contactWrapper.register select option[disabled][selected],
.contactWrapper.register select.placeholder {
    color: var(--color-text-dark);
}

.contactWrapper select,
.contactWrapper select option {
    color: var(--color-text-dark);
}

footer .flogo img {
    width: 100px;
}

footer ul li .dots {
    /* content: ""; */
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--color-text-dark);
    margin-top: 5px;
}

footer ul li:hover>a {
    color: var(--color-backgroundRed);
}


/* 
.eventSection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.eventSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, #ff6b6b 0%, transparent 40%), radial-gradient(circle at 80% 20%, #feca57 0%, transparent 40%), radial-gradient(circle at 50% 80%, #48dbfb 0%, transparent 40%), radial-gradient(circle at 90% 70%, #5f27cd 0%, transparent 40%), radial-gradient(circle at 10% 90%, #1dd1a1 0%, transparent 40%);
    background-size: 200% 200%;
    animation: moveBlobs 2s ease-in-out infinite alternate;
    z-index: 0;
}

.eventSection>* {
    position: relative;
    z-index: 1;
}

@keyframes moveBlobs {
    0% {
        background-position: 20% 30%, 80% 20%, 50% 80%, 90% 70%, 10% 90%;
    }
    50% {
        background-position: 30% 40%, 75% 25%, 45% 75%, 85% 65%, 15% 85%;
    }
    100% {
        background-position: 25% 20%, 70% 30%, 55% 70%, 80% 80%, 20% 95%;
    }
} */

.events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
    row-gap: 50px;
}

.event {
    position: relative;
    width: 300px;
    height: 400px;
    background: var(--color-accent-end-op-50);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    transition: all .3s;
    cursor: pointer;
}

.event:hover {
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.078);
}

.event .circle {
    width: 100px;
    height: 100px;
    background-color: var(--color-background);
    position: absolute;
    top: 0;
    left: 0;
    /* border-radius: 100vh; */
    border-bottom-right-radius: 30px;
    border-top-left-radius: 30px;
}

.date {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(15%, 25%);
    color: var(--color-text-dark);
    /* justify-content: center; */
}

.date .day_month {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.date .day {
    /* display: inline-block; */
    font-size: 1.6em;
}

.date .month {
    display: inline-block;
    font-size: .5em;
    transform: rotate(90deg) translateY(50%);
    font-weight: bold;
}

.date .year {
    display: inline-block;
    font-size: 1em;
    transform: translateY(-40%);
    color: var(--color-secondary2);
}

#curved-corner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    transform: rotate(90deg) translateY(1%) translateX(99.5%);
    /* height: 100px; */
}

#curved-corner-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    transform: rotate(90deg) translateY(-100%) translateX(0%);
    /* height: 100px; */
}

#curved-corner svg path,
#curved-corner-top svg path {
    fill: var(--color-background);
}

.timings {
    position: relative;
    width: calc(100% - 130px);
    padding: 20px 0;
    display: block;
    position: relative;
    left: 120px;
    /* height: 100px; */
}

.timings .time {
    color: var(--color-text-dark);
    font-size: 1.4em;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: start; */
    /* gap: ; */
}

.info .location {
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: center;
    color: var(--color-text-dark);
    font-size: 1em;
    font-weight: normal;
}

.event .info {
    padding: 10px 30px;
}

.event .info h3 {
    font-weight: bold;
    /* font-size: em; */
}

.fa-minus {
    align-self: center;
    height: 5px;
    /* position: absolute; */
    /* top: 50%;
    left: 40%;*/
    transform: translateY(-100%) translateX(-100%);
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fcfcff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999;
}

#loader img {
    width: 520px;
    /* adjust size */
    height: auto;
}

#content {
    opacity: 0;
}

.schedule-grid {
    background-color: var(--color-background);
    display: grid;
    grid-template-columns: 100px repeat(3, 1fr);
    border: 1px solid #ddd;
}

.time-col,
.day-header,
.cell {
    border: 1px solid #ddd;
    padding: 8px;
    min-height: 60px;
    font-size: 0.85rem;
    text-align: center;
}

.day-header {
    background: #343a40;
    color: #fff;
    font-weight: bold;
}

.time-col {
    background: #f8f9fa;
    font-weight: bold;
}

.highlight {
    border: 2px solid var(--color-backgroundRed) !important;
    background-color: var(--color-backgroundRed) !important;
    animation: pulse 1.5s infinite;
    color: white !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 7, 7, 0.5);
    }
    70% {
        box-shadow: 0 0 20px 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}


/* Colors per level */

.Beginners {
    background: #d4edda;
}

.Intermediate {
    background: #cce5ff;
}

.Advance {
    background: #f8d7da;
}

.Competition {
    background: #ffeeba;
}

.Workout {
    background: #e2e3e5;
}

.Instrumental {
    background: #f0e6ff;
}

.OFF {
    background: #f8f9fa;
    color: #aaa;
    font-style: italic;
}

.stars i {
    opacity: 0;
    /* hidden before GSAP animates */
    filter: drop-shadow(0 0 0px gold);
}


/* Responsive: Stack by day */

@media (max-width: 768px) {
    .schedule-grid {
        display: block;
    }
    .day-block {
        margin-bottom: 1.5rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
    }
    .day-header {
        border-bottom: 1px solid #ddd;
    }
    .row-slot {
        display: flex;
        border-top: 1px solid #ddd;
    }
    .row-slot .time-col {
        width: 90px;
        flex-shrink: 0;
    }
    .row-slot .cell {
        flex: 1;
    }
}

#enrollBtn {
    background: linear-gradient(135deg, #ff3c3c, #ffae00, #ffd700);
    background-size: 200% 200%;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}


/* Shine effect */

#enrollBtn::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient( 120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 60%, transparent 100%);
    transform: rotate(25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

.motion-overlay {
    position: fixed;
    bottom: 0 !important;
    height: 100px;
    width: 100%;
    /* inset: 0; */
    /* background-color: rgba(255, 255, 255, 0) !important; */
    /* background: linear-gradient(135deg, rgba(255, 0, 0, 0.7), rgba(255, 215, 0, 0.7), rgba(255, 140, 0, 0.7)); */
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
    background-color: transparent !important;
    z-index: 99999;
    /* display: flex; */
    align-items: end;
}

.motion-box {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); */
    cursor: pointer;
    /* width: 200px; */
    /* height: 200px; */
    /* border-radius: 100%; */
    /* background-color: rgba(255, 255, 255, 0) !important; */
    /* background: linear-gradient(135deg, rgba(255, 0, 0, 0.7), rgba(255, 215, 0, 0.7), rgba(255, 140, 0, 0.7)); */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

.motion-box p {
    border-radius: 100%;
    display: inline-block;
    cursor: pointer;
}


/* ABOUT US */

.HeroWrapper {
    width: 100%;
    overflow: hidden;
}

.HeroWrapper .genHero {
    width: 100%;
    height: 90vh;
    background-color: var(--color-backgroundRed);
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    /* overflow-x: hidden; */
}

.HeroWrapper .genHero h1 {
    font-size: 24em;
    font-family: var(--font-heading2);
    font-weight: bolder;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.HeroWrapper .genHero h1 span {
    display: inline-block;
}

.HeroWrapper .genHero h1 span.left {
    left: 240px;
}

.HeroWrapper .genHero h1 span.right {
    left: -240px;
}

.HeroWrapper .genHero h1 span.left,
.HeroWrapper .genHero h1 span.right {
    position: relative;
    z-index: 2;
    /* keep above image */
    opacity: 0;
}

.HeroWrapper .genHero h1 span.ImageSpace {
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    /* remove width/height + overflow */
    border-radius: 50px;
}


/* regi */

.HeroWrapper .genHero h1 span.ImageSpace.regi img {
    width: 500px;
}

.HeroWrapper .genHero h1 span.ImageSpace img {
    position: relative;
    width: 300px;
    /* initial size */
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    opacity: 0;
    /* hidden initially */
    /* transform: scale(1.2); */
}

.SecondSection {
    width: 100%;
    height: 90vh;
}

.SecondSection .content {
    /* margin: auto; */
}

.SecondSection .Mycontainer {
    display: flex;
    align-items: center;
}

.gallery-item,
.grid-sizer {
    width: calc((100% / 5) - 1rem) !important;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

#lightboxModal .modal-body {
    height: 100%;
}

#lightboxModal .modal-content {
    height: 80vh;
    top: 5vh;
}

#lightboxContent,
#lightboxContent img,
#lightboxContent video {
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.gallery-tabs .nav-link {
    border-radius: 0;
    /* flat */
    background: transparent;
    /* no fill */
    color: #dcdcdc;
    /* text color for inactive */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    /* depth effect */
    margin: 0 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 5em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: bolder;
}

.gallery-tabs .nav-link.active {
    background: transparent;
    /* your theme color */
    color: var(--color-backgroundRed) !important;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.gallery-tabs .divider {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: var(--color-primary-light);
    font-size: 6em;
    margin: 0 6px;
    position: relative;
    transform: translateY(-10px);
}

.galleryHeroWrapper {
    height: 50vh;
    display: flex;
    place-content: center;
    background-color: var(--color-backgroundRed);
}

.word-flip {
    display: flex;
    gap: 10px;
    justify-content: center;
    perspective: 1000px;
    /* for 3D flip */
}

.letter-block {
    position: relative;
    width: 220px;
    height: 360px;
    transform-style: preserve-3d;
}

.letter-block span {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24rem;
    font-weight: bold;
    color: var(--color-accent-end);
    font-family: var(--font-heading2);
}

.letter-block .front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.letter-block .back {
    background: var(--color-backgroundRed, #c62828);
    /* border-radius: 12px; */
    transform: rotateY(180deg);
}

.galleryHeroWrapper1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
    /* margin-top: 80px; */
    overflow: hidden;
    background-color: var(--color-backgroundRed);
}

.masked-text {
    font-size: 7em;
    font-weight: 900;
    font-family: var(--font-heading3);
    line-height: 1;
    position: relative;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 0px #000;
    /* optional outline */
    background: url("../media/strip.png") repeat-x;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.ContactPage h1 {
    font-family: var(--font-heading3);
}

.ContactPage .contactWrapper {
    background-image: url(../media/PNG/redbox.png);
    background-size: 100% 100%;
    width: 90%;
    margin: auto;
    height: 90vh;
}

.ContactPage .contactWrapper.register {
    background-image: url(../media/PNG/redbox.png);
    background-size: 100% 100%;
    width: 90%;
    margin: auto;
    height: 110vh;
}

.ContactPage .HeroWrapper .genHero h1 {
    margin-bottom: -10px;
}

.ContactPage .HeroWrapper {
    height: 50vh;
}

.ContactPage .HeroWrapper .genHero {
    height: 50vh;
}

.ContactPage .contactWrapper iframe {
    height: 600px;
    border-radius: 60px;
    /* mask-image: url(../media/PNG/blob.png);
    mask-position: center;
    mask-size: 100% 100%; */
    /* padding: 0px; */
}

.ContactLinks {
    display: grid;
    width: 90%;
    margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
    gap: 1rem;
    /* optional: adds spacing between items */
    justify-content: center;
    /* keeps them centered when row not full */
}

.contactLink a {
    position: relative;
    z-index: 2;
}

.contactLink a:hover {
    color: var(--color-background);
}

.contactLink .icon {
    position: absolute;
    font-size: 8em;
    bottom: -32px;
    right: 0;
    mix-blend-mode: screen;
    opacity: 0.6;
    z-index: 0;
    transition: all .2s ease-in-out;
}

.contactLink {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 50px;
    height: 300px;
    color: var(--color-primary);
    font-weight: bold;
    font-family: var(--font-heading3);
    background: url(../media/PNG/BOX.png);
    background-size: 100% 100%;
    background-position: center;
}

.contactLink:hover .icon {
    font-size: 20em;
    bottom: -90px;
}

.ownerSection .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.ownerSection .content ul li {
    /* font-weight: bold; */
    margin-bottom: 10px;
    color: var(--color-background2);
    background-color: var(--color-red-dark);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 100px;
}

.ownerSection .img2 {
    height: 800px;
}


/* .btn.button-primary .icon i {} */

@media screen and (min-width:1300px) and (max-width:1600px) {
     :root {
        /* --font-size-4xl: 1.3rem; */
        --font-size-5xl: 2.8rem;
    }
    .catCard {
        height: 300px;
    }
    .m-0 {
        margin: 0px !important;
    }
    .p-0 {
        padding: 10px 0 !important;
    }
    .Mycontainer {
        width: 95%;
    }
    .infoB3,
    .infoB2 {
        gap: 0;
        flex-wrap: wrap;
    }
    .infoB3 p,
    .infoB2 p {
        position: absolute;
        transform: translateY(50%);
    }
    .About .rightSide {
        width: 30%;
    }
    .About .leftSide {
        width: 70%;
    }
    .aboutVideo {
        height: 400px;
    }
    .awards {
        height: 125px;
    }
    .events {
        gap: 50px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    }
    .testiCard {
        top: 46%;
        width: 600px;
        height: 350px;
    }
    .testiCard p {
        font-size: 1.2em !important;
    }
    .controls {
        bottom: 115px;
    }
    .categoriesNames {
        font-size: 2.5em;
    }
    .galleryHeroWrapper {
        height: 60vh;
        overflow: hidden;
    }
    .ContactPage .contactWrapper iframe {
        height: 400px;
    }
}

@media screen and (min-width:1000px) and (max-width:1300px) {
     :root {
        --font-size-4xl: 1rem;
        --font-size-5xl: 2.8rem;
    }
    .Mycontainer {
        width: 95%;
    }
    .catCard {
        height: 250px;
    }
    .aboutVideo {
        height: 400px;
    }
    .awards {
        height: 130px;
    }
    .events {
        gap: 50px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    }
    .event {
        height: auto;
        padding-bottom: 20px;
        width: 100%;
    }
    .testiCard {
        top: 36%;
        width: 550px;
        height: 300px;
    }
    .testiCard p {
        font-size: .9em !important;
    }
    .controls {
        bottom: 115px;
    }
    .categoriesNames {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
    .videobg {
        object-position: center;
    }
    .grid-sizer,
    .gallery-item {
        width: calc((100% / 3.5)) !important;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .galleryHeroWrapper {
        height: 60vh;
        overflow: hidden;
    }
    .letter-block {
        display: inline-block;
        /* width: 195px; */
    }
    .ContactLinks {
        width: 100%;
    }
    .ContactPage .contactWrapper iframe {
        height: 400px;
    }
    .HeroWrapper .genHero h1 {
        font-size: 20em;
    }
}

@media screen and (max-width:500px) {
     :root {
        --font-size-4-5xl: 1.8rem;
        --font-size-4xl: 1rem;
        --font-size-5xl: 2.6rem;
    }
    .aboutVideo {
        margin-bottom: 20px;
        height: 400px;
    }
    .testiContainer {
        border-radius: 80px;
    }
    .testiCard {
        top: 36%;
        width: 350px;
        height: 300px;
        padding: 20px;
    }
    .testiCard p {
        font-size: .9em !important;
    }
    .controls {
        bottom: 170px;
    }
    .categoriesNames {
        font-size: 1em;
    }
    .categoriesFun {
        height: 50vh !important;
    }
    .progress {
        width: 117px;
    }
    .contactWrapper {
        padding: 20px;
        background: url(../media/PNG/BOX.png);
        background-size: 100% 90%;
        background-repeat: no-repeat;
        background-position: center;
        left: 50%;
        transform: translateX(-47%);
    }
    .flinks li a {
        font-size: .8em;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .HeroSection {
        height: 150vh;
    }
    .MainMedia {
        overflow: hidden;
        position: absolute;
        top: 0%;
        left: 0%;
        transform: translate(-0%, -0%);
        width: 100%;
        height: 100%;
        z-index: 2;
        background: url(../media/maskbgRedM.png);
        background-size: 100% 115%;
        background-repeat: no-repeat;
        background-position: center 40px;
    }
    .catCards {
        padding-left: 30px;
    }
    .catCard {
        background-size: cover;
        /* transition: all .3s; */
    }
    .catCard:hover {
        background-size: cover;
    }
    .videobg {
        /* z-index: -11 !important; */
        top: 60px !important;
        /* width: 100px; */
    }
    .pillVideo {
        height: 60px;
    }
    .pillVideo .icon {
        width: 60px;
        height: 60px;
        font-size: 1em;
    }
    header {
        /* padding: 10px auto; */
        background-color: var(--color-backgroundRed);
        width: 100%;
        position: relative;
        z-index: 99999;
        height: 70px;
    }
    .logoM {
        background-color: var(--color-background2);
        border-radius: 100vh;
        width: 55px;
        /* height: 60px; */
    }
    .logoM img {
        width: 100%;
        height: 100%;
    }
    nav ul {
        font-size: 1.3em;
        font-weight: bold;
        text-transform: uppercase;
        flex-direction: column;
    }
    header h3 {
        font-family: "Story Script", sans-serif;
        color: var(--color-background2);
        font-weight: bolder;
    }
    .menubtn {
        width: 50px;
        height: 50px;
        background-color: var(--color-background2);
        border-radius: 100%;
        color: var(--color-backgroundRed);
        font-size: 1.5em;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    nav {
        z-index: 999 !important;
        top: 70px;
        overflow: hidden;
        height: 0;
        padding: 0px 0;
        /* padding: 0 !important; */
        /* display: none; */
        width: calc(100%);
        left: 0;
        /* margin: auto; */
        /* left: 50%; */
        /* transform: translateX(-50%); */
        /* border-left: 10px solid var(--color-backgroundRed); */
        /* border-right: 10px solid var(--color-backgroundRed); */
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.325);
        /* height: 100px; */
    }
    .date {
        transform: translate(10%, 46%);
    }
    .events {
        grid-template-columns: repeat(auto-fit, minmax(300px, 200px));
    }
    .gallery-grid {
        /* position: static !important;
        height: auto !important; */
    }
    .grid-sizer {
        width: calc((100% / 2) - 1rem) !important;
    }
    .gallery-item {
        /* position: relative !important;
        left: auto !important;
        top: auto !important; */
        width: calc((100% / 2) - 1rem) !important;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .HeroWrapper .genHero {
        width: 100%;
        height: 90vh;
        background-color: var(--color-backgroundRed);
        display: flex;
        justify-content: center;
        align-items: center;
        /* overflow: hidden; */
        /* overflow-x: hidden; */
    }
    .HeroWrapper .genHero h1 {
        font-size: 10em;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }
    .HeroWrapper .genHero h1 span.left {
        left: auto;
        top: 140px;
    }
    .HeroWrapper .genHero h1 span.right {
        left: auto;
        top: -130px;
    }
    .HeroWrapper .genHero h1 span.ImageSpace {
        z-index: 999;
    }
    .HeroWrapper .genHero h1 span.ImageSpace img {
        width: 200px;
        height: 200px;
    }
    .SecondSection {
        height: auto;
    }
    .SecondSection .Mycontainer {
        margin-top: 55vh;
    }
    .gallery-tabs .nav-link {
        font-size: 3em;
    }
    .gallery-tabs .divider {
        display: none;
    }
    .ContactPage .contactWrapper {
        height: auto;
        width: 100%;
        background: var(--color-backgroundRed);
        margin: auto;
        left: auto;
        transform: translateX(0%);
    }
    .ContactPage .contactWrapper.register {
        background-color: #862814;
        height: 180vh;
        border-radius: 30px;
    }
    .ContactPage .contactWrapper.register input,
    .ContactPage .contactWrapper.register select {
        font-size: .8em;
    }
    .ContactPage .contactWrapper iframe {
        border-radius: 10px;
        height: 400px;
    }
    .ContactPage .HeroWrapper {
        height: 100vh;
    }
    .ContactPage .HeroWrapper .genHero h1 span.ImageSpace img {
        transform: translate(10px, -83px);
    }
    .ContactPage .HeroWrapper .genHero {
        height: 100vh;
    }
    .ContactPage .HeroWrapper .genHero h1 span.left {
        top: 200px;
    }
    .ContactPage .HeroWrapper .genHero h1 span.right {
        top: -150px;
    }
    .ContactPage.registerPage .HeroWrapper {
        height: 75vh;
    }
    .ownerSection .content ul {
        margin: 0 !important;
        padding: 0 !important;
    }
    .ownerSection .content ul li {
        padding: 10px 30px;
    }
}