/* Header Start */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 80px;
    background: rgba(11, 6, 22);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
}


/* FLEX ALIGN */
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* LOGO LEFT */
.logo img {
    width: 160px;
}

/* MENU RIGHT */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-size: clamp(14px, 1.1vw, 16px) !important;
}


/* DROPDOWN WRAPPER */
.dropdown {
    position: relative;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;

    padding: 0px 0px;
    border: 0.8px solid #D2D5DA;
    background: rgb(255 255 255);
    backdrop-filter: blur(12px);
}

/* DROPDOWN LINKS */
.dropdown-menu a {
    padding: 12px 16px;
    font-size: clamp(14px, 1.1vw, 16px) !important;
    color: #000;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* HOVER EFFECT (DESKTOP) */
.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-toggle::after {
    display: none;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: clamp(22px, 1.5vw, 24px) !important;
    cursor: pointer;
    color: white;
}

/* ================= */
/* RESPONSIVE */
/* ================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .main-header {
        padding: 8px;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(11, 6, 22);
        flex-direction: column;
        align-items: flex-start;
        display: none;
        padding: 10px 0;
        border-top: 1px solid #eee;
        z-index: 1;
    }

    .nav-menu a {
        padding: 12px 20px;
        /* width: 100%; */
    }

    .nav-menu {
        gap: 0px;
    }


    .dropdown {
        padding: 12px 20px 12px 0px;
    }

    .nav-menu.active {
        display: flex;
    }

}

/* Header End */

/* Hero Section Start Css  */

.hero-section {
    position: relative;
    overflow: visible;
    width: 100%;
    min-height: 100vh;
    /* padding-bottom: 140px; */
    display: flex;
    align-items: center;
}

.heroSwiper {
    width: 100%;
    min-height: 100vh;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(34, 0, 58, 0.9) 0%,
            rgba(44, 0, 70, 0.75) 30%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 80%; */
    /* padding: 32px; */
    color: #fff;

}

.hero-tag {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 30px;
     font-size: clamp(13px, 1vw, 14px) !important;
    margin-bottom: 25px;
    position: relative;
    background: transparent;
    z-index: 1;
}

.hero-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 0.9px;
    background: linear-gradient(54deg, #8C4BE8 8.96%, #22D3EE 97.54%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}


.hero-tag2 {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 30px;
     font-size: clamp(13px, 1vw, 14px) !important;
    position: relative;
    background: rgba(24, 21, 34, 0.6);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06) inset;
    white-space: nowrap;
    z-index: 1;
}

.hero-tag2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 0.9px;
    background: linear-gradient(90deg, #9810FA 24.52%, #00BC7D 100%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    z-index: -1;
}




.hero-title {
    font-size: clamp(42px, 4vw, 64px) !important;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    border-radius: 10px !important;
    width: 30px !important;
    /* active width */
}

/* Stats Fixed */
.stats-box {
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    background: #F5F3FF;
    border-radius: 25px;
    padding: 30px 20px;
    z-index: 5;
    box-shadow: 4px 8px 14px 0 rgba(141, 77, 255, 0.20);
}

.stats-heading {
    text-align: center;
    margin-bottom: 15px;
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    width: 1px;
    height: 100%;
    background: #D2D5DA;
}

.stat-item h2 {
    font-size: clamp(30px, 2.6vw, 42px) !important;
    font-weight: 700;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 150px !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

@media(max-width:991px) {

    .hero-title {
        font-size: clamp(32px, 3vw, 48px) !important;
    }

    .stats-box {
        width: 92%;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
}

@media(max-width:576px) {

    .hero-title {
         font-size: clamp(26px, 2.3vw, 38px) !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }


    .stats-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .stats-box {
        bottom: -200px;
    }
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 991px) {

    .hero-section,
    .heroSwiper,
    .hero-slide {
        min-height: 90vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 40px 30px;
    }

    .hero-tag {
        font-size: clamp(12px, 0.9vw, 13px) !important;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: clamp(34px, 3.3vw, 52px) !important;
        line-height: 115%;
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero-buttons a {
        width: auto;
    }

    /* ===== Stats Box ===== */
    .stats-box {
        width: 92%;
        padding: 25px 18px;
        bottom: -90px;
        border-radius: 22px;
    }

    .stats-wrapper {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .stat-item {
        flex: 1;
        padding: 0 10px;
    }

    .stat-item h2 {
        font-size: clamp(28px, 1.8vw, 30px) !important;
    }

    .stat-item p {
        font-size: clamp(14px, 1vw, 15px) !important;
    }

    .stat-item:not(:last-child)::after {
        display: block;
        height: 70%;
        top: 15%;
    }

    .swiper-pagination {
        bottom: 130px !important;
    }
}


/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 576px) {

    .hero-section,
    .heroSwiper,
    .hero-slide {
        min-height: 85vh;
    }

    .hero-slide {
        align-items: center;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(20, 0, 40, 0.9) 0%,
                rgba(20, 0, 40, 0.75) 45%,
                rgba(0, 0, 0, 0.35) 100%);
    }

    .hero-content {
        padding: 60px 0px 20px;
        max-width: 100%;
    }

    .hero-tag {
        font-size: clamp(11px, 0.9vw, 12px) !important;
        padding: 8px 14px;
        margin-bottom: 16px;
        line-height: 150%;
    }

    .hero-title {
         font-size: clamp(26px, 2.2vw, 36px) !important;
        line-height: 115%;
        margin-bottom: 20px !important;
    }

    .hero-buttons {
        flex-direction: row;
        /* column nahi */
        flex-wrap: wrap;
        gap: 8px;
    }


    .hero-tag2 {
        width: auto;
        display: inline-block;
    }

    /* .hero-tag2 {
        display: block;
        width: fit-content;
    } */

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    /* ===== Pagination ===== */
    .swiper-pagination {
        bottom: 180px !important;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-pagination-bullet-active {
        width: 24px !important;
    }

    /* ===== Stats Box ===== */
    .stats-box {
        width: 94%;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%, 85%);

        padding: 20px 12px;
        border-radius: 18px;
    }

    .stats-heading p {
        font-size: clamp(14px, 1vw, 15px) !important;
    }

    /* IMPORTANT:
     Stats ek row me rahenge
  */
    .stats-wrapper {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }

    .stat-item {
        flex: 1;
        padding: 0 4px;
    }

    .stat-item h2 {
        font-size: clamp(18px, 1.3vw, 20px) !important;
        line-height: 120%;
    }

    .stat-item p {
        font-size: clamp(11px, 0.9vw, 12px) !important;
        line-height: 140%;
        margin-top: 6px;
    }

    .stat-item:not(:last-child)::after {
        display: block;
        height: 60%;
        top: 20%;
    }
}




.hero-form-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    margin-left: auto;
}

.form-badge {
    display: inline-block;
    color: #6D3AB5;
    font-size: clamp(12px, 0.9vw, 13px) !important;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-form-card h3 {
     font-size: clamp(28px, 2vw, 32px) !important;
    font-weight: 700;
    color: #111;
    margin-bottom: 0px;
}

.hero-form-card p {
     font-size: clamp(13px, 1vw, 14px) !important;
    line-height: 1.6;
    color: #777;
    margin-bottom: 24px;
}

/* LABELS */

.hero-form-card label {
    display: block;
    font-size: clamp(12px, 0.9vw, 13px) !important;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

/* INPUTS */

.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
    width: 100%;
    height: 42px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #F8F8F8;
    padding: 0 15px;
     font-size: clamp(13px, 1vw, 14px) !important;
    transition: all 0.3s ease;
}

select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    padding-right: 40px !important;

    background-image: url("../images/icon/arrow_down.png") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 20px) center !important; 
    background-size: 12px !important;
}


.hero-form-card textarea {
    height: 120px;
    padding-top: 15px;
    resize: none;
}

.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus {
    outline: none;
    border-color: #6D3AB5;
    background: #fff;
}

/* BUTTON */

.demo-btn {
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
     font-size: clamp(13px, 1vw, 14px) !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    transform: translateY(-2px);
}

.demo-btn span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.1vw, 16px) !important;
}

/* FOOTER TEXT */

.form-note {
    text-align: center;
    font-size: clamp(11px, 0.9vw, 12px) !important;
    color: #999;
    margin-top: 15px;
    line-height: 1.5;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .hero-form-card {
        max-width: 100%;
        padding: 25px;
        margin-top: 0px;
    }

    .hero-form-card h3 {
        font-size: clamp(24px, 1.7vw, 26px)
    }
}

@media (max-width: 576px) {

    .hero-form-card {
        padding: 20px;
        border-radius: 20px;
    }

    .hero-form-card h3 {
        font-size: clamp(21px, 1.7vw, 22px);
    }

    .hero-form-card input,
    .hero-form-card select,
    .hero-form-card textarea {
        height: 46px;
    }

    .demo-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section End Css  */

/* About Section Start */
.about-us-img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(217deg,
            #00FFBD 2.01%,
            #44A8D8 29.58%,
            #657DE5 49.97%,
            #8752F3 100.07%) border-box;
    border: 2px solid transparent;
}

.large-img {
    height: 100%;
    /* min-height: 540px; */
}

.small-img {
    height: calc(50% - 12px);
}

@media (max-width: 991px) {
    .about-mobile-layout {
        display: flex;
        flex-wrap: nowrap;
    }

    .about-mobile-layout>.col-6 {
        width: 50%;
        flex: 0 0 50%;
    }

    .about-mobile-layout .large-img {
        height: 100%;
    }

    .about-mobile-layout .small-img {
        height: calc(50% - 8px);
    }
}



/* Mobile */
@media (max-width: 767px) {

    .about-mobile-layout {
        display: flex;
        flex-wrap: nowrap;
    }

    .about-mobile-layout>.col-6 {
        width: 50%;
        flex: 0 0 50%;
    }

    .about-mobile-layout .large-img {
        height: 100%;
    }

    .about-mobile-layout .small-img {
        height: calc(50% - 8px);
    }

}

/* About Section End */


/* Instrument start */
.instrument-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 550px;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(.22, .61, .36, 1);
}

.instrument-card-image {
    position: absolute;
    inset: 0;
}

.instrument-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.instrument-card:hover .instrument-card-image img {
    transform: scale(1.08);
}

/* Overlay */

.instrument-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(180deg,
            rgba(66, 140, 183, 0.00) 51.77%,
            rgba(95, 86, 197, 0.72) 60.66%,
            #6B3CCB 75.57%,
            rgba(85, 111, 190, 0.95) 95.61%,
            rgba(25, 251, 155, 0.80) 115.86%),
        linear-gradient(274deg,
            rgba(0, 0, 0, 0.00) -9.78%,
            rgba(28, 15, 47, 0.10) 13.19%,
            rgba(140, 75, 232, 0.50) 103.12%);

    transition: all 0.7s ease;
}

.instrument-card:hover .instrument-overlay {
    background:
        linear-gradient(180deg,
            rgba(66, 140, 183, 0.10) 30%,
            rgba(95, 86, 197, 0.85) 50%,
            #6B3CCB 68%,
            rgba(85, 111, 190, 1) 88%,
            rgba(25, 251, 155, 0.95) 120%),
        linear-gradient(274deg,
            rgba(0, 0, 0, 0.15) -9.78%,
            rgba(28, 15, 47, 0.35) 13.19%,
            rgba(140, 75, 232, 0.75) 103.12%);
}

/* Content */

.instrument-card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    color: #fff;
    padding: 32px;
}

/* Header */

.card-header h3 {
    margin: 0;
    color: #fff;
}

.instrument-tags {
    display: block;
}

/* Card Body */

.card-body {
    margin-top: 12px;
    overflow: hidden;
}

/* Paragraph */

.card-body p {
    line-height: 1.6;
    color: rgba(255, 255, 255, .95);
    font-size: clamp(16px, 1.2vw, 18px) !important;
    margin: 0;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    text-overflow: ellipsis;

    transition: all .5s ease;
}

/* Hover Full Text */

.instrument-card:hover .card-body p {
    -webkit-line-clamp: unset;
}

/* Features Hidden */

.instrument-features {
    list-style: none;
    padding: 30px 0 0;
    margin: 0;
    border-top: 0.4px solid #D2D5DA;

    opacity: 0;
    max-height: 0;
    overflow: hidden;

    transform: translateY(40px);

    transition:
        opacity .6s ease,
        transform .6s ease,
        max-height .6s ease,
        margin .6s ease;
}

.instrument-features li {
    font-size: clamp(14px, 1.1vw, 16px) !important;
    font-weight: 400;
    color: rgba(255, 255, 255, .95);
    line-height: 180%;
}

/* Hover Features */

.instrument-card:hover .instrument-features {
    opacity: 1;
    max-height: 300px;
    margin-top: 24px;
    margin-bottom: 24px;
    transform: translateY(0);
}

/* Button */

.instrument-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
}

.instrument-btn svg {
    transition: transform .3s ease;
}

.instrument-btn:hover svg {
    transform: translateX(6px);
}

/* Mobile */

@media (max-width: 991px) {

    .instrument-card {
        min-height: 550px;
    }

    .card-body p {
        -webkit-line-clamp: unset;
    }

    .instrument-features {
        opacity: 1;
        max-height: 500px;
        margin-top: 24px;
        margin-bottom: 24px;
        transform: translateY(0);
    }

    .instrument-btn {
        font-size: clamp(21px, 1.7vw, 22px)
    }

    .instrument-tags {
        font-size: clamp(16px, 1.2vw, 18px) !important;
    }

    .instrument-card-content {
        padding: 18px;
    }

}

/* Instrument End */




/*  Our Teaching Philosophy Start  */

.music-card-wrapper {
    background: #FFF;
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
}

.music-feature {
    cursor: pointer;
    transition: all .3s ease;
}

.music-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: -4px 0 19.1px 0 rgba(214, 199, 235, 0.68);
    transition: opacity .35s ease;
}

/* INNER CONTAINER WITH GRADIENT BORDER */
.music-container {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 14px;
    border: 2px solid transparent;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(217deg,
            #00FFBD 2.01%,
            #44A8D8 29.58%,
            #657DE5 49.97%,
            #8752F3 100.07%) border-box;
}


/* LEFT SIDE */
.music-left {
    width: 52%;
    background: #FFF;
    display: flex;
    flex-direction: column;
}

/* FEATURE ITEM */
.music-feature {
    display: flex;
    gap: 20px;
    padding: 24px 20px;
    position: relative;
    transition: 0.3s ease;
    background: #FFF;
}

.music-feature:last-child {
    border-bottom: none;
}

/* ACTIVE ITEM */
.music-feature.active {
    background: #F5F3FF;
}

.music-feature.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #8B5CF6;
}

.music-feature.active h4 {
    color: #0B0616;
    font-weight: 600;
}

/* ICON */
.music-icon {
    min-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(180deg, #4FC3FF 0%, #7A4DFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* CONTENT */
.music-content h4 {
    font-size: clamp(22px, 1.5vw, 24px) !important;
    font-weight: 500;
    color: #404040;
    margin-bottom: 8px;
    line-height: 1.3;
}

.music-content p {
    font-size: clamp(14px, 1.1vw, 16px) !important;
    line-height: 1.7;
    color: #737373;
    margin-bottom: 0;
}

/* RIGHT IMAGE */
.music-right {
    width: 48%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.music-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: -4px 0 19.1px 0 rgba(214, 199, 235, 0.68);
}

/* NOTE */
.music-note {
    color: rgba(255, 255, 255, 0.85);
     font-size: clamp(13px, 1vw, 14px) !important;
    margin-top: 16px;
}



@media (max-width: 991px) {

    /* Heading */
    .w-80 {
        width: 100% !important;
    }

    .fs-40 {
        font-size: clamp(24px, 2vw, 34px) !important;
        line-height: 130%;
    }

    /* Main Box */
    .music-card-wrapper {
        padding: 16px;
        border-radius: 20px;
    }

    .music-container {
        flex-direction: column;
    }

    .music-left,
    .music-right {
        width: 100%;
    }

    /* Features */
    .music-feature {
        gap: 16px;
        padding: 12px 16px;
    }

    .music-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .music-icon img {
        width: 24px;
        height: 24px;
    }

    .music-content h4 {
        font-size: clamp(18px, 1.3vw, 20px) !important;
        margin-bottom: 6px;
    }

    .music-content p {
         font-size: clamp(13px, 1vw, 14px) !important;
        line-height: 160%;
    }

    /* Image */
    .music-right {
        height: 320px;
    }

    .music-right img {
        border-radius: 0 0 14px 14px;
    }

    /* Bottom Note */
    .music-card-wrapper>p {
        font-size: clamp(12px, 0.9vw, 13px) !important;
        line-height: 150%;
        text-align: center;
    }
}



@media (max-width: 576px) {

    .fs-40 {
        font-size: clamp(28px, 1.7vw, 28px) !important;
    }

    .music-feature {
        flex-direction: column;
        align-items: flex-start;
    }

    .music-right {
        height: 240px;
    }

    .music-content h4 {
        font-size: clamp(16px, 1.2vw, 18px) !important;
    }

    .music-content p {
        font-size: clamp(12px, 0.9vw, 13px) !important;
    }

}


.mobile-feature-image {
    display: none;
}

@media (max-width: 576px) {

    .music-right {
        display: none;
    }

    .mobile-feature-image {
        display: none;
        width: 100%;
        margin-top: 15px;
    }

    .mobile-feature-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 12px;
    }

    .music-feature.active .mobile-feature-image {
        display: block;
    }
}

/*  Our Teaching Philosophy End  */


/* Tech setup start */
.tech-setup {
    background: #f8f5ff;
}

/* Equal Height Layout */
.tech-setup .row {
    align-items: stretch;
}

.setup-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.setup-item {
    flex: 1;
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 16px;
    color: #6D3AB5;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(180deg, rgba(85, 45, 140, 1) 0%, rgba(224, 201, 255, 1) 100%) border-box;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .4s;
}

.setup-item.active {
    color: #fff;
    background:
        linear-gradient(180deg, #41226B -32.05%, #6D3AB5 30.9%, #552D8C 57.81%, #41226B 100%) padding-box,
        linear-gradient(180deg, rgba(85, 45, 140, 1) 0%, rgba(224, 201, 255, 1) 100%) border-box;
    border: 2px solid transparent;
}

.setup-item.active p {
    color: rgba(255, 255, 255, .8);
}

.step-no {
    font-size: clamp(22px, 1.5vw, 24px) !important;
    font-weight: 600;
    min-width: 40px;
}

.setup-item h4 {
    margin-bottom: 8px;
    font-size: clamp(22px, 1.5vw, 24px) !important;
}

.setup-item p {
    margin: 0;
    color: #666;
    font-size: clamp(14px, 1.1vw, 16px) !important;
}

.setup-preview {
    background: #fff;
    border: 1px solid #A0A5B1;
    border-radius: 20px;
    padding: 32px;
    flex: 1;
}

.setup-image-wrap img {
    width: 100%;
    height: 346px !important;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    transition: .5s;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #9810FA 24.52%, #00BC7D 100%) border-box;
    border: 2px solid transparent;
}

.setup-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #9810FA 24.52%, #00BC7D 100%);
    border: 1px solid transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(11px, 0.9vw, 12px) !important;
    font-weight: 500;
    color: #7E8695;

    transition: all .3s ease;
}

.dot.active {
    color: #fff;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(90deg, #9810FA 24.52%, #00BC7D 100%);
    border: 1px solid transparent;
}

.setup-note {
    border-radius: 14px;
    border: 0.8px solid rgba(109, 58, 181, 0.20);
    background: #EFECFF;
    padding: 20px;
}

.setup-note p {
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {

    .setup-list {
        height: auto;
    }

    .setup-item {
        flex: unset;
    }

    .setup-preview {
        flex: unset;
        padding: 20px;
    }

    .setup-item h4 {
        font-size: clamp(18px, 1.3vw, 20px) !important;
    }

    .step-no {
        font-size: clamp(18px, 1.3vw, 20px) !important;
    }
}

/* Tech setup end */




/* Our Teams Start */


.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 400px;

    border: 1.5px solid transparent;

    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(217deg,
            #00FFBD 2.01%,
            #44A8D8 29.58%,
            #657DE5 49.97%,
            #8752F3 100.07%) border-box;

    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10);
}

.team-image {
    height: 100%;
    padding-top: 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom Content */

.team-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;

    padding: 18px 20px;

    background: linear-gradient(180deg,
            rgba(48, 25, 79, 0.95) 0%,
            rgba(109, 58, 181, 0.95) 100%);

    height: 95px;
    overflow: hidden;

    transition:
        height 0.9s cubic-bezier(.19, 1, .22, 1),
        padding 0.9s cubic-bezier(.19, 1, .22, 1);
}

.team-content h4 {
    color: #fff;
    font-size: clamp(22px, 1.5vw, 24px) !important;
    font-weight: 700;
    margin-bottom: 4px;
}

.designation {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.1vw, 16px) !important;
    margin-bottom: 0;
}

/* Description Hidden */

.team-description {
    opacity: 0;
    margin-top: 20px;

    color: #fff;
    font-size: clamp(16px, 1.2vw, 16px) !important;
    line-height: 1.8;

    transform: translateY(40px);

    transition:
        opacity 0.6s ease,
        transform 0.9s cubic-bezier(.19, 1, .22, 1);
}

/* Hover */

.team-card:hover .team-content {
    height: 100%;
    padding-top: 40px;
}

.team-card:hover .team-description {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */

@media (max-width: 991px) {

    .team-content {
        height: 95px;
        padding: 18px 20px;
    }

    .team-description {
        opacity: 0;
        transform: translateY(40px);
    }

    .team-card:hover .team-content {
        height: 95px;
        padding: 18px 20px;
    }

    .team-card:hover .team-description {
        opacity: 0;
        transform: translateY(40px);
    }
}

/* Our Teams End */


/* Student Stories Start */
.testimonials-bg {
    background: url(../images/testimonial-bg.svg) no-repeat center center;
    background-size: contain;
}

.books {
    padding: 40px 0 80px;
    overflow: hidden;
}

.books .swiper-slide {
    width: 460px !important;
    min-height: 480px;
    border-radius: 22px;
    border: 2px solid transparent;
    background: linear-gradient(#1F1733, #1F1733) padding-box,
        linear-gradient(217deg, #00FFBD 2.01%, #44A8D8 29.58%, #657DE5 49.97%, #8752F3 100.07%) border-box;
    padding: 24px 32px;
    transition: 0.4s ease;

    display: flex;
    flex-direction: column;
}

/* Image */
.testimonial-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-img img {
    width: 100%;
    
    height: clamp(280px, 28vw, 420px);

    border: 1px solid #EA79FC;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 58px;
    height: 58px;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: #5f2800;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(22px, 1.5vw, 24px) !important;
    cursor: pointer;
}

/* Bottom Content */
.testimonial-content {
    margin-top: 20px;

    display: flex;
    align-items: end;
    justify-content: space-between;
}

.testimonial-content h3 {
    color: #fff;
    font-size: clamp(22px, 1.5vw, 24px) !important;
    font-weight: 500;
    margin-bottom: 0;
}

.testimonial-content p {
    color: #D1D5DB;
    font-size: clamp(14px, 1.1vw, 16px) !important;
    margin: 0;
}

/* Quote Icon */
.quote-icon {
    font-size: clamp(34px, 3.3vw, 52px) !important;
    line-height: 1;

    background: linear-gradient(180deg, #00D1FF, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-testimonial {
   width: clamp(260px, 22vw, 360px) !important;
    min-height: clamp(420px, 40vw, 620px);

    border-radius: 22px;
    border: 2px solid transparent;
    background: linear-gradient(#1F1733, #1F1733) padding-box,
        linear-gradient(217deg, #00FFBD 2.01%, #44A8D8 29.58%, #657DE5 49.97%, #8752F3 100.07%) border-box;

    padding: 24px 32px;
    transition: 0.4s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    color: #404040;
    background: #F5F3FF;
    padding: 24px 16px;
    border: 1px solid #EA79FC;
    border-radius: 16px;
    min-height: clamp(280px, 28vw, 420px);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-text p {
    margin: 0;
    font-size: clamp(16px, 1.2vw, 18px) !important;
}
@media (max-width: 768px) {

    .books .swiper-slide,
    .text-testimonial {
        width: 100% !important;
         height: 100%;
        display: flex;
        flex-direction: column;
    }

    .books .swiper-slide {
        padding: 14px;
    }

    .testimonial-img img {
        height: 100%;
    }

    .testimonial-content {
        margin-top: auto; /* pushes content to bottom */
    }

    .testimonial-text {
        min-height: 300px;
    }

    .testimonial-content h3 {
        font-size: clamp(22px, 1.5vw, 24px) !important;
    }

    .testimonial-content p {
         font-size: clamp(13px, 1vw, 14px) !important;
    }

    .quote-icon {
        font-size: clamp(28px, 2.5vw, 40px);
    }
}



.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.video-modal.active {
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.video-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 400px;
}

.video-box video {
    width: 100%;
    display: block;
    border-radius: 12px;
    background: #000;
}

.close-video {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
     font-size: clamp(26px, 2.2vw, 36px) !important;
    cursor: pointer;
    z-index: 10;
}

/* Student Stories End */



/* Batches Start */
.batch1::before {
    content: "";
    position: absolute;
    top: 0;
    right: 3%;
    width: 70px;
    height: 70px;
    background: url(../images/icon/music-icon.png) no-repeat center;
    background-size: contain;
    transform: rotate(0deg);
    opacity: 1;
    z-index: -1;
}

@media (max-width: 767px) {
    .batch1::before {
        top: 4%;
    }
}


.batch2 {
    position: relative;
}


.batch2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 121px;
    height: 121px;
    background: url(../images/icon/music-icon.png) no-repeat center;
    background-size: contain;
    transform: rotate(0deg);
    opacity: 1;
    z-index: -1;
}


.batch3 {
    position: relative;
}


.batch3::before {
    content: "";
    position: absolute;
    top: 0;
    right: 2%;
    width: 121px;
    height: 121px;
    background: url(../images/icon/music-icon.png) no-repeat center;
    background-size: contain;
    transform: rotate(0deg);
    opacity: 1;
    z-index: 1;
}

.batch4 {
    position: relative;
}


.batch4::before {
    content: "";
    position: absolute;
    bottom: 2%;
    right: 3%;
    width: 90px;
    height: 90px;
    background: url(../images/icon/music-icon.png) no-repeat center;
    background-size: contain;
    transform: rotate(30deg);
    opacity: 0.5;
    z-index: 1;
}

/* Batches End */




/* Our Approach Section Start */
.our-approach-card {
    background: #f7f7f7;
    border-radius: 32px;
    border: 0.889px solid #00FFBD;
    padding: 48px 42px;
    height: 100%;
    transition: 0.3s ease;
    position: relative;
    /* overflow: hidden; */
}

.padding-36-20 {
    padding: 36px 20px !important;
}

.padding-32 {
    padding: 32px !important;
}

@media (max-width: 767px) {
    .padding-36-20 {
        padding: 24px 16px !important;
    }

    .padding-32 {
        padding: 20px !important;
    }
}

.our-approach-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(54deg, #8C4BE8 8.96%, #22D3EE 97.54%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}




.our-approach-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.approach-title {
    line-height: 30px;
    margin-bottom: 22px;
    color: #552D8C !important;
}

.approach-text {
    line-height: 22.4px;
    margin-bottom: 0;
    color: #404040;
    font-style: normal;
}

/* Responsive */
@media (max-width: 767px) {

    .our-approach-card {
        padding: 28px 22px;
    }
}


/* Learn Card Start */
.learn-card {
    background: #FFF;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    position: relative;
    border: 1.5px solid transparent;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Gradient Border on Hover */
.learn-card:hover,
.learn-card.active {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(217deg, #00FFBD 2.01%, #44A8D8 29.58%, #657DE5 49.97%, #8752F3 100.07%) border-box;
    border: 1.5px solid transparent;
}

.learn-card-image {
    height: 280px;
    overflow: hidden;
}

.learn-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.learn-card:hover .learn-card-image img {
    transform: scale(1.05);
}

.learn-card-content {
    padding: 28px;
}

.learn-card-content p {
    /* font-size: clamp(14px, 1vw, 15px) !important; */
    line-height: 1.9;
    color: #19191B;
}

/* BUTTON */
.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px;
    border-radius: 50px;
    background: #00f060;
    color: #111;
    font-size: clamp(14px, 1vw, 15px) !important;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.learn-btn:hover {
    color: #111;
    /* transform: translateY(-2px); */
}

.learn-btn span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 1.2vw, 18px) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}



/* RESPONSIVE */
@media(max-width:991px) {
    .learn-card-content h3 {
        font-size: clamp(28px, 1.7vw, 28px);
    }

    .learn-card-image {
        height: 240px;
    }
}


/* Circullum Start */
.curriculum-card {
    background: #f7f7f7;
    border: 1.5px solid #9A52FF;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
}



.curriculum-title {
     font-size: clamp(26px, 2.2vw, 36px) !important;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
    line-height: 1.3;
}

.curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: clamp(16px, 1.2vw, 18px) !important;
    line-height: 1.7;
    color: #5b6470;
}

.curriculum-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 8px;
    height: 8px;
    background: #9A52FF;
    transform: rotate(45deg);
}

@media (max-width: 767px) {
    .curriculum-card {
        padding: 20px;
    }

    .curriculum-title {
        font-size: clamp(28px, 1.7vw, 28px);
    }

    .curriculum-list li {
        font-size: clamp(14px, 1.1vw, 16px) !important;
    }
}

/* Circullum End */

/* Timeline Start */

.music-journey-timeline {
    position: relative;
    padding-left: 50px;
}

.music-journey-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #6D3AB5 0%, #9A52FF 50%, rgba(154, 82, 255, 0.20) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -42px;
    top: 8px;
    width: 10px;
    height: 10px;
    background: #A855F7;
    border-radius: 50%;
}

.timeline-step {
    display: block;
    color: #A855F7;
     font-size: clamp(13px, 1vw, 14px) !important;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: clamp(18px, 1.3vw, 20px) !important;
    font-weight: 600;
    color: #111;
    margin-bottom: 0px;
}

.timeline-content p {
    font-size: clamp(14px, 1.1vw, 16px) !important;
    line-height: 1.8;
    color: #6B7280;
    margin: 0;
}

@media (max-width: 991px) {

    .music-journey-timeline {
        margin-top: 40px;
        padding-left: 35px;
    }

    .music-journey-timeline::before {
        left: 8px;
    }

    .timeline-dot {
        left: -31px;
    }

    .timeline-content h4 {
        font-size: clamp(21px, 1.7vw, 22px)
    }
}

/* Timeline End */


/* Challenge Start */

.challenge-title span {
    display: block;
    color: #777;
}

.challenge-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
}

.challenge-list {
    margin-top: 20px;
}

.challenge-item {
    display: flex;
    gap: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 0.889px solid rgba(154, 82, 255, 0.30);
}

.icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(154, 82, 255, 0.06);
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6c93;
    font-size: clamp(16px, 1.2vw, 18px) !important;
}

.challenge-item h6 {
    font-size: clamp(14px, 1.1vw, 16px) !important;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0A0A0A;
}

.challenge-item p {
     font-size: clamp(13px, 1vw, 14px) !important;
    font-weight: 400;
    line-height: 1.7;
    color: #4A5565;
    margin: 0;
}

/* Right Card */

.question-card {
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    border: 0.889px solid rgba(140, 75, 232, 0.30);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

.top-line {
    height: 4px;
    background: #D1293D;
}

.real-question {
    display: block;
    padding: 40px 40px 00px;
    font-size: clamp(10px, 0.9vw, 11px) !important;
    letter-spacing: 2px;
    font-weight: 700;
    color: #444;
}

.question-text {
    padding: 16px 40px 40px;
    line-height: 2;
    color: #404040;
    line-height: 160%;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #F5EEFF;
    margin: 40px;
}

.grid-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.grid-item:nth-child(2n) {
    border-right: none;
}

.grid-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.grid-item span {
    display: block;
    color: #8b5cff;
    font-size: clamp(21px, 1.7vw, 22px);
    font-weight: 700;
    margin-bottom: 12px;
}

.grid-item p {
    margin: 0;
    color: #444;
    line-height: 1.7;
    padding: 0px 10px;
    font-size: clamp(14px, 1.1vw, 16px) !important;
}


@media (max-width: 991px) {

    section.section {
        padding-top: 60px;
    }

    .challenge-list {
        margin-top: 30px;
    }

    .question-card {
        margin-top: 20px;
    }

    .question-text {
        padding: 16px 30px 30px;
        font-size: clamp(14px, 1.1vw, 16px) !important;
    }

    .real-question {
        padding: 30px 30px 0;
    }

    .journey-grid {
        margin: 30px;
    }

    .grid-item {
        padding: 18px 15px;
    }

    .grid-item p {
         font-size: clamp(13px, 1vw, 14px) !important;
        padding: 0;
    }

    .grid-item span {
        font-size: clamp(18px, 1.3vw, 20px) !important;
    }
}


@media (max-width: 767px) {

    section.section {
        padding-top: 60px;
    }

    .line-height-130 {
        line-height: 130% !important;
    }

    .challenge-item {
        gap: 12px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .icon-box {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .icon-box img {
        width: 18px;
        height: 18px;
        object-fit: contain;
    }

    .challenge-item h6 {
         font-size: clamp(13px, 1vw, 14px) !important;
        line-height: 1.5;
        margin-bottom: 6px;
    }

    .challenge-item p {
        font-size: clamp(12px, 0.9vw, 13px) !important;
        line-height: 1.6;
    }

    .question-card {
        margin-top: 10px;
        border-radius: 8px;
    }

    .real-question {
        padding: 24px 20px 0;
        letter-spacing: 1px;
         font-size: clamp(9px, 0.9vw, 10px) !important;
    }

    .question-text {
        padding: 12px 20px 12px;
        font-size: clamp(13px, 1vw, 14px) !important;
        line-height: 1.7;
    }

    .journey-grid {
        margin: 20px;
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-item {
        padding: 18px 15px;
    }

    .grid-item:last-child {
        border-bottom: none !important;
    }

    .grid-item span {
        font-size: clamp(16px, 1.2vw, 18px) !important;
        margin-bottom: 8px;
    }

    .grid-item p {
        font-size: clamp(12px, 0.9vw, 13px) !important;
        line-height: 1.5;
        padding: 0;
    }
}

/* Challenge End */


/* FAQ Start */

.faq-item {
    background: #F5F3FF;
    border-radius: 10px;
    margin-bottom: 16px;

    background: linear-gradient(#fff, #F5F3FF) padding-box,
        linear-gradient(266deg, #8C4BE8 8.96%, #22D3EE 187.54%);
    border: 1px solid transparent;

    overflow: hidden;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    ;
}

.faq-item.active {
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(180deg, #E0C9FF 0%, #552D8C 100%) border-box;
    border: 2px solid transparent;
}


.faq-question {
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-weight: 500;
}


.faq-icon {
    width: 26px;
    height: 26px;
    background: #eee;
    color: #7E8695;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: #8C4BE8;
    color: #fff;
    transform: rotate(180deg);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition:
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        transform 0.3s ease;
    padding: 0 20px;
    color: #404040;
}

.faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
    padding: 10px 20px 16px;
}


@media (max-width: 991px) {

    .faq-item {
        margin-bottom: 14px;
    }

    .faq-question {
        padding: 14px 20px;
        font-size: clamp(14px, 1vw, 15px) !important;
        line-height: 1.5;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
         font-size: clamp(13px, 1vw, 14px) !important;
    }

    .faq-item.active .faq-answer {
        padding: 8px 20px 16px;
    }

    .faq-answer {
         font-size: clamp(13px, 1vw, 14px) !important;
        line-height: 1.7;
    }
}



@media (max-width: 767px) {

    .faq-item {
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .faq-question {
        padding: 14px 16px;
         font-size: clamp(13px, 1vw, 14px) !important;
        line-height: 1.5;
        gap: 12px;
        align-items: flex-start;
    }

    /* .faq-question span,
    .faq-question h5,
    .faq-question h6 {
        flex: 1;
    } */

    .faq-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: clamp(11px, 0.9vw, 12px) !important;
        margin-top: 2px;
    }

    .faq-answer {
        padding: 0 16px;
        font-size: clamp(12px, 0.9vw, 13px) !important;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        padding: 8px 16px 14px;
    }
}


@media (max-width: 480px) {

    .faq-question {
        padding: 12px 14px;
        font-size: clamp(12px, 0.9vw, 13px) !important;
    }

    .faq-answer {
        font-size: clamp(11px, 0.9vw, 12px) !important;
        line-height: 1.7;
        padding: 0 14px;
    }

    .faq-item.active .faq-answer {
        padding: 8px 14px 12px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        font-size: clamp(10px, 0.9vw, 11px) !important;
    }
}

/* FAQ End */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    height: 100%;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(54deg, #8C4BE8 8.96%, #22D3EE 97.54%);
    border: 1.6px solid #00FFBD;
}

.step-icon img {
    width: 32px;
}


/* Tablet */
@media(max-width:991px) {

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media(max-width:767px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

}



.class-format {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    gap: 24px;
    background: #fff;
    border-radius: 18px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #9810FA 24.52%, #00BC7D 100%) border-box;

    border: 1.5px solid transparent;
}



.class-format-ui {
    margin: 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
}

.class-format-ui li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    margin: 0;
    color: #404040;
    font-size: clamp(14px, 1.1vw, 16px) !important;
    font-weight: 400;
    line-height: 1.6;
    border-bottom: 1px solid #E4DBD0;
}



.class-format-ui li:last-child {
    border-bottom: none;
}


.class-format2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #9810FA 24.52%, #00BC7D 100%) border-box;

    border-style: solid;
    border-color: transparent;
    border-width: 1.5px 1.5px 1.5px 6px;

    border-radius: 18px;
}

@media (max-width: 767px) {
    .class-format {
        padding: 18px;
        gap: 16px;
        border-radius: 14px;
    }

    .class-format2 {
        padding: 18px;
        gap: 16px;
        border-radius: 14px;
    }
}



.notify-card {
    background: linear-gradient(0deg, #EFECFF 0%, #EFECFF 100%);
    box-shadow: 0 2px 16px 4px rgba(186, 147, 255, 0.53) inset;

}


.notify-form {
    display: flex;
    gap: 14px;
}

.notify-form input {
    flex: 1;
    height: 52px;
    border-radius: 8px;
    border: 1px solid #C1C5CD;
    padding: 0 16px;
    outline: none;
}

/* Mobile */
@media (max-width:767px) {

    .info-card,
    .notify-card {
        padding: 24px;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-form button {
        width: 100%;
    }
}


/* Roadmap section  */
.roadmap-section {
    /* border-radius: 20px; */
    overflow: hidden;
}

.roadmap-tabs {
    display: flex;
    gap: 10px;
    /* padding: 20px 25px; */
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.roadmap-tab {
    background: transparent;
    border: none;
    color: #fff;
    font-size: clamp(16px, 1.2vw, 18px) !important;
    padding: 14px 26px;
    cursor: pointer;
    border-radius: 6px;
    transition: .3s;
}

.roadmap-tab.active {
    background: #D1AFFF;
    color: #552D8C;
    font-weight: 700;

    border-radius: 4px 4px 0 0;
    border-bottom: 2px solid #F5EEFF;
    background: #D1AFFF;
}

.roadmap-content {
    display: none;
}

.roadmap-content.active {
    display: block;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 32px 0px;
}

.roadmap-left {
    color: #fff;
}

.roadmap-subtitle {
    color: #84F9B2;
    font-size: clamp(14px, 1.1vw, 16px) !important;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.28px;
}

.roadmap-title {
     font-size: clamp(28px, 2vw, 32px) !important;
    font-family: var(--font-fourth);
    line-height: 1.1;
    margin: 20px 0;
    color: #fff;
}

.roadmap-desc {
    color: #C1C5CD;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: clamp(14px, 1.1vw, 16px) !important;
    font-weight: 400;
}

.roadmap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roadmap-list li {
    padding: 18px 0 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    font-weight: 700;
    font-weight: 18px;
}

.roadmap-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    font-size: clamp(16px, 1.2vw, 18px) !important;
    color: #6ef0bf;
}

.roadmap-right {
    background: #f8f6fc;
    border: 1px solid #EA79FC;
    border-radius: 10px;
    padding: 36px;
}

@media (max-width: 767px) {
    .roadmap-right {
        padding: 18px;
    }
}

.roadmap-right h5 {
    margin-bottom: 20px;
    color: #6D3AB5;
}

.term-card {
    display: flex;
    gap: 15px;
    background: #fff;
    border: 1px solid #D4BBFF;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 12px;
}

.term-card span {
    background: linear-gradient(90deg, #00BC7D 21.64%, #9810FA 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(28px, 1.7vw, 28px);
    min-width: 45px;
    font-weight: 500;
}

.term-card h4 {
    margin: 0 0 5px;
    color: #6d3ab5;
    font-size: clamp(16px, 1.2vw, 18px) !important;
    font-weight: 700;
    line-height: 160%;
}

.term-card p {
    margin: 0;
    font-size: clamp(14px, 1.1vw, 16px) !important;
    color: #404040;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

@media(max-width:991px) {

    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-title {
        font-size: clamp(24px, 2vw, 34px);
    }

    .roadmap-tabs {
        overflow: auto;
        white-space: nowrap;
    }
}

/* Roadmap section */


.instrument-type {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    min-height: 500px;
    height: 100%;
}

/* Background Image */
.instrument-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instrument-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(66, 140, 183, 0.00) 51.77%, rgba(95, 86, 197, 0.72) 60.66%, #6B3CCB 75.57%, rgba(85, 111, 190, 0.95) 95.61%, rgba(25, 251, 155, 0.80) 115.86%), linear-gradient(274deg, rgba(0, 0, 0, 0.00) -9.78%, rgba(28, 15, 47, 0.10) 13.19%, rgb(140 75 232 / 0%) 103.12%)
}

.instrument-overlay2 {
    position: absolute;
    inset: 0;

    background: linear-gradient(180deg, rgba(108, 57, 179, 0.00) 0%, rgba(101, 54, 168, 0.40) 34.62%, rgba(95, 50, 157, 0.60) 59.62%, rgba(81, 43, 134, 0.70) 72.6%, rgba(68, 36, 112, 0.90) 87.02%, #361D59 100%);
}

.instrument-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.instrument-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg,
            #6d5cff,
            #2ecbff);
}

.instrument-icon img {
    width: 100%;
    height: 90px;
    /* object-fit: contain; */
    transform: rotate(40deg);
}

.instrument-content h3 {
    font-size: clamp(28px, 2.5vw, 40px);
    font-weight: 900;
    margin-bottom: 5px;
    color: #fff;
}

.instrument-subtitle {
    font-size: clamp(16px, 1.2vw, 18px) !important;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
    opacity: .9;
}

.instrument-content p {
    font-size: clamp(14px, 1.1vw, 16px) !important;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .9);
}

.instrument-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.instrument-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: clamp(14px, 1.1vw, 16px) !important;
    font-weight: 700;
    color: #fff;
}

.instrument-content ul li::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 2px;
    color: #b97dff;
    font-size: clamp(14px, 1.1vw, 16px) !important;
}

@media (max-width: 991px) {

    .instrument-type {
        min-height: 550px;
    }

    .instrument-content h3 {
        font-size: clamp(24px, 2vw, 34px);
    }

    .instrument-icon {
        width: 60px;
        height: 60px;
    }

    .instrument-icon img {
        width: 28px;
        height: 28px;
    }
}

/* Contact Start */
.contact-wrapper {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* LEFT PANEL */

.contact-left {
    position: relative;
    padding: 60px;
    color: #fff;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.contact-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(39, 10, 59, 0.78),
            rgba(39, 10, 59, 0.88)),
        url("https://images.unsplash.com/photo-1511379938547-c1f69419868d?q=80&w=1400&auto=format&fit=crop") center/cover no-repeat;
}

.contact-left-content {
    position: relative;
    z-index: 2;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}

.contact-item small {
     font-size: clamp(13px, 1vw, 14px) !important;
    opacity: 0.8;
    margin-bottom: 0;
}

.contact-item h4 {
    font-size: clamp(16px, 1.2vw, 18px) !important;
    font-weight: 500;
    margin: 0;
}

/* RIGHT PANEL */

.contact-right {
    padding: 120px 60px;
    background: #FFF;
}

.form-title {
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 700;
    color: #111;
}

.form-subtitle {
    color: #777;
    margin-bottom: 26px;
}

.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 26px;
}

.tab-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.tab-btn.active {
    background: #6d3ab5;
    color: #fff;
    border-color: #6d3ab5;
}

.form-box {
    display: none;
    animation: fade 0.3s ease;
}

.form-box.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* margin-bottom: 18px; */
}

.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
     font-size: clamp(13px, 1vw, 14px) !important;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.form-grid>div {
    width: 100%;
}

input,
textarea,
select {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #C1C5CD;
    border-radius: 4px;
    outline: none;
    font-size: clamp(14px, 1vw, 15px) !important;
    background: #F1F2F4;
    height: 48.48px;
    padding: 13.256px 15.15px;

}

textarea {
    resize: none;
    height: 104px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #6d3ab5;
}

.submit-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}


.error-message{
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.input-error{
    border: 1px solid #dc3545 !important;
}


.privacy-text {
    color: #777;
    font-size: clamp(12px, 0.9vw, 13px) !important;
}

@media(max-width:991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-left,
    .contact-right {
        padding: 40px 25px;
    }



    .contact-title {
         font-size: clamp(26px, 2.2vw, 36px) !important;
    }
}

@media(max-width:600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    /* .tabs {
                grid-template-columns: 1fr;
            } */
}

@media (max-width: 768px) {

    .submit-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .privacy-text {
        width: 100%;
        display: block;
    }

}

/* Contact End */

/* Footer Start */
.raga-footer-section {
    position: relative;
    /* gradient + background image */
    background:
        linear-gradient(180deg, #6D3AB5 73.51%, #30194F 100%),
        url('../images/footer.svg');

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* ===== BIG TEXT (FIXED) ===== */
.raga-footer-bg-text {
    width: 100%;
    text-align: center;
}

.raga-footer-bg-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(28px, 2.5vw, 40px);
    letter-spacing: -0.2px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    /* line break na ho */
}

/* ===== FOOTER CARD ===== */
.raga-footer {
    background: #fff;
    border-radius: 32px;
    padding: 48px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ===== GRID ===== */
.raga-footer-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    gap: 40px;
}

.raga-footer-grid> :first-child {
    padding-right: 90px;
}

/* ===== LOGO ===== */
.raga-footer-logo .logo-img {
    width: 180px;
    margin-bottom: 20px;
}

/* ===== COLUMN ===== */
.raga-footer-column h3 {
    margin-bottom: 20px;
    font-size: clamp(16px, 1.2vw, 18px) !important;
    font-weight: 600;
}


.raga-footer-column ul {
    list-style: none;
    padding: 0;
}

.raga-footer-column li {
    margin-bottom: 10px;
}

.raga-footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.70);
    font-size: clamp(14px, 1.1vw, 16px) !important;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.raga-footer-column a:hover {
    color: #6d3ab5;
}

/* ===== BOTTOM ===== */
.raga-footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.raga-footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.raga-footer-bottom a {
    text-decoration: none;
    color: var(--dark);
     font-size: clamp(13px, 1vw, 14px) !important;
}



/* ===== RESPONSIVE ===== */

/* TABLET */
@media (max-width: 992px) {
    .raga-footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .raga-footer {
        padding: 40px 25px;
    }

    .raga-footer-bg-text p {
       font-size: clamp(40px, 2.5vw, 60px);
    }

    .raga-footer-copyright p {
        text-align: center;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .raga-footer {
        padding: 30px 20px;
    }

    .raga-footer-logo {
        text-align: center;
    }

    .raga-footer-logo .logo-img {
        margin: 0 auto 15px;
    }

    .raga-footer-bg-text p {
         font-size: clamp(26px, 2.2vw, 36px) !important;
    }

    .raga-footer-bottom ul {
        flex-direction: column;
        align-items: center;
    }


}

/* ===== COPYRIGHT ===== */
.raga-footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.raga-footer-copyright p {
    margin: 0;
    color: rgba(0, 0, 0, 0.60);
    ;
    font-size: clamp(14px, 1.1vw, 16px) !important;
    font-weight: 400;
}

.copyright-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.copyright-right p {
    font-weight: 400 !important;
}

.copyright-right a,
.copyright-right span {
    color: #000;
    text-decoration: none;
    font-size: clamp(14px, 1vw, 15px) !important;
    font-weight: 400;
}



.copyright-right a:hover {
    color: #6d3ab5;
}

/* ===== RESPONSIVE ===== */

/* =========================
   TABLET (992px and below)
========================= */
@media (max-width: 992px) {

    .raga-footer-section {
        padding: 70px 0 40px;
    }

    .raga-footer-bg-text p {
        font-size: clamp(34px, 3.3vw, 52px) !important;
        line-height: 120%;
        white-space: normal;
        padding: 0 20px;
    }

    .raga-footer {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .raga-footer-grid> :first-child {
        grid-column: span 2;
        padding-right: 0;
    }

    .raga-footer-logo {
        text-align: center;
    }

    .raga-footer-logo .logo-img {
        margin: 0 auto 20px;
    }

    .raga-footer-brand p {
        max-width: 600px;
        margin: 0 auto 25px;
    }

    .raga-footer-column h3 {
         font-size: clamp(15px, 1.1vw, 17px) !important;
        margin-bottom: 16px;
    }

    .raga-footer-column a {
        font-size: clamp(14px, 1vw, 15px) !important;
    }

    .raga-footer-copyright {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 12px;
        margin-top: 40px;
    }

    .copyright-right {
        justify-content: center;
    }
}


/* =========================
   MOBILE (576px and below)
========================= */
@media (max-width: 576px) {

    .raga-footer-section {
        padding: 60px 0 30px;
    }

    .raga-footer-bg-text {
        padding: 0 15px;
    }

    .raga-footer-bg-text p {
         font-size: clamp(28px, 2vw, 32px) !important;
        line-height: 130%;
        white-space: normal;
    }

    .raga-footer-bg-text .mt-5 {
        margin-top: 25px !important;
    }

    .raga-footer-bg-text .mb-5 {
        margin-bottom: 25px !important;
    }

    /* .raga-footer-bg-text a {
        width: 100%;
        justify-content: center;
        margin-bottom: 12px;
    } */

    .raga-footer {
        padding: 28px 20px;
        border-radius: 20px;
        margin-top: 40px !important;
    }


    .raga-footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .raga-footer-grid> :first-child {
        grid-column: 1 / -1 !important;
    }



    /* .raga-footer-grid> :first-child {
        grid-column: unset;
        padding-right: 0;
    } */

    .raga-footer-logo {
        text-align: center;
    }

    .raga-footer-logo .logo-img {
        width: 150px;
        margin: 0 auto 18px;
    }

    .raga-footer-brand p {
         font-size: clamp(13px, 1vw, 14px) !important;
        line-height: 170%;
        margin-bottom: 22px;
    }

    .raga-footer-column {
        text-align: center;
    }

    .raga-footer-column h3 {
        font-size: clamp(14px, 1.1vw, 16px) !important;
        margin-bottom: 14px;
    }

    .raga-footer-column ul {
        margin: 0;
    }

    .raga-footer-column li {
        margin-bottom: 10px;
    }

    .raga-footer-column a {
        justify-content: center;
         font-size: clamp(13px, 1vw, 14px) !important;
    }

    .raga-footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-top: 35px !important;
    }

    .raga-footer-copyright p {
        font-size: clamp(12px, 0.9vw, 13px) !important;
        line-height: 160%;
    }

    .copyright-right {
        justify-content: center;
        gap: 8px;
    }

    .copyright-right a,
    .copyright-right span {
        font-size: clamp(12px, 0.9vw, 13px) !important;
    }

}

/* Footer Css */