/* Global Styles */
:root {
  --primary-color: #f06c07;
  --secondary-color: #42376a;
  --dark-color: #010101;
  --light-color: #ebf of2;
  --transition: all 0.3s ease;
}

/* Preloader spinner styling */
.spinner {
  --accent: fuchsia; /* You can change this to match your brand color */
  --max-scale: 4;
  --speed: 0.2;
  display: flex;
  gap: 0.3em;
  transform: skew(15deg, 10deg);
}

.spinner span {
  display: block;
  background-color: var(--accent);
  box-shadow: 1px 1px 5px 0.2px var(--accent);
  width: 0.7px;
  height: 0.6em;
}

.spinner .spinner-part-0 {
  animation: load432 calc(1s/var(--speed)) linear infinite;
}

.spinner .spinner-part-1 {
  animation: load432 calc(0.16s/var(--speed)) linear infinite;
}

.spinner .spinner-part-2 {
  animation: load432 calc(0.4s/var(--speed)) linear infinite;
}

.spinner .spinner-part-3 {
  animation: load432 calc(0.5s/var(--speed)) linear infinite;
}

/* Keyframes for spinner animation */
@keyframes load432 {
  50% {
      transform: scaleY(var(--max-scale));
  }
}



/* Apply background image, blur and overlay to the entire body */
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-color);
  overflow-x: hidden;
  position: relative;
  background: url("./assets/images/bg-1.jpg") no-repeat center center / cover;
  background-attachment: fixed;
}

/* Add overlay and blur to the entire body */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Adjust text colors for better visibility on dark background */
body {
  color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: white;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

/* Adjust section backgrounds for better contrast */
.section {
  position: relative;
  z-index: 1;
}

/* Make all sections have consistent styling */
.latest-videos-section,
.about-section,
.achievements-section,
.artists-section,
.mentors-section,
.music-videos-gallery,
.services-section,
.contact-section,
#nw-gallery,
#imageGallery {
  position: relative;
  z-index: 1;
}

/* Add subtle section separators */
.latest-videos-section,
.achievements-section,
.mentors-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Make card backgrounds slightly transparent */
.card,
.video-card,
.artist-card,
.service-card,
.achievement-card,
.mentor-card,
.about-image,
.contact-info,
.contact-form {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Adjust text colors in cards for better visibility */
.card h3,
.video-card h3,
.artist-card h3,
.service-card h3,
.achievement-card h3,
.mentor-card h3 {
  color: white;
}

.card p,
.video-card p,
.artist-card p,
.service-card p,
.achievement-card p,
.mentor-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Section Title - Animated Sound Wave */
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: white; /* Changed to white for better visibility */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Sound Wave Animation */
.sound-wave {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 20px;
}

/* Individual Bars */
.sound-wave span {
  display: inline-block;
  width: 6px;
  height: 10px;
  background: #ffffff; /* Changed to white for better visibility */
  animation: waveMotion 1s infinite ease-in-out alternate;
  border-radius: 3px;
}

/* Animation Timing for Each Bar */
.sound-wave span:nth-child(1) {
  animation-delay: 0s;
}
.sound-wave span:nth-child(2) {
  animation-delay: 0.2s;
}
.sound-wave span:nth-child(3) {
  animation-delay: 0.4s;
}
.sound-wave span:nth-child(4) {
  animation-delay: 0.6s;
}
.sound-wave span:nth-child(5) {
  animation-delay: 0.8s;
}

/* Keyframes for Wave Motion */
@keyframes waveMotion {
  0% {
    height: 10px;
    opacity: 0.8;
  }
  50% {
    height: 20px;
    opacity: 1;
  }
  100% {
    height: 10px;
    opacity: 0.8;
  }
}

/* Subtitle Text */
.section-title p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8); /* Changed for better visibility */
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.6;
  font-weight: 300;
}

/* cursor animation */
.cursor-container {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: #720cbe;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  box-shadow: 0 0 10px rgba(114, 12, 190, 0.5);
}

.cursor-trail {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #ff6d00;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.08s ease-out;
  opacity: 0.6;
}

.music-note {
  position: fixed;
  font-size: 24px;
  pointer-events: none;
  animation: float 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  opacity: 0.9;
  z-index: 100;
}

.music-note.purple {
  color: #720cbe;
  text-shadow: 0 0 5px rgba(114, 12, 190, 0.3);
}

.music-note.orange {
  color: #ff6d00;
  text-shadow: 0 0 5px rgba(255, 109, 0, 0.3);
}

.wave {
  position: fixed;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  z-index: 90;
  animation: wave 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.wave.purple {
  border: 2px solid #720cbe;
}

.wave.orange {
  border: 2px solid #ff6d00;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(0.5);
    opacity: 0.9;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) rotate(var(--r)) scale(1.2);
    opacity: 0;
  }
}

@keyframes wave {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.7;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .cursor {
    width: 15px;
    height: 15px;
  }

  .cursor-trail {
    width: 30px;
    height: 30px;
  }

  .music-note {
    font-size: 20px;
  }

  @keyframes wave {
    100% {
      width: 150px;
      height: 150px;
    }
  }
}

/* Navbar Styles */
.navbar {
  background-color: transparent;
  padding: 0.5rem 0;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
}

.navbar .container {
  flex-direction: row;
}

.navbar.scrolled {
  background-color: rgba(1, 1, 1, 0.7);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Adjusted logo size */
.navbar-brand img.logo {
  height: 50px;
  transition: var(--transition);
}

/* Navbar Links */
.navbar-dark .navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  position: relative;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
  background-color: rgba(1, 1, 1, 0.85);
  border: none;
  border-radius: 0.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem;
  min-width: 220px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show dropdown smoothly */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
  color: white;
  transition: var(--transition);
  padding: 0.6rem 1rem;
  border-radius: 0.3rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* Add hover effect with slight movement */
.dropdown-item:hover {
  background-color: white;
  color: #3b0439;
  transform: translateX(8px);
}

/* Dropdown item icon (optional) */
.dropdown-item i {
  font-size: 1rem;
  opacity: 0.8;
  transition: 0.3s ease;
}

.dropdown-item:hover i {
  opacity: 1;
}

/* When the navbar is scrolled, change background color */
.navbar.scrolled {
  background-color: rgba(1, 1, 1, 0.7) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Adjust text color for scrolled navbar */
.navbar.scrolled .nav-link {
  color: white !important;
}

/* Navbar toggler color change when scrolled */
.navbar.scrolled .navbar-toggler {
  border-color: white;
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navbar */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(1, 1, 1, 0.95);
    padding: 1rem;
    border-radius: 0.5rem;
  }
  .navbar .container {
    flex-direction: row;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

.carousel-item {
  height: 100vh;
}

.carousel-item img {
  object-fit: cover;
  filter: brightness(0.6);
  height: 100%;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 10;
  pointer-events: none;
}

/* Fixed dimensions for hero logo */
.hero-logo {
  width: 300px;
  height: auto;
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.slogan {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Latest Videos Section Styles */
/* Adjust background to be transparent with a slight overlay */
.latest-videos-section {
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}

/* Music Video Card */
.music-card {
  width: 360px;
  height: 410px;
  padding: 1em;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: white;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.music-card {
  width: 360px;
  height: 410px;
  padding: 1em;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: white;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .music-card {
    width: 90%;
    height: auto;
    padding: 1.5em;
  }
}

@media (max-width: 480px) {
  .music-card {
    width: 100%;
    padding: 1em;
    margin-top: 1rem;
  }
}



.music-thumbnail {
  width: 100%;
  height: 55%;
  border-radius: 8px;
  overflow: hidden;
}

.music-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.music-thumbnail:hover img {
  transform: scale(1.1);
}

.music-info {
  padding: 10px 0;
}

.music-title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
  color: white;
}

.music-description {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.8);
}

.music-footer {
  margin-top: 10px;
}

.watch-now {
  display: inline-block;
  padding: 8px 15px;
  font-size: 0.9em;
  font-weight: bold;
  color: #3b0439;
  background: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.watch-now2 {
  display: inline-block;
  padding: 8px 15px;
  font-size: 0.9em;
  font-weight: bold;
  color: #3b0439;
  background: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease-in-out;
}

.watch-now:hover {
  background: #010101;
  color: white;
}

.watch-now2:hover {
  background: #010101;
  color: white;
}

.video-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  margin-bottom: 2rem;
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
  border-radius: 1rem;
}

.video-card:hover::before {
  opacity: 0.1;
}

.video-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.1);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
  cursor: pointer;
  z-index: 2;
}

.video-card:hover .play-button {
  opacity: 1;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 108, 7, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(240, 108, 7, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 108, 7, 0);
  }
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.video-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.watch-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.watch-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.watch-all-btn {
  background-color: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.watch-all-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
  z-index: -1;
}

.watch-all-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.watch-all-btn:hover::before {
  left: 100%;
  transition: 0.7s;
}

/* Page Header Styles */
.page-header {
  background-color: transparent;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 108, 7, 0.4) 0%, rgba(66, 55, 106, 0.4) 100%);
  opacity: 0.8;
  z-index: -1;
}

.page-header h1 {
  color: white;
  position: relative;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sub-page-header {
  background-color: transparent;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.sub-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(240, 108, 7, 0.4) 0%, rgba(66, 55, 106, 0.4) 100%);
  opacity: 0.8;
  z-index: -1;
}

/* About Section Styles - Redesigned to match contact section */
.about-section {
  padding: 2rem 0;
  padding-top: 6rem;
  position: relative;
  z-index: 1;
}

/* Add a subtle overlay to the about section */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.about-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Redesigned about image to match contact section */
.about-image {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image img {
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Redesigned mission & vision section to match contact section */
.nw-section {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0 100px;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.nw-card {
  background: transparent;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  margin: 15px 0;
  box-sizing: border-box;
  width: 100%;
  height: 300px;
  max-width: 550px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  border: 1px solid rgb(255, 255, 255);
}

.nw-card-content {
  text-align: center;
  z-index: 1;
  color: white;
}

.nw-card h2 {
  font-size: 2em;
  margin: 0;
  padding: 5px 0;
  color: white;
}

.nw-card p {
  font-size: 1em;
  line-height: 1.6;
  margin: 10px 0;
  text-align: justify;
  color: rgba(255, 255, 255, 0.9);
}

.nw-card::before {
  content: "";
  position: absolute;
  width: 100px;
  /* background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(255, 255, 255)); */
  height: 230%;
  animation: rotBGimg 15s linear infinite;
  transition: all 0.2s linear;
}

@keyframes rotBGimg {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.nw-card::after {
  content: "";
  position: absolute;
  background: rgb(255 255 255 / 5%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  inset: 5px;
  border-radius: 15px;
}

/* Responsive Design for Small Screens */
@media screen and (max-width: 768px) {
  .nw-section {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .nw-card {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 15px;
  }

  .nw-card h2 {
    font-size: 1.5em;
  }

  .nw-card p {
    font-size: 0.9em;
  }
}

/* Achievements Section Styles */
.achievements-section {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

/* Add a subtle overlay to the achievements section */
.achievements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

.achievement-card {
  /* background-color: rgba(59, 4, 57, 0.7); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.achievement-card h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.achievement-card h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
}

.achievement-details {
  margin-top: 3rem;
}

.achievement-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-item h3 {
  color: white;
  margin-bottom: 1rem;
}

.achievement-gallery {
  margin-top: 3rem;
}

.achievement-gallery img {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

.col-a {
  margin-top: 2rem;
}

/* Apply styles only to the image gallery section */
#imageGallery {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: transparent;
  position: relative;
  z-index: 1;
}

/* Add overlay to image gallery */
#imageGallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

/* Grid container */
#imageGallery .gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
  width: 90vw;
  height: 90vh;
}

/* Individual image boxes */
#imageGallery .box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Image Styling */
#imageGallery .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Grid layout for big screens */
#imageGallery .box1 {
  grid-column: 1;
  grid-row: 1;
}
#imageGallery .box2 {
  grid-column: 2;
  grid-row: 1;
}
#imageGallery .box3 {
  grid-column: 3 / 5;
  grid-row: 1;
}
#imageGallery .box4 {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
} /* Large box */
#imageGallery .box5 {
  grid-column: 3;
  grid-row: 2;
}
#imageGallery .box6 {
  grid-column: 4;
  grid-row: 2 / 4;
} /* Tall box */
#imageGallery .box7 {
  grid-column: 3;
  grid-row: 3;
}
#imageGallery .box8 {
  grid-column: 4;
  grid-row: 3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  #imageGallery {
    height: auto;
    padding: 20px;
  }

  #imageGallery .gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 90%;
    height: auto;
  }

  #imageGallery .box {
    height: 200px;
    border-radius: 10px;
  }

  /* Show only 4 images */
  #imageGallery .box5,
  #imageGallery .box6,
  #imageGallery .box7,
  #imageGallery .box8 {
    display: none;
  }
}

/* Artists Section Styles */
.artists-section {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

/* Add overlay to artists section */
.artists-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.artist-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  margin-bottom: 2rem;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-card:hover {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.artist-image {
  overflow: hidden;
  position: relative;
}

.artist-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.artist-card:hover .artist-image::before {
  opacity: 1;
}

.artist-image img {
  width: 100%;
  transition: var(--transition);
}

.artist-card:hover .artist-image img {
  transform: scale(1.1);
}

.artist-info {
  padding: 1.5rem;
}

.artist-info h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.artist-info h4 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.artist-social {
  margin-top: 1.5rem;
}

.artist-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 0.5rem;
  color: white;
  transition: var(--transition);
}

.artist-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-5px);
}

/* Profile Card Styles */
#profileCard {
  width: 220px;
  height: 290px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 32px;
  padding: 3px;
  position: relative;
  box-shadow: #604b4a30 0px 70px 30px -50px;
  transition: all 0.5s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#profileCard .mail {
  position: absolute;
  right: 2rem;
  top: 1.4rem;
  background: transparent;
  border: none;
  z-index: 3;
  cursor: pointer;
}

#profileCard .mail i {
  color: #fbb9b6;
  font-size: 24px;
}

#profileCard .mail i:hover {
  color: #f55d56;
}

#profileCard .profile-pic {
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  top: 3px;
  left: 3px;
  border-radius: 29px;
  z-index: 1;
  border: 0px solid #fbb9b6;
  overflow: hidden;
  transition: all 0.5s ease-in-out 0.2s, z-index 0.5s ease-in-out 0.2s;
}

#profileCard .profile-pic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
  transition: all 0.5s ease-in-out 0s;
}

#profileCard .bottom {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: rgba(59, 4, 57, 0.8);
  top: 80%;
  border-radius: 29px;
  z-index: 2;
  box-shadow: rgba(96, 75, 74, 0.19) 0px 5px 5px 0px inset;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}

#profileCard .bottom .content {
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 160px;
}

#profileCard .bottom .content .name {
  display: block;
  font-size: 1.2rem;
  color: white;
  font-weight: bold;
}

#profileCard .bottom .content .position {
  display: block;
  font-size: 0.8rem;
  color: white;
  font-weight: bold;
  line-height: 1;
}

#profileCard .bottom .content .about-me {
  display: block;
  font-size: 0.8rem;
  color: white;
  margin: 0.5rem auto;
  line-height: 1.1;
}

#profileCard .bottom .bottom-bottom {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#profileCard .bottom .bottom-bottom .social-links-container {
  display: flex;
  gap: 1rem;
}

#profileCard .bottom .bottom-bottom .social-links-container a {
  color: white;
  text-decoration: none;
}

#profileCard .bottom .bottom-bottom .social-links-container i {
  font-size: 20px;
  filter: drop-shadow(0 5px 5px rgba(165, 132, 130, 0.13));
  transition: all 0.3s ease;
}

#profileCard .bottom .bottom-bottom .social-links-container i:hover {
  color: #ffffff;
  transform: scale(1.2);
}

#profileCard .bottom .bottom-bottom .button {
  background: white;
  color: #fbb9b6;
  border: none;
  border-radius: 20px;
  font-size: 0.6rem;
  padding: 0.4rem 0.6rem;
  box-shadow: rgba(165, 132, 130, 0.13) 0px 5px 5px 0px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#profileCard .bottom .bottom-bottom .button:hover {
  background: #f55d56;
  color: white;
}

/* Hover effects */
#profileCard:hover {
  border-top-left-radius: 55px;
}

#profileCard:hover .bottom {
  top: 20%;
  border-radius: 80px 29px 29px 29px;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
}

#profileCard:hover .profile-pic {
  width: 100px;
  height: 100px;
  top: 10px;
  left: 10px;
  border-radius: 50%;
  z-index: 3;
  border: 7px solid #ffffff;
  box-shadow: rgba(96, 75, 74, 0.19) 0px 5px 5px 0px;
  transition: all 0.5s ease-in-out, z-index 0.5s ease-in-out 0.1s;
}

#profileCard:hover .profile-pic img {
  transform: scale(1.5);
  transition: all 0.5s ease-in-out 0.5s;
}

/* Responsive Artist Profile Cards */
@media (max-width: 1200px) {
  .row-cols-lg-5 > .col-a {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 992px) {
  .row-cols-lg-5 > .col-a {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  
  #profileCard {
    width: 200px;
    height: 270px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .row-cols-lg-5 > .col-a {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  #profileCard {
    width: 220px;
    height: 290px;
  }
}

@media (max-width: 576px) {
  .row-cols-lg-5 > .col-a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  #profileCard {
    width: 240px;
    height: 310px;
  }
  
  #profileCard .bottom .content .name {
    font-size: 1.3rem;
  }
  
  #profileCard .bottom .content .position {
    font-size: 0.9rem;
  }
  
  #profileCard .bottom .content .about-me {
    font-size: 0.9rem;
  }
}

/* Mentors Section Styles */
.mentors-section {
  padding: 2rem 0 5rem;
  position: relative;
  z-index: 1;
}

/* Add overlay to mentors section */
.mentors-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.mentor-col {
  margin-top: 2rem;
  padding: 0 15px;
}

.mentor-card {
  position: relative;
  /* background-color: rgba(59, 4, 57, 0.7); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mentor-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

/* Border animation effect */
.mentor-card::before {
  content: "";
  position: absolute;
  width: 80px;
  /* background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(255, 255, 255)); */
  height: 230%;
  /* animation: rotBGimg 15s linear infinite; */
  transition: all 0.2s linear;
}

.mentor-card::after {
  content: "";
  position: absolute;
  background: rgba(59, 4, 57, 0.7);
  inset: 5px;
  border-radius: 15px;
}

.mentor-image {
  position: relative;
  width: 100%;
  height: 200px;
  z-index: 1;
}

.mentor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-info {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.mentor-card h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
}

.mentor-card h4 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
}

.mentor-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .row-cols-lg-4 > .mentor-col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 767.98px) {
  .row-cols-md-2 > .mentor-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .mentor-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .mentor-image {
    height: 180px;
  }

  .mentor-card h3 {
    font-size: 1.5rem;
  }

  .mentor-card h4 {
    font-size: 1rem;
  }
}

/* Music Videos Gallery Styles */
.music-videos-gallery {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

/* Add overlay to music videos gallery */
.music-videos-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.video-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.video-meta span {
  display: flex;
  align-items: center;
}

.video-meta i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

/* Services Section Styles */
.services-section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

/* Add overlay to services section */
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  margin-bottom: 2rem;
  height: 100%;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
  z-index: -1;
}

.service-card:hover::before {
  height: 100%;
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
  background-color: var(--secondary-color);
}

.service-info {
  padding: 2rem;
  text-align: center;
}

.service-info h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.service-gallery {
  margin-top: 2rem;
}

.service-gallery .row {
  margin-bottom: 1.5rem;
}

.service-gallery img {
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

#nw-gallery {
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

/* Add overlay to gallery section */
#nw-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.gal-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  padding-top: 20px;
  padding-right: 80px;
  padding-left: 80px;
  padding-bottom: 50px;
}

.card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  height: 150px;
  width: 150px;
  flex: 1;
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.card:hover {
  flex: 2;
  background-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
    height: auto;
  }
}

/* Responsive nw-gallery */
@media (max-width: 992px) {
  .gal-container {
    padding-right: 40px;
    padding-left: 40px;
  }
  
  .card {
    height: 140px;
    width: 140px;
  }
}

@media (max-width: 768px) {
  .gal-container {
    padding-right: 20px;
    padding-left: 20px;
    gap: 8px;
  }
  
  .card {
    height: 120px;
    width: 120px;
    min-width: 120px;
  }
}

@media (max-width: 576px) {
  .gal-container {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }
  
  .card {
    width: 100%;
    height: 180px;
    max-width: 300px;
    margin-bottom: 10px;
  }
  
  .card:hover {
    flex: 1;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 2.5rem auto 8rem;
  position: relative;
  z-index: 1;
  margin-top: 50px;
  margin-bottom: 100px;
}

.contact-info {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 40px;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: white;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: white;
  color: #3b0439;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(240, 108, 7, 0.25);
  background-color: rgba(255, 255, 255, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  background-color: white;
  color: #3b0439;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  width: 100%;
}

.submit-btn:hover {
  background-color: black;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.social-links {
  margin-top: 2rem;
}

.social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  margin-right: 1rem;
  color: white;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: black;
  color: white;
  transform: translateY(-5px);
}

/* Footer Styles */
.glass-footer {
  background: rgba(1, 1, 1, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 1rem 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  transition: var(--transition);
}

.footer-logo {
  height: 50px;
  margin-bottom: 0.3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.2rem;
}

.footer-links a {
  color: #ddd;
  transition: var(--transition);
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.social-icons {
  margin-top: 0;
}

.social-icons a {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 0.4rem;
  color: white;
  transition: var(--transition);
  font-size: 14px;
}

.social-icons a:hover {
  background-color: black;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.5rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Centering elements for smaller screens */
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .design-by,
  .copyright,
  .social-icons {
    width: 100%;
    margin-bottom: 0.3rem;
  }

  .social-icons a {
    margin: 0 5px;
  }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(1, 1, 1, 0.9);
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .slogan {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-logo {
    max-width: 200px;
  }

  .slogan {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  body {
    padding-bottom: 300px; /* Adjust based on footer height on mobile */
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}

/* Creative additions */
.creative-bg {
  position: relative;
  overflow: hidden;
}

.creative-bg2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 50px;
}

.creative-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 108, 7, 0.05) 0%, transparent 50%);
  z-index: -1;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Fixed hero content */
.fixed-hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

/* Add dropdown hover functionality styling */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Contact Section - Already has blur and overlay applied */
.nw-contact {
  position: relative;
  color: white;
  text-align: center;
  padding: 80px 0;
  overflow: hidden;
}

/* Keep the existing contact section styles as they already have the effect you want */
.nw-section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.nw-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Sound Wave Animation */
.nw-sound-wave {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  height: 20px;
}

/* Individual Bars */
.nw-sound-wave span {
  display: inline-block;
  width: 6px;
  height: 10px;
  background: #ffffff;
  animation: waveMotion 1s infinite ease-in-out alternate;
  border-radius: 3px;
}

/* Animation Timing for Each Bar */
.nw-sound-wave span:nth-child(1) {
  animation-delay: 0s;
}
.nw-sound-wave span:nth-child(2) {
  animation-delay: 0.2s;
}
.nw-sound-wave span:nth-child(3) {
  animation-delay: 0.4s;
}
.nw-sound-wave span:nth-child(4) {
  animation-delay: 0.6s;
}
.nw-sound-wave span:nth-child(5) {
  animation-delay: 0.8s;
}

/* Subtitle Text */
.nw-section-title p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.6;
  font-weight: 300;
}

/* Contact Info */
.nw-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  margin-bottom: 15px;
}

.nw-info-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nw-info-item i {
  color: white;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50%;
}

.nw-info-item h3,
.nw-info-item p {
  color: white;
  text-align: start;
}

/* Social Media Icons */
.nw-social-icons {
  margin-top: 20px;
  text-align: center;
}

.social-icon {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  padding: 12px;
  margin: 0 8px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

/* Contact Form */
.nw-php-email-form {
  display: flex;
  flex-direction: column;
}

.nw-php-email-form input[type="text"],
.nw-php-email-form input[type="email"],
.nw-php-email-form textarea {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 15px;
  font-size: 14px;
  width: 100%;
}

.nw-php-email-form input::placeholder,
.nw-php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.nw-php-email-form textarea {
  resize: none;
}

.nw-php-email-form button[type="submit"] {
  color: white;
  background: rgba(255, 255, 255, 0.3);
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.nw-php-email-form button[type="submit"]:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Alignment & Responsiveness */
.nw-contact .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.nw-contact .col-lg-4,
.nw-contact .col-lg-8 {
  padding: 15px;
}

@media (min-width: 768px) {
  .nw-contact .col-lg-4,
  .nw-contact .col-lg-8 {
    max-width: 48%;
  }
}

/* Responsive Contact Section */
@media (max-width: 992px) {
  .contact-info, .contact-form {
    padding: 2rem;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    margin-right: 0.8rem;
  }
}

@media (max-width: 768px) {
  .contact-info {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-item {
    margin-bottom: 1.2rem;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .contact-text h4 {
    font-size: 1rem;
  }
  
  .social-links {
    text-align: center;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 0.4rem;
  }
}

@media (max-width: 576px) {
  .contact-info, .contact-form {
    padding: 1.2rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .submit-btn {
    padding: 0.6rem 1.5rem;
  }
}

/* Video modal styling */
.modal-content {
  background-color: rgba(1, 1, 1, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .modal-title {
  color: white;
}

.modal-header .btn-close {
  color: white;
  filter: invert(1) brightness(200%);
}

.modal-body {
  padding: 1rem;
}

/* Responsive iframe container */
.ratio {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mission & Vision section styling for services page */
.mission-vision-section {
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.mission-vision-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.mission-card, .vision-card {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-card h2, .vision-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
  text-align: center;
}

.mission-card p, .vision-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 768px) {
  .mission-vision-container {
    flex-direction: column;
  }
  
  .mission-card, .vision-card {
    width: 100%;
    min-width: auto;
    margin-bottom: 20px;
  }
}
/* Add these styles to your existing CSS file */

/* Navbar active link indicator */
.navbar-dark .navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.5rem 0.8rem;
  position: relative;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 80%;
}


        /* Additional styles for mission vision section */
        .mission-vision-section {
            padding: 2rem 0;
            position: relative;
            z-index: 1;
        }
        
        .mission-vision-container {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .mission-card, .vision-card {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            padding: 2rem;
            border-radius: 1rem;
            /* Remove border */
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .mission-card h2, .vision-card h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: white;
            text-align: center;
        }
        
        .mission-card p, .vision-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            text-align: justify;
        }
        
        @media (max-width: 768px) {
            .mission-vision-container {
                flex-direction: column;
            }
            
            .mission-card, .vision-card {
                width: 100%;
                min-width: auto;
                margin-bottom: 20px;
            }
        }


        /* Add these styles to your existing CSS file */

/* Explore the Magic Section */
.explore-magic-section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

/* Add overlay to explore magic section */
.explore-magic-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.explore-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 2rem;
}

.main-image-container {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image-container:hover .main-image {
  transform: scale(1.05);
}

.audio-notes-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.audio-note {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-note:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.audio-thumbnail {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
}

.audio-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.audio-note:hover .audio-thumbnail img {
  transform: scale(1.1);
}

.audio-content {
  padding: 15px;
  flex-grow: 1;
}

.audio-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: white;
}

.audio-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

/* Audio Player Styles */
.audio-player {
  width: 100%;
}

.player-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.play-pause-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #720cbe, #ff6d00);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 3px 10px rgba(114, 12, 190, 0.3);
}

.play-pause-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(114, 12, 190, 0.5);
}

.progress-container {
  flex-grow: 1;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #720cbe, #ff6d00);
  width: 0;
  border-radius: 3px;
  transition: width 0.1s linear;
}

.time-display {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 5px;
  white-space: nowrap;
}

.volume-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.volume-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.volume-slider {
  width: 80px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: none;
}

.volume-slider.active {
  display: block;
}

.volume-progress {
  height: 100%;
  background: linear-gradient(90deg, #720cbe, #ff6d00);
  width: 70%;
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .explore-container {
      flex-direction: column;
      align-items: center;
  }
  
  .main-image-container {
      max-width: 100%;
  }
  
  .audio-notes-container {
      width: 100%;
  }
}

@media (max-width: 768px) {
  .audio-note {
      flex-direction: column;
      max-width: 400px;
      margin: 0 auto;
  }
  
  .audio-thumbnail {
      width: 100%;
      height: 180px;
  }
  
  .player-controls {
      flex-wrap: wrap;
  }
  
  .progress-container {
      order: 3;
      width: 100%;
      margin-top: 10px;
  }
  
  .time-display {
      order: 4;
      width: 100%;
      justify-content: space-between;
      margin-top: 5px;
  }
}

@media (max-width: 576px) {
  .audio-note {
      max-width: 100%;
  }
  
  .audio-thumbnail {
      height: 150px;
  }
  
  .audio-content h3 {
      font-size: 1.1rem;
  }
  
  .audio-content p {
      font-size: 0.85rem;
  }
}