      body,
      html {
        font-family: "Inter", sans-serif;
      }

      #nav-part2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
      }

      #nav-part2 h4 {
        padding: 9px 16px;
        /* border: 2px solid whitesmoke; */
        border-radius: 50px;
        font-weight: 700;
        color: white;
        transition: all ease 0.4s;
        position: relative;
        font-size: 15px;
        overflow: hidden;
        margin-right: 10px;
      }

      #mobile-menu h4 {
        padding: 9px 16px;
        border: 1px solid white;
        border-radius: 20px;
        font-weight: 800;
        color: white;
        transition: all ease 0.4s;
        position: relative;
        font-size: 12px;
        overflow: hidden;
        margin-right: 20px;
      }

      #nav-part2 h4:last-child {
        margin-right: 0;
      }

      #nav-part2 h4::after,
      #mobile-menu h4::after {
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: black;
        left: 0;
        bottom: -100%;
        border-radius: 50%;
        transition: all ease 0.4s;
      }

      #nav-part2 h4:hover::after,
      #mobile-menu h4:hover::after {
        bottom: 0;
        border-radius: 0;
      }

      #nav-part2 h4 a,
      #mobile-menu h4 a {
        color: white;
        text-decoration: none;
        position: relative;
        z-index: 9;
      }

      #nav-part2 h4:hover a,
      #mobile-menu h4:hover a {
        color: #fff;
      }

      #mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        height: 36vh;
        background: linear-gradient(to right, #ff69b4, #ff9c9c, #feb79b);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        backdrop-filter: blur(
          10px
        ); /* Apply blur effect to create glassy look */
        transition: right 0.5s ease-in-out;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* padding: 2rem; */
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
      }

      #mobile-menu.open {
        right: 0;
      }

      #mobile-menu h4 {
        width: 100%;
        max-width: 200px;
        text-align: center;
        
      }
      @media (max-width: 768px){
        #mobile-menu h4 {
          width: 100%;
          max-width: 130px;
          text-align: center;
          margin-right: 40px;

        }
      }

      #menu-button {
        display: none;
        z-index: 1001;
        color: #fff;
      }

      @media (max-width: 768px) {
        #nav-part2 {
          display: none;
        }

        #menu-button {
          display: block;
          position: fixed;
          top: 0.5rem;
          right: 1rem;
          background: none;
          border: none;
          font-size: 24px;
          color: #ffffff;
        }
      }

      #text {
        font-family: Sugar Magic, sans-serif;
      }

      .glow-on-hover {
        width: 290px;
        height: 60px;
        border: none;
        outline: none;
        color: #ffffff;
        background: linear-gradient(to right, #ff7d49, #fc4949, #fc389a);
        cursor: pointer;
        position: relative;
        z-index: 0;
        border-radius: 9999px;
        font-weight: bold;
        font-size: 1.25rem;
        transition: color 0.3s ease;
      }

      .glow-on-hover:before {
        content: "";
        background: linear-gradient(
          45deg,
          #ff0000,
          #ff7300,
          #fffb00,
          #48ff00,
          #00ffd5,
          #002bff,
          #7a00ff,
          #ff00c8,
          #ff0000
        );
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(10px);
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        border-radius: 9999px;
      }

      .glow-on-hover:active {
        color: #ffffff;
      }

      .glow-on-hover:active:after {
        background: transparent;
      }

      .glow-on-hover:hover:before {
        opacity: 1;
      }

      .glow-on-hover:after {
        z-index: -1;
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        color: #ffffff;
        background: linear-gradient(to right, #ff7d49, #fc4949, #fc389a);
        left: 0;
        top: 0;
        border-radius: 9999px;
      }

      @keyframes glowing {
        0% {
          background-position: 0 0;
        }
        50% {
          background-position: 400% 0;
        }
        100% {
          background-position: 0 0;
        }
      }

      .brand-row {
        display: flex;
        overflow: hidden;
        width: 100%;
      }
      .brand-row-inner {
        display: flex;
      }
      .brand-item {
        flex: 0 0 120px;
        height: 120px;
        margin-right: 1rem;
      }
      @media (min-width: 640px) {
        .brand-item {
          flex: 0 0 150px;
          height: 150px;
        }
      }

      .scroll-container {
        position: relative;
        overflow: hidden;
      }

      .shadow-overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        pointer-events: none;
        z-index: 10;
      }

      .shadow-left {
        left: 0;
        background: linear-gradient(
          to right,
          rgba(246, 211, 101, 1),
          rgba(246, 211, 101, 0)
        );
      }

      .shadow-right {
        right: 0;
        background: linear-gradient(
          to left,
          rgba(253, 160, 133, 1),
          rgba(253, 160, 133, 0)
        );
      }

      .button-3d {
        transition: all 0.1s ease-in-out;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      }
      .button-3d:active {
        transform: translateY(2px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      }

      .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 1s ease-out;
      }

      .accordion-content.active {
        max-height: 1000px; /* Adjust this value based on your content */
      }

      .section-content {
        opacity: 0;
        transform: translateY(50px);
      }


      

      .template-container {
        overflow-x: hidden;
        position: relative;
        width: 100%;
      }
      .template-wrapper {
        display: flex;
        /* transition: transform 0.5s ease; */
      }
      .template-slide {
        flex: 0 0 200px;
        /* width: 200px;
            height: 200px; */
        margin-right: 1rem;
      }
      .template-slide img {
        width: 200px;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      }
      @media (max-width: 768px) {
        .template-slide img {
          width: 180px;
          height: 360px;
        }
      }
      @keyframes swap {
        0%,
        50% {
          opacity: 1;
        }
        50.01%,
        100% {
          opacity: 0;
        }
      }
      
      /* Apply the new font to the h1 */
 #h1 {
    font-family: 'Dancing Script', cursive;
  }

  .gradient-bg {
    background: linear-gradient(-45deg, #fc5ead, #ff8a8a, #fc946b);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.image-glow {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.552));
}

.slide-content {
    transform-style: preserve-3d;
    perspective: 1000px;
}

#slider-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    z-index: 1;
}
