@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color: #1f4f3a;
    --secondary-color: #b6ff1a;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	line-height: 1;
}
a{
    text-decoration: none;
    transition: all 0.5s ease;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.section-title{
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}
p{
    line-height: 1.5;
}
.bold-600{
    font-weight: 600;
}
.primary-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.primary-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}
.secondary-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.5s ease;
}
.secondary-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}
.secondary-outline-btn {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.5s ease;
}
.btn-link-primary{
    color: var(--primary-color);
}
.divider{
    width: 100%;
    height: 3px;
    border-radius: 50%;
    margin: 10px 0px;
}
.primary-divider{
    background-color: var(--primary-color);
}

input[type="text"],
input[type="email"],
input[type="number"]{
    border-radius: 10px;
    background-color: #f9faf8;
    font-size: 14px;
    padding: 10px;
}

blockquote{
    line-height: 1.5;
}

/* Custom select field style */
.custom-select{
    background-color: #f9faf8;  /* light grey background */
    border-radius: 10px;         /* rounded corners */
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    appearance: none;            /* remove default arrow for most browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}

/* Optional: hover and focus effects */
.custom-select:hover {
    background-color: #fff;
}

.custom-select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);       /* optional: dark green border on focus */
    box-shadow: 0 0 5px rgba(0,100,0,0.3);
}

label{
    margin-bottom: 10px;
}

.primary-bg{
    background-color: var(--primary-color);
}

.primary-text{
    color: var(--primary-color) !important;
}

/* ===== Top Bar ===== */
.aegis-topbar {
    background: var(--primary-color);
    color: #fff;
    font-size: 14px;
    padding: 15px 0;
}

.aegis-topbar-left span {
    margin-right: 20px;
}

.aegis-topbar i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.aegis-topbar-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 15px;
    transition: 0.3s;
}

.aegis-topbar-right a:hover {
    color: var(--secondary-color);
}

/* ===== Navbar ===== */
.main-navbar {
    background: #ffffff;
    padding: 15px 0;
}

.navbar-brand .logo-icon {
    width: 150px;
    display: inline-block;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: #222;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/* ===== CTA Button ===== */
.btn-quote {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-quote:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* ===== Dropdown Menu ===== */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    padding: 10px 25px;
    font-weight: 500;
    color: #222;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #f5f7f6;
    color: var(--primary-color);
}

/* ===== Mega Menu ===== */
.mega-menu {
    padding: 30px 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.mega-item {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    transition: 0.3s;
    cursor: pointer;
}

.mega-item i {
    font-size: 36px;
    color: var(--secondary-color);
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.mega-item h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.mega-item p {
    font-size: 14px;
    color: #666;
}

.mega-item:hover {
    background: #f5f7f6;
}

/* ===== Sub Dropdown ===== */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    display: none;
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    border-radius: 12px;
}

.dropdown-submenu > .dropdown-menu.show {
    display: block;
}

/* ===== Dropdown Animations ===== */
.dropdown-menu {
    animation: dropdownFade 0.25s ease-in-out;
    transform-origin: top;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submenu animation */
.dropdown-submenu > .dropdown-menu {
    animation: submenuSlide 0.25s ease-in-out;
}

@keyframes submenuSlide {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.offcanvas {
    width: 300px;
}

.offcanvas .nav-link {
    font-weight: 500;
    padding: 12px 0;
}

/* ===== Sticky Header ===== */
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.main-navbar.shrink {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Remove default Bootstrap caret */
.dropdown-toggle::after {
    display: none !important;
}

/* Custom star caret */
.dropdown-toggle {
    position: relative;
    padding-right: 28px; /* space for icon */
}

.dropdown-toggle::before {
    content: "\F4A0"; /* Bootstrap Icons star-fill */
    font-family: "Bootstrap-icons";
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.dropdown.show > .dropdown-toggle::before {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-submenu > .submenu-toggle::before {
    content: "\F4A0";
    font-family: "Bootstrap-icons";
    position: absolute;
    right: 10px;
    font-size: 11px;
    color: var(--primary-color);
}

.submenu-toggle {
    position: relative;
    padding-right: 30px;
}

.dropdown-toggle:hover::before {
    color: var(--primary-color);
}

/* ===== Custom Hamburger ===== */
.custom-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 24px;
    position: relative;
    background: transparent;
    border-radius: 50%;
}

.custom-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Line positions */
.toggler-line:nth-child(1) {
    top: 0;
}

.toggler-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.toggler-line:nth-child(3) {
    bottom: 0;
}


/* Hamburger → X */
.custom-toggler.open .toggler-line:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.custom-toggler.open .toggler-line:nth-child(2) {
    opacity: 0;
}

.custom-toggler.open .toggler-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}
.custom-toggler:hover .toggler-line {
    background: var(--secondary-color);
}

/* MUSIC HERO */
.music-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

/* SLIDER */
.music-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.music-hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 2s ease;
}

.music-hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

/* OVERLAY */
.music-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(10,10,10,0.75) 35%,
            rgba(10,10,10,0.3) 65%,
            rgba(10,10,10,0.15)
        );
}

/* CONTENT */
.music-hero .container {
    position: relative;
    width: 100%;
    z-index: 4;
    height: 100%;
    display: flex;
    align-items: center;
}

.music-hero-content {
    max-width: 620px;
    margin-top: 40px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.music-hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.music-hero-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-music-notes {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background-image: url('../images/music-notes.svg');
    background-repeat: repeat;
    background-size: 220px;
    opacity: 0.06;
    animation: floatNotes 40s linear infinite;
}

@keyframes floatNotes {
    from { background-position: 0 0; }
    to { background-position: 1000px -600px; }
}

.hero-music-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 3;
    background: url('../images/music-wave.svg') repeat-x;
    opacity: 0.25;
    animation: waveMove 18s linear infinite;
}

@keyframes waveMove {
    from { background-position-x: 0; }
    to { background-position-x: 2000px; }
}

.animate-hero > * {
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeUp 0.9s ease forwards;
}

.animate-hero > *:nth-child(1) { animation-delay: 0.2s; }
.animate-hero > *:nth-child(2) { animation-delay: 0.4s; }
.animate-hero > *:nth-child(3) { animation-delay: 0.6s; }
.animate-hero > *:nth-child(4) { animation-delay: 0.8s; }

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.music-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 14px;
}

.music-slider-dots .dot {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.music-slider-dots .dot.active {
    color: #fff;
    transform: scale(1.3);
}

.hero-instrument-icon {
    display: inline-block;
    margin-right: 12px;
    font-size: 2rem;
    vertical-align: middle;
    opacity: 0.85;
    animation: pulseNote 2.5s ease-in-out infinite;
    color: var(--secondary-color);
}

@keyframes pulseNote {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.08);
    }
}

/* ABOUT US */
.music-about {
    position: relative;
    padding: 110px 0;
    background: #fafafa;
    overflow: hidden;
}

/* IMAGE */
.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

/* Floating note */
.floating-note {
    position: absolute;
    top: 20%;
    right: -20px;
    font-size: 3rem;
    color: rgba(0,0,0,0.15);
    animation: floatNote 4s ease-in-out infinite;
}

@keyframes floatNote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* CONTENT */
.section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
}

.music-about h2 {
    position: relative;
    color: var(--primary-color);
}

.headline-note {
    margin-left: 10px;
    font-size: 1.8rem;
    vertical-align: middle;
    opacity: 0.8;
}

.music-about .lead {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 18px;
}

.music-about p {
    color: #555;
    line-height: 1.8;
}

/* LIST */
.about-highlights {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
}

.about-highlights li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-highlights li::before{
    content: "✓";
    color: var(--primary-color);
}

.animate-fadeup {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s ease;
}

.animate-fadeup.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image {
    perspective: 1000px;
    position: relative;
}

.about-image img {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
    transform: rotate(-2deg);
}

.about-image:hover img {
    transform: rotateY(-6deg) rotateX(4deg) scale(1.02);
    box-shadow: 0 40px 100px rgba(0,0,0,0.25);
}
.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover::after {
    opacity: 1;
}

/* Floating Shapes */
.about-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

/* Shape styles */
.about-shape-1 {
    width: 90px;
    height: 90px;
    background: #6bbf59;
    top: -30px;
    left: -30px;
}

.about-shape-2 {
    width: 60px;
    height: 60px;
    background: #0b2e1c;
    bottom: -20px;
    right: -20px;
    animation-delay: 1.5s;
}

.about-shape-3 {
    width: 30px;
    height: 30px;
    background: #9be15d;
    top: 40%;
    right: -15px;
    animation-delay: 3s;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* COURSES */
.music-courses {
    padding: 70px 0;
    background: url("../images/channel.svg") no-repeat;
    background-size: cover;
    background-position: center;
}

/* Section Header */
.section-header {
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-header p {
    color: #666;
    line-height: 1.7;
}

/* Card */
.course-card {
    border-radius: 26px;
    overflow: hidden;
    background: #fafafa;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}

/* Image */
.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    transition: transform 0.6s ease;
}

.course-card:hover img {
    transform: scale(1.08);
}

/* Instrument badge */
.course-image .instrument-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    color: var(--secondary-color);
}

/* Content */
.course-content {
    padding: 30px 28px 35px;
}

.course-content h3 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.course-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Link */
.course-link {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
}

.course-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
}

.course-link:hover::after {
    width: 100%;
}
.course-card::after {
    content: "♪ ♫";
    position: absolute;
    bottom: 15px;
    left: 20px;
    font-size: 1.3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.course-card:hover::after {
    opacity: 0.25;
}

/* INSTRUCTORS */
.music-instructors {
    position: relative;
    padding: 70px 0;
    /* background:
        radial-gradient(circle at top left, rgba(5, 145, 68, 0.9), transparent 60%),
        linear-gradient(135deg, #1eff00, #189b07); */
    overflow: hidden;
}
.music-instructors h2{
    color: var(--primary-color);
}

/* Card */
.instructors-card {
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.single-course-instructor-card .instructor-title{
    font-size: 26px;
    margin-bottom: 15px;
}

.instructors-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 90px rgba(0,0,0,0.2);
}

/* Image */
.instructors-card .instructor-image {
    position: relative;
    overflow: hidden;
}

.instructors-card .instructor-image img {
    width: 100%;
    transition: transform 0.6s ease;
}

.instructors-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.instructor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.15),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 25px;
}

.instructors-card:hover .instructor-overlay {
    opacity: 1;
}

/* Social Icons */
.instructor-overlay .social-icons {
    display: flex;
    gap: 14px;
}

.instructor-overlay .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.instructor-overlay .social-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    background: #fff;
}

/* Content */
.instructors-content {
    text-align: center;
    padding: 22px 20px 26px;
}

.instructors-content h3 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 20px;
}

.instructors-content .instrument {
    font-size: 0.85rem;
    color: #777;
}
.instructors-card::after {
    content: "♪";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instructors-card:hover::after {
    opacity: 0.2;
}

.services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.bg-line {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(107, 191, 89, 0.7);
    animation: floatSlow 12s infinite ease-in-out;
}

.bg-line-1 {
    top: -120px;
    left: -120px;
}

.bg-line-2 {
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    animation-delay: 3s;
}

.bg-line-3 {
    top: 40%;
    right: -180px;
    width: 260px;
    height: 260px;
    animation-delay: 6s;
}

@keyframes floatSlow {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(15deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* SLIDING TEXT */
/* ===== Sliding Text Section ===== */
.sliding-text {
    background: var(--primary-color);
    padding: 18px 0;
    overflow: hidden;
}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    animation: marquee 18s linear infinite;
}

/* Text Style */
.marquee-content span {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
}

/* Star Separator */
.marquee-content .star {
    color: var(--secondary-color);
    font-size: 20px;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.fade-edges {
    position: relative;
}

/* Left & Right fade overlays */
.fade-edges::before,
.fade-edges::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

/* Left fade */
.fade-edges::before {
    left: 0;
    background: linear-gradient(
        to right,
        var(--primary-color) 0%,
        rgba(31, 79, 58, 0) 100%
    );
}

/* Right fade */
.fade-edges::after {
    right: 0;
    background: linear-gradient(
        to left,
        var(--primary-color) 0%,
        rgba(31, 79, 58, 0) 100%
    );
}

/* MUSIC EVENTS */
.music-events {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff, #f6f8fb);
}

.music-events h2 {
    color: var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
    transition: transform .4s ease, box-shadow .4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

/* Date Badge */
.event-date {
    min-width: 70px;
    height: 80px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 14px;
    text-align: center;
    padding: 10px 0;
}

.event-date span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.event-date small {
    text-transform: uppercase;
    opacity: .8;
}

/* Content */
.event-content h3 {
    font-size: 1.25rem;
    margin: 12px 0;
}

.event-content p {
    font-size: .95rem;
    color: #555;
    margin-bottom: 15px;
}

/* Type */
.event-type {
    display: inline-block;
    padding: 4px 12px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
}

.event-type.class {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.event-type.event {
    background: rgba(0,0,0,.1);
    color: #111;
}

/* Meta */
.event-meta {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.event-meta li {
    font-size: .85rem;
    margin-bottom: 15px;
    color: #444;
}

.event-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .8s ease forwards;
}

.event-card:nth-child(2) { animation-delay: .15s; }
.event-card:nth-child(3) { animation-delay: .3s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WHY CHOSE US */
.music-why-us {
    padding: 120px 0;
    background: radial-gradient(circle at top left, #faf7f2, #ffffff);
    overflow: hidden;
}

.why-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.why-content .lead {
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,.06);
    transition: transform .4s ease, box-shadow .4s ease;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,.1);
}

.why-item .icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
}

.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-item p {
    font-size: .9rem;
    color: #666;
}

/* Visual */
.why-visual {
    position: relative;
    padding-left: 40px;
}

.why-visual .main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0,0,0,.15);
}

/* Floating Notes */
.why-content .floating-note {
    position: absolute;
    font-size: 2rem;
    color: rgba(193,154,107,.8);
    animation: float 6s ease-in-out infinite;
}

.why-content .note-1 { top: 10%; left: 0; animation-delay: 0s; }
.why-content .note-2 { bottom: 20%; right: 10%; animation-delay: 2s; }
.why-content .note-3 { top: 40%; right: -20px; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* TESTIMONIALS */
.music-testimonials {
    position: relative;
    padding: 70px 0;
    background: #fff;
    overflow: hidden;
}

.testimonial-card {
    position: relative;
    padding: 40px 35px;
    /* background: #f8f9fb; */
    border-radius: 25px;
    /* box-shadow: 0 30px 60px rgba(0,0,0,.08); */
    transition: transform .4s ease;
}

.music-testimonials h2{
    color: var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 10px rgba(0,0,0,.12);
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    /* opacity: .3; */
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-footer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-footer h5 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-footer span {
    font-size: .8rem;
    color: #777;
}

.instrument {
    margin-left: auto;
    font-size: 1.6rem;
}

.rating {
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 2px;
    color: #f5b301;
}

/* Swiper */
.testimonials-swiper {
    margin-top: 60px;
}

.swiper-pagination-bullet {
    background: #c19a6b;
    opacity: .4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Musical Floating Notes */
.bg-note {
    position: absolute;
    font-size: 3rem;
    color: rgba(193,154,107,.15);
    animation: floatNote 8s ease-in-out infinite;
}

.note-a { top: 15%; left: 5%; }
.note-b { bottom: 20%; right: 10%; animation-delay: 2s; }
.note-c { top: 40%; right: 5%; animation-delay: 4s; }

@keyframes floatNote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

/* GALLERY */
.music-gallery {
    position: relative;
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.music-gallery h2{
    color: var(--primary-color);
}

/* Masonry Grid */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 220px;
    grid-auto-flow: dense;
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: transform .4s ease, box-shadow .4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

/* Size variations */
.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity .4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(193,154,107,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

.overlay h4 {
    font-size: 1.1rem;
    text-align: center;
}

/* CTA */
.gallery-cta {
    margin-top: 60px;
}

/* Floating Musical Notes */
.gallery-note {
    position: absolute;
    font-size: 3rem;
    color: rgba(193,154,107,.15);
    animation: floatNote 9s ease-in-out infinite;
}

.note-1 { top: 12%; left: 6%; }
.note-2 { bottom: 15%; right: 8%; animation-delay: 2s; }
.note-3 { top: 45%; right: 4%; animation-delay: 4s; }

@keyframes floatNote {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

.gallery-item {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s ease forwards;
}

.gallery-item:nth-child(2) { animation-delay: .1s; }
.gallery-item:nth-child(3) { animation-delay: .2s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LIGHT BOX */
.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.video-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.video-lightbox-inner {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 20px;
    transform: scale(.9);
    transition: transform .4s ease;
}

.video-lightbox.active .video-lightbox-inner {
    transform: scale(1);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

/* CTA */
.music-cta {
    position: relative;
    padding: 70px 0;
    background: radial-gradient(circle at top left, #faf7f2, #ffffff);
    color: #fff;
    overflow: hidden;
}

.cta-box {
    position: relative;
    background: var(--primary-color);
    border-radius: 30px;
    padding: 60px;
    /* box-shadow: 0 40px 80px rgba(0,0,0,.25); */
}

.music-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.music-cta p {
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.cta-benefits {
    list-style: none;
    padding: 0;
}

.cta-benefits li {
    margin-bottom: 10px;
    font-size: .95rem;
}
.cta-benefits li::before{
    content: "✓";
    color: var(--secondary-color);
    margin-right: 10px;
}
/* Form */
.cta-form {
    background: rgba(255,255,255,.95);
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

.cta-form small {
    display: block;
    margin-top: 10px;
    font-size: .75rem;
    text-align: center;
    color: #555;
}

.cta-form .btn{
    width: 100%;
}

/* Floating Notes */
.cta-note {
    position: absolute;
    font-size: 3rem;
    color: rgba(255,255,255,.15);
    animation: floatNote 8s ease-in-out infinite;
}

.note-1 { top: 15%; left: 5%; }
.note-2 { bottom: 20%; right: 10%; animation-delay: 2s; }

@keyframes floatNote {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

.cta-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,.25);
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(193,154,107,.4);
}

/* ================================
   COURSE HERO
================================ */

.course-hero {
    position: relative;
    padding: 110px 0 90px;
    background: var(--primary-color);
    overflow: hidden;
}

/* Decorative music wave */
.course-hero::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 260px;
    background: url("../img/music/wave.svg") center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

/* Category badge */
.course-category {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 30px;
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Headline */
.course-hero h1 {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

/* Subtitle */
.course-hero .lead {
    font-size: 1.1rem;
    max-width: 540px;
}

/* Meta info */
.course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 25px;
}

.course-meta span {
    font-size: 0.9rem;
    color: #444;
    background: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

/* Hero image wrapper */
.course-hero-image {
    position: relative;
    max-width: 420px;
    margin-left: auto;
}

/* Hero image */
.course-hero-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

/* Floating music note */
.floating-note {
    position: absolute;
    top: 12%;
    right: -25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: floatNote 5s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatNote {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Responsive */
@media (max-width: 991px) {
    .course-hero {
        padding: 90px 0 70px;
    }

    .course-hero-image {
        margin: 50px auto 0;
    }
}

/* ================================
   COURSE OVERVIEW
================================ */

.course-overview {
    padding: 100px 0;
    background: #ffffff;
}

/* Headings */
.course-overview h2 {
    margin-bottom: 18px;
    color: var(--primary-color);
}

.course-overview h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 40px 0 18px;
}

/* Paragraph */
.course-overview p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    max-width: 680px;
}

/* Lists */
.course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #444;
}

/* Check list */
.course-list.check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: 700;
}

/* Star list */
.course-list.star li::before {
    content: "*";
    position: absolute;
    left: 6px;
    top: 0;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--primary);
}

/* ================================
   SIDEBAR
================================ */

.course-sidebar {
    position: sticky;
    top: 120px;
}

/* Info box */
.course-info-box {
    background: #fff;
    padding: 28px;
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border: 2px dotted var(--primary-color);
}

.course-info-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.course-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-info-box li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
}

/* Price box */
.course-price-box {
    margin-top: 30px;
    padding: 30px;
    border-radius: 26px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
}

.course-price-box .price {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 18px;
}

/* ================================
   CURRICULUM
================================ */

.course-curriculum {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff, #fafafa);
}

/* Section heading */
.course-curriculum h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.course-curriculum .section-desc {
    max-width: 620px;
    color: #666;
    margin-bottom: 45px;
}

/* Accordion base */
.curriculum-accordion .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Accordion header */
.curriculum-accordion .accordion-button {
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    background: #fff;
    color: #111;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

/* Remove bootstrap caret */
.curriculum-accordion .accordion-button::after {
    display: none;
}

/* Custom musical toggle icon */
.curriculum-accordion .accordion-button::before {
    content: "♪";
    position: absolute;
    right: 28px;
    font-size: 1.3rem;
    color: var(--primary);
    transition: transform 0.35s ease;
}

/* Rotate icon on open */
.curriculum-accordion .accordion-button:not(.collapsed)::before {
    transform: rotate(180deg);
}

/* Accordion body */
.curriculum-accordion .accordion-body {
    padding: 28px 32px 34px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.75;
    background: #fcfcfc;
}

/* Lesson list */
.lesson-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lesson-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    font-size: 0.95rem;
}

.lesson-list li:last-child {
    border-bottom: none;
}

/* Lesson meta */
.lesson-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    color: #777;
}

/* Duration pill */
.lesson-duration {
    padding: 4px 10px;
    border-radius: 30px;
    background: rgba(255, 183, 77, 0.18);
    color: var(--primary);
    font-weight: 600;
}

/* Preview badge */
.lesson-preview {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 30px;
    background: #111;
    color: #fff;
}

/* Hover */
.lesson-list li:hover {
    color: var(--primary);
}


/* ================================
   INSTRUCTOR PREVIEW
================================ */

.single-course-instructor {
    background: #ffffff;
}

/* Instructor card */
.single-course-instructor-card {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #fdfaf6);
    box-shadow: 0 30px 65px rgba(0,0,0,0.1);
    border: 2px dotted var(--primary-color);
}
.single-course-instructor-card img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

/* Instructor image */
.instructor-avatar {
    position: relative;
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.instructor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Musical halo */
.instructor-avatar::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 183, 77, 0.6);
    animation: rotateHalo 20s linear infinite;
}

/* Halo animation */
@keyframes rotateHalo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Instructor info */
.instructor-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.instructor-role {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* Bio */
.instructor-info p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #555;
    max-width: 560px;
}

/* Social icons */
.instructor-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.instructor-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.35s ease;
}

.instructor-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

/* CTA button */
.instructor-cta {
    margin-top: 25px;
}

.instructor-cta .btn {
    padding: 12px 26px;
    border-radius: 50px;
}

/* AWARDS */
/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, #f7fdf9, #ffffff);
}

.awards-section h2{
    color: var(--primary-color);
}

.awards-description {
    max-width: 600px;
    margin: auto;
    color: #666;
}

/* Award Cards */
.award-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}
.award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,100,0,0.2);
}
.award-card img{
    width: 100%;
}
.award-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.award-card h3 {
    font-weight: 600;
    margin-bottom: 5px;
}

.award-year {
    width: 100%;
    display: inline-block;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 10px 0px;
}

.award-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Enable ribbon positioning */
.ribbon-card {
    position: relative;
    overflow: hidden;
}

/* Ribbon */
.ribbon-card::before {
    content: "Award";
    position: absolute;
    top: 18px;
    right: -45px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--secondary-color), #d4af37);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Optional: subtle shimmer on hover */
.ribbon-card:hover::before {
    filter: brightness(1.15);
}

/* BREADCRUMB */
.breadcrumb-section{
    background: var(--primary-color);
    color: #fff;
}

.breadcrumb-content{
    text-align: center;
}

.breadcrumb-content a{
    color: #fff;
}

.contact-mini-card .card{
    border-radius: 20px;
    border: none;
    background-color: var(--primary-color);
    text-align: center;
    padding: 20px;
    color: #fff;
}
.contact-mini-card i{
    font-size: 50px;
    color: var(--secondary-color);
}

/* PRICING */
/* SECTION STYLING */
.pricing-section {
    background: linear-gradient(135deg, #f4fbf6, #ffffff);
}

/* PRICING CARDS */
.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    margin-bottom: 20px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,100,0,0.2);
}

/* PLAN TITLE & PRICE */
.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.plan-price span {
    font-size: 1rem;
    color: #555;
}

/* FEATURES LIST */
.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* POPULAR PLAN */
.pricing-card.popular {
    transform: scale(1.1);
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* RIBBON */
.pricing-card .ribbon {
    position: absolute;
    top: 20px;
    left: -35px;
    background: linear-gradient(135deg, gold, #d4af37);
    color: #000;
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 1;
}

/* MISSION */
.mission-card{
    padding: 10px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 20px;
}

.mission-content{
    border: 2px dotted var(--secondary-color);
    padding: 10px;
    border-radius: 20px;
}

.mission-content h2{
    font-size: 20px;
    color: var(--secondary-color);
}

/* FAQs */
.faqs-section h2{
    color: var(--primary-color);
}
.faqs-accordion strong{
    font-weight: 600;
}
.faqs-accordion ul{
    margin: 20px 0px;
}
.faqs-accordion ul li{
    margin-bottom: 10px;
}
.faqs-accordion ul li::before{
    content: "✓";
    margin-right: 10px;
    color: var(--primary-color);
}
.accordion-button::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary-color);
}

.accordion-button.collapsed::after {
    content: '+';
    background-image:none;
}
.accordion-button:not(.collapsed)::after {
    content: '-';
    color: #fff;
    background-image:none;
}

/* Separate accordion items */
.accordion-item {
    margin-bottom: 15px; /* space between items */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: none; /* remove default border */
}

/* Ensure text inside button stays white */
.accordion-button {
    transition: all 0.3s;
}

/* BLOG */
.blog-section {
    position: relative;
    overflow: hidden;
}

/* Header */
.blog-header .section-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 3rem;
}

.btn-blog {
    background: #ffffff;
    color: #244c3a;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-blog:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Blog Card */
.blog-card {
    background: rgba(255,255,255,0.08);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.12);
}

/* Image */
.blog-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.35s ease;
}

.blog-card:hover .blog-img img {
    filter: grayscale(0%);
}

/* Content */
.blog-content {
    padding: 25px;
}

.blog-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: #244c3a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.blog-content h2 {
    margin-bottom: 12px;
    line-height: 1.5;
}

.blog-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link */
.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--secondary-color);
}

/* BLOG LIST */
.blog-list-section {
    background: #f9faf8;
}

/* Item */
.blog-list-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    transition: 0.35s ease;
    border: 1px solid #eaeaea;
}

.blog-list-item:hover {
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}

/* Image */
.blog-list-img {
    border-radius: 16px;
    overflow: hidden;
}

.blog-list-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.blog-list-item:hover img {
    transform: scale(1.06);
}

/* Content */
.blog-list-content {
    padding-left: 10px;
}

.blog-category {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.blog-list-content h3 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f2e22;
}

.blog-list-content p {
    color: #666;
    margin-bottom: 15px;
}

/* Meta */
.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
}

/* Read More */
.blog-read-more {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.blog-read-more:hover {
    color: var(--secondary-color);
}


/* PAGINATION */
.page-pagination {
    margin-top: 50px;
}

.page-pagination .page-link {
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 6px;
    color: var(--primary-color);
    font-weight: 600;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    cursor: pointer;
}

.page-pagination .page-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.page-pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.page-pagination .page-item.disabled .page-link {
    opacity: 0.4;
    pointer-events: none;
}

/* SINGLE BLOG */
.single-blog-section {
    background: #f9faf8;
}

/* Blog Content */
.blog-post {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
}

.blog-featured-img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 25px;
}

.blog-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f2e22;
}

.blog-meta {
    font-size: 0.85rem;
    color: #888;
}

.blog-post h3 {
    margin: 20px 0;
    font-weight: 600;
}

.blog-post p {
    color: #666;
    line-height: 1.8;
}

/* Quote */
blockquote {
    background: #f1f6f3;
    border-left: 5px solid var(--secondary-color);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

/* Tags */
.blog-tags {
    margin-top: 30px;
}

.blog-tags a {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    margin: 5px 5px 0 0;
    text-decoration: none;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.widget-title {
    font-weight: 600;
    margin-bottom: 20px;
}

/* Search */
.sidebar-search {
    display: flex;
    background: #f3f3f3;
    border-radius: 50px;
}

.sidebar-search input {
    border: none;
    padding: 12px 18px;
    background: transparent;
    flex: 1;
    outline: none;
}

.sidebar-search button {
    border: none;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0 18px;
    border-radius: 50px;
}

/* Popular Posts */
.popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.popular-post img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.popular-post h6 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

/* Tag Cloud */
.tag-cloud a {
    display: inline-block;
    background: #f1f6f3;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 5px;
    color: var(--primary-color);
    text-decoration: none;
}

/* Promo Banner */
.promo-banner {
    background: url("assets/img/banner.jpg") center/cover no-repeat;
    position: relative;
    min-height: 280px;
}

.promo-overlay {
    background: rgba(31,77,58,0.85);
    color: #fff;
    height: 100%;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-promo {
    margin-top: 15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}

/* READING PROGRESS */
#readingProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #b6ff2c, #1f4d3a);
    z-index: 9999;
}

/* SHARE BUTTONS */
.blog-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.blog-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f6f3;
    display: grid;
    place-items: center;
    font-weight: 600;
    color: #1f4d3a;
    text-decoration: none;
    transition: 0.3s;
}

.blog-share a:hover {
    background: var(--secondary-color);
}

/* AUTHOR */
.author-box {
    display: flex;
    gap: 20px;
    background: #f1f6f3;
    padding: 25px;
    border-radius: 20px;
}

.author-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box h3 {
    margin-bottom: 4px;
}

.author-box span {
    font-size: 0.85rem;
    color: #777;
}

/* Comments */
.comments-section h3 {
    margin-bottom: 20px;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.comment img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.comment h4 {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.comment h4 span {
    font-size: 0.75rem;
    color: #888;
    margin-left: 8px;
}

.comment-form textarea {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
}

/* RELATED ARTICLES */
.related-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card .content {
    padding: 15px 18px;
}

.related-card .date {
    font-size: 0.75rem;
    color: #6c757d;
}

.related-card h2 {
    margin-top: 6px;
    font-weight: 600;
    line-height: 1.4;
}

/* TESTIMONIAL 2 */
.ag2-testimonial-section {
    background: #ffffff;
}

.ag2-testimonial-section h2{
    color: var(--primary-color);
}

/* Rating Card */
.ag2-rating-card {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 35px;
    color: #fff;
    height: 100%;
}

.ag2-rating-card h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.ag2-stars {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.ag2-rating-card p {
    margin-top: 15px;
    opacity: 0.9;
}

/* Avatars */
.ag2-avatar-group {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.ag2-avatar-group img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    margin-right: -10px;
}

.ag2-avatar-group .more {
    width: 38px;
    height: 38px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
}

/* Testimonial Card */
.ag2-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #e6e6e6;
    height: 100%;
}

.ag2-rating-line {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.ag2-rating-line span {
    color: var(--primary-color);
    margin-left: 8px;
}

.ag2-testimonial-text {
    color: #666;
    line-height: 1.7;
}

.ag2-testimonial-author {
    margin-top: 20px;
}

.ag2-testimonial-author span {
    display: block;
    color: #888;
    font-size: 0.9rem;
}

/* Swiper Nav */
.ag2-custom-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px;
    color: #1f4d3a;
}

/* TESTIMONIAL 3 */
/* ================================
   ACADEMY FEEDBACK (STATIC)
================================ */

.academy-feedback-zone {
    padding: 110px 0;
    background: linear-gradient(180deg, #fafafa, #ffffff);
}

/* Header */
.academy-feedback-header {
    max-width: 640px;
    margin: 0 auto 60px;
}

.academy-feedback-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.academy-feedback-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.academy-feedback-intro {
    font-size: 1rem;
    color: #666;
}

/* Grid */
.academy-feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.academy-feedback-item {
    position: relative;
    padding: 36px 34px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 25px 55px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect */
.academy-feedback-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* Rating */
.academy-feedback-rating {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #f6b94c;
    margin-bottom: 16px;
}

/* Text */
.academy-feedback-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 26px;
}

/* Author */
.academy-feedback-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.academy-feedback-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.academy-feedback-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
}

.academy-feedback-author span {
    font-size: 0.8rem;
    color: #777;
}

/* ================================
   EVENT HERO
================================ */

.academy-event-hero {
    position: relative;
    padding: 140px 0 120px;
    background: url("../images/class3.jpg") center/cover no-repeat;
    color: #fff;
}

.academy-event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.65)
    );
}

.academy-event-hero-content {
    position: relative;
    max-width: 680px;
}

.academy-event-badge {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 14px;
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
}

.academy-event-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 18px;
}

.academy-event-hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ================================
   EVENT BODY
================================ */
.academy-event-body {
    padding: 110px 0;
    background: #ffffff;
}

.academy-event-section {
    margin-bottom: 60px;
}

.academy-event-section h2,
.academy-event-section h3 {
    font-weight: 700;
    margin-bottom: 18px;
}

.academy-event-section p {
    color: #555;
    line-height: 1.8;
}

/* Highlights */
.academy-event-highlights {
    list-style: none;
    padding: 0;
}

.academy-event-highlights li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.academy-event-highlights li::before{
    content: "✓";
    margin-right: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Timeline */
.academy-event-timeline {
    display: grid;
    gap: 18px;
}

.academy-event-step {
    display: flex;
    gap: 20px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.academy-event-step span {
    font-weight: 600;
    color: var(--primary);
    min-width: 80px;
}

/* ================================
   SIDEBAR
================================ */

.academy-event-sidebar {
    position: sticky;
    top: 120px;
}

.academy-event-info-box {
    padding: 30px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.academy-event-info-box h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

.academy-event-info-box ul {
    list-style: none;
    padding: 0;
}

.academy-event-info-box li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Performer */
.academy-event-performer {
    text-align: center;
}

.academy-event-performer img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    margin-bottom: 14px;
    border: 2px dotted var(--primary-color);
    padding: 5px;
}

.academy-event-performer span {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
}


/* Footer */
.site-footer {
    background: var(--primary-color);
    color: #ffffff;
    padding: 80px 0 30px;
}

/* Brand */
.footer-brand h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.85;
    max-width: 340px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--secondary-color);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
}

/* Titles */
.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}

/* Newsletter */
.footer-desc {
    opacity: 0.85;
    margin-bottom: 15px;
}

.footer-newsletter {
    display: flex;
    background: #ffffff;
    border-radius: 50px;
    overflow: hidden;
}

.footer-newsletter input {
    border: none;
    padding: 14px 18px;
    flex: 1;
    outline: none;
}

.footer-newsletter button {
    background: var(--secondary-color);
    border: none;
    padding: 0 22px;
    font-weight: 600;
    color: #1f4d3a;
    transition: 0.3s;
}

.footer-newsletter button:hover {
    background: var(--secondary-color);
}

.footer-logo{
    margin-bottom: 10px;
}

.footer-logo img{
    width: 150px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 40px 0 20px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.85;
}

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(31,77,58,0.35);
}

/* Show */
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
#backToTop:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-4px);
}

#backToTop::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(182,255,44,0.35);
    animation: pulse 2.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}













