
      body {
        font-family: "Poppins", sans-serif;
        background: #121212; /* Very Dark Gray */
        color: #e0e0e0; /* Light Gray */
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Hide horizontal scrollbar */
        scroll-snap-type: y mandatory; /* Enable scroll snapping */
        scroll-behavior: smooth; /* Smooth scrolling */
      }

      header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 0.2rem;
        background-color: rgba(255, 255, 255, 0.219);
        backdrop-filter: blur(5px);
        z-index: 1000;
    }
    
    nav ul {
        display: flex;
        justify-content: right;
        list-style-type: none;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    nav ul li a {
        color: var(--accent-color);
        text-decoration: none;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    nav ul li a:hover {
        opacity: 0.7;
        text-shadow: 0 0 5px var(--accent-color);
    }

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

/* Container Styling */
.modern-heading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
  position: relative;
  z-index: 1;
  background-color: #1e1e1e00; /* Dark background to make colors pop */
}

/* Heading Styling */
.modern-heading {
  font-size: 4rem;
  font-weight: 300;
  background: linear-gradient(to right, #00bbf9, #f15bb5);
  -webkit-background-clip: text;

  text-transform: uppercase;
  letter-spacing: 15px;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
  text-shadow: 2px 2px 4px rgba(46, 42, 42, 0.991); /* Soft shadow for visibility */
}

/* Top and Bottom Underline */
.modern-heading::before,
.modern-heading::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #00bbf9, #f15bb5); /* Gradient for underline */
  transition: transform 0.5s ease;
}

.modern-heading::before {
  top: 0;
  left: -100%;
}

.modern-heading::after {
  bottom: 0;
  right: -100%;
}

.modern-heading:hover::before {
  transform: translateX(100%);
}

.modern-heading:hover::after {
  transform: translateX(-100%);
}

/* Text Span Styling */
.modern-heading span {
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modern-heading:hover span {
  opacity: 1;
  transform: translateY(-5px);
}

/* Responsive Font Size */
@media (max-width: 768px) {
  .modern-heading {
    font-size: 3rem;
    letter-spacing: 10px;
  }
}






      .svg-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1; /* Ensure it is behind other content */
        overflow: hidden;
        background-color: #333333; /* Change this to your desired color */
      }

      .section {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        scroll-snap-align: start;
        position: relative;
        text-align: center;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        transition: background 1.5s ease-in-out;
      }

      .section  .button {
        background-color: #333333;
        color: var(--text-color);
        border: 2px solid #ff4081;
        padding: 15px 30px;
        font-size: 1rem;
        cursor: pointer;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
        margin-top: 1rem;
        position: relative;
        width: 100px;
        overflow: hidden;
    }

    .section .button:hover {
        background-color: var(--accent-color-2);
        color: var(--bg-color);
        box-shadow: 0 0 20px var(--accent-color-2);
    }

    .section .button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
        );
        transition: all 0.6s;
    }

    .section   .button:hover::before {
        left: 100%;
    }



    @media (max-width: 768px) {
        .content {
            padding: 2rem;
            margin: 1rem;
        }}

      .section .button {
        background-color: #333333; /* Dark Gray */
        color: #ffffff; /* White */
        border: 2px solid #ff4081; /* Pink */
        padding: 15px 30px;
        font-size: 1.2em;
        cursor: pointer;
        border-radius: 5px;
        text-decoration: none;
        margin: auto;
      
        transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
      }
a.button {
    margin: 40px;

}

      .section .button::after {
        content: "\f001";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 10px;
        opacity: 0;
        transition: opacity 0.3s, transform 0.3s;
        transform: translateX(-10px);
      }

      .section .button:hover {
        background-color: #ff4081; /* Pink */
        color: #ffffff; /* White */
        box-shadow: 0 0 20px #ff4081; /* Pink */
      }

      .section .button:hover::after {
        opacity: 1;
        transform: translateX(0);
      }

      .section2,
      .section3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .section2 h2,
      .section3 h2 {
        font-size: 2.5em; /* Increased size for standout */
        font-weight: 600; /* Make it bolder */
        margin: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        background: linear-gradient(
          to right,
          #e0ffff,
          /* Light Cyan */ #32cd32,
          /* Lime Green */ #ffd700,
          /* Goldenrod */ #e0ffff /* Repeat Light Cyan for a full gradient */
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke: 1px #ff4081; /* Pink text stroke */
      }

      .scroll-indicator {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5em;
        color: #81d4fa; /* Light Blue */
        animation: bounce 1.5s infinite;
        z-index: 1000;
      }

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

      .music-note {
        position: absolute;
        font-size: 24px;
        color: #ff4081; /* Pink */
        animation: flyUp 1s ease-out forwards;
      }

      @keyframes flyUp {
        from {
          opacity: 1;
          transform: translateY(0);
        }
        to {
          opacity: 0;
          transform: translateY(-100px);
        }
      }

      .fade-up {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      }

      .section-animation {
        transform: translateZ(0) scale(1);
        transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out;
        opacity: 1;
      }

      .section-animation.hidden {
        transform: translateZ(-200px) scale(0.8);
        opacity: 0;
      }

