@import url("https://fonts.googleapis.com/css?family=IBM%20Plex%20Sans:500|IBM%20Plex%20Sans:300");

:root {
  --m: 4rem;
}
html, body {
  overflow-x: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Questrial, sans-serif;
}
body {
    background-color: #0c0c0c;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('img/cursor.png'), default;

}
body {
    font-family: 'Questrial', sans-serif; /* Use Questrial font */
    background-color: #101010;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scroll */
        cursor: none !important; /* Force hide default cursor */


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
        cursor: none !important; /* Ensure no elements override the cursor */

}
/* Loader Background */
#orion-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0f; /* Dark grey */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Logo Container */
.orion-loader-logo {
  position: relative;
  width: 120px;
  height: 120px;
  max-width: 80vw;
  overflow: hidden;
}

/* Logo Image */
.orion-loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.7; /* Light grey */
  pointer-events: none;
  user-select: none;
}



/* Hide Loader After Page Load */
#orion-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Main Content Hidden During Load */
body.loading #main-content {
  opacity: 0;
  pointer-events: none;
}

body.loaded #main-content {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.8s ease;
}
 .custom-cursor {
      position: fixed;
      width: 24px;
      height: 24px;
      pointer-events: none;
      z-index: 1000;
      transform: translate(-10%, -10%); /* Adjust to align the pointer tip */
      display: block; /* Ensure cursor is visible by default */
    }
    .custom-cursor img {
      width: 100%;
      height: 100%;
      display: block; /* Ensure the image is visible */
    }
    .custom-cursor.hidden {
      display: none;
    }
    /* Hide cursor on mobile devices (screen width <= 768px) */
    @media (max-width: 768px) {
      .custom-cursor {
        display: none !important;
      }
      html, body, * {
        cursor: auto !important; /* Restore default cursor on mobile */
      }
    }
        /* Custom Scrollbar Styling for Webkit browsers */
        html::-webkit-scrollbar {
            width: 17px;
        }

        /* Scrollbar Track - Changed to dark gray */
        html::-webkit-scrollbar-track {
            background: #1a1a1a;
            border-radius: 6px;
        }

        /* Scrollbar Thumb */
        html::-webkit-scrollbar-thumb {
            background: #a924cb;
            border-radius: 10px;
            border: 5px solid #343434; /* Match border to track */
        }

        /* Scrollbar Thumb on Hover */
        html::-webkit-scrollbar-thumb:hover {
            background: #c700f5;
        }

        /* Optional: Scrollbar Button (arrows) */
        html::-webkit-scrollbar-button {
            display: none;
        }

        /* For Firefox compatibility */
        html {
            scrollbar-width: thin;
            scrollbar-color: #a924cb #343434; /* Updated dark track color */
        }

/* Navbar Styles */
.navbar {
   display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(28, 28, 28, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 15px 30px;
  border-radius: 50px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 1000;
  box-sizing: border-box;
}
/* Glow layer */
.navbar::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 30px;
  width: calc(100% - 60px);
  height: 3px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(191, 0, 255, 0.3) 15%,
    rgba(160, 46, 255, 0.4) 50%,
    rgba(199, 0, 255, 0.3) 85%,
    transparent 100%
  );
  filter: blur(4px);
  z-index: -1;
}

/* Main line */
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: calc(100% - 60px);
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgb(123, 82, 218) 30%,
    rgb(138, 92, 245) 50%,
    rgb(123, 82, 217) 70%,
    transparent 100%
  );
  border-radius: 1px;
}.navbar.scrolled {
    background: rgba(9, 9, 9, 0.6);
}

.logo img {
    height: 45px;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-60%); /* Adjusted to move 2% to the left */
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.nav-links a:hover {
    color: rgb(223, 125, 255);
}

.arrow {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2a2a2a;
    min-width: 250px;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}

.dropdown-content a span {
    font-size: 12px;
    color: #aaa;
    font-weight: 400;
}

.dropdown-content a:hover {
    background-color: #3a3a3a;
}

.nav-actions {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.nav-actions a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.nav-actions .book-demo {
    background-color: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.nav-actions .book-demo:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.nav-actions .book-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transition: 0.5s;
}

.nav-actions .book-demo:hover::before {
    left: 100%;
    animation: shine 1s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    position: absolute;
    left: 20px;
    z-index: 1001;
    background: rgba(28, 28, 28, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 5px;
    border-radius: 5px;
}

.hamburger-grid {
    display: flex;
    flex-direction: column;
    width: 20px;
    height: 14px;
    gap: 4px;
}

.hamburger-grid span {
    width: 100%;
    height: 2px;
    background-color: #d073ec;
    border-radius: 1px;
}

.close-icon {
    display: none;
    font-size: 24px;
    color: #bc22fc;
}

.hamburger.active .hamburger-grid {
    display: none;
}

.hamburger.active .close-icon {
    display: block;
}

.nav-container.active {
    top: 0;
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll link styling */
.smooth-scroll {
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links .smooth-scroll {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}

.nav-links .smooth-scroll:hover {
    color: #cd67f8;
}

/* Responsive Design for Navbar */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        width: 95%;
        top: 10px;
        justify-content: space-between;
    }

    .hamburger {
        display: block;
    }

    .logo {
        margin: 0 auto;
    }

    .nav-container {
        display: none;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(28, 28, 28, 0.8);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        flex-direction: column;
        padding: 80px 20px 20px;
        box-sizing: border-box;
        z-index: 999;
        transition: top 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
        opacity: 0;
        transform: translateY(-20px);
        border-radius: 20px;
    }

    .nav-container.active {
        display: block;
        top: 0;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        align-items: center;
        padding-left: 0;
        position: static;
        transform: none;
    }

    .nav-links a {
        font-size: 20px;
    }

    .nav-links .dropdown .dropbtn .arrow {
        display: inline-block;
    }

    .dropdown-content {
        position: static;
        background-color: transparent;
        min-width: 100%;
        width: 100%;
        text-align: center;
        border-radius: 0;
        padding: 0;
        margin-top: 10px;
        margin-left: 0;
    }

    .dropdown-content a {
        align-items: center;
        padding: 10px 0;
    }

    .dropdown-content a span {
        display: block;
        font-size: 14px;
        margin-top: 5px;
        color: #aaa;
    }

    .nav-actions {
        position: absolute;
        bottom: 40px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 20px;
        gap: 0;
    }

    .nav-actions a {
        font-size: 16px;
    }

    .nav-actions .book-demo {
        background-color: #fff;
        color: #000;
        padding: 10px 20px;
        border-radius: 50px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
        width: 90%;
    }

    .nav-links {
        gap: 25px;
        padding-left: 0;
    }

    .nav-links a {
        font-size: 18px;
    }

    .dropdown-content {
        margin-left: 0;
    }

    .dropdown-content a span {
        font-size: 12px;
    }

    .nav-actions a {
        font-size: 14px;
    }
}
.services {
  position: relative;
  background: radial-gradient(ellipse at center top, rgb(10, 10, 10) 0%, transparent 70%);
  text-align: center;
  overflow: hidden;
  padding: 0 0 40px; /* Adjusted padding */
}

.services-background {
  position: relative;
  z-index: 1;

}

#services-particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    height: 250px; /* Fixed height to ensure the gradient is fully visible */
  z-index: 0;
      background: radial-gradient(ellipse at center top, rgb(31, 24, 38) 0%, transparent 60%); /* Elliptical gradient */

}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.separator {
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.services-headline {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #ffffff, #a2a1a1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* === CREATIVE SERVICE CARD STYLES === */
.service-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease forwards;
  transition: transform 0.4s ease;
  z-index: 1;
  min-height: 400px;
  background-color: #1c1c26;
  border: 1px solid transparent; /* Prepare for gradient border */
}

.service-card::before, .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, filter 0.5s ease;
    pointer-events: none;
}

/* Animated Gradient Border */
.service-card::before {
    --angle: 0deg;
    border-radius: 16px;
    background: conic-gradient(from var(--angle), transparent 0%, #8b5cf6, transparent 25%);
    opacity: 0;
    animation: 6s rotate linear infinite;
}

@keyframes rotate {
	to {
		--angle: 360deg;
	}
}

/* Darkening overlay */
.service-card::after {
    background: rgba(0,0,0,0.4);
    opacity: 0;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

/* Staggered animation for each card */
.service-card:nth-child(1) { animation-delay: 0.4s; }
.service-card:nth-child(2) { animation-delay: 0.6s; }
.service-card:nth-child(3) { animation-delay: 0.8s; }
.service-card:nth-child(4) { animation-delay: 1.0s; }
.service-card:nth-child(5) { animation-delay: 1.2s; }
.service-card:nth-child(6) { animation-delay: 1.4s; }
.service-card:nth-child(7) { animation-delay: 1.6s; }
.service-card:nth-child(8) { animation-delay: 1.8s; }
.service-card:nth-child(9) { animation-delay: 2.0s; }

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: blur(2px) brightness(0.8);
}

.service-image h3 {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  padding: 8px 12px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  z-index: 3;
  transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1), left 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-image h3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
}

.service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  text-align: left;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}

.service-card:hover .service-content {
    transform: translateY(0);
    opacity: 1;
}

.service-content p {
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #8b5cf6;
  font-size: 1rem;
}

.rating-text {
  font-size: 0.8rem;
  color: #b0b0c0;
}

.service-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(139, 92, 246, 0.2);
  color: #e0e0e0;
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.service-button span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-button:hover {
  background: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.service-button:hover span {
  transform: translateX(5px);
}
/* === END OF CREATIVE STYLES === */


/* Scroll Animations */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 100%;
  }

  .service-image h3 {
    font-size: 1rem;
  }

  .service-content p {
    font-size: 0.85rem;
  }
}
.faq-heading {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right, #e5e5e5, #808080);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
animation:
    fadeInUp 0.8s ease forwards, /* Initial animation */
    float 3s ease-in-out infinite 0.8s; /* Floating animation starts after 0.8s */
}


/* Fade In Up Animation (assumed to be defined elsewhere, included for clarity) */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-10px); /* Move up 10px at the midpoint */
  }
}
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.8); /* Slightly translucent white */
    border-radius: 50%;
    opacity: 0;
}

@keyframes moveParticle {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(50vw, 50vh); /* Move diagonally across the navbar */
        opacity: 0;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

  #orion-footer {
            width: 100%;
            background-color: #030303;
            position: relative;
            isolation: isolate;
            overflow: hidden;
            cursor: default !important;
        }

        #orion-footer a,
        #orion-footer button {
            cursor: pointer !important;
        }

        #orion-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 150px;
            background: radial-gradient(ellipse at center top, rgba(126, 1, 198, 0.15) 0%, transparent 60%);
            z-index: -1;
            pointer-events: none;
        }

        #orion-footer .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        #orion-footer .contact-card {
            background-color: rgba(24, 24, 27, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(55, 65, 81, 0.4);
            position: relative;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        #orion-footer .spotlight-card {
            background: transparent;
        }

        #orion-footer .spotlight-card::before,
        #orion-footer .spotlight-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: inherit;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        #orion-footer .spotlight-card::before {
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 2rem 2rem;
            z-index: 0;
            -webkit-mask-image: radial-gradient(circle 200px at var(--x) var(--y), white, transparent);
            mask-image: radial-gradient(circle 200px at var(--x) var(--y), white, transparent);
        }

        #orion-footer .spotlight-card::after {
            background: radial-gradient(circle 200px at var(--x) var(--y), rgba(224, 190, 255, 0.2), transparent);
            opacity: 0;
        }

        #orion-footer .spotlight-card:hover::after {
            opacity: 1;
        }

        #orion-footer .contact-card > * {
            position: relative;
            z-index: 2;
        }

        /* ============================================= */
        /* SHARED BUTTON STYLES (UPDATED)       */
        /* ============================================= */
        .btn-glass-hover {
            position: relative;
            overflow: hidden;
            background-color: rgba(255, 255, 255, 0.05); /* Frosted glass background */
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
            transition: background-color 0.3s ease, border-color 0.3s ease;
            color: #E5E7EB; /* Default text color (Tailwind gray-200) */
        }

        /* Span inside the button for text styling */
        .btn-glass-hover span {
            position: relative;
            z-index: 2; /* Ensure text is above the glow */
            transition: color 0.4s ease;
        }

        .btn-glass-hover:hover {
            background-color: rgba(255, 255, 255, 0.1); /* Slightly brighter on hover */
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Gradient text on hover */
        .btn-glass-hover:hover span {
            background: linear-gradient(180deg, #ffffff, #d1d5db); /* White to light gray gradient */
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* The elliptical glow from the bottom */
        .btn-glass-hover::after {
            content: '';
            position: absolute;
            bottom: -75%; /* Start further below the button */
            left: 50%;
            transform: translateX(-50%);
            width: 200%; /* Make it wide */
            height: 150%; /* Make it tall */
            border-radius: 50%;
            background: radial-gradient(ellipse, rgba(176, 225, 251, 0.15) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 1; /* Below the text span */
        }

        .btn-glass-hover:hover::after {
            opacity: 1;
        }


.line-separator.glowing-linefooter {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(250, 252, 252, 0.5), transparent);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  margin: 0 0;
}
.line-separator.glowing-linefooter:hover {
  background: linear-gradient(to right, transparent, rgb(72, 72, 103), transparent);
  box-shadow: 0 0 15px rgb(74, 69, 150);
}




.hero-section {
 background: linear-gradient(to right, #0e0e0e, #171723);

            position: relative;
            max-width: auto; /* max-w-7xl */
            margin: 0 auto; /* my-10 */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Vertical Lines */
        .line-left, .line-right {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background: #e5e7eb80; /* neutral-200/80 */
        }

        .line-left { left: 0; }
        .line-right { right: 0; }

        .gradient-line {
            position: absolute;
            top: 0;
            width: 1px;
            height: 160px; /* h-40 */
            background: linear-gradient(to bottom, transparent, #bc22fc, transparent); /* blue-500 */
        }

        /* Horizontal Line */
        .line-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: #e5e7eb80; /* neutral-200/80 */
        }

        .gradient-bottom {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            height: 1px;
            width: 160px; /* w-40 */
            background: linear-gradient(to right, transparent, #3b82f6, transparent); /* blue-500 */
        }

        /* Main Content */
        .content {
            padding: 40px 16px; /* px-4 py-10 md:py-20 */
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero-title {
            font-size: 52px; /* lg:text-7xl */
            font-weight: bold;
color: #eaeaea;
            max-width: 1024px; /* max-w-4xl */
            margin: 0 auto;
          font-family: Questrial, sans-serif;
        }

        .hero-title span {
            display: inline-block;
            margin-right: 8px; /* mr-2 */
            opacity: 0;
            filter: blur(4px);
            transform: translateY(10px);
            animation: fadeIn 0.3s ease-in-out forwards, float 3s ease-in-out infinite 0.8s; /* Floating animation starts after 0.8s */


        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                filter: blur(0);
                transform: translateY(0);
            }
        }

        .hero-description {
            max-width: 672px; /* max-w-xl */
            margin: 16px auto; /* py-4 */
            font-size: 18px; /* text-lg */
            color: #e3e3e3; /* neutral-600 */
            opacity: 0;
            animation: fadeInText 0.3s ease forwards 0.8s;
        }

        @keyframes fadeInText {
            to { opacity: 1; }
        }

        .buttons {
            margin-top: 32px; /* mt-8 */
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px; /* gap-4 */
            opacity: 0;
            animation: fadeInText 0.3s ease forwards 1s;
        }

        .button {
            width: 240px; /* w-60 */
            padding: 8px 24px; /* px-6 py-2 */
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            text-align: center;
            text-decoration: none;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .explore-button {
           background: black  ;
            color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
           animation: fadeInUp 1s ease-in-out forwards,     float 3s ease-in-out infinite 0.8s;
        }

        .explore-button:hover {
            transform: translateY(-2px); /* hover:-translate-y-0.5 */
            background: #2c2c2c; /* hover:bg-gray-800 */
          color: #ffffff;
        }

        .contact-button {
            background: white;
            color: black;
          animation:  float 3.2s ease-in-out infinite 0.8s;
        }

        .contact-button:hover {
            transform: translateY(-2px); /* hover:-translate-y-0.5 */
            background: #ae00f3; /* hover:bg-gray-100 */
          color: white;
        }

       .video-container {
    margin-top: 80px; /* mt-20 */
    border-radius: 24px; /* rounded-3xl */
    border: 1px solid #e5e7eb; /* neutral-200 */
    background: #f5f5f5; /* neutral-100 */
    padding: 16px; /* p-4 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* shadow-md */
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInVideo 0.3s ease forwards 1.2s;
}

@keyframes fadeInVideo {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-wrapper {
    max-width: 1280px; /* max-w-7xl */
    border-radius: 12px; /* rounded-xl */
    border: 1px solid #d1d5db; /* gray-300 */
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

        /* Mute toggle button - improved with SVG */
        .mute-toggle {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            padding: 0;
            opacity: 0;
        }

        .video-loaded .mute-toggle {
            opacity: 1;
        }

        .mute-toggle:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
        }

        .mute-toggle svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        @media (max-width: 1024px) {
            .hero-title {
                font-size: 36px; /* md:text-4xl */
            }
        }

        @media (max-width: 768px) {
            .content {
                padding: 24px 16px; /* smaller padding on mobile */
            }

            .hero-title {
                font-size: 24px; /* text-2xl */
            }
        }

.text-gradient-gray {
        background: linear-gradient(180deg, #ffffff, #686868);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        }
.animated-gradient-effect{
   position: relative;
      display: inline-block;
      cursor: pointer;
      background-image: linear-gradient(90deg, #007ecd, #22d3ee, #c8fa8b, #109ab9);
      background-size: 200% auto;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      animation: gradient 4s linear infinite;
    }
    @keyframes gradient {
      to {
        background-position: 200% center;
      }
    }

    .service-button.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.line-separator.glowing-linefooter {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(250, 252, 252, 0.5), transparent);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  margin: 0 0;
}
.line-separator.glowing-linefooter:hover {
  background: linear-gradient(to right, transparent, rgba(123, 0, 255, 0.76), transparent);
  box-shadow: 0 0 15px rgb(99, 69, 150);
}
