/* Reset and base styles */
:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --secondary: #a7a7a7;
    --text: #FFFFFF;
    --text-secondary: #ffffff;
    --bg: #0F172A;
    --bg-secondary: #1E293B;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    z-index: 3;
  }

  main{
    min-height: 100vh;
    background: linear-gradient(2deg, #141414 50%, #2d38b0 85%, #9e6dff 100%)
    /* background-image: url('../assets/3.svg');  */
    /* background-size: cover; */
    /* background-position: center; */
    /* background-color: transparent; */
    /* background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><rect x="10" y="10" width="20" height="20" fill="rgba(255,255,255,0.2)"/></svg>'); */
  }

  .bg-video{
    content: "";
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* background-image: url('../assets/hero-bg.png');  */
    background-size: cover;
    background-position: center;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 85%, transparent 100%); 
    z-index: 1;
  }

.particle-img{
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
  
  
  .hero{
    padding: 4rem 2rem 6rem 2rem;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
  }
  textarea
  {
    font-family: Arial, Helvetica, sans-serif
  }
  .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
  }
  .container-nav {
    max-width: 100%;
    margin: 0 2rem;
    padding: 0 1.5rem;
  }
  /* Navigation */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    /* background: linear-gradient(45deg, black, blue, purple);
    background-size: 400% 400%;
    animation: gradientWobble 5s ease-in-out infinite;
    z-index: 1000; */
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent black */
    backdrop-filter: blur(10px); /* Blur the background */
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
  }
  
  .logo-img {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
  }
  
  /* Menu Toggle Button */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }
  
  .menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  
  .menu-toggle.active span:first-child {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
  }
  
  .nav-link:hover {
    color: var(--primary);
  }
  
  .try-free-btn {
    background: var(--primary);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  /* .try-free-btn:hover {
    background: var(--primary-dark);
  } */
  
  .sign-in-btn {
    background: transparent;
    color: var(--text);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s;
  }
  
  .sign-in-btn:hover {
    border-color: var(--primary);
  }
  
  /* Hero Section */
  .hero-content {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: flex-start;
    text-align: left;
    padding: 5rem 0 2rem 0;
  }
  
  h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text, #000) 0%, var(--secondary, #8626FF) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.5rem;
  }
  
  .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary, #fffefe);
    margin-bottom: 2.5rem;
  }
  
  .cta-button {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.31) 0%, rgba(255, 255, 255, 0) 93.55%),
                linear-gradient(270deg, #FFD84E -6.72%, #c187fe 6.91%, #8626FF 22.17%, #30F 105.69%);
    color: var(--text, #fff);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.2s;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
  }
  
  .arrow-circle {
    width: 2.75rem;
    height: 2.75rem;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  
  .cta-button:hover .arrow {
    animation: moveArrow 0.5s ease-in-out infinite alternate;
  }
  
  @keyframes moveArrow {
    0% { transform: translateX(0px); }
    100% { transform: translateX(4px); }
  }
  
  .video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    min-height: 650px;
  }
  .about-us-image{
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
  }
  
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    opacity: 1;
    /* transition: opacity 1s ease-in-out; */
    /* animation: float 3s ease-in-out infinite; */
  }
  
  img.loaded {
    opacity: 1;
  }

  video {
    width: 62%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    /*animation: float 3s ease-in-out infinite;*/
  }
  
  video.loaded {
    opacity: 1;
  }
  
  @media (max-width: 768px) {
    .container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .hero-content {
      align-items: center;
      text-align: center;
      padding: 1rem 0;
    }
  
    .video-container {
      min-height: 300px;
      justify-content: center;
    }
  }
  /* Background Elements */
  .bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.1;
  }
  
  .flowchart {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .flowchart.left {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .flowchart.right {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .node {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    max-width: 200px;
  }
  
  /* Features */
  .features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 1;
  }
  
  .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
  }
  
  .feature:hover .feature-icon {
    transform: translateY(-2px);
  }
  
  .feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: var(--text);
  }
  
  .feature span {
    font-size: 0.875rem;
    color: var(--text-secondary);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .menu-toggle {
      display: flex;
    }

    /* .container-scroll {
      max-width: 1280px;
    }
   */
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: var(--bg);
      flex-direction: column;
      justify-content: center;
      padding: 2rem;
      transition: right 0.3s ease;
    }
  
    .nav-links.active {
      right: 0;
    }
  
    h1 {
      font-size: 4rem;
    }
  
    .features {
      flex-wrap: wrap;
      gap: 2rem;
    }
  
    .flowchart {
      display: none;
    }
  }
  
  @media (max-width: 640px) {
    h1 {
      font-size: 2rem;
    }
  
    .subtitle {
      font-size: 1.125rem;
    }
  
    .features {
      padding: 1rem;
      gap: 1.5rem;
    }
  }

  @keyframes gradientWobble {
    0% {
      background-position: 0% 50%;
    }
    10% {
      background-position: 25% 50%;
    }
    20% {
      background-position: 50% 50%;
    }
    30% {
      background-position: 75% 50%;
    }
    40% {
      background-position: 100% 50%;
    }
    50% {
        background-position: 100% 50%;
      }
      60% {
        background-position: 75% 50%;
      }
      70% {
        background-position: 50% 50%;
      }
    80% {
      background-position:25% 50%;
    }
    90% {
        background-position: 0% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
  }

  
  .cards-container {
    padding: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card {
    background: #0F172A;
    border: 1px solid #1E293B;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover {
    /* border-color: #7C3AED; */
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon {
    /* background: #3B0764; */
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
}

.icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke: #7C3AED;
}

.card-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.metric-badge {
    background: #2D1543;
    color: #A78BFA;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-description {
    color: #94A3B8;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preview-box {
    background: #1E293B;
    border-radius: 0.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    transition: background-color 0.2s;
}

.preview-box:hover {
    background: #334155;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.learn-more {
    color: #7C3AED;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
}

.learn-more:hover {
    color: #6D28D9;
}

.primary-button {
    background: #7C3AED;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.primary-button:hover {
    background: #6D28D9;
}

@media (max-width: 768px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

.card {
    background: 
    linear-gradient(90deg, rgb(69 22 199 / 25%) 40%, rgba(0, 0, 0, 1) 100%);
    position: relative;
    margin: 15px;
    padding: 20px;
    border-radius: 12px;
    transform: translateZ(0);
    isolation: isolate;
    /* Remove the border as we'll use pseudo-element for glow */
    border: none;
}

/* First Card - Green Theme */
.card:nth-child(3) {
    background: linear-gradient(90deg,  rgba(0, 132, 29, 0.334) 0%, rgba(0, 0, 0, 1) 100%);
    /* background: linear-gradient(121.97deg, rgba(0, 132, 29, 0.334) 3.01%, rgba(0, 0, 0, 1) 74.14%); */
}
.card:nth-child(3) .icon svg {
    stroke: rgb(44, 255, 90);
}
.card:nth-child(3) .metric-badge {
    background: rgba(44, 255, 90, 0.1);
    color: rgb(44, 255, 90);
}
.card:nth-child(3) .preview-box {
    background: rgba(44, 255, 90, 0.05);
    border: 1px solid rgba(44, 255, 90, 0.1);
}
.card:nth-child(3) .primary-button {
    background: rgb(44, 255, 90);
    color: black;
}
.card:nth-child(3) .learn-more {
    color: rgb(44, 255, 90);
}

/* Second Card - Red Theme */
.card:nth-child(2) {
    background: linear-gradient(90deg, rgba(127, 0, 13, 0.292) 0%, rgba(0, 0, 0, 1) 100%);
    /* background: linear-gradient(121.97deg, rgba(127, 0, 13, 0.292) 3.01%, rgba(0, 0, 0, 1) 74.14%); */
}
.card:nth-child(2) .icon svg {
    stroke: rgb(255, 44, 65);
}
.card:nth-child(2) .metric-badge {
    background: rgba(255, 44, 65, 0.1);
    color: rgb(255, 44, 65);
}
.card:nth-child(2) .preview-box {
    background: rgba(255, 44, 65, 0.05);
    border: 1px solid rgba(255, 44, 65, 0.1);
}
.card:nth-child(2) .primary-button {
    background: rgb(255, 44, 65);
    color: white;
}
.card:nth-child(2) .learn-more {
    color: rgb(255, 44, 65);
}

/* Third Card - Purple Theme (using original gradient color) */
.card:nth-child(1) .icon svg {
    stroke: rgb(88, 28, 255);
}
.card:nth-child(1) .metric-badge {
    background: rgba(88, 28, 255, 0.1);
    color: rgb(88, 28, 255);
}
.card:nth-child(1) .preview-box {
    background: rgba(88, 28, 255, 0.05);
    border: 1px solid rgba(88, 28, 255, 0.1);
}
.card:nth-child(1) .primary-button {
    background: rgb(88, 28, 255);
    color: white;
}
.card:nth-child(1) .learn-more {
    color: rgb(88, 28, 255);
}

/* Shared button styles */
.primary-button {
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.learn-more {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.preview-box {
    padding: 15px;
    border-radius: 8px;
    color: white;
}

.metric-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* Hover effects */
.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.learn-more:hover {
    opacity: 0.8;
}


/* Create base card glow */
.card::before {
    content: '';
    position: absolute;
    inset: -2px; /* Creates space for the glow */
    border-radius: inherit; /* Match card's border radius */
    padding: 2px; /* Glow thickness */
    background: none; /* Start with no gradient */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* First Card - Green Theme */
.card:nth-child(3) {
    background: linear-gradient(121.97deg, rgba(44, 255, 90, 0.334) 3.01%, rgba(0, 0, 0, 0.5) 74.14%);
}
.card:nth-child(3)::before {
    background: linear-gradient(
        90deg,
        rgb(44, 255, 90),
        rgb(0, 0, 0 , 0.5),
        rgb(44, 255, 90),
        rgb(0, 0, 0 , 0.5),
        rgb(44, 255, 90)
    );
    background-size: 200% auto;
}

/* Second Card - Red Theme */
.card:nth-child(2) {
    background: linear-gradient(121.97deg, rgba(255, 44, 65, 0.292) 3.01%,  rgba(0, 0, 0, 0.5) 74.14%);
}
.card:nth-child(2)::before {
    background: linear-gradient(
        90deg,
        rgb(255, 44, 65),
        rgb(0, 0, 0 , 0.5),
        rgb(255, 44, 65),
        rgb(0, 0, 0 , 0.5),
        rgb(255, 44, 65)
    );
    background-size: 200% auto;
}

/* Third Card - Purple Theme */
.card:nth-child(1)::before {
    background: linear-gradient(
        90deg,
        rgb(88, 28, 255),
        rgb(0, 0, 0),
        rgb(88, 28, 255),
        rgb(0, 0, 0),
        rgb(88, 28, 255)
    );
    background-size: 200% auto;
}

/* Hover effect */
.card:hover::before {
    opacity: 1;
    animation: borderGlow 5s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Optional: Add box shadow on hover for extra effect */
.card:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}


@keyframes underglow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Add some elevation on hover */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Base card styles */
.card {
    padding: 20px;
    border-radius: 12px;
}

/* Optional: Update container for better glow visibility */
.cards-container {
  /* padding-bottom: 8rem !important; */
    padding: 20px;
    display: grid;
    gap: 30px; /* Increased gap for glow visibility */
    /* background: #0a0a0a; Dark background to make glow more visible */
}

/* Update text colors for better contrast */
.card-title, .card-description {
    color: #ffffff;
}

.cta-button{
    /* background: hsl(0, 0%, 100%); */
    padding: 5px 10px 5px 24px;
    position: relative;
    border-radius: 40px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.01);
/*   
    &::after {
      position: absolute;
      content: "";
      top: 15px;
      left: 0;
      right: 0;
      z-index: -1;
      height: 100%;
      width: 100%;
      transform: scale(0.9) translateZ(0);
      filter: blur(10px);
      background: linear-gradient(
        to left,
        #ff5770,
        #e4428d,
        #c42da8,
        #9e16c3,
        #6501de,
        #9e16c3,
        #c42da8,
        #e4428d,
        #ff5770
      );
      background-size: 200% 200%;
      animation: animateGlow 3s linear infinite;
    } */
  }

  .try-free-btn{
    padding: 9px 24px;
    border-radius: 10px;
  }
  
  @keyframes animateGlow {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 200% 50%;
    }
  }
  
  
  .icon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.icon-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    min-width: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.icon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 8px;
}

.icon-item:hover {
    transform: translateY(-2px);
}

.icon-item:hover::before {
    opacity: 0.1;
}

.icon-item.active {
    /* background-color: rgba(100, 108, 255, 0.2);
    color: var(--primary-color);
    transform: translateY(-2px); */
}

.icon-item.active .icon {
    transform: scale(1.1);
    background: linear-gradient(179.43deg, #FFDCFE 35.83%, #7654FF 131.9%);
    color: black;
}

.icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-item:hover .icon {
    transform: scale(1.1);
}

.icon-item span {
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.content-slider {
    position: relative;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    min-height: 200px;
    overflow: hidden;
}

.content {
    width: 100%;
    height: 100%;
    padding: 2rem;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.content.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.content h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content.active h2 {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

.content p {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.content.active p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

@media (max-width: 768px) {
    .icon-nav {
        gap: 0.5rem;
    }

    .icon-item {
        padding: 0.5rem;
        min-width: 80px;
    }

    .icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .icon-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .icon-nav {
        justify-content: center;
    }

    .icon-item {
        min-width: 70px;
    }
    .hire-btn{
      padding: 0.1rem 0.1rem 0.1rem 0.1rem;
    }
}

@media (prefers-color-scheme: light) {
    body {
        background-color: var(--bg-light);
        color: var(--text-dark);
    }

    .content-slider {
        background-color: rgba(0, 0, 0, 0.05);
    }
}

.menu-text{
  color: white !important;
}

.hire-link{
  width: 60%;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  /* backdrop-filter: blur(15px);
  box-shadow: 0px 0px 20px rgba(227, 228, 237, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.18); */
  border-radius: 8px;
  padding: .5rem;
  color: white;
}
/* .hire-link a{
  color: white;
}

.hire-link a:hover{
  color: white;
} */

.hire-btn {
  font-family: inherit;
  font-size: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.31) 0%, rgba(255, 255, 255, 0) 93.55%),
                linear-gradient(270deg, #FFD84E -6.72%, #FA00FF 6.91%, #8626FF 22.17%, #30F 105.69%);
  color: white;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 25px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.hire-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.hire-btn:active {
  transform: scale(0.95);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.hire-btn span {
  display: block;
  margin-left: 0.4em;
  transition: all 0.3s;
}

.hire-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
  transition: all 0.3s;
}

.hire-btn .svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 0.5em;
  transition: all 0.3s;
}

.hire-btn:hover .svg-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
}

.hire-btn:hover svg {
  transform: rotate(45deg);
}



/* Large Screen Responsiveness (23-27 inch monitors) */
@media screen and (min-width: 1700px) {
  .about-us-container,.worker-section {
    /* max-width: 1550px !important; */
    margin: 0 auto;
    padding: 5rem 2rem;
}
.worker-video video{
  width: 52% !important;
}
}
/* 1920px and above (typical 23 inch monitors) */
@media screen and (min-width: 1920px) {
  .container {
      /* max-width: 1800px ; */
      margin: 0 auto;
      gap: 4rem;
  }

  .container-scroll {
    max-width: 1800px !important;
  }

  .hero{
    padding: 7rem 2rem 0rem 2rem;
  }

  .hero-content {
      padding: 8rem 0 4rem 0;
  }

  h1 {
      font-size: 4.5rem;
      margin-bottom: 2rem;
  }

  .subtitle {
      font-size: 1.5rem;
      margin-bottom: 3rem;
      max-width: 800px;
  }

  .cta-button {
      padding: 1.25rem 2.5rem;
      font-size: 1.25rem;
  }

  .video-container {
      min-height: 800px;
  }

  /* Navigation adjustments */
  .container-nav {
    max-width: 1800px;
        margin: 0 auto;
      /* max-width: 100%;
      padding: 0 2rem; */
  }

  .nav-content {
      padding: 1.5rem 0;
  }

  .logo {
      font-size: 1.5rem;
  }

  .logo span{
    color: white;
  }

  .logo-img {
      width: 2.5rem;
      height: 2.5rem;
  }

  .nav-link {
      font-size: 1.125rem;
  }

  .try-free-btn, .sign-in-btn {
      padding: 0.75rem 1.5rem;
      font-size: 1.125rem;
  }

  /* Cards section */
  .cards-container {
      max-width: 1800px;
      padding: 4rem 2rem 4rem 2rem;
      gap: 2.5rem;
  }

  .card {
      padding: 2.5rem;
  }

  .card-title {
      font-size: 2rem;
  }

  .card-description {
      font-size: 1.25rem;
  }

  .preview-grid {
      gap: 1.5rem;
  }

  .preview-box {
      height: 150px;
  }

  /* Icon navigation */
  .icon-container {
      max-width: 1800px;
      padding: 4rem 2rem;
  }

  .icon-nav {
      gap: 2rem;
  }

  .icon-item {
      padding: 1.5rem;
  }

  .icon {
      width: 4rem;
      height: 4rem;
  }
  .worker-video video{
    width: 45% !important;
  }
}

/* 2560px and above (typical 27 inch monitors) */
@media screen and (min-width: 2560px) {
  .container {
      max-width: 2400px;
      gap: 6rem;
  }
  .worker-video video{
    width: 35% !important;
  }
  .container-scroll {
    max-width: 2480px !important;}

.hero{
  padding: 11rem 2rem 0rem 2rem;
}

  .hero-content {
      padding: 10rem 0 6rem 0;
  }

  h1 {
      font-size: 5rem;
      margin-bottom: 2.5rem;
  }

  .subtitle {
      font-size: 1.75rem;
      margin-bottom: 4rem;
      max-width: 1000px;
  }

  .cta-button {
      padding: 1.5rem 3rem;
      font-size: 1.5rem;
  }

  .video-container {
      min-height: 1000px;
  }

  /* Navigation adjustments */
  .container-nav {
    max-width: 2400px;
      /* max-width: 100%; */
      /* padding: 0 3rem; */
      margin :  0 auto;
  }

  .nav-content {
      padding: 2rem 0;
  }

  .logo {
      font-size: 1.75rem;
  }

  .logo-img {
      width: 3rem;
      height: 3rem;
  }

  .nav-link {
      font-size: 1.25rem;
  }

  .try-free-btn, .sign-in-btn {
      padding: 1rem 2rem;
      font-size: 1.25rem;
  }

  /* Cards section */
  .cards-container {
      max-width: 2400px;
      padding: 4rem 3rem 4rem 3rem;
      gap: 3rem;
  }

  .card {
      padding: 3rem;
  }

  .card-title {
      font-size: 2.5rem;
  }

  .card-description {
      font-size: 1.5rem;
  }

  .preview-grid {
      gap: 2rem;
  }

  .preview-box {
      height: 200px;
  }

  /* Icon navigation */
  .icon-container {
      max-width: 2400px;
      padding: 6rem 3rem;
  }

  .icon-nav {
      gap: 3rem;
  }

  .icon-item {
      padding: 2rem;
      min-width: 150px;
  }

  .icon {
      width: 5rem;
      height: 5rem;
  }

  .icon-item span {
      font-size: 1.25rem;
  }
}


@keyframes float {
  0% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-5px);
  }
  100% {
      transform: translateY(0px);
  }
}


.about-us-container , .worker-section {
  display: flex;
  max-width: 95%;
  /* min-height: 100vh; */
  padding: 5rem 2rem;
  margin: 0 auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #00000055;
  border-radius: 1rem;
}

.about-us-left {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-canvas {
  width: 100%;
  height: 500px;
  /* background: rgba(255, 255, 255, 0.05); */
  border-radius: 1rem;
}

.about-us-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text);
}

.about-us-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-us-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.about-us-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.about-us-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* 1920px and above (23 inch monitors) */
@media screen and (min-width: 1920px) {
  .about-us-container,.worker-section {
      /* max-width: 1800px !important; */
      margin: 0 auto;
      padding: 5rem 2rem;
  }

  .about-us-canvas {
      height: 700px;
  }

  .about-us-subtitle {
      font-size: 1.25rem;
  }

  .about-us-title {
      font-size: 3.5rem;
  }

  .about-us-description {
      font-size: 1.5rem;
      max-width: 900px;
  }

  .about-us-stats {
      gap: 3rem;
  }

  .stat-value {
      font-size: 3rem;
  }

  .stat-label {
      font-size: 1.125rem;
  }
}

/* 2560px and above (27 inch monitors) */
@media screen and (min-width: 2560px) {
  .about-us-container,.worker-section {
      max-width: 2400px;
      padding: 5rem 3rem;
  }

  .about-us-canvas {
      height: 900px;
  }

  .about-us-subtitle {
      font-size: 1.5rem;
  }

  .about-us-title {
      font-size: 4.5rem;
  }

  .about-us-description {
      font-size: 1.75rem;
      max-width: 1200px;
  }

  .about-us-stats {
      gap: 4rem;
  }

  .stat-value {
      font-size: 4rem;
  }

  .stat-label {
      font-size: 1.25rem;
  }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .about-us-container,.worker-section {
      flex-direction: column;
      padding: 5rem 1rem;
  }

  .about-us-left, 
  .about-us-right {
      width: 100%;
  }

  .about-us-canvas {
      height: 250px;
  }

  .about-us-stats {
      flex-direction: column;
      gap: 1rem;
  }
}







.section-container {
  height: 300vh; /* Reduced to 4 sections total */
  position: relative;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.sticky-wrapper {
  position: sticky;
  height: 100vh;
  top: 0;
  overflow: hidden;
}

.sections {
  height: 100%;
  width: 100%;
  position: absolute;
}

.section {
  position: absolute;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem, 4vw, 4rem);
  opacity: 0;
  transform: translateX(50vw);
}

.shape-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  mix-blend-mode: multiply;
  background: black;
}

.shape {
  width: min(20rem, 40vw);
  height: min(20rem, 40vw);
  transform: rotate(45deg);
}

.shape svg {
  width: 100%;
  height: 100%;
}

.shape svg path {
  fill: white;
}

.gradient-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      255deg,
      #fa0ede,
      #521de6 30%,
      #000000 65%
  );
  z-index: -1;
}

@media screen and (min-width: 1920px) {
  .shape {
      width: min(25rem, 40vw);
      height: min(25rem, 40vw);
  }
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.s-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

/* Alternate section layouts */
.section:nth-child(even) .container {
  flex-direction: row-reverse;
}

.s-content {
  flex: 1;
  padding: 2rem;
}

.s-visual {
  flex: 1;
  position: relative;
}

.s-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #1a2b4e;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.s-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #4a5568;
  margin-bottom: 2rem;
}

.s-buttons {
  display: flex;
  gap: 1rem;
}

.s-btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.s-btn-primary {
  background: #2563eb;
  color: white;
}

.s-btn-primary:hover {
  background: #1d4ed8;
}

.s-btn-secondary {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
}

.s-btn-secondary:hover {
  background: #f8fafc;
}

.s-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.s-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative elements */
.decoration {
  position: absolute;
  border-radius: 8px;
  z-index: -1;
}

.decoration-1 {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  top: -20px;
  left: -20px;
  transform: rotate(15deg);
}

.decoration-2 {
  width: 80px;
  height: 80px;
  background: rgba(37, 99, 235, 0.15);
  bottom: -20px;
  right: -20px;
  transform: rotate(-15deg);
}

/* Responsive design */
@media (max-width: 1024px) {
  .s-container {
      flex-direction: column !important;
      gap: 2rem;
      padding: 1rem;
  }

  .s-content, .visual {
      width: 100%;
      padding: 1rem;
  }

  .s-buttons {
      flex-direction: column;
      width: 100%;
  }

  .s-btn {
      width: 100%;
      text-align: center;
  }
}









.feature-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px; /* Accommodates larger screens */
  /* margin: 0 auto; */
  padding: 1rem;
  gap: 2rem;
}

/* Left content section */
.left-section {
  flex: 1;
  min-width: 300px;
  max-width: 800px;
  padding: 1rem;
}

/* Tag styling */
.tag {
  display: inline-block;
  /* background-color: #f0f0f0; */
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Heading styles */
/* h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
} */

/* Subtitle styles */
.subtitle-scroll {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* CTA button styles */
.cta-scroll {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border: none;
  border-radius: 8px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-scroll:hover {
  background-color: #0056b3;
}

/* Right section with image */
.right-section {
  flex: 1;
  min-width: 300px;
  max-width: 800px;
  padding: 1rem;
}

.right-section img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Media Queries */
/* For tablets */
@media screen and (max-width: 1024px) {
  .feature-content {
    padding: 1.5rem;
  }
  
  .left-section,
  .right-section {
    max-width: 600px;
  }
}

/* For larger screens (23-27 inch monitors) */
@media screen and (min-width: 1920px) {
  .feature-content {
    padding: 3rem 4rem;
  }
  
  .left-section,
  .right-section {
    max-width: 900px;
  }
/*   
  h1 {
    font-size: 4rem;
  } */
  .hero-scroll {
   /* max-width: 1800px !important; */
  }
  .subtitle-scroll {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 2560px) {
  .hero-scroll {
    max-width: 2400px !important;
   }
}

/* For mobile devices */
@media screen and (max-width: 768px) {
  .feature-content {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .left-section,
  .right-section {
    min-width: 100%;
  }
  
  .subtitle-scroll {
    margin: 0 auto 2rem;
  }
}




.security-section {
  display: flex;
  max-width: 95%;
  padding: 5rem 2rem;
  margin: 0 auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #a2b7ff33;
  border-radius: 1rem;
  margin-bottom: 5rem;
}
.integration-section{
  display: flex;
  max-width: 95%;
  padding: 5rem 2rem;
  margin: 0 auto;
  gap: 1rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #a2b7ff33;
  border-radius: 1rem;
  margin-bottom: 5rem;
  min-height:700px;

}
.integration-right{
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.integration-title{
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
}
.integration-images-container{
  display: flex;
  gap: 3rem;
  width: 50%;
  flex-direction: column;
  align-items: center;
}
.integration-text{
  /* max-width: 50%; */
}

.security-left {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--text);
}

.security-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.security-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.security-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.security-right {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-shield {
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.security-shield-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,#3a6ced, #3a6ced);
  border-radius: 50%;
  opacity: 0.2;
  animation: shield-pulse 2s infinite;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.security-shield-icon {
  width: 60%;
  height: 60%;
  position: relative;
  z-index: 1;
}

.security-shield-icon svg {
  width: 100%;
  height: 100%;
  fill: #3a6ced;
}

.security-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.security-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--text);
  border-radius: 50%;
  opacity: 0.2;
}

@keyframes shield-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* 1920px and above (23 inch monitors) */
@media screen and (min-width: 1920px) {
  .security-section {
      margin: 0 auto;
      padding: 5rem 2rem;
      margin-bottom: 5rem;
  }

  .security-shield {
      height: 700px;
  }

  .security-subtitle {
      font-size: 1.25rem;
  }

  .security-title {
      font-size: 3.5rem;
  }

  .security-description {
      font-size: 1.5rem;
      max-width: 900px;
  }
}

/* 2560px and above (27 inch monitors) */
@media screen and (min-width: 2560px) {
  .security-section {
      max-width: 2400px;
      padding: 5rem 3rem;
  }
  .integration-section {
    max-width: 2400px;
    padding: 5rem 3rem;
}
  .security-shield {
      height: 900px;
  }

  .security-subtitle {
      font-size: 1.5rem;
  }

  .security-title {
      font-size: 4.5rem;
  }

  .security-description {
      font-size: 1.75rem;
      max-width: 1200px;
  }
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .security-section {
      flex-direction: column;
      padding: 5rem 1rem;
  }
  .integration-section {
    flex-direction: column;
    padding: 5rem 1rem;
    gap:4rem;
}
.integration-right,.integration-images-container{
  width:100%;
}

  .security-left,
  .security-right {
      width: 100%;
  }

  .security-shield {
      height: 250px;
  }
}