 /* Custom styles to match the current design */
 .navbar {
   background-color: rgba(186, 186, 186, 0.14);
   backdrop-filter: blur(8px);
   border-radius: 50px;
 }

 .btn-primary {
   background-image: linear-gradient(to right, #550FF8, #B401D6);
   color: white;
   border-radius: 9999px;
   border: 1px solid rgba(0, 0, 0, 1);
 }

 .mobile-menu {
   display: none;
 }

 .mobile-menu.active {
   display: block;
 }

 .dropdown-content {
   position: absolute;
   margin-top: 0.75rem;
   z-index: 10;
   background-color: black;
   padding: 0.5rem;
   border-radius: 0.5rem;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   width: 13rem;
   color: white;
 }

 .dropdown-item {
   padding: 0.5rem 1rem;
   display: block;
 }

 .dropdown-submenu {
   display: none;
   padding-left: 1rem;
 }

 .dropdown-submenu.active {
   display: block;
 }


 /* Galaxy section responsive styles */
 .galaxy-section {
   position: relative;
   padding-top: 60px;
   padding-bottom: 100px;
 }

 /* Curve image positioning */
 .wave-img {
   position: absolute;
   top: 200px;
   /* Ensure it connects properly */
   left: 0;
   width: 100%;
   z-index: 10;
 }

 /* Footer links specific styles */
 .footer-container {
   position: relative;
   z-index: 20;
   background-color: #110B16;
 }

 /* faq start here */
 .gradient-border {
   position: relative;
   border: 1px solid #d1d5db;
   /* base-300 */
   border-radius: 0.5rem;
   /* match Tailwind rounded-lg if used */
   transition: border 0.3s ease;
 }

 .gradient-border:focus-within {
   border-color: transparent;
   /* Remove default border on focus */
 }

 .gradient-border::before {
   content: "";
   position: absolute;
   inset: 0;
   padding: 1px;
   /* controls border thickness */
   border-radius: 0.5rem;
   background: linear-gradient(to right, #B401D6, #550FF8);
   -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   pointer-events: none;
   z-index: 1;
   display: none;
 }

 .gradient-border:focus-within::before {
   display: block;
 }

 /* faq end here */

 /* domain start here */
 .gradient-border-only {
   position: relative;
 }

 .gradient-border-only::before {
   content: "";
   position: absolute;
   inset: 0;
   padding: 1px;
   /* Border thickness */
   background: linear-gradient(to right, #B401D6, #550FF8);
   -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   pointer-events: none;
   border-radius: 0.5rem;
   /* Match collapse box rounding */
 }

 /* domain end here */

 /* client say  */
 .gradient-border-client {
   position: relative;
 }

 .gradient-border-client::before {
   content: "";
   position: absolute;
   inset: 0;
   padding: 1px;
   background: linear-gradient(to right, #B401D6, #550FF8);
   -webkit-mask:
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
   -webkit-mask-composite: xor;
   mask-composite: exclude;
   pointer-events: none;
   border-radius: 0.5rem;
   display: none;
   /* default: hidden */
   z-index: 1;
 }

 /* ✅ Show border on group hover */
 .group:hover .gradient-border-client::before {
   display: block;
 }


 /* Responsive adjustments */
 @media (max-width: 1023px) {
   .galaxy-section {
     padding-bottom: 80px;
   }

   .galaxy-section h1 {
     font-size: 32px;
     line-height: 1.3;
   }
 }

 @media (max-width: 767px) {
   .galaxy-section {
     padding-bottom: 60px;
   }

   .galaxy-section h1 {
     font-size: 28px;
   }
 }

 /* navbar img overlap */
 @media (min-width: 1100px) and (max-width: 1350px) {
   .hide-between {
     display: none !important;
   }
 }


 /* sweeper js css */

 /* Custom Swiper Navigation Buttons */
 .swiper-button-next,
 .swiper-button-prev {
   width: 35px;
   height: 35px;
   background: linear-gradient(to right, #B401D6, #550FF8);
   border-radius: 50%;
   color: white;
 }

 .swiper-button-next:after,
 .swiper-button-prev:after {
   font-size: 15px;
   font-weight: bold;

 }

 /* Make cards visible even when not in center */
 .swiper-slide {
   opacity: 0.75;
   transition: opacity 0.3s;
 }

 .swiper-slide-active {
   opacity: 1;
 }
