.homepage {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #030303;
  font-family: 'Quicksand', system-ui, sans-serif;
  overflow-x: visible; /* Or just remove the line completely */
  color: white;
  scroll-behavior: smooth;
}
  .hero-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; ❌ removed */
  }
  




  .background-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), transparent 50%, rgba(244, 63, 94, 0.05));
    filter: blur(48px);
    pointer-events: none;
  }


  .background-dark-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #030303, transparent 50%, rgba(3, 3, 3, 0.5));
    pointer-events: none;
  }


  /* Elegant Shape base styles */
  .elegant-shape {
    position: absolute;
    border-radius: 9999px;
    border: 2px solid rgba(255 255 255 / 0.15);
    box-shadow: 0 8px 32px rgba(255 255 255 / 0.10);
    backdrop-filter: blur(2px);
    overflow: hidden;
  }


  .elegant-shape::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(255 255 255 / 0.2), transparent 70%);
    pointer-events: none;
  }


  /* Gradient backgrounds for ElegantShape variants */
  .gradient-indigo {
    background: linear-gradient(to right, rgba(99, 102, 241, 0.15), transparent);
  }


  .gradient-rose {
    background: linear-gradient(to right, rgba(244, 63, 94, 0.15), transparent);
  }


  .gradient-violet {
    background: linear-gradient(to right, rgba(139, 92, 246, 0.15), transparent);
  }


  .gradient-amber {
    background: linear-gradient(to right, rgba(251, 191, 36, 0.15), transparent);
  }


  .gradient-cyan {
    background: linear-gradient(to right, rgba(6, 182, 212, 0.15), transparent);
  }


  /* Animation keyframes */
  @keyframes fadeInTranslateRotate {
    0% {
      opacity: 0;
      transform: translateY(-150px) rotate(var(--rotate-start));
    }


    100% {
      opacity: 1;
      transform: translateY(0) rotate(var(--rotate-end));
    }
  }


  @keyframes floatUpDown {


    0%,
    100% {
      transform: translateY(0);
    }


    50% {
      transform: translateY(15px);
    }
  }


  @keyframes fadeUpText {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }


    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* ElegantShape style with animation */
  .elegant-shape-animated {
    animation-name: fadeInTranslateRotate;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.23, 0.86, 0.39, 0.96);
    animation-duration: 2.4s;
  }


  .inner-floating {
    animation-name: floatUpDown;
    animation-duration: 12s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }


  /* Position & sizing helpers for shapes */
  .shape1 {
    --rotate-start: -3deg;
    --rotate-end: 12deg;
    left: -10%;
    top: 15%;
    width: 600px;
    height: 140px;
  }


  .shape2 {
    --rotate-start: -30deg;
    --rotate-end: -15deg;
    right: -5%;
    top: 70%;
    width: 500px;
    height: 120px;
  }


  .shape3 {
    --rotate-start: -23deg;
    --rotate-end: -8deg;
    left: 5%;
    bottom: 5%;
    width: 300px;
    height: 80px;
  }


  .shape4 {
    --rotate-start: 5deg;
    --rotate-end: 20deg;
    right: 15%;
    top: 10%;
    width: 200px;
    height: 60px;
  }


  .shape5 {
    --rotate-start: -40deg;
    --rotate-end: -25deg;
    left: 20%;
    top: 5%;
    width: 150px;
    height: 40px;
  }


  /* Container for text content */
  .content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
  }


  /* Badge styling with fade-up animation */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(255 255 255 / 0.08);
    background-color: rgba(255 255 255 / 0.03);
    border-radius: 9999px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUpText 1s forwards;
    animation-delay: 0.5s;
  }


  .badge svg {
    fill: rgba(244, 63, 94, 0.8);
    width: 0.5rem;
    height: 0.5rem;
  }


  .badge span {
    font-size: 0.875rem;
    color: rgba(255 255 255 / 0.6);
    letter-spacing: 0.05em;
  }


  /* Hero titles with fade-up animation and gradient text */
  .hero-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUpText 1s forwards;
    animation-delay: 0.7s;
    line-height: 1.1;
  }


  .title1 {
    font-size: 3rem;
    background: linear-gradient(to bottom, white, rgba(255 255 255 / 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
  }


  .title2 {
    font-size: 3rem;
    background: linear-gradient(to right, #818cf8 0%, #ffffffdd 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  @media (min-width: 640px) {
    .hero-title {
      font-size: 4.5rem;
    }


    .title1,
    .title2 {
      font-size: 4.5rem;
    }
  }




  @media (min-width: 768px) {
    .hero-title {
      font-size: 4rem;
    }
    
    .title1{
      font-size: 6rem;
    }
    .title2 {
      font-size: 5rem;
    }
  }


  /* Description paragraph with fade-up animation */
  .hero-description {
    max-width: 55rem;
    opacity: 0;
    animation: fadeUpText 1s forwards;
    animation-delay: 0.9s;
    color: rgba(255 255 255 / 0.4);
    font-weight: 300;
    margin: 0 auto 2rem;
    font-size: 1.8rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding: 0 1rem;
  }


  /* ------------------------
   NavBar Styles Below
   ------------------------ */
   


   .navbar-container{
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    margin-bottom: 1.5rem;
    padding-top: 0;
    width: max-content;
    max-width: 90vw;
  }
  
  @media (min-width: 640px) {
    .navbar-container {
      top: 0;
      bottom: auto;
      padding-top: 1.5rem;
      width: auto;
      max-width: none;
    }
  }
  
  .homepage-navbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255 255 255 / 0.1);
    border: 1px solid rgba(255 255 255 / 0.2);
    backdrop-filter: blur(12px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(0 0 0 / 0.4);
    position: relative;
    font-size: 1rem;
  }
  
  .nav-item {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    color: rgba(255 255 255 / 0.9);
    transition: color 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .nav-item:hover,
  .nav-item.active {
    color: #f43f5e;
    background-color: rgba(244, 63, 94, 0.1);
  }
  
  .nav-text {
    display: none;
  }


  @media (min-width: 768px) {
    .nav-text {
      display: inline;
      font-size: 12px;
    }
    
    .nav-icon {
      display: none;
    }
  }

  @media (max-width: 640px) {
    .homepage-navbar {
      flex-direction: column;
      padding: 0.75rem 1rem;
    }
  
    .nav-item {
      padding: 0.75rem 1rem;
      justify-content: center;
      font-size: 1.1rem;
    }

    .title1{
      font-size:2.5rem;
      
    }

    .title2{
      font-size:2.5rem;
      
    }

    .hero-title{
      margin-top: 10px !important;
    }

    .hero-description{
      font-size: 15px;
    }

    .services-title{
      font-size: 4rem !important;
    }

    .services-description{
      max-width: 100% !important;
      font-size: 1.5rem !important;
    }

    .mb-88px {
      margin-bottom: 88px;
    }
  }
  

  
  .nav-item.active {
    /* background: #000000; */
    color: white;
  }


  .highlight-lamp {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background-color: rgba(244, 63, 94, 0.05);
    z-index: -1;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }


  .highlight-lamp::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 0.25rem;
    /* background-color: #00FFFF; */
    border-radius: 1rem 1rem 0 0;
  }


  .highlight-lamp::after {
    content: "";
    position: absolute;
    border-radius: 9999px;
    background-color: rgba(244, 63, 94, 0.13);
    filter: blur(8px);
    top: -0.75rem;
    left: calc(50% - 1.5rem);
    width: 3rem;
    height: 1.5rem;
  }


  /* New Section styles */
  .new-section {
    background-color: #13171e;
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 5;
  }

  .second-section {
    background-color: black;
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
  }

  /* Scroll animation styles */
  .scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
  }

  .scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
  }


  :root {
    --line-w: 6px;
    --primary-1: #22d3ee;
    --primary-2: #6366f1;
    --primary-3: #a855f7;
    --ease: cubic-bezier(.22, .9, .2, 1);
  }

  /* Timeline */
  .timeline-wrap {
    position: relative;
    padding: 40px 0 140px;
    /* margin-top: 5rem;
    margin-bottom: 5rem; */
  }

  .timeline {
    position: relative;
    padding: 20px 0
  }

  .connector {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: var(--line-w);
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    z-index: 5
  }

  .progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: var(--line-w);
    height: 0%;
    top: 0;
    border-radius: 999px;
    z-index: 8;
    background: linear-gradient(180deg, var(--primary-1), var(--primary-2), var(--primary-3))
  }

  .comet {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    z-index: 12;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.9) 0%, rgba(99, 102, 241, 0.6) 50%, rgba(34, 211, 238, 0) 85%)
  }

  .step-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #222;
    border: 3px solid #555;
    z-index: 10;
    transition: all .4s var(--ease)
  }

  .step-marker.active {
    background: var(--primary-2);
    border-color: var(--primary-2);
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.6)
  }

  .event-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0
  }


  .sentence {
    max-width: 300px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s var(--ease)
  }

  .sentence.visible {
    opacity: 1;
    transform: translateY(0)
  }

  .left .sentence {
    margin-right: 300px;
    text-align: right
  }

  .right .sentence {
    margin-left: 300px;
    text-align: left
  }


  /* Scroll Panels Section */
  section.scroll-panels-section {
    position: relative;
    width: 100%;
    height: 300vh;
    /* Enough scroll height for 3 panels */
    background: black;
    /* margin-top: 2rem; */
    z-index: 10;
  }

  .scroll-section {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    z-index: 20;
  }

  .panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity;
  }

  .panel img {
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .panel h1 {
    font-size: 3rem;
    margin: 50px 0 10px 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  }

  .panel p {
    font-size: 1.2rem;
    max-width: 500px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }


  @media(max-width:700px) {

    .left .sentence,
    .right .sentence {
      margin: 0 auto;
      text-align: center
    }
  }


  .services-section {
    position: relative;
  }
  
  .services-container {
    min-height: 100vh;   /* ✅ allows content to grow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: #13171e;
    color: white;
  }
  
  
  .services-title {
    font-size: 7rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .services-title {
      font-size: 7rem;
    }
  }
  
  .services-description {
    font-size: 2rem;
    max-width: 60%;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    line-height: 2;
  }
  
  @media (min-width: 768px) {
    .services-description {
      font-size: 2rem;
    }
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }
  
  @media (min-width: 640px) {
    .services-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  .service-card {
    background-color: #1e2228;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: box-shadow 0.3s;
  }
  
  .service-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  }
  
  .service-img {
    width: 100%;
    height: 20rem;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0.625rem;
  }
  
  .service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }
  
  .service-card-desc {
    color: #d1d5db; /* text-gray-300 */
  }
  
  a.custom-no-hover-button {
    border: 1px solid black !important;
    background-color: transparent !important;
    color: #424250 !important;
    cursor: default;
    text-decoration: none;
  }
  
  a.custom-no-hover-button:hover {
    background-color: transparent !important;
    color: #424250 !important;
    border: 1px solid black !important;
    cursor: pointer;
  }

  

  

  
  
  

  