/* GLOBAL */

:root {
    --bg-deep: #03040d;
    --bg-section: #0a0e1d;
    --accent: #e30613;
    --accent-soft: rgba(227, 6, 19, 0.15);
    --accent-gold: #4a6cf7;
    --accent-teal: #0033cc;
    --text-main: #ffffff;
    --text-muted: #3e3434;
    --shadow-soft: 0 15px 30px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #fda8b787, #aebff5 25%, #b9c4f0 35%, #c7b8de 50%, #d7b0b6 75%, #e3bfa4 100% );
    color: var(--text-main);
    overflow-x: hidden !important;
}


/* Divider */

.simple-shadow-divider {
    height: 20px;
    background: linear-gradient(to bottom, #010324, #B4C0F0);
}


/* NAVBAR */

.main-navbar {
    width: 95%;
    position: sticky;
    margin: auto;
    top: 10px;
    z-index: 9999;
    border-radius: 20px;
    border: 1px solid rgba(63, 81, 217, 0.35);
    background: linear-gradient( 90deg, #f4f6ff, rgba(32, 44, 140, 0.88));
    background-size: 110% auto;
    background-position: center center;
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 35px rgba(40, 60, 150, 0.45);
    overflow: hidden;
}

.main-navbar .nav-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 8px 18px;
    transition: 0.3s ease;
    margin-right: 25px;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffc56a, #E30613);
    transform: translateX(-50%);
    transition: width 0.4s ease-out;
    border-radius: 10px;
}

.main-navbar .nav-link:hover::after {
    width: 95%;
    animation: music-wave .3s ease;
}

@keyframes music-wave {

    0% {
        transform: translate(-50%, -20px);
        border-radius: 50%;
        height: 15px;
        width: 15px;
    }

    50% {
        transform: translate(-50%, 0px);
        border-radius: 40%;
        height: 15px;
        width: 15px;
    }

    100% {
        transform: translate(-50%, 0);
        border-radius: 0%;
        height: 3px;
        width: 95%;
    }

}

.main-navbar .nav-link:hover {
    color: #e30613;
    text-shadow: 0 0 12px rgba(227, 6, 21, 0.9);
}

/* Active Link */
.main-navbar .nav-link.active {
    color: #e30613;
    text-shadow: 0 0 12px rgba(227, 6, 21, 0.9);
}

.main-navbar .nav-link.active::after {
    width: 95%;
}

/* Navbar-Toggler */

.navbar-toggler {
    border: none !important;
    outline: none !important;
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(135deg, #ff000f, #ffac00);
    border-radius: 4px;
    transition: all .3s ease;
    box-shadow: 0 0 6px rgba(227, 6, 19, 0.7);
}

.navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.collapsed .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}


/* HERO (HOME) */


.hero-section {
    position: relative;
    height: auto;
    padding: 65px 0 140px 30px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.icons i {
    position: absolute;
    font-size: 50px;
    color: rgba(36, 52, 140, 0.35);
    z-index: 999;
    transform: rotate(20deg);
    animation: notes 20s linear infinite alternate;
}

.icons i:nth-child(2) {
    top: 450px;
    right: 80px;
    animation-direction: alternate-reverse;
}

@keyframes notes {
    0% {
        transform: rotateY(0deg) translate(0, 0);
    }
    100% {
        transform: rotateY(-360deg) translate(80px, -100px);
    }
}

.icons img,
footer img {
    position: absolute;
    filter: invert(0.5);
    border: none;
    transform-origin: right top;
    bottom: -90px;
    right: -60px;
    height: 200px;
    width: 200px;
    z-index: -1;
    animation: guitar 2s linear infinite;
}

@keyframes guitar {
    0% {
        transform: rotate(45deg);
    }
    50% {
        transform: rotate(40deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

.hero-title-banner {
    position: relative;
    width: 320px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.letter-box {
    position: relative;
    width: 110px;
    height: 90px;
    margin: 0 5px;
    border-radius: 12px;
    border: 3px solid rgba(40, 60, 150, 0.25);
    box-shadow:
        0 10px 10px rgba(70, 90, 190, 0.2),
        inset 0 -15px 20px 0 rgba(0, 0, 0, 0.20);
    background: linear-gradient(145deg, #ff4757, #ff6b81);
    transform-origin: top center;
    animation: wind 2s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
}

.letter-box:nth-child(2) {
    background: #ff6b81;
    transform: translateY(12px);
    animation-delay: .2s;
}

.letter-box:nth-child(3) {
    background: #2ed573;
    transform: translateY(24px);
    animation-delay: .4s;
}

.letter-box:nth-child(4) {
    background: #ffa502;
    transform: translateY(12px);
    animation-delay: .6s;
}

.letter-box:nth-child(5) {
    background: #1e90ff;
    animation-delay: .8s;
}

.letter-box span {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}

@keyframes wind {
    0% {
        transform: rotateX(-15deg) skewX(2deg);
        filter: brightness(0.96);
    }
    100% {
        transform: rotateX(25deg) skewX(-2deg);
        filter: brightness(1.08);
        box-shadow: 0 15px 15px rgba(60, 80, 180, 0.35);
    }
}

.hero-heading {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1f2b5a;
    margin-top: 24px;
}

.hero-heading span {
    background: linear-gradient(135deg, #3f51d9, #d7263d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text {
    color: #2e3a70;
    max-width: 500px;
    margin-top: 1rem;
}

.hero-secondary-btn {
    border-radius: 999px;
    border: 1px solid black !important;
    background: black;
    color: white;
    -webkit-box-reflect: below 7px linear-gradient(transparent, rgba(60, 80, 160, 0.25));
    transition: .4s ease;
}

.hero-secondary-btn:hover{
    background: transparent;
    color: black ;
}

.img-droplet .droplet-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.img-droplet .droplet-img.active {
    opacity: 1;
}

.img-droplet img:first-child {
    position: relative;
}

.img-droplet-wrapper {
    position: relative;
    display: inline-block;
}

.img-droplet {
    position: relative;
    display: inline-block;
    overflow: hidden;
    animation: droplet 4s ease-in-out infinite;
    border: 5px solid rgba(55, 75, 170, 0.45);
}

.img-droplet img {
    display: block;
    height: 450px;
    width: auto;
}

@keyframes droplet {
    0%, 100% {
        border-radius: 40% 60% 55% 45% / 80% 40% 80% 40%;
    }
    50% {
        border-radius: 60% 40% 50% 50% / 40% 60% 40% 50%;
    }
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(3, 185, 165, 0.9);
    border-radius: 18px;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 12px 25px rgba(40, 60, 150, 0.35);
    border: 1px solid rgba(63, 81, 217, 0.35);
}

.badge-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #eef2ff;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}





.hero-title-top{
    margin: auto;
}

.hero-title-top img {
    height: 143px;
    width: auto;
    clip-path: inset(0 0 20px 0);
}


.hero-title-bottom {
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2b3570;
    margin: auto;
    animation: subtitleBreath 1.5s linear infinite alternate;
}

@keyframes subtitleBreath {
    0% {
        text-shadow: 0 0 8px rgba(63, 81, 217, 0.25);
        opacity: 0.6;
    }
    100% {
        text-shadow: 0 0 16px rgba(63, 81, 217, 0.55);
        opacity: 1;
    }
}

.hero-title-top::after,
.hero-title-bottom::after,
.home-courses .section-text::after,
.about-main .section-title::after,
.strings-section .section-title::after,
.courses-area .courses-subtitle::after,
.under::after,
.service-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff9c00 , #E30613);
    margin: 10px auto;
    animation: linePulse 3s ease-in-out infinite;
}

.about-main .section-title::after,
.strings-section .section-title::after{
    margin-left: 0 !important;
}

@keyframes linePulse {
    
    0% , 100% { 
        width: 40px; 
    }
    
    50% {
        width: 80px; 
    }
    
}



/* STRINGS SECTION (GSAP) */

.strings-section {
    padding: 4.5rem 0 4rem;
}

.strings-section .section-text {
    color: var(--text-muted);
}

.guitar-visual {
    position: relative;
    height: 260px;
    border-radius: 32px;
    background: radial-gradient(circle at left, #ffb56b 0%, #402020 40%, #050716 80%);
    box-shadow: var(--shadow-soft);
    padding: 2rem 3rem;
    overflow: hidden;
}

.guitar-body {
    position: absolute;
    left: 15px;
    top: 17%;
    width: 120px;
    height: 160px;
    border-radius: 60% 40% 50% 50%;
    background: radial-gradient(circle at 30% 30%, #ffdfb2, #b66633);
}

.guitar-hole {
    position: absolute;
    left: 80px;
    top: 28%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, #000 0%, #111 60%);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5);
}

.strings-container {
    position: relative;
    left: 40%;
    top: 10%;
    width: 55%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.string {
    height: 2px;
    background: linear-gradient(90deg, #fefefe, #c0c0c0);
    border-radius: 999px;
    transform-origin: left center;
}


/* Text Flip */

.reach-section {
    padding-top: clamp(50px, 10vw, 80px);
    padding-bottom: 100px;
}

.text-slide-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.text-slide {
    color: #b13114;
    font-size: 38px;
    font-weight: 800;
}

.flip {
    display: inline-block;
    height: 80px;
    overflow: hidden;
    vertical-align: middle;
    margin: 6px 0px;
}

.flip .text-move {
    animation: show 6s infinite ease-in-out;
}

.flip .text-move>div {
    height: 80px;
    line-height: 80px;
    display: block;
    padding: 0 5px;
    color: white;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    border-radius: 6px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.flip .text-move>div::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.342), rgba(255, 255, 255, 0.24));
    transform: skewX(-20deg);
    animation: shine 6s linear infinite;
}

.flip .text-move>div:nth-child(1)::after {
    animation-delay: 0s;
}

.flip .text-move>div:nth-child(2)::after {
    animation-delay: 2s;
}

.flip .text-move>div:nth-child(3)::after {
    animation-delay: 4s;
}

@keyframes shine {
    0% {
        left: -130%;
    }

    15% {
        left: 120%;
    }

    100% {
        left: 130%;
    }
}


.flip .text-move>div:nth-child(1) {
    background: linear-gradient(180deg, #5A7BF9, #4A6CF7, #344BC4);
}

.flip .text-move>div:nth-child(2) {
    background: linear-gradient(180deg, #ffd666, #fdbb35, #d49000);
}

.flip .text-move>div:nth-child(3) {
    background: linear-gradient(180deg, #fa696e, #E30613, #a50410);
}

@keyframes show {

    0%,
    20%,
    100% {
        transform: translateY(0);
    }

    33%,
    53% {
        transform: translateY(-80px);
    }

    66%,
    86% {
        transform: translateY(-160px);
    }

}


/* 3D Hover Cards */

.home-courses {
    padding: 50px 0;
    overflow: hidden;
}

.home-courses .section-text ,
.under{
    color: var(--text-muted);
    font-size: 1.05rem;
    padding-left: 9px;
    padding-right: 9px;
}

.card-wrapper {
    margin: 0;
    display: flex;
    justify-content: center;
    column-gap: 100px;
    align-items: center;
}

.card1 {
    width: 300px;
    height: 350px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    perspective: 2500px;
    border: none !important;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .5s ease;
    border-radius: 20px;
}

.wrapper {
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
}

.card1:hover .wrapper {
    transform: perspective(900px) translateY(-5%) rotateX(68deg);
    box-shadow: 0px 35px 40px -20px rgba(0, 0, 0, 0.75);
}

.title {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
    font-size: 42px;
    font-weight: 800;
    text-shadow: 0 0 10px rgb(255 82 0 / 86%);
    color: #e1cfcf; 
    z-index: 3;
    text-align: center;
    line-height: 1.2;
}

.card1:hover .title {
    transform: translate(-50%, -60px) scale(1.2);
}

.character {
    width: 100%;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transform: scale(1);
    transition: all 0.5s ease;
    z-index: 2;
}

.card1:hover .character {
    opacity: 1;
    transform: translateY(-200px) scale(1.2);
}

.card1:hover .cover-image {
    opacity: 0.6;
}


@media (max-width: 767px) {

    .card-wrapper {
        flex-direction: column;
        row-gap: 90px;
        height: auto;
        padding: 20px 0;
    }

    .card1 {
        width: 90%;
        height: 400px;
        position: relative;
    }

    .wrapper {
        height: 100%;
        z-index: 1;
    }

    .cover-image {
        height: 100%;
        object-fit: cover;
    }

    .character {
        width: 100%;
        bottom: 0;
        transform: translateY(0) scale(0.5);
        opacity: 0;
        z-index: 2;
    }

    .card1:hover .character {
        opacity: 1;
    }

    .title {
        font-size: 40px;
        bottom: 10px;
    }

    .card1:hover .title {
        transform: translate(-50%, -20px) scale(1.2);
    }

    .card1:hover .wrapper {
        transform: perspective(600px) translateY(-1%) rotateX(68deg);
    }

}

@media (max-width: 1024px) and (min-width: 768px) {
    
    .main-navbar .nav-link{
        color: black;
    }
    
    .card-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 60px;
        margin-top: 100px;
    }

    .card1 {
        width: 40%;
        height: 350px;
    }

    .title {
        font-size: 38px;
    }
}


.corner-btn {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: #FF4A09;
    box-shadow: 0 10px 25px rgba(255, 74, 9, 0.35), inset 0 0 0 2px #FF4A09, inset 0 2px 4px rgba(255,255,255,0.35);
    cursor: pointer;
    margin-top: 50px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.corner-btn::before,
.corner-btn::after,
.corner-btn span::before,
.corner-btn span::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0.35;
    transition: all 0.3s ease;
}

.corner-btn::before {
    top: -3px;
    left: -3px;
    border-top: 2px solid #FF4A09;
    border-left: 2px solid #FF4A09;
}

.corner-btn::after {
    bottom: -3px;
    right: -3px;
    border-bottom: 2px solid #FF4A09;
    border-right: 2px solid #FF4A09;
}

.corner-btn span::before {
    top: -3px;
    right: -3px;
    border-top: 2px solid #FF4A09;
    border-right: 2px solid #FF4A09;
}

.corner-btn span::after {
    bottom: -3px;
    left: -3px;
    border-bottom: 2px solid #FF4A09;
    border-left: 2px solid #FF4A09;
}

.corner-btn:hover::before,
.corner-btn:hover::after,
.corner-btn:hover span::before,
.corner-btn:hover span::after {
    opacity: 1;
}

.corner-btn:hover {
    box-shadow: none;
    background: transparent;
    color: black;
}


/* FAQ SECTION */

.faq-section {
    position: relative;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff000f, #ffac00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    padding-left: 9px;
    padding-right: 9px;
}

.faq-item {
    background: #b0c1ff42;
    border-radius: 16px !important;
    padding: 0 22px;
    backdrop-filter: blur(10px);
    box-shadow: 7px 6px 0px rgb(0 0 0 / 35%);
    border: 1px solid white;
    transition: all 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #ffffff;
    font-weight: 500;
    padding: 1.4rem 0;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button{
    color: #2b2230;
}


.faq-accordion .accordion-button:hover {
    color: #B11226;
}



.faq-accordion .accordion-button:not(.collapsed) {
    color: #B11226;
    text-shadow: 0 2px 8px rgba(227, 6, 19, 0.35);
}

.faq-icon {
    display: grid;
    place-items: center;
    height: 40px;
    width: 40px;
    color: white;
    background: linear-gradient(135deg, #E30613, #FFC857);
    animation: movement 5s ease-in-out infinite;
    flex-shrink: 0;
    transition: all .4s ease;
}

@keyframes movement {

    0%,
    100% {
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(227, 6, 19, 0.4);
    }

    25% {
        border-radius: 55% 35% 75% 35% / 60% 30% 40% 40%;
        box-shadow: 0 0 12px rgba(255, 200, 87, 0.5);
    }

    50% {
        border-radius: 35% 65% 55% 45% / 40% 50% 60% 50%;
        box-shadow: 0 0 14px rgba(0, 201, 167, 0.45);
    }

    75% {
        border-radius: 12%;
    }
}


.accordion-button:not(.collapsed) .faq-icon {
    transform: scale(1.15);
}

.faq-accordion .accordion-body {
    color: #4a3b4f;
    padding: 0 0 1.5rem 54px;
    line-height: 1.7;
}

.accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    opacity: 0;
    transform: translateY(-10px) ;
    transition: all .4s ease;
}

.faq-accordion .accordion-collapse.show .accordion-body {
    opacity: 1;
    transform: translateY(0) ;
}


/* CTA */

.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: radial-gradient(circle at bottom left, #b4c2f3a6 , transparent);
    border-top: 4px solid transparent;
    border-image: linear-gradient( 90deg, transparent, #E30613, #FFC857, #E30613, transparent ) 1;
    margin-top: 50px !important;
}

.cta-section .section-title,
.courses-header .courses-title,
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff000f, #ffac00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-section .section-text,
.courses-header .courses-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    padding-left: 9px;
    padding-right: 9px;
}

.cta-section::before,
.cta-section::after {
    content: "♪";
    position: absolute;
    font-size: 70px;
    color: rgba(0 ,0 ,0 , 0.336);
    animation: floatNotes linear infinite;
}

.cta-section::before {
    top: 10%;
    left: 5%;
    animation-duration: 12s;
}

.cta-section::after {
    bottom: 5%;
    right: 8%;
    animation-duration: 22s;
}

@keyframes floatNotes {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-45px) rotate(20deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.cta-btn {
    display: inline-block;
    margin-top: 24px;
    position: relative;
    padding: 17px 30px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 700;
    color: #f0f0f0;
    background: linear-gradient(135deg, #E30613, #FFC857);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.741),
        inset -5px -5px 15px rgba(0, 0, 0, 0.7),
        0 10px 20px rgba(0, 0, 0, 0.3);
    -webkit-box-reflect: below 7px linear-gradient(transparent, rgba(0, 0, 0, 0.21));
}

.cta-btn:hover {
    color: #fff;
    transform: scale(1.01);
    box-shadow: inset 2px 2px 5px rgba(255, 255, 255, 0.4),
        inset -5px -5px 15px rgba(0, 0, 0, 0.6),
        0 20px 30px rgba(0, 0, 0, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cta-btn:active {
    transform: translateY(2px) scale(0.98);
}



/* About Page */

.about-main {
    padding: 4rem 0;
}

/* INNER HERO (ALL SUB PAGES) */
.inner-hero {
    padding: 11.5rem 1rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #010324;
    margin-top: -88px
}

.inner-hero::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 10%;
    height: 160px;
    width: 160px;
    border-radius: 50%;
    filter: blur(60px);
    background: rgb(0 255 209 / 35%);
    box-shadow: 0 0 170px rgb(0 255 209 / 0.9);
    opacity: 0.85;
    z-index: -1;
    animation: move 8s linear infinite alternate;
}

@keyframes move {

    0% {
        transform: translate(100%, 100%) scale(1.25);
        border-radius: 40% 100% 50% 100% / 40% 100% 50% 100%;
    }

    100% {
        transform: translate(400%, 0%) scale(0.9);
        border-radius: 100% 45% 100% 40% / 105% 45% 100% 40%;
    }
}

.inner-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #f5f7ff;
    text-shadow: 0 0 18px rgba(255, 200, 120, 0.35);
}

.inner-subtitle {
    margin: 10px auto;
    color: rgba(220, 225, 255, 0.75);
    font-size: 1.1rem;
}


/* FOCUS WRAPPER */
.focus-wrapper {
    height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    position: relative;
}

.focus {
    font-size: 80px;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.25rem;
    font-weight: 800;
    position: relative;
    text-shadow: 0 0 12px rgb(255 0 0 / 60%);
}

.focus::before {
    content: 'MUSIC';
    position: absolute;
    top: 0;
    left: 0;
    filter: blur(6px);
    opacity: 0.6;
    z-index: -1;
}

.focus::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 100%;
    top: 0;
    left: 0;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    mix-blend-mode: screen;
    animation: mask-move 3s ease-in-out infinite alternate;
    opacity: 0.6;
}

.mask {
    overflow: hidden;
    position: absolute;
    width: 120px;
    height: 100%;
    top: 0;
    left: 0;
    animation: mask-move 3s ease-in-out infinite alternate;
}

.mask-inner {
    animation: mask-inner-move 3s ease-in-out infinite alternate;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent));
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 900;
    text-shadow: none;
    width: 310px;
    filter: blur(0);
}

@keyframes mask-move {
    0% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(200px);
    }
}

@keyframes mask-inner-move {
    0% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(-200px);
    }
}


.mini-heading {
    text-transform: uppercase;
    color: #0032ff;
    border-bottom: 1px solid #0032ff;
    display: inline;
    font-weight: 700;
}

.mini-text {
    font-size: 0.9rem;
    color: #e3e7ff;
    margin-top: 10px;
}


/* Hamburger-Line */
.line {
    background: linear-gradient( 135deg, rgba(255, 74, 9, 0.18), rgba(255, 200, 87, 0.22));
    width: 100%;
    padding: 1.5rem 1.2rem;
    margin-top: 2rem;
    position: relative;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(255, 74, 9, 0.35);
    box-shadow: 0 0 18px rgba(255, 74, 9, 0.25), inset 0 0 12px rgba(255, 200, 87, 0.25);
}


.hamburger-pill {
    position: relative;
    border-radius: 12px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 145deg, #ff4a09, #ffc857 );
    box-shadow: 0 8px 18px rgba(255, 74, 9, 0.55), inset 0 2px 4px rgba(255, 255, 255, 0.45);
}   

.hamburger-pill span {
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #ffd0d0;
    display: block;
    border-radius: 2px;
}

.hamburger-pill span:nth-child(1) {
    top: 35%;
}

.hamburger-pill span:nth-child(2) {
    top: 50%;
}

.hamburger-pill span:nth-child(3) {
    top: 65%;
}


/* Team Memebers Card */
.plain-card {
    height: 300px;
    width: 300px;
    border-radius: 24px;
    border: 1px solid #a9a8a8;
    box-shadow: 3px 10px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all .7s ease;
}

.plain-card:hover {
    transform: translateY(-14px) scale(1.01);
}

.plain-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.plain-card:hover img {
    transform: scale(1.05);
}

/* ARROW TAB */
.plain-card .up {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 32px;
    background: rgba(90, 110, 255, 0.65);
    color: #ffffff;
    z-index: 2;
    transition: all .7s ease;
    text-align: center;
    line-height: 32px;
    font-size: 20px;
    border-radius: 10px 10px 0 0;
}

.plain-card:hover .up {
    bottom: 100%;
    opacity: 0;
}

.plain-card .hide-it {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 24px;
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(40, 55, 150, 0.45); 
    backdrop-filter: blur(12px);
    opacity: 0;
    top: 100%;
    transition: all .7s ease;
}

.plain-card:hover .hide-it {
    opacity: 1;
    top: 0;
}

.plain-card .hide-it h5 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px;
    border-bottom: 1px solid white;
}

.text-accent {
    color: #cfd7ff; 
    font-weight: 600;
    font-size: 1rem;
    margin: 5px 0;
}



/* Courses  */

.courses-area {
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at top right, rgba(227, 6, 19, 0.14), transparent 60%), radial-gradient(circle at bottom left, rgba(0, 201, 167, 0.14), transparent 60%);
}

.course-card {
    background: rgba(10, 12, 36, 0.9);
    border-radius: 22px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .35s ease, box-shadow .35s ease;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}


.course-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC857, #e30615);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    animation: iconFloat 2.8s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.course-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1000;
    transition: all .4s ease;
}

.course-info {
    font-size: .95rem;
    color: #cccc;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    opacity: 0.08;
    z-index: 1;
    position: absolute;
    inset: 0;
    transition: all .4s ease;
}

.course-card:hover .course-img img {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0.9);
}

.course-card:hover .course-name {
    text-shadow: 0 0 20px rgba(227, 6, 19, 0.8) , 0 0 35px rgba(255, 200, 87, 0.6);
}



/*Events*/

.event-services {
    position: relative;
    z-index: 1;
}

.service-heading {
    font-size: 2.5rem;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #ff000f, #ffac00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-list {
    margin: auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: clamp(20px , 3.5vw , 40px);
    position: relative;
    padding: 20px 30px;
    border-bottom: 1px solid rgb(0 0 0 / 18%);
    backdrop-filter: blur(11px);
    cursor: pointer;
    background: #ffffff1f;
    max-width: 90%;
    margin: auto;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translate(5px);
}

.service-item i {
    font-size: 38px;
    color: #FF4A08;
    text-shadow: 0px 0px 15px #ffded2;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.service-item h4 {
    margin: 0;
    color: black;
    font-weight: 700;
}

.service-item p {
    margin: 2px 0 0;
    color: var(--text-muted);
}

.service-item .wrap {
    width: 230px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    right: 10px;
    opacity: 0;
    transition: all 0.5s ease; 
}

.service-item .wrap img {
    border-radius: 15px;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 9999;
    border: 3px solid white;
    object-fit: cover; 
}

.service-item:hover .wrap {
    animation: peekAndJump 1s ease-in-out forwards;
    opacity: 1;
}

@keyframes peekAndJump {
    0% {
        top: 100%; 
        opacity: 0;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        top: calc(100% - 30px); 
        transform: scaleY(1);
    }

    100% {
        top: -40px; 
        opacity: 1;
        transform: scaleY(1.3); 
    }
}



/* Gallery Page */

.gallery-grid {
    padding: 4rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #a9a8a8;
    box-shadow: 3px 10px 20px rgba(0 ,0 ,0 ,0.5);
}

.gallery-item .img-fluid {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform 0.4s ease;
    background-position: top center;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.705) 100%);
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease;
}

.gallery-overlay::before {
    content: "";
    position: absolute;
    top: -150%;
    left: -50%;
    width: 80%;
    height: 300%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    transform: translateX(-150%) rotate(25deg);
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay::before {
    transform: translateX(200%) rotate(25deg);
}

.gallery-tagline {
    margin-top: 3rem;
}


/*Modal*/

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    transition: all 0.3s ease;
    pointer-events: none; 
}

.play-overlay i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
    transition: all 0.3s ease;
}

.gallery-item:hover .play-overlay i {
    color: #a6e1f7;
    transform: scale(1.2);
}

.modal-content.bg-black {
    background-color: #000; 
}



/* CONTACT */

.contact-section {
    padding: 4rem 0;
}

.contact-flip .text-slide,
.contact-flip .text-move {
    font-size: 38px;
}

.contact-details {
    padding-top: 20px;
    position: relative;
}

.contact-details .img {
    position: absolute;
    background-image: url('../images/keyboard.png');
    filter: brightness(0) invert(0.3);
    transform-origin: left center;
    background-size: cover;
    top: 220px;
    left: -120px;
    height: 220px;
    width: 300px;
    z-index: -1000;
    animation: keyboard 4s linear infinite;
}

@keyframes keyboard {

    0%,
    100% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

}


.data{
    padding-left: 0;
}

.data li {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 19px;
    align-items: center;
}

.data li a,
.data li p{
    text-decoration: none;
    color: black;
    transition: .3s;
    word-break: break-word;
}

.data li a:hover{
    color: #F5823E;
    text-decoration: underline;
}


.data li i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    color: white;
    font-size: 21px;
    background: linear-gradient(135deg, #E30613, #FFC857);
    animation: morph 5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes morph {

    0%,
    100% {
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(227, 6, 19, 0.4);
    }

    25% {
        border-radius: 55% 35% 75% 35% / 60% 30% 40% 40%;
        box-shadow: 0 0 12px rgba(255, 200, 87, 0.5);
    }

    50% {
        border-radius: 35% 65% 55% 45% / 40% 50% 60% 50%;
        box-shadow: 0 0 14px rgba(0, 201, 167, 0.45);
    }

    75% {
        border-radius: 12%;
    }

}


.contact-card {
    border-radius: 24px;
    padding: 2rem;
    background-color: #454983;
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: inset 0 4px 6px rgba(255, 255, 255, 0.45), inset 6px -8px 0px 0px rgba(0, 0, 0, 0.4); 
}

.form-label {
    margin-top: 10px;
    font-size: 17px;
}

.form-control-soft,
.form-select.form-control-soft {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: black;
    color: white;
    padding: 14px 12px;
}

.form-control-soft:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.15rem rgba(255, 107, 129, 0.25);
    background-color: rgb(252, 206, 214);
    color: black;
}

.form-control-soft::placeholder,
textarea.form-control-soft::placeholder,
select.form-control-soft:invalid {
    color: #cccccc73 !important;
}

select.form-control-soft option {
    color: black !important;
}

.contact-btn {
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #E30613, #FFC857, #00C9A7);
    background-size: 200% 200%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
    background-position: 90% 0%;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(227, 6, 19, 0.45);
    color: #0A0C23;
}

.contact-btn:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}



/* Footer */

footer {
    background: #110D19;
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/footer-bg.png');
    filter: brightness(0) invert(0.3);
    transform: scaleX(-1);
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

footer a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.footer-title span,
.footer-bottom span,
.footer-bottom a {
    color: #EE4E2D;
    font-weight: 800;
}

.footer-underline {
    height: 3px;
    background: linear-gradient(90deg, #EE4E2D, #ff0000);
    margin: 10px 0 18px;
    border-radius: 20px;
    animation: underline-grow 2s linear infinite alternate;
}

@keyframes underline-grow {
    from {
        width: 20px;
    }

    to {
        width: 80px;
    }
}

.footer-links,
.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
}

.footer-links a {
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-contact i {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #EE4E2D;
    flex-shrink: 0;
    margin-right: 12px;
    animation: shadow 2s linear infinite alternate;
}

@keyframes shadow {
    from {
        box-shadow: none;
    }

    to {
        box-shadow: 0 0 0 6px #FCB551;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
}

.footer-bottom a {
    border-bottom: 1px solid white;
    transition: 0.3s ease;
}

/*Map*/
.map-musical-wrapper {
    position: relative;
    padding: 10px 8px 6px;
    border-radius: 20px;
    background: rgba(255, 253, 253, 0.068);
    backdrop-filter: blur(8px);
    border: 1px solid rgb(90, 89, 89);
}

.map-musical-wrapper iframe {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    border: none;
}



/* SHARE WRAPPER */

.share {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
}

.share-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: none;
    background: #EE4E2D;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 8px rgba(255, 60, 0, 0.9);
}

.share-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(255, 60, 0, 0.9);
}

.share-links {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: center;
    display: flex;
    gap: 12px;
    z-index: 1;
    transition: transform .4s cubic-bezier(0.25, 1.3, 0.5, 1);
}

.share-link {
    width: 45px;
    height: 45px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transform: translateY(0px);
    opacity: 0;
    transition: all .3s ease;
}

.share-link:hover:nth-child(1) {
    background: #1152D3;
}

.share-link:hover:nth-child(2) {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.share-link:hover:nth-child(3) {
    background: #FF0000;
}

.share-link:hover:nth-child(4) {
    background: #199430;
}

.share.open .share-links {
    transform: translate(-50%, -50%) scale(1);
}

.share.open .share-btn {
    transform: scale(1.06);
    box-shadow: 0 0 20px rgba(255, 60, 0, 0.9);
}

.share.open .share-link {
    opacity: 1;
    transform: translateX(-130px);
}



/* All Buttons */

.btn-cta {
    position: relative;
    padding: 6px 12px;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #E00F1E;
    background: transparent;
    border: 2px solid #E00F1E !important;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    z-index: 1;
    -webkit-box-reflect: below 5px linear-gradient(transparent, rgba(0,0,0,0.2));
}

.btn-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), #ff9a8c);
    transition: 0.4s ease-in-out;
    z-index: -1;
}

.btn-cta:hover {
    color: white;
}

.btn-cta:hover::before {
    left: 0;
}

/* Adding a unicode music note */
.btn-cta span {
    margin-right: 8px;
}




/* Top-Btn */

.dj-scroll {
    position: fixed;
    right: 32px;
    bottom: 80px;
    width: 26px;
    height: 110px;
    pointer-events: none;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

.slider-track {
    position: absolute;
    width: 6px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: #EE4E2D;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(255, 60, 0, 0.6);
}

.slider-handle {
    position: absolute;
    width: 26px;
    height: 26px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: white;
    border-radius: 6px;
    pointer-events: auto;
    cursor: pointer;    
    box-shadow: 0 0 8px rgba(255, 60, 0, 0.6) , inset 0 0 10px rgb(0 0 0 / 50%);
    animation: djVibrate 2s ease-in-out infinite;
}

@keyframes djVibrate {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-4px);
    }
}

.slider-handle.jumping {
    animation: djJump 0.35s cubic-bezier(0.17, 0.89, 0.32, 1.3) forwards;
}

@keyframes djJump {
    0% {
        top: var(--current-y);
        transform: translateX(-50%) scale(1);
    }

    70% {
        top: -10px;
        transform: translateX(-50%) scale(1.2);
    }

    100% {
        top: 0;
        transform: translateX(-50%) scale(1);
    }
}




/* CONFETTI */

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #f2d74e;
    animation: fall 3s linear infinite;
    z-index: 0;
    opacity: 0.4;
}

.confetti:nth-child(1) {
    left: 10%;
    background: #ff4757;
    animation-delay: .4s;
}

.confetti:nth-child(2) {
    left: 20%;
    background: #2ed573;
    animation-delay: 1s;
}

.confetti:nth-child(3) {
    left: 30%;
    background: #ffa502;
    animation-delay: 1.5s;
}

.confetti:nth-child(4) {
    left: 50%;
    background: #ff6b81;
    animation-delay: 2s;
}

.confetti:nth-child(5) {
    left: 70%;
    background: #1e90ff;
    animation-delay: 1s;
}

.confetti:nth-child(6) {
    left: 80%;
    background: #ff4757;
    animation-delay: 1.5s;
}

.confetti:nth-child(7) {
    left: 90%;
    background: #eccc68;
    animation-delay: 1.2s;
}

.confetti-soft {
    opacity: 0.2;
    animation-duration: 4s;
}

@keyframes fall {
    0% {
        transform: translateY(-50px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}



/*Loader*/

#gyro-loader {
    position: fixed;
    inset: 0;
    background: #fdfdfd; 
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    animation: fadeIn 0.3s ease-out;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#gyro-loader.hide {
    opacity: 0;
    visibility: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gyro-container {
    position: relative;
    width: 180px;
    height: 180px;
    perspective: 800px;
    transform-style: preserve-3d;
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid transparent;
    box-shadow: 0 0 15px rgba(0,0,0,0.02); 
}

.ring-1 {
    border-top-color: #ff7f50; 
    border-bottom-color: #ff7f50;
    animation: spin1 3s linear infinite;
}

.ring-2 {
    border-left-color: #008080;
    border-right-color: #008080;
    transform: scale(0.85); 
    animation: spin2 3.5s linear infinite;
}

.ring-3 {
    border-top-color: #DAA520;
    border-bottom-color: #DAA520;
    transform: scale(0.7);
    animation: spin3 4s linear infinite;
}

.core {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: #3e3434;
    animation: corePulse 3s ease-in-out infinite;
}

.loader-text {
    margin-top: 50px;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    opacity: 0;
    animation: textSlideUp 1s ease-out forwards 0.3s;
}


@keyframes spin1 {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(180deg) rotateZ(360deg); }
}

@keyframes spin2 {
    0% { transform: rotateX(60deg) rotateY(0deg) scale(0.85); }
    100% { transform: rotateX(60deg) rotateY(360deg) scale(0.85); }
}

@keyframes spin3 {
    0% { transform: rotateX(-45deg) rotateZ(0deg) scale(0.7); }
    100% { transform: rotateX(-45deg) rotateZ(-360deg) scale(0.7); }
}

@keyframes corePulse {
    
    0%, 100% {
        transform: scale(0.9); opacity: 0.8;
    }
    50% {
        transform: scale(1.1); opacity: 1; 
    }
    
}

@keyframes textSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}



/*Medis Queries */

@media (min-width: 992px) {
    
    .hero-title-wrapper {
        align-items: flex-start;
    }

}

@media (max-width: 767px) {
    
    .hero-heading{
        margin-top: 40px;
    }
    
    .main-navbar .nav-link{
        color: black;
        padding: 15px 18px;
    }
    
    .hero-section {
        padding: 70px 0 100px;
        height: auto;
    }

    .hero-title-banner {
        width: 260px;
        height: 120px;
    }

    .letter-box {
        min-width: 53px;
        height: 90px;
    }

    .img-droplet img {
        height: 300px;
    }

    .hover-card-wrapper {
        row-gap: 80px;
    }

    .guitar-visual {
        padding: 1.5rem;
    }

    .focus-wrapper {
        height: 220px;
    }

    .hamburger-pill {
        width: 90px;
    }

    .gallery-item img {
        height: 300px;
        
    }

    .inner-hero::after {
        animation: move 4s linear infinite alternate;
    }
    
    .service-item{
        max-width: 100%;
    }
    
    .service-item .wrap{
        height: 100px;
        width: 200px;
        top: -35px !important;
    }


    @keyframes move {

        0% {
            transform: translate(0%, 100%) scale(1.25);
            border-radius: 40% 100% 50% 100% / 40% 100% 50% 100%;
        }

        100% {
            transform: translate(100%, 10%) scale(0.9);
            border-radius: 100% 45% 100% 40% / 105% 45% 100% 40%;
        }
    }
}

