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

:root {
  --m: 4rem;
}

html, body {
  overflow-x: hidden;
        scroll-behavior: smooth;
              cursor: none !important; /* Force hide default cursor */

}

* {
    margin: 0;
    padding: 0;
  box-sizing: border-box;
    font-family: Questrial, sans-serif;
                cursor: none !important; /* Force hide default cursor */



}
/* Global text selection color */
::selection {
    background-color: #1b1b1b; /* e.g., Tailwind blue-600 */
    color: #ffffff;
}

/* For Firefox specifically */
::-moz-selection {
    background-color: #2563eb;
    color: #ffffff;
}

/* 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;
}



/* Shine Animation */
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* 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;
}
body {
    background-color: #0e1415;
    color: #e0e0e0;
    line-height: 1.6;
  width: auto;
}
.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: #008bfb;
            border-radius: 10px;
            border: 5px solid #374151; /* Match border to track */
        }

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

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

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


/* Enhanced Floating Animation for Navbar Logo */
@keyframes floatGlow {
    0% {
        transform: translateY(0px);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        transform: translateY(-15px);
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
    }
    100% {
        transform: translateY(0px);
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
}
.floating {
    animation: floatGlow 4s ease-in-out infinite;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Questrial', sans-serif;
    background-color: #1c1c1c;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Header Styles */
header {
    overflow: visible !important;
    position: relative;
    z-index: 1000;
}

/* 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: 100;
    box-sizing: border-box;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 30px;
    width: calc(100% - 60px);
    height: 3px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(0, 125, 215, 0.3) 15%,
        rgba(0, 125, 215, 0.4) 50%,
        rgba(0, 140, 215, 0.3) 75%,
        transparent 100%
    );
    filter: blur(4px);
    z-index: -1;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    width: calc(100% - 60px);
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgb(5, 189, 192) 30%,
        rgb(8, 119, 121) 50%,
        rgba(0, 140, 215, 0.8) 70%,
        transparent 100%
    );
    border-radius: 1px;
}

.navbar.scrolled {
    background: rgba(9, 9, 9, 0.6);
}

/* Logo Styles */
.logo img {
    height: 45px;
}

/* Navbar Container */
.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%);
}

.nav-links li {
    position: relative;
}

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

.nav-links a:hover {
    color: #00b7d7;
}

/* Dropdown Styles */
.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;
}

/* Action Buttons */
.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: 2000;
    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: #00b7d7;
    border-radius: 1px;
}

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

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

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

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

/* Smooth Scroll */
.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: #00b7d7;
}

/* Responsive Design */
@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 !important;
        top: 0 !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        z-index: 999 !important;
    }

    .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%;
    }

    .hamburger {
        z-index: 3000;
    }

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

    .logo img {
        height: 35px;
    animation:  3s ease-in-out infinite 0.8s; /* Floating animation starts after 0.8s */
    }
/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-10px); /* Move up 10px at the midpoint */
  }
}
    .nav-actions {
        bottom: 20px;
    }
}
.hero {
    height: auto; /* Allow height to adjust based on content */
    min-height: 100vh; /* Ensure it takes at least the full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 3rem; /* Use rem for responsive padding */
    background: radial-gradient(circle at 40% 50%, rgba(23, 58, 80, 0.53), rgba(10, 10, 15, 1) 60%);
    gap: 1rem; /* Add gap between flex children */
  z-index: 2;
}

/* Fading Grid Background for Hero Section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(55, 65, 81, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(55, 65, 81, 0.5) 1px, transparent 1px);
    background-size: 3.5rem 3.5rem;
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: -2;
}

/* The ::after pseudo-element creates the gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1; /* Layered above the grid */
    opacity: 0;
    transform: translate(-50%, 100px);
    transition: opacity 1.2s ease-out 0.8s, transform 1.2s ease-out 0.8s;
    pointer-events: none;
    width: 200%;
    height: 650px;
    background: radial-gradient(ellipse at 50% 100%, rgba(0, 140, 252, 0.25) 0%, transparent 70%);
}

/* Animate the gradient when the page is loaded */
body.loaded .hero::after {
    opacity: 1;
    transform: translate(-50%, 0);
}


#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    z-index: 3;
    max-width: 800px;
margin-bottom: 1.5rem; /* Reduced */}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
margin-bottom: 1rem; /* Reduced */
  opacity: 0;
animation:
    fadeInUp 0.8s ease forwards, /* Initial animation */
    float 3s ease-in-out infinite 0.8s; /* Floating animation starts after 0.8s */
}


.hero-title {
    font-size: 55px;
    font-weight: bold;
    color: #ececec;
    max-width: 1024px;
    margin: 0 auto;
    font-family: Questrial, sans-serif;
}

.hero-title span {
    display: inline-block;
    margin-right: 8px;
    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 */

}

/*
   The .animated-gradient-text and .gradient-overlay classes as provided
   are designed for a "button" or "card" like component with a gradient border/background.
   If you want "Catalyst" to simply be gradient text *within* your <h1>,
   these styles are not directly applied to the text itself but to its container.

   If you intend for "Catalyst" to be a button-like element, then your HTML structure
   needs to wrap "Catalyst" in the full .animated-gradient-text container.
   However, given your screenshot and HTML, it seems you want it as inline text.
*/

/*
   Let's redefine the class that applies the gradient to the *text*.
   We'll assume you still want to call this `.gradient-text` as per your request.
   This will directly apply the gradient effect to the span containing "Catalyst".
*/
.gradient-text {
  display: inline-block; /* Essential for background properties to apply to inline text */
  position: relative; /* Allows for z-index if needed */
  z-index: 2; /* Ensures text is above any potential background elements */

  /* *** THIS IS THE CRITICAL PART: DEFINE YOUR GRADIENT COLORS *** */
  /* Using example colors. You can adjust these to match your desired look. */
  /* The "Props" image shows colors like "#40ffaa", "#4079ff". Let's use something similar or original. */
  background-image: linear-gradient(to left, #008cfc, #00c4fc, #ffffff, #00c4fc, #008cfc); /* Original colors */
  /* Or if you want colors from the "Props" image: */
  /* background-image: linear-gradient(to right, #40ffaa, #4079ff, #40ffaa, #4079ff, #40ffaa); */

  background-size: 300% 100%; /* Makes the gradient wider than the text, allowing it to "shift" */
  background-clip: text; /* Clips the background to the shape of the text */
  -webkit-background-clip: text; /* Webkit prefix for compatibility */

  color: transparent; /* Makes the text itself transparent so the background shows through */
  -webkit-text-fill-color: transparent; /* Webkit prefix for compatibility */

  /* Apply the animation to shift the background-position */
  animation: gradient 6s linear infinite; /* You can adjust the 6s duration */
}

/*
   The following classes (.animated-gradient-text, .gradient-overlay, .gradient-overlay::before)
   are for creating a "container" with a gradient border/background, *not* for the
   inline gradient text effect you see on "Catalyst" in your screenshot.
   If you wanted "Catalyst" to be a button with such a border, the HTML structure
   would need to change significantly.

   For the purpose of getting the "Catalyst" text gradient animation,
   these blocks are likely not what you want applied to the `<span>Catalyst</span>`.
   I'm including them below just for reference but note they don't apply to your
   current HTML for "Catalyst" as an inline word.
*/

/*
.animated-gradient-text {
  position: relative;
  margin: 0 auto;
  display: flex;
  max-width: fit-content;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.5s ease-out;
  overflow: hidden;
  cursor: pointer;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 300% 100%;
  animation: gradient linear infinite;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, #40ffaa, #4079ff, #40ffaa, #4079ff, #40ffaa); // Example gradient for the border/overlay
}

.gradient-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: inherit;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #060010;
  z-index: -1;
}
*/

/* This keyframe definition is crucial and is shared by both text and potential overlay */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-10px); /* Move up 10px at the midpoint */
  }
}
.faq-list {
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero-subheading {
    font-size: 1.25rem;
    color: #b0b0c0;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0;
    position: relative;
    background: linear-gradient(
        90deg,
        #b0b0c0 0%,
        #ffffff 20%,
        #b0b0c0 40%,
        #b0b0c0 100%
    );
    background-size: 200% 100%;
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 animation: fadeInUp 1s ease-in-out forwards,     float 3s ease-in-out infinite 0.8s; /* Floating animation starts after 0.8s */

}


/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-10px); /* Move up 10px at the midpoint */
  }
}
.faq-list {
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
}


@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shineText {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

     /* Button Container */
        .button-pair {
            display: flex;
            gap: 16px;
            padding: 15px;
            justify-content: center;
        }

        /* Base Button Styles */
        .btn {
            padding: 10px 25px;
            border-radius: 8px;
            font-family: 'Questrial', sans-serif;
            font-weight: normal;
            font-size: 16px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            min-width: 120px;
            text-align: center;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
          opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Fade In Up Animation */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                -webkit-transform: translateY(20px);
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                -webkit-transform: translateY(0);
                transform: translateY(0);
            }
        }

        /* Shine Effect on Hover */
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Dark Gradient Button */
        .btn-dark {
            background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
            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; /* Floating animation starts after 0.8s */

}


/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-10px); /* Move up 10px at the midpoint */
  }
}
.faq-list {
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
}


@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

        /* Light Gradient Button */
        .btn-light {
            background: linear-gradient(135deg, rgba(0, 82, 175, 0.86) 0%, #018bfa 100%);
            color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        animation: fadeInUp 1s ease-in-out forwards,     float 3.2s ease-in-out infinite 0.8s; /* Floating animation starts after 0.8s */

}


/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0); /* Starting and ending position */
  }
  50% {
    transform: translateY(-10px); /* Move up 10px at the midpoint */
  }
}
.faq-list {
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
}


@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

        /* Hover Glow Effects */
        .btn-dark:hover {
            transform: translateY(-2px);
            box-shadow:
                0 6px 12px rgba(0, 0, 0, 0.25),
                0 0 20px rgba(255, 255, 255, 0.15);
        }

        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow:
                0 6px 12px rgba(0, 0, 0, 0.15),
                0 0 20px rgba(0, 146, 253, 0.53);
        }

        /* Active State */
        .btn:active {
            transform: translateY(0);
        }
 .video-container {
            width: 90%; /* <-- ADDED: Makes the container responsive */
            max-width: 1280px; /* <-- ADDED: Sets a max-width for large screens */
            margin-top: 40px;
            border-radius: 24px;
            border: 1px solid #e5e7eb;
            background: #f5f5f5;
            padding: 16px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInVideo 0.3s ease forwards 1.2s;
            position: relative;
   z-index: 2;

        }

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

        .video-wrapper {
            width: 100%; /* <-- ADDED: Ensures wrapper fills the container */
            border-radius: 12px;
            border: 1px solid #d1d5db;
            overflow: hidden;
            position: relative;
        }

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

        /* Skeleton styles */
        .skeleton {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #8c8c8c;
            overflow: hidden;
        }

        .skeleton::before {
            content: '';
            position: absolute;
            top: 0;
            left: -150%;
            width: 150%;
            height: 100%;
            background: linear-gradient(
                90deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            animation: shine 1.5s infinite;
        }

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

        /* Progress bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: #2369ff;
            transition: width 0.1s ease;
        }

        /* Loading message */
        .loading-message {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #0a0a0f;
            font-size: 16px;
            text-align: center;
            background: rgba(255, 255, 255, 0.8);
            padding: 8px 16px;
            border-radius: 4px;
            display: none;
          font-family: Questrial, sans-serif;
        }

        /* Mute toggle button */
        .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 */
            }
        }


/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .hero {
        padding: 4rem 2rem; /* Reduce padding for tablets */
    }

    .hero-headline {
        font-size: 2.5rem; /* Reduce font size */
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 40px; /* Reduce font size */
        max-width: 90%; /* Allow more flexibility */
    }

    .hero-subheading {
        font-size: 1.1rem;
margin-bottom: 1rem; /* Reduced */
    }



}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.5rem; /* Further reduce padding for mobile */
    }

    .hero-headline {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-title {
        font-size: 32px;
        max-width: 100%;
    }

    .hero-subheading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }



}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 1rem; /* Minimal padding for small screens */
    }

    .hero-headline {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subheading {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .safari-browser {
        height: 30vh; /* Smallest height for very small screens */
        max-height: 300px;
    }
}

/* Rest of your CSS remains unchanged */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* News Section */
.news {
  padding: 80px 60px;
  background: #0a0a0f; /* Solid dark base color */
  text-align: left;
  position: relative; /* Required for positioning the pseudo-element */
  min-height: 100vh; /* Ensures full section coverage */
  overflow: hidden; /* Prevents overflow from the pseudo-element */
}

/* Pseudo-element with animated gradients */
.news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(0, 65, 77, 0.76), transparent 30%);
  opacity: 0.6; /* Softens the gradients */
  transform: scale(1); /* Starting scale */
  animation: pulse 15s ease-in-out infinite alternate; /* Smooth animation */
  pointer-events: none; /* Prevents interaction interference */
}

/* Subtle scaling animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(1.05); /* Slightly enlarged */
  }
}

/* News Header (unchanged styling) */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-family: Inter, sans-serif;
    font-weight: 300;
}

.news-header h2 {
  font-family: Questrial, sans-serif;
  font-size: 48px;
  font-weight: 400;
  background: linear-gradient(to right, #eceaea, #a4a4a4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  opacity: 0;
  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 */
  }
}
.explore-more {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.explore-more:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* News Grid (unchanged styling) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* News Items */
.news-item {
    display: flex;
    justify-content: space-between;
    /* Translucent blur effect for news item background */
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white for slight tint */
    backdrop-filter: blur(10px); /* Blur effect for frosted glass look */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border for definition */
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(207, 196, 217, 0.2); /* Purple glow on hover */
}

/* News Content (unchanged styling) */
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}

.news-image img {
    width: auto;
    height: 200px;
    max-width: 100%;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
}

.news-item .news-date {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.news-item h3 {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 15px;
}

.news-item p {
    font-size: 16px;
    color: #b0b0c0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.news-tag {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
 backdrop-filter: blur(4px);
            background: linear-gradient(
                90deg,
                rgba(0, 140, 255, 0.79) 0%, /* More opaque start */ rgba(51, 143, 234, 0.79) 50%, /* More opaque middle */ rgba(105, 203, 255, 0.63) 100% /* Added a pinkish hue at the end */
            ); /* Enhanced gradient with more contrast */    padding: 5px 10px;
    border-radius: 15px;
}

.news-button {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.news-button:hover {
    background: #00bfff; /* Light blue hover effect */
    border-color: #00bfff;
    color: #000000;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.5);
}

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

.in-view {
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {

    .burger {
        display: flex;
    }
    .hero {
        min-height: 70vh;
    }
    .hero-title {
        max-width: 90%;
        max-height: 165px;
    }
    .hero p {
        font-size: 18px;
        max-width: 500px;
    }
    .button {
        width: 120px;
        height: 35px;
        font-size: 14px;
    }
    .news {
        padding: 40px 30px;
    }
    .news-header h2 {
        font-size: 36px;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-item {
        flex-direction: column;
    }
    .news-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .news-image img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 5px 20px;
    }
    .logo {
        height: 40px;
    }
    .nav-container {
        top: 40px;
        right: 15px;
        width: 120px;
        padding: 10px;
    }
    .hero-title {
        max-width: 95%;
        max-height: 117px;
    }
    .hero p {
        font-size: 14px;
        max-width: 400px;
    }
    .button {
        width: 100px;
        height: 30px;
        font-size: 12px;
    }
    .news {
        padding: 30px 20px;
    }
    .news-header h2 {
        font-size: 28px;
    }
    .explore-more {
        font-size: 14px;
        padding: 8px 16px;
    }
    .news-item h3 {
        font-size: 20px;
    }
    .news-item p {
        font-size: 14px;
    }
    .news-image {
        max-width: 300px;
    }
    .news-image img {
        height: 200px;
    }
}
.blue-line-separator.glowing-line {
  height: 3px;
  /* More aggressive fade: blue is narrower */
  background: linear-gradient(to right, transparent 10%, rgba(6, 147, 209, 0.51) 30%, rgba(6, 147, 209, 0.49) 70%, transparent 90%);
  margin: 0 0;
}

.bg {
  width: 100%;
  height: 100%;
  background: #000000;
  --gap: 5em;
  --line: 1px;
  --color: rgba(255, 255, 255, 0.2);

  background-image: linear-gradient(
      -90deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    ),
    linear-gradient(
      0deg,
      transparent calc(var(--gap) - var(--line)),
      var(--color) calc(var(--gap) - var(--line) + 1px),
      var(--color) var(--gap)
    );
  background-size: var(--gap) var(--gap);

  /* THIS IS THE KEY: Fades from top, solid in middle, fades from bottom */
  mask-image: linear-gradient(
    to bottom,
    transparent, /* Fully transparent at the very top */
    black 15%,    /* Becomes fully opaque at 15% from the top */
    black 85%,    /* Stays fully opaque until 85% from the top */
    transparent   /* Fades to transparent at the very bottom */
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}
/* Section Styling */
    .promotional-banner {
      padding: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      color: white;
      font-family: Arial, sans-serif;
      min-height: 300px;
    }

    /* Text Container */
    .text-container {
      max-width: 50%;
    }

    .text-container h1 {
      font-size: 1.8em;
      font-weight: 500;
      margin-bottom: 10px;
      animation: float 3s ease-in-out infinite;
    }

    .text-container p {
      font-size: 2.5em;
      font-weight: bold;
      margin-bottom: 20px;
      line-height: 1.2;
      animation: float 3s ease-in-out infinite;
      animation-delay: 0.2s;
    }

    .text-container button {
      background: transparent;
      border: 1px solid #808080;
      color: white;
      padding: 10px 25px;
      border-radius: 50px;
      cursor: pointer;
      font-size: 1em;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: background 0.3s ease, box-shadow 0.3s ease;
    }

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

    .text-container button:hover {
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }

    .text-container button:hover span {
      transform: translateX(5px);
    }

    /* Curved Shapes Container */
    .curved-shapes {
      position: relative;
      width: 400px;
      height: 400px;
      overflow: hidden;
      transition: transform 0.2s ease; /* Smooth movement for cursor following */
    }

    /* Individual Arcs */
    .arc {
      position: absolute;
      top: 0;
      right: 0;
      width: 800px;
      height: 800px;
      border-radius: 50%;
      background: linear-gradient(to bottom, #00bbff, #f2f2f3);
      opacity: 0.4;
      transition: transform 0.3s ease;
    }

    .arc1 {
      clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 50% 100%);
      transform: translate(50%, -50%);
      animation: floatArc 4s ease-in-out infinite;
    }

    .arc2 {
      clip-path: polygon(50% 50%, 90% 10%, 90% 90%, 50% 90%);
      transform: translate(45%, -45%);
      animation: floatArc2 4s ease-in-out infinite;
      animation-delay: 0.2s;
    }

    .arc3 {
      clip-path: polygon(50% 50%, 80% 20%, 80% 80%, 50% 80%);
      transform: translate(40%, -40%);
      animation: floatArc3 4s ease-in-out infinite;
      animation-delay: 0.4s;
    }

    /* Hover Effects for Curved Shapes */
    .curved-shapes:hover .arc1 {
      transform: translate(50%, -50%) scale(1.05) rotate(5deg);
    }

    .curved-shapes:hover .arc2 {
      transform: translate(45%, -45%) scale(1.05) rotate(3deg);
    }

    .curved-shapes:hover .arc3 {
      transform: translate(40%, -40%) scale(1.05) rotate(1deg);
    }

    /* Floating Animation for Text */
    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    /* Floating Animation for Arcs */
    @keyframes floatArc {
      0%, 100% {
        transform: translate(50%, -50%) translateY(0);
      }
      50% {
        transform: translate(50%, -50%) translateY(-15px);
      }
    }

    @keyframes floatArc2 {
      0%, 100% {
        transform: translate(45%, -45%) translateY(0);
      }
      50% {
        transform: translate(45%, -45%) translateY(-15px);
      }
    }

    @keyframes floatArc3 {
      0%, 100% {
        transform: translate(40%, -40%) translateY(0);
      }
      50% {
        transform: translate(40%, -40%) translateY(-15px);
      }
    }

    /* Responsiveness */
    @media (max-width: 768px) {
      .promotional-banner {
        flex-direction: column;
        align-items: center;
        padding: 30px;
      }
      .text-container {
        max-width: 100%;
        text-align: center;
      }
      .curved-shapes {
        margin-top: 20px;
        width: 300px;
        height: 300px;
      }
      .arc {
        width: 600px;
        height: 600px;
      }
    }
.line-separator.glowing-line {
  height: 3px;
  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-line:hover {
  background: linear-gradient(to right, transparent, rgba(0, 178, 255, 0.8), transparent);
  box-shadow: 0 0 15px rgba(0, 187, 255, 0.7);
}


 :root {
            --background: 240 10% 3.9%;
            --foreground: 0 0% 98%;
            --card: 240 10% 3.9%;
            --card-foreground: 0 0% 98%;
            --border: 240 3.7% 15.9%;
            --accent-purple: #3398ea;
        }

        * {
            border-color: hsl(var(--border));
        }

        body {
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
            font-family: 'Questrial', sans-serif;
            margin: 0;
            overflow-x: hidden;
        }

        .testimonial-gradient {

            background: radial-gradient(circle at 50% 0%, rgba(51, 130, 234, 0.18), rgba(9, 9, 16, 0) 45%),
                       linear-gradient(to bottom, #0a0a11 0%, #0a0a11 100%);
            padding-top: 5rem;
            padding-bottom: 5rem;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
        }

        .paused {
            animation-play-state: paused !important;
        }

        .testimonial-tag {
            padding: 0.25rem 0.75rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9); /* Slightly brighter text */
            border-radius: 9999px;
            backdrop-filter: blur(4px);
            background: linear-gradient(
                90deg,
                rgba(79, 70, 229, 0.6) 0%, /* More opaque start */ rgba(51, 143, 234, 0.6) 50%, /* More opaque middle */ rgba(105, 193, 255, 0.4) 100% /* Added a pinkish hue at the end */
            ); /* Enhanced gradient with more contrast */
            border: 1px solid rgba(255, 255, 255, 0.2); /* Slightly more visible border */
            display: inline-block;
            margin-bottom: 0.85rem;
            box-shadow: 0 2px 8px rgba(51, 152, 234, 0.2); /* Added subtle glow */
        }

        .mention {
            color: var(--accent-purple);
            font-weight: 500;
            text-shadow: 0 0 10px rgba(51, 191, 234, 0.5);
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-50% - 1rem)); }
        }

        .animate-scroll {
            animation: scroll 40s linear infinite;
        }

        .full-width-container {
            width: 100vw;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
        }

        .marquee-container {
            position: relative;
            padding-top: 1rem;
            padding-left: 2rem;
            padding-right: 2rem;
            -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
            mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
        }

        .max-w-7xl {
            max-width: 80rem;
            margin-left: auto;
            margin-right: auto;
        }

        .px-4 { padding-left: 1rem; padding-right: 1rem; }
        .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
        .text-center { text-align: center; }
        .mb-16 { margin-bottom: 4rem; }
        .text-4xl { font-size: 2.25rem; }
        .md\:text-5xl { font-size: 3rem; }
        .font-bold { font-weight: 700; }
        .text-white { color: #fff; }
        .mb-4 { margin-bottom: 1rem; }
        .text-white\/70 { color: rgba(255, 255, 255, 0.7); }
        .flex { display: flex; }
        .p-6 { padding: 1.5rem; }
        .w-\[350px\] { width: 350px; }
        .h-\[200px\] { height: 200px; }
        .flex-col { flex-direction: column; }
        .justify-between { justify-content: space-between; }
        .mx-4 { margin-left: 1rem; margin-right: 1rem; }
        .shrink-0 { flex-shrink: 0; }
        .text-sm { font-size: 0.875rem; }
        .text-white\/90 { color: rgba(255, 255, 255, 0.9); }
        .items-center { align-items: center; }
        .gap-3 { gap: 0.75rem; }
        .w-10 { width: 2.5rem; }
        .h-10 { height: 2.5rem; }
        .rounded-full { border-radius: 9999px; }
        .object-cover { object-fit: cover; }
        .border { border-width: 1px; }
        .text-left { text-align: left; }
        .font-medium { font-weight: 500; }
        .text-xs { font-size: 0.75rem; }
        .text-white\/60 { color: rgba(255, 255, 255, 0.6); }
        .stars { color: #009dff; font-size: 1rem; }
        .mb-2 { margin-bottom: 0.5rem; }

        .testimonial-card {
          height: 250px !important;
            background: linear-gradient(
                to bottom,
                rgba(16, 16, 28, 0.3) 0%,
                rgba(25, 25, 46, 0.6) 100%
            );
            backdrop-filter: blur(10px);
            border: 1px solid rgba(51, 136, 234, 0.3);
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .testimonial-card:hover {
            border-color: rgba(51, 191, 234, 0.5);
            box-shadow: 0 8px 32px rgba(51, 130, 234, 0.13);
            transform: translateY(-3px);
        }

        @media (min-width: 768px) {
            .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
            .md\:text-5xl { font-size: 3rem; }
        }

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: linear-gradient(45deg, #1a1a1a, #414141, #1a1a1a); /* Subdued metallic gradient */
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1), /* Inner highlight for metallic effect */
                0 2px 5px rgba(0, 0, 0, 0.5); /* Outer shadow for depth */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.stat:hover {
    transform: translateY(-5px); /* Lift the card on hover */
}

.stat h3 {
    font-size: 36px;
background: linear-gradient(to right, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  margin-bottom: 5px;
    transition: text-shadow 0.3s ease;
}

.stat h3.glow {
    text-shadow: 0 0 10px #d7d7d7, 0 0 30px #d7d6d6; /* Glow effect for counter completion */
}

.stat p {
    font-size: 16px;
    color: #888;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}




.features-section {
    padding: 50px;
    background: linear-gradient(to bottom, #12121a, #15151f);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse; /* Ensure no gaps between cells */
}

.feature-card {
    border: 1px solid #555;
    padding: 40px;
    position: relative;
    color: #fff;
    cursor: pointer;
    background: transparent;
    overflow: hidden;
}

/* Remove specific borders for top and bottom rows */
.feature-card.top-row {
    border-top: none; /* No top border for top row */
}

.feature-card.bottom-row {
    border-bottom: none; /* No bottom border for bottom row */
}

/* Remove right border for the last card in each row */
.feature-card:nth-child(4n) {
    border-right: none;
}

/* Remove left border for the first card in each row */
.feature-card:nth-child(4n+1) {
    border-left: none;
}

/* Remove bottom border for top row cards (to avoid double borders with bottom row) */
.feature-card.top-row {
    border-bottom: 1px solid #555; /* Keep bottom border for top row */
}

/* Remove top border for bottom row cards (to avoid double borders with top row) */
.feature-card.bottom-row {
    border-top: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), transparent); /* Reversed gradient */
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.icon {
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
}

/* Moving dot animation */
.border-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #d5d5d5;
    border-radius: 50%;
    animation: move-around 6s linear infinite;
}

@keyframes move-around {
    0% {
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
    }
    25% {
        top: 0;
        left: 100%;
        transform: translate(-50%, -50%);
    }
    50% {
        top: 100%;
        left: 100%;
        transform: translate(-50%, -50%);
    }
    75% {
        top: 100%;
        left: 0;
        transform: translate(-50%, -50%);
    }
    100% {
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Adjust borders for 2-column layout */
    .feature-card:nth-child(4n),
    .feature-card:nth-child(4n+1) {
        border-right: 1px solid #555;
        border-left: 1px solid #555;
    }

    .feature-card:nth-child(2n) {
        border-right: none;
    }

    .feature-card:nth-child(2n+1) {
        border-left: none;
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
    }

    /* Adjust borders for 1-column layout */
    .feature-card {
        border-left: none;
        border-right: none;
    }

    .feature-card.top-row {
        border-top: none;
    }

    .feature-card.bottom-row {
        border-bottom: none;
    }
}


body {
    background-color: #0a0a0f;
    font-family: Arial, sans-serif;
    color: #d3d3d3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.faq-section {
    width: 100vw; /* Full viewport width */
    min-height: 100vh; /* Ensure it takes at least the full viewport height */
    background-image: url('https://www.orionedgedigital.com/img/bg-elipse.png'); /* Replace with your image URL */
    background-attachment: fixed; /* Creates the parallax effect */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    isolation: isolate; /* Ensures the background is self-contained */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0; /* Padding for top and bottom */
}

/* Add a semi-transparent overlay to improve text readability */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay for contrast */
    z-index: 1;
}

.faq-container {
    max-width: 800px; /* Constrain the content width */
    width: 100%; /* Ensure it takes the full available width up to max-width */
    padding: 0 20px; /* Add padding to prevent content from touching edges on smaller screens */
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.faq-heading {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to top, #ffffff, rgba(128, 128, 128, 0.71));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    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 */
  }
}
.faq-list {
    text-align: left;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    color: #ececec;
    cursor: pointer;
}

.faq-toggle {
    font-size: 24px;
    color: #888;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg); /* Rotate the "+" to "x" when active */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #888;
    font-size: 16px;
}

.faq-answer p {
    padding: 0 15px;
}

.faq-item.active .faq-answer {
    padding: 15px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .faq-heading {
        font-size: 36px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* Disable parallax on mobile for better performance */
    .faq-section {
        background-attachment: scroll;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
  background: #060d18;
}
.contact-section {
            padding: 50px;
            max-width: 800px;
            margin: 0 auto;
            background: radial-gradient(circle at 40% 28%, rgba(255, 255, 255, 0.15), transparent 30%);
            position: relative;
            isolation: isolate;
        }
        .contact-heading {
            font-size: 48px;
            font-weight: bold;
            background: linear-gradient(to top, #e4e4e4, rgba(136, 136, 136, 0.83));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 40px;
            text-align: center;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .form-group label {
            font-size: 16px;
            color: #d3d3d3;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            background: transparent;
            border: none;
            border-bottom: 1px solid #555;
            color: #d3d3d3;
            font-size: 16px;
            padding: 10px 0;
            outline: none;
        }
        .form-group select {
            appearance: none;
            cursor: pointer;
        }
        .form-group select:invalid {
            color: #888;
        }
        .form-group select option {
            background-color: #0a0a11;
            color: #cecece;
          border: #00b2d2;
        }
        /* Selection highlight for Chrome, Edge, Safari */
        .form-group select option:checked,
        .form-group select option:hover,
        .form-group select option:focus {
            background-color: #333 !important;
            color: #fff;
        }
        /* Firefox-specific selection highlight */
        .form-group select option:-moz-focusring,
        .form-group select option:checked {
            background-color: #333 !important;
            color: #fff;
        }
        .form-group select:focus {
            background: transparent;
            border-bottom: 1px solid #555;
            outline: none;
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #888;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            background: transparent;
            border-bottom: 1px solid #555;
            outline: none;
        }
        .form-group textarea {
            resize: none;
            height: 60px;
        }
        .budget-group {
            margin-top: 10px;
        }
        .budget-options {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        .budget-options label {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            color: #d3d3d3;
        }
        .budget-options input[type="radio"] {
            appearance: none;
            width: 20px;
            height: 20px;
            border: 1px solid #555;
            border-radius: 50%;
            position: relative;
            cursor: pointer;
        }
        .budget-options input[type="radio"]:checked::after {
            content: '';
            width: 10px;
            height: 10px;
            background-color: #d3d3d3;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .custom-budget {
            display: none;
            margin-top: 10px;
        }
        .custom-budget.active {
            display: block;
        }
        .error-message {
            color: #ff5555;
            font-size: 12px;
            min-height: 20px;
        }
        .submit-btn {
            align-self: flex-start;
            background-color: #000;
            color: #fff;
            border: 1px solid #555;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: background-color 0.3s ease;
        }
        .submit-btn:hover {
            background-color: #222;
        }
        .submit-btn span {
            font-size: 18px;
        }
        .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #2a2a2a;
            color: #d3d3d3;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            text-align: center;
        }
        .success-message.active {
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 768px) {
            .contact-heading {
                font-size: 36px;
            }
            .form-group label,
            .form-group input,
            .form-group textarea,
            .form-group select {
                font-size: 14px;
            }
            .budget-options label {
                font-size: 12px;
            }
            .submit-btn {
                font-size: 14px;
                padding: 8px 16px;
            }
        }
.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(1, 115, 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(190, 220, 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, rgba(0, 147, 255, 0.76), transparent);
  box-shadow: 0 0 15px rgb(69, 110, 150);
}
.bluee-line-separator.glowing-linefooter {
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(7, 118, 199, 0.86), transparent);
  box-shadow: 0 0 5px rgb(68, 109, 149);
  margin: 0 0;
}






.faq-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    width: fit-content;
    margin: 0 auto; /* Centers horizontally */
}


        .star-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.5rem;
            height: 1.5rem;
            background: #00b2ff; /* Yellow background */
            border-radius: 50%;
            color: #000;
            font-size: 0.875rem;
            font-weight: bold;

        }

        .faq-text {
            color: #00b2ff;
            font-size: 1.25rem;
            font-weight: 600;
            align-items: center;
        }
        .grid-pattern {
            background-image:
                linear-gradient(to right, rgba(37, 38, 54, 0.7) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(37, 38, 54, 0.7) 1px, transparent 1px);
            background-size: 40px 40px;
        }

        .logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo-item img {
            width: 3rem;
            height: 3rem;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: grayscale(100%) brightness(0.8);
            animation: float 6s ease-in-out infinite;
        }

        /* Individual floating animations */
        .logo-item:nth-child(1) img { animation-delay: 0s; }
        .logo-item:nth-child(2) img { animation-delay: 0.5s; }
        .logo-item:nth-child(3) img { animation-delay: 1s; }
        .logo-item:nth-child(4) img { animation-delay: 1.5s; }
        .logo-item:nth-child(5) img { animation-delay: 2s; }
        .logo-item:nth-child(6) img { animation-delay: 2.5s; }
        .logo-item:nth-child(7) img { animation-delay: 3s; }
        .logo-item:nth-child(8) img { animation-delay: 3.5s; }
        .logo-item:nth-child(9) img { animation-delay: 4s; }
        .logo-item:nth-child(10) img { animation-delay: 4.5s; }

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

        .logo-item:hover img {
            transform: scale(1.2) translateY(0) !important;
            filter: grayscale(0%) brightness(1);
            animation: none;
        }

        .logo-item span {
            margin-top: 0.5rem;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .logo-item:hover span {
            opacity: 1;
        }

        @media (min-width: 768px) {
            .logo-item img {
                width: 4rem;
                height: 4rem;
            }
        }
.social-icons{
  color: white;


}
body {
  font-family: 'Questrial', sans-serif;
  background-color: #0a0a11;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Testimonials Section */
.marx-testimonials-section {
  padding: 80px 0;
}

.marx-testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.marx-trusted-heading {
  font-size: 18px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 24px;
  animation: marxFadeInOpacity 1s ease-out forwards;
  animation-delay: 0.1s;
}

.marx-logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  animation: marxFadeInOpacity 1s ease-out forwards;
  animation-delay: 0.2s;
}

.marx-logo-image {
  height: 30px;
  filter: grayscale(100%) brightness(150%);
  transition: all 0.3s ease;
}

.marx-logo-image:hover {
  filter: grayscale(0%) brightness(100%);
  transform: scale(1.05);
}

.marx-quote-wrapper {
  text-align: center;
  margin-top: 48px;
}
.blue-gradient-text {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 768px;
  margin: 0 auto 24px;

  background: linear-gradient(to top, #ffffff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  animation: marxFadeInOpacity 1s ease-out forwards;
  animation-delay: 0.3s;
}
.marx-test-quote {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 768px;
  margin: 0 auto 24px;

  background: linear-gradient(to right, #ffffff, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  animation: marxFadeInOpacity 1s ease-out forwards;
  animation-delay: 0.3s;
}

.marx-quote-source {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 8px;
  animation: marxFadeInOpacity 1s ease-out forwards;
  animation-delay: 0.4s;
}

.marx-quote-rating {
  font-size: 14px;
  color: #9ca3af;
  animation: marxFadeInOpacity 1s ease-out forwards;
  animation-delay: 0.5s;
}

/* Fade-in Animation (no transform) */
@keyframes marxFadeInOpacity {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .marx-test-quote {
    font-size: 24px;
  }

  .marx-logos-wrapper {
    gap: 24px;
  }
}
.gradient-gray{
            background: linear-gradient(180deg, #ffffff, #959595);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

.gradient-blue{
  background: linear-gradient(360deg, #ffffff, #60d1fa);
            -webkit-background-clip: text;
            background-clip: text;
            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;
      }
    }
  .orionedgedigital-text-blue {
            color: #38bdf8;
        }

        .orionedgedigital-pill-bg-blue {
            background-color: rgba(56, 189, 248, 0.1);
        }

        .orionedgedigital-text-secondary {
            color: #a0aec0;
        }

        /* Glassmorphism effect for the cards */
        .orionedgedigital-glass-card {
            background: rgba(23, 28, 48, 0.5);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(56, 189, 248, 0.2);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .orionedgedigital-glass-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
        }

        /* Gradient glow effect for the card background on hover */
        .orionedgedigital-glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.15) 0%, rgba(56, 189, 248, 0) 70%);
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            z-index: 1;
        }

        .orionedgedigital-glass-card:hover::before {
            opacity: 1;
        }

        .orionedgedigital-glass-card > * {
            position: relative;
            z-index: 2;
        }

        .orionedgedigital-icon-container-gradient {
            background: linear-gradient(360deg, rgba(63, 191, 248, 0.76), rgba(14, 165, 233, 0.89));
        }

        /* White button with shine hover effect */
        .orionedgedigital-shine-button {
            position: relative;
            overflow: hidden;
            transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
        }

        .orionedgedigital-shine-button::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.4);
            transform: rotate(45deg);
            transition: all 0.4s ease;
            opacity: 0;
        }

        .orionedgedigital-shine-button:hover::after {
            left: 100%;
            opacity: 1;
            transition: all 0.4s ease-out;
        }
  /* Scoped Styles for the Services Section */
    #orion-services-section {
        background-color: #000;
        color: #d1d5db; /* text-gray-300 */
        font-family: 'Questrial', sans-serif;
        padding: 4rem 1rem; /* py-16 px-4 */
        isolation: isolate; /* Prevents mixing with other page elements */
        transform: none !important; /* Resets any inherited transforms */
        cursor: default !important; /* Overrides global cursor styles */
    }

    @media (min-width: 768px) {
        #orion-services-section {
            padding-top: 6rem; /* md:py-24 */
            padding-bottom: 6rem;
        }
    }

    #orion-services-section .os-container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    @media (min-width: 640px) { #orion-services-section .os-container { max-width: 640px; } }
    @media (min-width: 768px) { #orion-services-section .os-container { max-width: 768px; } }
    @media (min-width: 1024px) { #orion-services-section .os-container { max-width: 1024px; } }
    @media (min-width: 1280px) { #orion-services-section .os-container { max-width: 1280px; } }


    #orion-services-section .os-header {
        max-width: 56rem; /* max-w-4xl */
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        margin-bottom: 4rem; /* mb-16 */
    }

    #orion-services-section .os-header .os-sub-title {
        font-size: 0.875rem; /* text-sm */
        font-weight: 600; /* font-semibold */
        letter-spacing: 0.05em; /* tracking-wider */
        color: #9ca3af; /* text-gray-400 */
        text-transform: uppercase;
        margin-bottom: 1rem; /* mb-4 */
    }

    #orion-services-section .os-header .os-title {
        font-size: 1.875rem; /* text-3xl */
        font-weight: 300; /* font-light */
        color: #fff;
        line-height: 1.2;
    }

     @media (min-width: 768px) {
        #orion-services-section .os-header .os-title {
            font-size: 2rem; /* md:text-5xl */
            line-height: 1.1; /* md:leading-snug */
        }
    }

    #orion-services-section .os-learn-more-btn {
        display: inline-block;
        margin-top: 2rem; /* mt-8 */
        padding: 0.625rem 1.25rem; /* px-5 py-2.5 */
        border: 1px solid #4b5563; /* border-gray-600 */
        color: #fff;
        border-radius: 0.5rem; /* rounded-lg */
        font-size: 0.875rem; /* text-sm */
        transition: background-color 0.3s;
        cursor: pointer !important; /* Ensure cursor is correct */
    }

    #orion-services-section .os-learn-more-btn:hover {
        background-color: #1f2937; /* hover:bg-gray-800 */
    }

    #orion-services-section .os-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 2rem; /* gap-8 */
    }

    @media (min-width: 768px) {
        #orion-services-section .os-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    @media (min-width: 1024px) {
        #orion-services-section .os-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    #orion-services-section .os-card {
        position: relative;
        background-color: #1c1c1c;
        border: 1px solid rgba(107, 114, 128, 0.3); /* border-gray-700/50 */
        border-radius: 1rem; /* rounded-2xl */
        padding: 2rem; /* p-8 */
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
        transition: transform 0.3s ease-in-out;
    }

    #orion-services-section .os-card:hover {
        transform: translateY(-0.5rem); /* hover:-translate-y-2 */
    }

    #orion-services-section .os-card-hover-effect {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
            radial-gradient(ellipse 80% 70% at 50% 120%, rgba(59, 130, 246, 0.17), transparent);
        background-size: 2rem 2rem, 2rem 2rem, 100% 100%;

        /* This creates the upward fade effect for the grid */
        /* To make the grid fade earlier (show less), decrease the percentage (e.g., to 30%). */
        /* To make it fade later (show more), increase the percentage (e.g., to 70%). */
        mask-image: linear-gradient(to top, black 30%, transparent 100%);
        -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
    }

    #orion-services-section .os-card:hover .os-card-hover-effect {
        opacity: 1;
    }

    #orion-services-section .os-card-content {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    #orion-services-section .os-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem; /* mb-4 */
    }

    #orion-services-section .os-card-title {
        font-size: 1.5rem; /* text-2xl */
        color: #fff;
    }

    #orion-services-section .os-card-icon {
        font-size: 1.5rem; /* text-2xl */
        color: #9ca3af; /* text-gray-400 */
    }

    #orion-services-section .os-card-description {
        color: #9ca3af; /* text-gray-400 */
        margin-bottom: 1.5rem; /* mb-6 */
    }

    #orion-services-section .os-card-image-wrapper {
        margin-top: auto;
        padding-top: 2rem; /* pt-8 */
        /* Negative margins pull the image wrapper to the edges of the card's padding */
        margin-left: -2rem;
        margin-right: -2rem;
    }

    #orion-services-section .os-card-image {
        border-radius: 0.5rem; /* rounded-lg */
        width: 100%;
        height: auto;
        object-fit: cover;
        /* Increased scale to make the image content larger */
        transform: scale(0.95);
    }
