body {
  font-family: 'Merriweather', serif;
  background-color: #ffffff;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}


h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4,
.hero-title, .section-heading, .ancizar-text {
  font-family: 'DM Serif Display', serif;
}

p, li, span, a, .lead, .fs-5 {
  font-family: 'Roboto Slab', serif;
}

/* hero section */
.hero-title, .section-heading {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  text-align: center;
}

.overlay-bottom h1,
.overlay-bottom p {
  margin-bottom: 1rem;
}

@media (min-width: 999px) {
  .hero-slide {
    max-height: 540px;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 767.98px) {
  .hero-slide {
    height: 50vh;
  }

  .overlay-bottom {
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
  }

  .overlay-bottom h1 {
    font-size: 1.5rem;
  }

  .overlay-bottom p {
    font-size: 1rem;
  }
}

/* courses section*/
.custom-tab-nav {
  background-color: #edf4fb;
  border-radius: 14px;
  padding: 6px;
  display: inline-flex;
  border: 1px solid #d0e3f1;
  overflow-x: auto;
  white-space: nowrap;
  gap: 4px;
  scrollbar-width: none;
}

.custom-tab-nav::-webkit-scrollbar {
  display: none;
}

.custom-tab-nav .nav-link {
  color: #1d2b53;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 20px;
  background-color: transparent;
  border: none;
  transition: all 0.3s ease-in-out;
  min-width: 150px;
  text-align: center;
}

.custom-tab-nav .nav-link:not(.active):hover {
  background-color: #e6f0fc;
}

.custom-tab-nav .nav-link.active {
  background-color: #ffffff;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

/* Slide-in animation */
.animate-slide {
  animation: slideFadeIn 0.6s ease;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*why partner with us section*/
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hover-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}


/* floating icon*/
.free-trial-float-btn {
  position: fixed;
  bottom: 15px;
  right: 20px;
  z-index: 9999;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.free-trial-float-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* navbar style*/
.glass-navbar {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1050;
}

/* Nav links */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 15.5px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff5252 !important;
}

/* Buttons */
.btn-warning,
.btn-outline-warning {
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-warning:hover {
  background-color: #ff8800;
  color: #000;
}

.btn-outline-warning:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

/* Logo */
.navbar-brand img {
  transition: transform 0.3s ease-in-out;
}

.navbar-brand img:hover {
  transform: scale(1.08);
}

/* Sticky shadow */
.navbar.shadow {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


/* Testimonial Card Styling */
.testimonial-card {
  background: #fdfdfd; /* Light neutral background */
  transition: all 0.3s ease-in-out;
  transform: scale(1);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.0);
  border-radius: 1rem;
}

/* Hover Effect */
.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background: #ffffff; /* Slightly brighter on hover */
}

/* Responsive Smoothness */
@media (hover: none) {
  .testimonial-card:hover {
    transform: none;
    box-shadow: none;
    background: #fdfdfd;
  }
}

/*nav pills container scrollable on mobile */
@media (max-width: 767.98px) {
  #testimonialTabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #testimonialTabs .nav-item {
    flex: 0 0 auto; /* Do not shrink */
  }

  .nav-pills {
    display: flex;
    flex-wrap: nowrap;
  }

  .nav-pills .nav-link {
    white-space: nowrap; /* Keep text in one line */
  }
}

/* About Section Styles */
.about-section {
  background-color: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
}

.intro-text {
  font-size: 1.2rem;
  color: #444;
  font-weight: 500;
}

.about-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image img {
  max-width: 100px;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


/* Button Styling */
.btn-primary {
  background-color: #4a3aff;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #3a2ad9;
  transform: translateY(-2px);
}

.text-gradient {
    background: linear-gradient(to right, #ff1d25, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .about-section h2,
  .about-section h3 {
    letter-spacing: 0.5px;
  }

/* Responsive adjustments */
@media (max-width: 767px) {
  .glass-card {
    padding: 1.5rem;
  }
  .about-section h2 {
    font-size: 1.75rem;
  }
}

/*couses section*/
.course-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.course-card img {
  height: 200px;
  object-fit: cover;
}

.card-title {
  font-weight: bold;
}

.hover-effect {
  transition: transform 0.3s;
  border-radius: 16px;
}

.hover-effect:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Switch-style background */
.nav-switch-wrapper {
  background: linear-gradient(90deg, #f0f4ff, #ffffff);
  border: 1px solid #dee2e6;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar */
.nav-switch-wrapper::-webkit-scrollbar {
  display: none;
}
.nav-switch-wrapper {
  scrollbar-width: none;
}

/* Nav pill styling */
#courseTabs .nav-link {
  background-color: transparent;
  color: #444;
  transition: all 0.3s ease;
  border: none;
}
#courseTabs .nav-link.active {
  background: red;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Mobile-friendly tweaks */
@media (max-width: 768px) {
  #courseTabs .nav-link {
    font-size: 14px;
    padding: 0.5rem 1.2rem;
  }
}

.backdrop-blur-sm {
  backdrop-filter: blur(6px);
}


.trial-box {
  position: absolute;
  right: 100px;
  top: 110%;
  transform: translateY(-50%);
  width: 1000px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 10;
}

.social-buttons a {
  display: inline-block;
  margin: 5px;
  padding: 8px 12px;
}
@media (max-width: 768px) {
  .carousel-caption h1 { font-size: 24px; }
  .carousel-caption p { font-size: 16px; }
}

.container-instrument {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 0 1rem;
      text-align: center;
    }
    h2 {
      font-weight: 600;
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
    }
    @media (min-width: 640px) {
      h2 {
        font-size: 1.5rem;
      }
    }
    @media (min-width: 768px) {
      h2 {
        font-size: 1.875rem;
      }
    }
    .instruments {
      display:flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 5rem 5rem;
    }
    .instrument {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      width: 8rem;
    }
    .circle {
      width: 8rem;
      height: 8rem;
      border-radius: 50%;
      background-color: #fcd34d;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .circle img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
    .label {
      font-size: 1rem;
      color: #1f2937;
    }
    @media (min-width: 640px) {
      .instrument {
        width: 10rem;
      }
      .label {
        font-size: 1.125rem;
      }
    }
  
  /* why muzika section*/
.feature-box {
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #eaf1ff;
  border-radius: 50%;
  font-size: 24px;
}

/* our courses*/
.course-img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.course-card:hover .course-img {
  transform: scale(1.05);
}
.course-icon {
  font-size: 1.25rem;
  font-weight: bold;
  z-index: 10;
}
.glass-card {
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.85);
  transition: box-shadow 0.3s ease;
}
.glass-card:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

/* gallery section*/
  .text-shadow {
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  }

  .gallery-card:hover img {
    transform: scale(1.05);
  }

  .gallery-img {
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
  }

  #lightboxImage {
    max-height: 80vh;
    width: auto;
  }


/* testimonial section*/

#testimonials .card {
  background: #fff;
  transition: transform 0.3s ease;
}
#testimonials .card:hover {
  transform: scale(1.02);
}
#testimonials img {
  transition: transform 0.3s ease;
}
#testimonials img:hover {
  transform: scale(1.05);
}

/**/
.accordion-button:hover {
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.accordion-button::after {
  transition: transform 0.3s ease;
}


 .accordion-button {
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #f0f8ff;
  color: #0d6efd;
}

.accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
}

section.b2b-callout {
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  padding: 60px 0;
}

section.b2b-callout h2 {
  font-size: 2.5rem;
}

section.b2b-callout p {
  font-size: 1.25rem;
}

.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 200, 200, 0.3);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  background-color: #fdfdfd;
  border: 1px solid #ccc;
  transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

footer h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

footer a.nav-link:hover {
  color: #FFCB05 !important;
  text-decoration: underline;
}

footer .btn-sm {
  font-size: 0.85rem;
  padding: 8px 12px;
}

footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.instagram-gradient {
  background: linear-gradient(45deg, #ed983c, #ec7e55, #dc2743, #cb2a6b, #b82489);
  border: none; 
  padding: 8px 16px;
  transition: transform 0.2s ease;
}

.instagram-gradient:hover {
  transform: scale(1.02);
  opacity: 0.90;
  text-decoration: none;
  color: #000000;
}
