  :root{
    --nc-dark:#150f0c;
    --nc-dark-glass:rgba(15,10,8,.55);
    --nc-gold:#e8b93a;
    --nc-orange:#cd5a34;
    --nc-orange-dark:#b3492a;
    --nc-cream:#f4ead9;
    --nc-white:#ffffff;
    --font-display:'Baloo 2', cursive;
    --font-body:'Poppins', sans-serif;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--font-body);

    margin:0;
    overflow-x:hidden;
  }

  /* ============ NAVBAR ============ */
  .nc-navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:30px 0;
    background:linear-gradient(to bottom, rgba(10,7,5,.75) 0%, rgba(10,7,5,0) 100%);
    transition:background .35s ease, padding .35s ease, box-shadow .35s ease;
  }
.nc-navbar.scrolled {
    background: rgb(48 43 2 / 73%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 6px 24px rgba(0,0,0,.35);
    border-bottom: 1px solid rgba(232,185,58,.15);
}

  .nc-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
  }
  .nc-pick{
    width:46px;
    height:52px;
    background:var(--nc-gold);
    border-radius:50% 50% 50% 4px / 55% 55% 45% 45%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    box-shadow:0 4px 10px rgba(0,0,0,.35);
    transition:transform .3s ease;
  }
  .nc-brand:hover .nc-pick{ transform:rotate(-8deg) scale(1.05); }
  .nc-pick i{ color:var(--nc-dark); font-size:18px; }
  .nc-brand-text{ line-height:1.05; }
  .nc-brand-text .name{
    font-family:var(--font-display);
    font-weight:700;
    font-size:40px;
    color:var(--nc-cream);
    letter-spacing:.3px;
  }
  .nc-brand-text .name span{ color:#d2ac4f; }
  .nc-brand-text .tagline{
    display:block;
    font-size:.68rem;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--nc-gold);
    font-weight:600;
    margin-top:-2px;
  }

  /* ---- nav links ---- */
  .nc-nav .nav-link{
    color:var(--nc-cream) !important;
    font-family:var(--font-body);
    font-weight:600;
    font-size:14px;
    letter-spacing:.5px;
    text-transform:uppercase;
    padding:10px 16px !important;
    position:relative;
    transition:color .25s ease;
  }
  .nc-nav .nav-link::after{
    display:inline-block;
    margin-left:5px;
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    content:"";
    font-size:.6rem;
    opacity:.65;
    transition:transform .3s ease;
    border:none;
    vertical-align:1px;
  }
  .nc-nav .dropdown > .nav-link::after{ content:"\f078"; }
  .nc-nav .dropdown.show > .nav-link::after,
  .nc-nav .dropdown:hover > .nav-link::after{ transform:rotate(180deg); opacity:1; }

  .nc-nav .nav-link:hover,
  .nc-nav .nav-link.active{
    color:var(--nc-gold) !important;
  }

  /* ---- dropdown menu: smooth hover animation ---- */
  .nc-nav .dropdown{ position:relative; }
  .nc-nav .dropdown-menu{
    display:block;
    background:var(--nc-dark);
    border:1px solid rgba(232,185,58,.2);
    border-radius:10px;
    padding:8px;
    margin-top:-5px;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:opacity .3s ease, transform .3s ease, visibility .3s;
    pointer-events:none;
  }
  .nc-nav .dropdown-menu.show{
    opacity:1;
    visibility:visible;
    transform:translateY(6px);
    pointer-events:auto;
  }
  .nc-nav .dropdown-item{
    color:var(--nc-cream);
    font-size:.85rem;
    font-weight:500;
    border-radius:6px;
    padding:9px 14px;
    transition:background .2s ease, color .2s ease, padding-left .2s ease;
  }
  .nc-nav .dropdown-item:hover{
    background:var(--nc-orange);
    color:#fff;
    padding-left:18px;
  }

  .navbar-toggler{
    border:none;
    color:var(--nc-gold);
    font-size:1.5rem;
    padding:2px 8px;
  }
  .navbar-toggler:focus{ box-shadow:none; }

  @media (max-width:991.98px){
    .nc-nav{
      background:rgba(10,7,5,.96);
      border-radius:12px;
      margin-top:14px;
      padding:10px 6px;
    }
    .nc-nav .nav-link{ padding:12px 16px !important; }
    .nc-nav .dropdown-menu{
      position:static;
      transform:translateY(0);
      width:100%;
      max-height:0;
      padding:0 8px;
      overflow:hidden;
      border:none;
      transition:opacity .3s ease, max-height .35s ease, padding .3s ease;
    }
    .nc-nav .dropdown-menu.show{
      max-height:300px;
      opacity:1;
      padding:6px 8px;
    }
  }

  /* ============ HERO ============ */
  .hero-wrap{
    position:relative;
    width:100%;
    height:100vh;
    min-height:560px;
    overflow:hidden;
    background:var(--nc-dark);
  }
  @media (max-width:575.98px){
    .hero-wrap{ height:100svh; min-height:520px; }
  }

  .hero-swiper{ width:100%; height:100%; }

  .swiper-slide{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:var(--nc-dark);
  }

  .hero-media{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    overflow:hidden;
  }
  .hero-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform-origin:center;
    animation:kenburns 13s ease-in-out infinite alternate;
  }
  @keyframes kenburns{
    from{ transform:scale(1); }
    to{ transform:scale(1.12); }
  }
  .hero-media::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(128,128,128,.3);
  }

  .hero-caption{
    position:relative;
    z-index:5;
    text-align:center;
    color:#fff;
    padding:0 20px;
    max-width:900px;
  }
  .hero-caption > *{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .8s ease, transform .8s ease;
  }
  .swiper-slide-active .hero-caption > *{ opacity:1; transform:translateY(0); }
  .swiper-slide-active .hero-caption > *:nth-child(1){ transition-delay:.35s; }
  .swiper-slide-active .hero-caption > *:nth-child(2){ transition-delay:.55s; }
  .swiper-slide-active .hero-caption > *:nth-child(3){ transition-delay:.75s; }
  .swiper-slide-active .hero-caption > *:nth-child(4){ transition-delay:.95s; }

  .hero-eyebrow{
    font-family:var(--font-display);
    font-weight:700;
    font-size:50px;
    color:#efcf4f;
    margin-bottom:-6px;
    text-shadow:0 3px 12px rgba(0,0,0,.4);
  }
  .hero-title{
      font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;

    font-size:120px;
    color:#fff;
    line-height:1;
    margin:6px 0 22px;
    text-shadow: 6px 8px 0px rgba(0, 0, 0, .15);
  }
  .hero-desc{
    font-size:clamp(.9rem, 1.1vw, 1.1rem);
    color:rgba(255,255,255,.9);
    max-width:640px;
    margin:0 auto 34px;
    line-height:1.7;
  }
  .hero-btn{
    display:inline-block;
    background:var(--nc-orange);
    color:#fff;
    font-weight:700;
    font-size:.85rem;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:16px 40px;
    border-radius:2px;
    text-decoration:none;
    box-shadow:0 10px 24px rgba(205,90,52,.35);
    transition:background .25s ease, transform .25s ease;
  }
  .hero-btn:hover{
    background:var(--nc-orange-dark);
    color:#fff;
    transform:translateY(-3px);
  }

  /* ---- Swiper pagination dots ---- */
  .hero-swiper .swiper-pagination{
    bottom:34px !important;
  }
  .hero-swiper .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:rgba(255,255,255,.4);
    opacity:1;
    transition:width .3s ease, background .3s ease;
    border-radius:6px;
  }
  .hero-swiper .swiper-pagination-bullet-active{
    background:var(--nc-gold);
    width:26px;
  }

  /* ---- Swiper nav arrows (desktop instance only) ---- */
  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.25);
    transition:background .25s ease;
  }
  .hero-swiper .swiper-button-prev:hover,
  .hero-swiper .swiper-button-next:hover{
    background:var(--nc-orange);
  }
  .hero-swiper .swiper-button-prev::after,
  .hero-swiper .swiper-button-next::after{
    color:#fff;
    font-size:1rem;
    font-weight:700;
  }
  .hero-swiper .swiper-button-prev{ left:24px; }
  .hero-swiper .swiper-button-next{ right:24px; }
  @media (max-width:767.98px){
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next{ display:none; }
  }

  .scroll-cue{
    position:absolute;
    bottom:100px;
    left:50%;
    transform:translateX(-50%);
    z-index:6;
    color:rgba(255,255,255,.65);
    font-size:1.4rem;
    animation:bounce 2s infinite;
  }
  @keyframes bounce{
    0%,100%{ transform:translate(-50%,0); }
    50%{ transform:translate(-50%,10px); }
  }
  @media (max-width:575.98px){
    .scroll-cue{ bottom:78px; }
    .hero-swiper .swiper-pagination{ bottom:22px !important; }
  }

  @media (prefers-reduced-motion: reduce){
    .hero-caption > *, .hero-media img{ transition:none !important; animation:none !important; }
  }




/* ===========================
   Floating Stats Section
=========================== */

.music-stats{
    position:absolute;
    left:50%;
    bottom:-130px;
    transform:translateX(-50%);

    width:92%;
    max-width:1200px;

    padding:45px 20px;

    border-radius:10px;

    /* Glass Effect */
    background-color:#c39b2f;


    border:1px solid rgba(255,255,255,.25);

    box-shadow:
        0 25px 60px rgba(0,0,0,.18),
        inset 0 1px 1px rgba(255,255,255,.35);

    overflow:hidden;
    z-index:99;
}
/* Decorative Music Notes */

.music-stats::before{

    content:"♫";

    position:absolute;

    top:-20px;
    right:40px;

    font-size:140px;

    color:rgba(255,255,255,.12);

    transform:rotate(-15deg);
}

.music-stats::after{

    content:"♪";

    position:absolute;

    left:30px;
    bottom:-40px;

    font-size:170px;

    color:rgba(255,255,255,.08);
}

.stat-item{

    color:#fff;

    text-align:center;
}

.icon {
    width: 78px;
    height: 78px;
    margin: auto;
    border-radius: 50%;
    background: #ffffff0a;
    color: #150f0ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 18px;
    transition: .4s;
    border: 1px dashed #ffffff;
}

.stat-item:hover .icon{

    transform:translateY(-8px) rotate(15deg);

    box-shadow:0 15px 30px rgba(0,0,0,.18);
}

.stat-item h2{

    font-size:40px;

    margin-bottom:10px;
}

.stat-item p{

    font-size:17px;

    margin:0;

    letter-spacing:.5px;
}

/* Dummy Next Section */

.next-section{

    padding:180px 0 100px;

    background:#fff;
}

.next-section h2{

    text-align:center;
}

/* Responsive */

@media(max-width:768px){

.hero-content h1{

    font-size:42px;
}

.music-stats{

    position:relative;

    left:0;

    bottom:0;

    transform:none;

    width:100%;

    border-radius:20px;

    margin-top:40px;
}

.stat-item{

    margin-bottom:35px;
}

.stat-item h2{

    font-size:38px;
}

.icon{

    width:65px;
    height:65px;

    font-size:24px;
}

.next-section{

    padding-top:80px;
}

}











/*=========================
        FOOTER
==========================*/

.footer-section{

    position:relative;

    background:#111;

    color:#ddd;

    padding:100px 0 30px;

    overflow:hidden;
}

/* Gold Top Border */

.footer-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3d2d25, #f7dd72, #3d2d25);
}

/* Music Notes */

.footer-section::before {
    content: "♫";
    position: absolute;
    right: 50px;
    top: 30px;
    font-size: 180px;
    color: rgb(44 34 29 / 65%);
    transform: rotate(-15deg);
}
.footer-section::after{

    content:"♪";

    position:absolute;

    left:30px;

    bottom:40px;

    font-size:140px;

    color: rgb(44 34 29 / 65%);
}

.footer-logo{

    color:#fff;

    font-weight:700;

    margin-bottom:20px;
}

.footer-logo i{

    color:#d5b63a;

    margin-right:10px;
}

.footer-text{

    line-height:1.9;

    color:#bcbcbc;

    margin-bottom:25px;
}

/* Social */

.social-icons{

    display:flex;

    gap:12px;
}

.social-icons a{

    width:42px;
    height:42px;

    border-radius:50%;

    background:#1b1b1b;

    color:#d5b63a;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:.35s;
}

.social-icons a:hover{

    background:#d5b63a;

    color:#111;

    transform:translateY(-6px);
}

/* Headings */

.footer-section h5{

    color:#fff;

    margin-bottom:22px;

    font-weight:600;

    position:relative;
}

.footer-section h5::after{

    content:"";

    width:45px;

    height:3px;

    background:#d5b63a;

    display:block;

    margin-top:10px;
}

/* Links */

.footer-links{

    padding:0;

    margin:0;

    list-style:none;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    color:#bcbcbc;

    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:#d5b63a;

    padding-left:8px;
}

/* Contact */

.footer-contact p{

    margin-bottom:18px;

    color:#cfcfcf;

    display:flex;

    gap:12px;
}

.footer-contact i{

    color:#d5b63a;

    width:20px;

    margin-top:5px;
}

/* Bottom */

.footer-section hr{

    border-color:rgba(255,255,255,.08);

    margin:50px 0 25px;
}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

    color:#999;

    font-size:15px;
}

.footer-bottom a{

    color:#d5b63a;

    text-decoration:none;
}

.footer-bottom a:hover{

    color:#fff;
}

@media(max-width:768px){

.footer-section{

    text-align:center;
}

.social-icons{

    justify-content:center;
}

.footer-contact p{

    justify-content:center;
}

.footer-bottom{

    justify-content:center;

    text-align:center;
}

}


.music-section{
    padding:180px 0px 90px 0px;
    background:url("../images/bg.jpg") repeat top left;
}

.music-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.music-section .section-title h2{
    font-family:"Playfair Display",serif;
    font-size:70px;
    color:#3d2d25;
    margin-bottom:10px;
}

.music-section .section-title p{
    color:#c39b2f;
    font-weight:600;
    letter-spacing:1px;
}

.music-section .watermark{
    position:absolute;
    left:50%;
    top:-30px;
    transform:translateX(-50%);
    font-size:130px;
    color:#f4f4f4;
    font-family:serif;
    z-index:-1;
}

.music-section .instrument{
    text-align:center;
    padding:16px;
    transition:.4s;
}

.music-section .instrument:hover{
    transform:translateY(-10px);
}

.music-section .icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f5d3803b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: .4s;
    border: 2px solid #c59b2feb;
}

.music-section .icon-circle img{
    width:55px;
    height:55px;
    object-fit:contain;
    transition:.4s;
}

.music-section .instrument:hover .icon-circle{
    background:#3d2d25;
    box-shadow:0 15px 30px rgba(195,155,47,.3);
}

.music-section .instrument:hover .icon-circle img{
    transform:scale(1.1);
    filter:brightness(0) invert(1);
}

.music-section .instrument h4{
    margin-top:12px;
    font-family:"Playfair Display",serif;
    font-size:24px;
    color:#3d2d25;
    font-weight:700;
}

.music-section .instrument p{
    color:#666;
    font-size:15px;
    line-height:28px;
    margin-top:10px;
}

@media (max-width:768px){

    .music-section .section-title h2{
        font-size:45px;
    }

    .music-section .watermark{
        font-size:80px;
    }

    .music-section .icon-circle{
        width:80px;
        height:80px;
    }

    .music-section .icon-circle img{
        width:42px;
        height:42px;
    }

}




         /*============================
Floating Music Circles
=============================*/
/*========================
Floating Music Icons
========================*/
.mt_about_us .music-circle {
    position: absolute;
    border-radius: 50%;
    animation: mtAboutFloat 8s infinite ease-in-out;
    opacity: 0.15;
    z-index: 0;
}

.mt_about_us .music-circle i {
    font-size: 45px;
    color: #0d6efd;
}

.mt_about_us .circle1 {
    top: 8%;
    right: 3%;
    animation-delay: 0s;
}

.mt_about_us .circle2 {
    bottom: 10%;
    right: 5%;
    animation-delay: 2s;
}

.mt_about_us .circle3 {
    top: 45%;
    left: 48%;
    animation-delay: 4s;
}

@keyframes mtAboutFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(20deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/*========================
Section
========================*/
.mt_about_us {
    padding: 100px 0px 120px 0px;
    position: relative;
    z-index: 1;
}

.mt_about_us .subtitle {
    letter-spacing: 2px;
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
}

.mt_about_us .title {
    font-size: 50px;
    font-weight: 700;
    margin: 15px 0;

font-family: "Playfair Display", serif;
    color: #23395d;

}

.mt_about_us .description {
    color: #666;
    line-height: 30px;
    font-size: 17px;
    margin-bottom: 30px;
}

/*========================
Music List
========================*/
.mt_about_us .music-list {
    list-style: none;
    padding: 0;
}

.mt_about_us .music-list li {
    margin-bottom: 22px;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    color: #444;
}

.mt_about_us .music-list i {
    width: 45px;
    height: 45px;
    color: #66655c;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.25);
    border: 2px solid #c59b2feb;
}

/*========================
Button
========================*/
.mt_about_us .btn-music {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: all .4s ease;
    background-color: #c59b2feb;
}

.mt_about_us .btn-music:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/*========================
Image Layout
========================*/
.mt_about_us .img-box {
    height: 100%;
}

.mt_about_us .img-big {
    height: 520px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.mt_about_us .img-small {
    height: 245px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mt_about_us .img-box img {
    transition: transform .4s ease;
}

.mt_about_us .img-box img:hover {
    transform: scale(1.03);
}

/*========================
Decorative Notes
========================*/
.mt_about_us .note {
    position: absolute;
    font-size: 28px;
    color: #0d6efd;
    animation: mtAboutMusicMove 7s linear infinite;
    opacity: 0.18;
}

.mt_about_us .note1 {
    top: 100px;
    right: 150px;
}

.mt_about_us .note2 {
    bottom: 130px;
    left: 180px;
    animation-delay: 2s;
}

.mt_about_us .note3 {
    top: 50%;
    right: 60px;
    animation-delay: 4s;
}

@keyframes mtAboutMusicMove {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/*========================
Responsive
========================*/
@media (max-width: 991px) {

    .mt_about_us .title {
        font-size: 38px;
    }

    .mt_about_us .img-big {
        height: 400px;
        margin-bottom: 25px;
    }

    .mt_about_us .img-small {
        height: 190px;
    }
}


         /*=============================
OUR COURSE
=============================*/
         .mt_course {
            padding: 90px 0;
            position: relative;
            overflow: hidden;
         }
         .mt_course:before {
            content: "";
            position: absolute;
            width: 350px;
            height: 350px;
            background: #c39b2f15;
            border-radius: 50%;
            top: -150px;
            left: -120px;
         }
         .mt_course:after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            background: #c39b2f10;
            border-radius: 50%;
            bottom: -100px;
            right: -80px;
         }
         .mt_course .section-title {
            text-align: center;
            margin-bottom: 60px;
         }
         .mt_course .section-title span {
            color: #c39b2f;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
         }
         .mt_course .section-title h2 {
            font-size: 46px;
            font-weight: 700;
            color: #22314d;
            margin-top: 10px;
                font-family: "Playfair Display", serif;
         }
         .mt_course .section-title p {
            max-width: 700px;
            margin: auto;
            color: #666;
         }
         /*========================*/
         .course-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            transition: 0.4s;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
         }
         .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
         }
         .course-img {
            position: relative;
            overflow: hidden;
         }
         .course-img img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: 0.5s;
         }
         .course-card:hover img {
            transform: scale(1.08);
         }
         .course-icon {
            position: absolute;
            left: 20px;
            bottom: -28px;
            width: 58px;
            height: 58px;
            background: #c39b2f;
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 22px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
         }
         .course-body {
            padding: 20px 25px 25px;
         }
         .course-body h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: #22314d;
         }
         .course-body p {
            color: #666;
            line-height: 28px;
            margin-bottom: 25px;
            font-family: "Segoe UI", sans-serif;
         }
         .read-btn {
            text-decoration: none;
            color: #c39b2f;
            font-weight: 700;
            transition: 0.3s;
         }
         .read-btn:hover {
            color: #000;
         }
         .read-btn i {
            margin-left: 6px;
            transition: 0.3s;
         }
         .read-btn:hover i {
            margin-left: 12px;
         }
         /*========================*/
         .music-note {
            position: absolute;
            font-size: 45px;
            color: #c39b2f;
            opacity: 0.08;
            animation: float 7s infinite ease-in-out;
         }
         .note1 {
            left: 4%;
            top: 20%;
         }
         .note2 {
            right: 6%;
            top: 55%;
            animation-delay: 2s;
         }
.note3 {
    left: 87%;
    bottom: 10%;
    animation-delay: 4s;
}
         @keyframes float {
            0% {
               transform: translateY(0px) rotate(0deg);
            }
            50% {
               transform: translateY(-20px) rotate(18deg);
            }
            100% {
               transform: translateY(0px) rotate(0deg);
            }
         }

/* View More Button */
.view-course-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 36px;
    background:#c39b2f;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    border-radius:50px;
    transition:all .35s ease;
    box-shadow:0 12px 25px rgba(195,155,47,.30);
}

.view-course-btn:hover{
    background:#22314d;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(34,49,77,.25);
}

.view-course-btn i{
    transition:transform .35s ease;
}

.view-course-btn:hover i{
    transform:translateX(6px);
}

         
         @media (max-width: 991px) {
            .mt_course .section-title h2 {
               font-size: 34px;
            }
         }

/*============================
CALL TO ACTION
============================*/

.mt_cta{
    position:relative;
    padding:80px 0;
    overflow:hidden;


    background: url("../images/bg.jpg") repeat top left;


}

.mt_cta::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#c39b2f20;
    border-radius:50%;
    left:-120px;
    top:-120px;
}

.mt_cta::after{
    content:'';
    position:absolute;
    width:260px;
    height:260px;
    background:#ffffff08;
    border-radius:50%;
    right:-80px;
    bottom:-80px;
}

.mt_cta .container{
    position:relative;
    z-index:2;
}

.mt_cta .cta-subtitle{
    color:#c39b2f;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    display:inline-block;
    margin-bottom:18px;
}

.mt_cta h2{
    color:#3d2d25;
    font-size:46px;
    font-weight:700;
    margin-bottom:20px;

}

.mt_cta p {
    color: #666;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 0;
}

.cta-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    background: #22314d;
    color: #fff;
    border-radius: 60px;
    text-decoration: none;
    font-size: 18px;
    transition: .35s;
}

.cta-call-btn:hover{
    background:#fff;
    color:#22314d;
    transform:translateY(-5px);
}

.cta-call-btn i{
    font-size:18px;
}

/* Floating Icons */

.music-icon{
    position:absolute;
    color:#fff;
    opacity:.08;
    font-size:70px;
    animation:musicFloat 8s ease-in-out infinite;
}

.music1{
    top:18%;
    left:8%;
}

.music2{
    right:10%;
    top:22%;
    animation-delay:2s;
}

.music3{
    bottom:12%;
    left:45%;
    animation-delay:4s;
}

@keyframes musicFloat{

0%{
transform:translateY(0) rotate(0deg);
}

50%{
transform:translateY(-18px) rotate(15deg);
}

100%{
transform:translateY(0) rotate(0deg);
}

}

@media(max-width:991px){

.mt_cta{
    text-align:center;
}

.mt_cta h2{
    font-size:34px;
}

.cta-call-btn{
    margin-top:20px;
    font-size:18px;
    padding:16px 30px;
}

}




         /* =====================
TESTIMONIAL SECTION
===================== */
         .music_testimonial {
            padding: 100px 0;
            background: #ffffff;
            position: relative;
         }
         .music_testimonial:before {
            content: "♫";
            position: absolute;
            top: 40px;
            left: 60px;
            font-size: 120px;
            color: #c39b2f;
            opacity: 0.06;
         }
         .music_testimonial:after {
            content: "♪";
            position: absolute;
            bottom: 30px;
            right: 80px;
            font-size: 130px;
            color: #c39b2f;
            opacity: 0.06;
         }
         .testimonial_head span {
            color: #c39b2f;
            letter-spacing: 3px;
            font-size: 14px;
            font-weight: 700;
         }
         .testimonial_head h2 {
            font-size: 46px;
            color: #24324a;
            font-weight: 700;
            margin: 15px 0;
         }
         .testimonial_head p {
            color: #777;
            max-width: 600px;
            margin: auto;
         }
         /* CARD */
.testimonial_item {
    margin: 70px 15px 30px;
    background: #fff;
    border-radius: 30px;
    padding: 45px 35px 35px;
    text-align: center;
    box-shadow: 0 10px 31px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #f1ead8;
}
         .testimonial_item:hover {
            transform: translateY(-8px);
            transition: 0.4s;
         }
         /* OVAL IMAGE */
         .user_image {
            width: 130px!important;
            height: 130px;
            object-fit: cover;
            border-radius: 70px;
            border: 6px solid #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            margin: -110px auto 20px;
            display: block;
         }
         /* QUOTE */
         .quote_icon {
            position: absolute;
            top: 25px;
            right: 30px;
            color: #c39b2f;
            font-size: 35px;
         }
         .testimonial_item h4 {
            color: #24324a;
            font-size: 22px;
            margin-bottom: 5px;
            font-weight: 700;
         }
         .testimonial_item small {
            color: #c39b2f;
            font-weight: 600;
         }
.testimonial_item p {
    color: #666;
    line-height: 24px;
    margin-top: 10px;
    font-family: "Segoe UI", sans-serif;
    min-height: 72px;
}




         .star {
            margin-top: 20px;
         }
         .star i {
            color: #c39b2f;
            font-size: 14px;
         }
         /* OWL */
         .owl-stage {
            padding-top: 40px;
         }
         .owl-dots {
            text-align: center;
            margin-top: 30px;
         }
         .owl-dot span {
            width: 10px !important;
            height: 10px !important;
            background: #ddd !important;
         }
         .owl-dot.active span {
            background: #c39b2f !important;
         }
         .owl-nav {
            text-align: center;
         }
         .owl-prev,
         .owl-next {
            width: 45px;
            height: 45px;
            border-radius: 50% !important;
            background: #c39b2f !important;
            color: white !important;
            margin: 10px;
         }
         @media (max-width: 768px) {
            .testimonial_head h2 {
               font-size: 32px;
            }
         }

/*============================*/
  .hero-wrap-inner-page{
    position:relative;
    width:100%;
    min-height:300px;
    overflow:hidden;
  }
.hero-breadcrumb {margin: 200px 0px 0px 365px}

.hero-breadcrumb a {text-decoration: none; color: #efcf4f; font-weight: 700;}
.hero-breadcrumb span { color: #fff; font-weight: 700;}
.hero-breadcrumb a:after {
    margin: 0 7px 0 12px;
    content: "\f105";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
}

/*================= contact us page start========================*/
         /* =========================================
           CONTACT INFO
        ========================================= */
         .contact-section {
            padding: 90px 0;
         }
         .section-label {
            color: #f97316;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 12px;
         }
         .contact-section .section-title {
            font-family: "Playfair Display", serif;
            font-size: 45px;
            font-weight: 700;
            margin-top: 10px;
         }
         .section-description {
            color: #72777c;
            max-width: 650px;
            line-height: 1.8;
         }
         /* =========================================
           INFO BOXES
        ========================================= */
         .info-box {
            background: #fff;
            padding: 30px;
            border: 1px solid #e8e3dc;
            height: 100%;
            position: relative;
            transition: 0.35s;
         }
         .info-box:hover {
            transform: translateY(-8px);
            border-color: #f97316;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
         }
         .info-number {
            position: absolute;
            right: 20px;
            top: 15px;
            font-size: 50px;
            font-family: "Playfair Display", serif;
            color: #f3eee7;
            font-weight: 700;
         }
         .info-icon {
            width: 58px;
            height: 58px;
            background: #101820;
            color: #fbbf24;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 22px;
         }
         .info-box h5 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 12px;
         }
         .info-box p {
            color: #72777c;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 0;
         }
         .info-box a {
            color: #72777c;
            transition: 0.3s;
            text-decoration: none;
         }
         .info-box a:hover {
            color: #f97316;
         }
         /* =========================================
           FORM AREA
        ========================================= */
         .form-area {
            background: #101820;
            padding: 90px 0;
            position: relative;
            overflow: hidden;
         }
         .form-area::before {
            content: "♪";
            position: absolute;
            right: 5%;
            top: 10%;
            font-size: 250px;
            color: rgba(255, 255, 255, 0.025);
            font-family: serif;
         }
         .form-title {
            color: #fff;
            font-family: "Playfair Display", serif;
            font-size: 46px;
            font-weight: 700;
         }
         .form-description {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
            max-width: 550px;
         }
         .form-card {
            background: #fff;
            padding: 40px;
            position: relative;
            z-index: 2;
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
         }
         .form-label {
            font-weight: 600;
            font-size: 13px;
            margin-bottom: 8px;
         }
         .form-control,
         .form-select {
            border: 1px solid #ddd;
            border-radius: 0;
            padding: 14px 15px;
            min-height: 52px;
            font-size: 14px;
            background: #fff;
         }
         textarea.form-control {
            height: 145px;
            resize: none;
         }
         .form-control:focus,
         .form-select:focus {
            border-color: #f97316;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
         }
         .send-btn {
            border: 0;
            background: #f97316;
            color: #fff;
            padding: 15px 30px;
            font-weight: 700;
            transition: 0.3s;
         }
         .send-btn:hover {
            background: #ea580c;
            color: #fff;
            transform: translateY(-3px);
         }
         /* =========================================
           OPENING HOURS
        ========================================= */
         .hours-card {
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 25px;
            max-width: 520px;
         }
         .hours-card h5 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 20px;
         }
         .hours-row {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            color: rgba(255, 255, 255, 0.65);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
         }
         .hours-row strong {
            color: #fff;
         }
         /* =========================================
           SOCIAL
        ========================================= */
         .social-area {
            margin-top: 35px;
         }
         .social-area p {
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 15px;
         }
         .social-icons {
            display: flex;
            gap: 10px;
         }
         .social-icons a {
            width: 42px;
            height: 42px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            transition: 0.3s;
         }
         .social-icons a:hover {
            background: #f97316;
            transform: translateY(-4px);
         }
         /* =========================================
           MAP
        ========================================= */
         .map-section {
            padding: 90px 0;
            background: #fff;
         }
         .map-box {
            height: 450px;
            overflow: hidden;
            border: 1px solid var(--border);
         }
         .map-box iframe {
            width: 100%;
            height: 100%;
            border: 0;
         }
/*================= contact us page end========================*/         
.mt_about_full p {
    color: #666;
    line-height: 30px;
    font-size: 17px;
    margin-bottom: 30px;
}
.mt_mission_vision{}
.mt_mission_vision .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #444;
}

.mt_mission_vision .info-box-m {
    position: relative;
    margin-bottom: 40px;
}

.mt_mission_vision .card-label {
    position: absolute;
    top: -30px;
    left: 35px;
    width: 250px;
    height: 70px;
    border-radius: 22px 22px 0 0;
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: 0.4s;
}

.mt_mission_vision .mission-label {
    background: #f4b942;
}

.mt_mission_vision .mission-label::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #f4b942;
}

.mt_mission_vision .vision-label {
    background: #68d0ad;
}

.mt_mission_vision .vision-label::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #68d0ad;
}

.mt_mission_vision .content-card {
    background: #fff;
    border-radius: 28px;
    padding: 65px 35px 35px;
    min-height: 250px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    overflow: hidden;
    position: relative;
}

.mt_mission_vision .content-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mt_mission_vision .icon-box {
    width: 90px;
    height: 90px;
    border: 3px dashed #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 42px;
    margin: auto;
    transition: 0.6s;
}

.mt_mission_vision .mission .icon-box {
    color: #f4b942;
}

.mt_mission_vision .vision .icon-box {
    color: #68d0ad;
}

.mt_mission_vision .content-card:hover .icon-box {
    transform: rotate(360deg) scale(1.1);
}

.mt_mission_vision .divider {
    width: 1px;
    background: #ddd;
    height: 110px;
    margin: auto;
}

.mt_mission_vision .content-card p {
    color: #777;
    line-height: 1.8;
    margin: 0;
}

.mt_mission_vision .flag {
    position: absolute;
    right: 35px;
    top: 18px;
    font-size: 30px;
    transition: 0.4s;
}

.mt_mission_vision .mission .flag {
    color: #f4b942;
}

.mt_mission_vision .vision .flag {
    color: #68d0ad;
}

.mt_mission_vision .content-card:hover .flag {
    transform: translateY(-8px) rotate(15deg);
}

/* Floating animation */
.mt_mission_vision .info-box-m {
    animation: mtMissionVisionFloat 5s ease-in-out infinite;
}

.mt_mission_vision .info-box-m:nth-child(2) {
    animation-delay: 1s;
}

@keyframes mtMissionVisionFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Slide Animation */
.mt_mission_vision .fade-up {
    animation: mtMissionVisionFadeUp 0.8s ease;
}

@keyframes mtMissionVisionFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon pulse */
@keyframes mtMissionVisionPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.mt_mission_vision .content-card:hover .icon-box {
    animation: mtMissionVisionPulse 0.8s infinite;
}


/*====================mission vision end==================*/
         /* =========================================
           MEET OUR TEACHERS
           All CSS scoped under .mt_team
           ========================================= */
         .mt_team {
            --mt-primary: #0c4f6a;
            --mt-secondary: #c9552f;
            --mt-border: #efb92e;
            --mt-text: #285e76;
            width: 100%;
            padding: 52px 20px 34px;
            background: #fff;
            font-family: "Nunito Sans", sans-serif;
         }
         .mt_team *,
         .mt_team *::before,
         .mt_team *::after {
            box-sizing: border-box;
         }
         /* =========================================
           HEADER
           ========================================= */
         .mt_team .mt_team_header {
            max-width: 850px;
            margin: 0 auto;
            text-align: center;
         }
         .mt_team .mt_team_small_title {
            margin: 0 0 2px;
            color: var(--mt-secondary);
            font-size: 24px;
            line-height: 1.2;
            font-weight: 700;
         }
         .mt_team .mt_team_title {
            margin: 0;
            color: var(--mt-primary);
            font-size: 42px;
            line-height: 1.15;
            font-weight: 700;
         }
         .mt_team .mt_team_description {
            max-width: 710px;
            margin: 26px auto 0;
            color: var(--mt-text);
            font-size: 16px;
            line-height: 1.65;
            font-weight: 400;
         }
         /* =========================================
           TEACHERS
           ========================================= */
         .mt_team .mt_team_members {
            margin-top: 68px;
         }
         /*
         * Keeps 1, 2 or 3 teachers centered.
         */
         .mt_team .mt_team_members_row {
            justify-content: center;
         }
         .mt_team .mt_team_member {
            text-align: center;
            margin-bottom: 35px;
         }
         /* =========================================
           IMAGE / BORDER
           ========================================= */
         .mt_team .mt_team_image_wrap {
            position: relative;
            width: 240px;
            height: 240px;
            margin: 0 auto;
            padding: 12px;
            border: 1px solid var(--mt-border);
            border-radius: 50%;
            background: #fff;
            transition:
               border-color 0.35s ease,
               transform 0.35s ease,
               box-shadow 0.35s ease;
         }
         /* Decorative outer ring */
         .mt_team .mt_team_image_wrap::before {
            content: "";
            position: absolute;
            inset: -5px;
            border: 1px solid transparent;
            border-radius: 50%;
            transition:
               border-color 0.35s ease,
               transform 0.45s ease;
         }
         /* Image */
         .mt_team .mt_team_image {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: 50%;
            transition:
               transform 0.45s ease,
               filter 0.35s ease;
         }
         /* =========================================
           IMAGE HOVER EFFECT
           ========================================= */
         .mt_team .mt_team_member:hover .mt_team_image_wrap {
            border-color: var(--mt-secondary);
            transform: translateY(-7px);
            box-shadow: 0 12px 30px rgba(12, 79, 106, 0.16);
         }
         .mt_team .mt_team_member:hover .mt_team_image_wrap::before {
            border-color: rgba(201, 85, 47, 0.35);
            transform: rotate(45deg) scale(1.04);
         }
         .mt_team .mt_team_member:hover .mt_team_image {
            transform: scale(1.06);
         }
         /* =========================================
           TEACHER NAME
           ========================================= */
         .mt_team .mt_team_name {
            margin: 25px 0 1px;
            color: var(--mt-primary);
            font-size: 24px;
            line-height: 1.25;
            transition: color 0.25s ease;
         }
         .mt_team .mt_team_member:hover .mt_team_name {
            
         }
         /* =========================================
           TEACHER ROLE
           ========================================= */
         .mt_team .mt_team_role {
            margin: 0;
            color: var(--mt-secondary);
            font-size: 15px;
            line-height: 1.3;
            font-weight: 700;
         }
         /* =========================================
           BUTTON
           ========================================= */
         .mt_team .mt_team_button_wrap {
            margin-top: 38px;
            text-align: center;
         }
         .mt_team .mt_team_button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 150px;
            min-height: 47px;
            padding: 12px 25px;
            border: 0;
            border-radius: 5px;
            background: var(--mt-secondary);
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            line-height: 1;
            font-weight: 900;
            text-transform: uppercase;
            transition:
               background 0.25s ease,
               transform 0.25s ease,
               box-shadow 0.25s ease;
         }
         .mt_team .mt_team_button i {
            margin-left: 8px;
            font-size: 12px;
         }
         .mt_team .mt_team_button:hover {
            background: var(--mt-primary);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(12, 79, 106, 0.18);
         }
         /* =========================================
           DESKTOP / LAPTOP
           ========================================= */
         @media (max-width: 1199.98px) {
            .mt_team {
               padding-top: 45px;
            }
            .mt_team .mt_team_image_wrap {
               width: 210px;
               height: 210px;
            }
            .mt_team .mt_team_name {
               font-size: 22px;
            }
         }
         /* =========================================
           TABLET
           ========================================= */
         @media (max-width: 991.98px) {
            .mt_team .mt_team_title {
               font-size: 42px;
            }
            .mt_team .mt_team_members {
               margin-top: 50px;
            }
            .mt_team .mt_team_image_wrap {
               width: 200px;
               height: 200px;
            }
         }
         /* =========================================
           MOBILE
           ========================================= */
         @media (max-width: 767.98px) {
            .mt_team {
               padding: 40px 15px 30px;
            }
            .mt_team .mt_team_small_title {
               font-size: 21px;
            }
            .mt_team .mt_team_title {
               font-size: 34px;
            }
            .mt_team .mt_team_description {
               margin-top: 20px;
               font-size: 15px;
            }
            .mt_team .mt_team_members {
               margin-top: 40px;
            }
            .mt_team .mt_team_image_wrap {
               width: 220px;
               height: 220px;
            }
            .mt_team .mt_team_name {
               margin-top: 20px;
               font-size: 22px;
            }
            .mt_team .mt_team_button_wrap {
               margin-top: 15px;
            }
         }
         /* =========================================
           SMALL MOBILE
           ========================================= */
         @media (max-width: 575.98px) {
            .mt_team .mt_team_title {
               font-size: 30px;
            }
            .mt_team .mt_team_description {
               max-width: 500px;
            }
            .mt_team .mt_team_image_wrap {
               width: 200px;
               height: 200px;
            }
            .mt_team .mt_team_member {
               margin-bottom: 28px;
            }
         }

/*==================service details===================*/
#service_details {margin: 60px 0px 60px 0px;}

.starter-section {
  padding-top: 60px;
  padding-bottom: 60px;
  /* Add your styles here */
}


.service-sidebar{
    background:#fff;
    border:1px solid #eee;
    padding:25px;
    border-radius:10px;
}

.service-sidebar h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #262625;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    padding: 4px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: .3s;
    color: #222;
}

.service-list-item img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
    flex-shrink:0;
}

.service-list-item span{
    font-size:16px;
    font-weight:600;
    line-height:1.4;
    color: #3d4d63;
}

.service-list-item:hover{
    background:#f8f8f8;
    transform:translateX(5px);
}

.service-list-item.active{
    background:#0d6efd;
    color:#fff;
    border-color:#0d6efd;
}

.service-content img{
    max-width:100%;
    height:auto;
}

.mt-service-content{
    line-height:1.8;
    color:#666;
    margin-bottom:25px;
}

/*==================service details end===================*/         
.mt_contact p{margin-bottom: 0px;}
.mt_phone {text-decoration: none; color: #cfcfcf; transition:.3s;}
.mt_phone:hover{
    color:#d5b63a;
    padding-left:8px;
}
.registration-section {margin: 50px 0px 100px 0px;}