/* Glass-like black header styles */
* {

    cursor: none;
  }


.cursor, .outerCircle {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999999;
  }

  .cursor {

    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #FFFFFF;
  }

  .outerCircle {
    width: 40px;
    height: 40px;
  /*   border: 1px solid #aaa; */
    border-radius: 50%;
    transition: 0.1s ease;
    border: 2px solid #bf1818;
  }
  .click {
    animation: click 300ms ease 1;
  }

body, html{
    margin: 0;
    padding: 0;
    border: 5px solid white; /* Add a white border */
    box-sizing: border-box;
    /* width: 100%;
    height: 100%; */
    background:  #000000;
  }

  @media (max-width: 768px) {
    html,
    body {
      border: 0;
    }

    html::before {
      content: none;
    }

    body::before {
      content: none;
    }
  }

  #app {
    position: relative;
    height: 500px !important;
    font-family: "Montserrat", Arial, sans-serif;
  }

  .hero {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  h1 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    line-height: 100%;
    user-select: none;
  }

  h2{
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 2rem !important;
    font-weight: bold;
    color: #fff
  }

  h1 {
    position: relative;
    z-index: 2;
    font-size: 100px;
    font-weight: 700;
    -webkit-text-stroke: 1px black;
  }

  h2 {
    font-size: 80px;
    font-weight: 500;
    /* -webkit-text-stroke: 1px black; */
  }

  #webgl-canvas {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
  }

  .buttons {
    position: fixed;
    width: 100%;
    bottom: 15px;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  button {
    font-family: "Montserrat", Arial, sans-serif;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    border: 1px solid grey;
    padding: 4px 8px;
  }
  @media (max-width: 768px) {


    h1 {
        font-size: 60px; /* Adjust font size for tablets */
        line-height: 1.2;
        -webkit-text-stroke: 1px black;
    }

    h2 {
        font-size: 30px; /* Adjust font size for tablets */
        line-height: 1.2;
        /* -webkit-text-stroke: 1px black; */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 40px; /* Adjust font size for mobile devices */
        line-height: 1.3;
        -webkit-text-stroke: 1px black;
    }

    h2 {
        font-size: 30px; /* Adjust font size for mobile devices */
        line-height: 1.3;
        /* -webkit-text-stroke: 1px black; */
    }
}



/* 2026 */

#ny2026 {display:block;
    display: block;
      position: absolute;
      top: 18%;
      left: 16px;
      height: 60vh;
    }
    #digits {
      width: auto;
      fill: none;
      stroke-width: 1;
      display: block;
      stroke: #fff;
      stroke-dasharray:350px;
        stroke-dashoffset:350px;
      -webkit-animation:8s Yr linear infinite;
              animation:8s Yr linear infinite;
      stroke-linecap:round;

    }
    @-webkit-keyframes Yr {
      0% {
            stroke-dashoffset:350px;
      }
      20%,80% {
          stroke-dashoffset:0
      }
      100% {
         stroke-dashoffset:-350px;
      }
    }
    @keyframes Yr {
      0% {
            stroke-dashoffset:350px;
      }
      20%,80% {
          stroke-dashoffset:0
      }
      100% {
         stroke-dashoffset:-350px;
      }
    }
    @media (max-width: 768px) {
        #ny2026 {display:block;
            display: block;
              position: absolute;
              top: 16px;
              left: 16px;
              height: 20vh;
            }
    }

    .services-section {
        padding: 4rem 2rem;
        color: white;
        text-align: center;
    }

    .services-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

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

    .service-card {
        background: hsl(219, 30%, 18%);
        padding: 2rem;
        border-radius: 10px;
        text-align: left;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }

    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
    .why-choose-us-section {
        padding: 4rem 2rem;
        color: white;
        text-align: center;
    }

    .features-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .feature-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 10px;
        max-width: 300px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        text-align: left;
    }
    .tech-stack-section {
        padding: 4rem 2rem;
        color: white;
        text-align: center;
    }

    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .tech-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 5px;
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }
    .process-section {
        padding: 4rem 2rem;
        color: white;
        text-align: center;
    }

    .process-steps {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .step-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 2rem;
        border-radius: 10px;
        max-width: 300px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
        text-align: left;
    }
    .cta-section {
        padding: 4rem 2rem;
        color: white;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        border-radius: 10px;
        margin: 2rem;
    }

    .cta-button {
        display: inline-block;
        padding: 1rem 2rem;
        background: #00bcd4;
        color: white;
        font-size: 1.2rem;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 1rem;
        transition: background 0.3s ease;
    }

    .cta-button:hover {
        background: #0097a7;
    }

    @import url('/vendor/google-fonts/google-fonts.css');

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }
      html{
        scroll-behavior: smooth;
      }
      body{
        background: #000000;
      }
      ::selection{
        color: #fff;
        background: #ff7979;
      }
      .wrapper{
        max-width: 1080px;
        margin: 50px auto;
        padding: 0 20px;
        position: relative;
      }
      .wrapper .center-line{
        position: absolute;
        height: 100%;
        width: 4px;
        background: #fff;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
      }
      .wrapper .row{
        display: flex;
      }
      .wrapper .row-1{
        justify-content: flex-start;
      }
      .wrapper .row-2{
        justify-content: flex-end;
      }
      .wrapper .row section{
        background: #fff;
        border-radius: 5px;
        width: calc(50% - 40px);
        padding: 20px;
        position: relative;
      }
      .wrapper .row section::before{
        position: absolute;
        content: "";
        height: 15px;
        width: 15px;
        background: #fff;
        top: 28px;
        z-index: -1;
        transform: rotate(45deg);
      }
      .row-1 section::before{
        right: -7px;
      }
      .row-2 section::before{
        left: -7px;
      }
      .row section .icon,
      .center-line .scroll-icon{
        position: absolute;
        background: #f2f2f2;
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ff7979;
        font-size: 17px;
        box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
      }
      .center-line .scroll-icon{
        bottom: 0px;
        left: 50%;
        font-size: 25px;
        transform: translateX(-50%);
      }
      .row-1 section .icon{
        top: 15px;
        right: -60px;
      }
      .row-2 section .icon{
        top: 15px;
        left: -60px;
      }
      .row section .details,
      .row section .bottom{
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .row section .details .title{
        font-size: 22px;
        font-weight: 600;
      }
      .row section p{
        margin: 10px 0 17px 0;
      }
      .row section .bottom a{
        text-decoration: none;
        background: #ff7979;
        color: #fff;
        padding: 7px 15px;
        border-radius: 5px;
        /* font-size: 17px; */
        font-weight: 400;
        transition: all 0.3s ease;
      }
      .row section .bottom a:hover{
        transform: scale(0.97);
      }
      @media(max-width: 790px){
        .wrapper .center-line{
          left: 40px;
        }
        .wrapper .row{
          margin: 30px 0 3px 60px;
        }
        .wrapper .row section{
          width: 100%;
        }
        .row-1 section::before{
          left: -7px;
        }
        .row-1 section .icon{
          left: -60px;
        }
      }
      @media(max-width: 440px){
        .wrapper .center-line,
        .row section::before,
        .row section .icon{
          display: none;
        }
        .wrapper .row{
          margin: 10px 0;
        }
      }






/* General Section Styles */
.transform-cta-section {
    background-color: black;
    padding: 50px 0;
}

.transform-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

/* Text Column Styles */
.transform-text-column {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.transform-heading {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.transform-paragraph {
    color: white;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.transform-button {
    padding: 15px 40px;
    background-color: black;
    border: 2px solid white;
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transform-button:hover {
    background-color: white;
    color: black;
}

/* Image Column Styles */
.transform-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.transform-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 70%, black 100%);
}

.transform-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .transform-container {
        flex-direction: column;
        text-align: center;
    }

    .transform-text-column {
        /* padding: 20px 0; */
    }

    .transform-heading {
        font-size: 2rem;
    }

    .transform-paragraph {
        font-size: 1rem;
    }

    .transform-button {
        padding: 12px 30px;
    }

    .transform-image-wrapper {
        max-width: 300px;
    }
}



 /* Navigation container */
 .custom-nav {
    position: relative;
    width: 100%;
    /* height: 100px; */
  }

  /* Top thin white line */
  .top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 5002;
    background: white;
  }

  /* Upside-down trapezium */
  .logo-trapezium {
    position: absolute;
    top: 4px;
    left: 50%;
    z-index: 5001;
    display: block;
    transform: translateX(-50%);
    width: 321px;
    height: 60px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 80% 150%, 20% 150%);
  }

  .nav_logo{
    height: 50px;
    padding-left: 17%;
}

  /* Navigation items container */
  .nav-items {
    position: absolute;
    z-index: 5000;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  /* Navigation items styling */
  .nav-items li {
    position: relative;
  }

  .nav-items a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-shadow:
    0 0 10px black,
    0 0 20px black,
    0 0 30px black,
    0 0 40px black,
    0 0 50px black,
    0 0 75px black,
    0 0 100px black;font-size: 16px;
    font-weight: bold;
    padding: 0 10px;
  }

  /* Adjust space for middle items */
  .nav-items li:nth-child(2),
  .nav-items li:nth-child(3) {
    margin-left: 20px;
    margin-right: 20px;
  }


  .nav-items li:nth-child(1){
       margin-left: 40px;
  }
  .nav-items li:nth-child(4) {
      margin-right: 40px;

  }

  /* Hamburger menu icon */
  .menu-button {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 5004;
    padding: 10px;
    outline: none;
    box-shadow: none;
  }

  .menu-button:focus,
  .menu-button:focus-visible,
  .menu-button:active {
    outline: none;
    box-shadow: none;
  }

  .menu-button .bar {
    display: block;
    width: 30px;
    height: 4px;
    margin: 6px auto;
    background-color: white;
    transition: all 0.3s ease;
  }

  /* Fullscreen menu */
  .fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    justify-content: center;
    align-items: center;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
    z-index: 5003;
  }

  .fullscreen-menu.active {
    visibility: visible;
    opacity: 1;
  }

  .fullscreen-menu a {
    color: white;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .fullscreen-menu a:hover {
    background: rgba(255, 255, 255, 0.5);
  }

  /* Mobile design */
  @media (max-width: 768px) {
    .nav-items {
      display: none; /* Hide nav items */
    }

    .custom-nav {
      z-index: 5004;
    }

    .menu-button {
      display: block; /* Show hamburger menu */
      top: 10px;
      right: 14px;
      width: 60px;
      height: 60px;
      padding: 0;
    }

    .fullscreen-menu {
      inset: 0;
      width: 100%;
      height: 100dvh;
      padding: 110px 18px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      justify-content: flex-start;
      background: rgba(0, 0, 0, 1);
      border: 3px solid #ffffff;
      box-shadow: none;
      backdrop-filter: none;
      overflow-y: auto;
    }

    .fullscreen-menu a {
      display: block;
      width: 100%;
      padding: 14px 16px;
      font-size: 18px;
      font-weight: 700;
      text-decoration: none;
      color: white; /* Text only in white */
      background: #101010;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 22px;
      text-align: left;
    }

    body.menu-open {
      overflow: hidden;
      touch-action: none;
    }

    .fullscreen-menu a:hover {
      background: #1a1a1a;
    }

    /* Adjust the middle bar of the hamburger icon */
    .menu-button .bar:nth-child(2) {
      width: 40px; /* Make the middle bar longer */
    }


    .nav_logo {
        height: 40px;
        padding-left: 17%;
        padding-top: 2px;
    }

    .logo-trapezium {
        width: 253px;
    }


  }



  #services {
    position: relative;
}

.services-grid {
    position: relative;
    z-index: 2; /* Keep service cards above the SVG */
}

.background-svg {
    position: absolute;
    bottom: -50px; /* Adjust the position as needed */
    right: -50px; /* Adjust the position as needed */
    z-index: 1; /* Ensure it's below the content */
    opacity: 0.5; /* Control the transparency */
    pointer-events: none; /* Make the SVG non-interactive */
}


body {
    font-family: 'Open Sans', sans-serif;
    background-color: black;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.h1class {
    color: hsl(0, 0%, 100%);
    font-family: 'Raleway', sans-serif;
    font-size: 2em;
    line-height: 1.5em;
}

p {
    color: hsl(0, 0%, 100%);
    font-size: 1em;
    line-height: 1.5em;
    font-weight: 400;
}

/* a {
    color: hsl(176, 68%, 64%);
    text-decoration: none;
    border-bottom: 1px solid hsl(176, 68%, 64%);
    padding-bottom: 5px;
    cursor: pointer;
}

a:hover {
    color: hsl(176, 61%, 81%);
    border-bottom: 1px solid hsl(176, 61%, 81%);
    font-weight: 700;
} */

/* Section 3 - Stay Productive */
.section3 {
    width: 100%;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section3 img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.sec3text {
    margin-top: 20px;
    max-width: 500px;
}

/* Section 4 - Quotes */
.section4 {
    width: 100%;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#quotation{
position:absolute;
margin-left:20px;
z-index:1;
margin-left: -35%;
margin-top:-35px;
}
.quote-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}

.card {
    background-color: hsl(219, 30%, 18%);
    padding: 20px;
    border-radius: 5px;
    color: hsl(0, 0%, 100%);
}

.card img {
    float: left;
    margin-right: 10px;
    height: 40px;
    border-radius: 50%;
}

/* Section 5 - Contact Box */
.section5 {
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box {
    background-color: hsl(217, 28%, 15%);
    border-radius: 5px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    text-align: center;
    box-shadow: 5px 5px 5px hsl(222, 31%, 11%);
}

.contact-box h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 0.9em;
    margin-bottom: 20px;
}

#email,
#submit {
    width: 90%;
    max-width: 400px;
    margin: 10px 0;
}

#submit {
    background-image: linear-gradient(to right, hsl(176, 68%, 64%), hsl(198, 60%, 50%));
    color: white;
    font-weight: 700;
    cursor: pointer;
}

#submit:hover {
    background-image: linear-gradient(to left, hsl(176, 68%, 64%), hsl(198, 60%, 50%));
}

/* Responsive Styles */
@media (min-width: 768px) {
    .section3 {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .section3 img {
        max-width: 300px;
    }

    .sec3text {
        margin-left: 110px;
        max-width: 400px;
    }

    .quote-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .contact-box {
        padding: 30px;
    }


}

@media (min-width: 1024px) {
    .section3 img {
        max-width: 500px;
    }

    .sec3text {
        max-width: 500px;
    }

    .quote-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 480px) {
    #quotation {
        margin-left: -45%;
    }
}




footer{
    position: relative;
    background: #000;
    padding: 0 10px 10px;
    box-sizing: border-box;
}

footer::before{
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 0;
    bottom: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}




.footer{
    background:#000;
    padding:30px 0px;
    font-family: 'Play', sans-serif;
    text-align:center;
    position: relative;
    z-index: 1;
    }

    .footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
    color:gray;
    font-size:0.8em;
    }

    .footer .row:first-child{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    }

    .footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
    }

    .footer .row a:hover{
    color:#fff;
    }

    .footer .row ul{
    width:100%;
    }

    .footer .row ul li{
    display:inline-block;
    margin:0px 30px;
    }

    .footer .row a i{
    font-size:2em;
    margin:0% 1%;
    }

    @media (max-width:720px){
    .footer{
    text-align:center;
    padding:20px 14px;
    }
    .footer .row{
    margin:0;
    padding:10px 0;
    }
    .footer .row:first-child{
    justify-content:center;
    gap:16px;
    }
    .footer .row ul{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:0;
    margin:0;
    }
    .footer .row ul li{
    display:block;
    margin:0;
    text-align:center;
    }
    .footer .row a i{
    margin:0;
    font-size:1.9em;
    }
    .footer .row:last-child{
    font-size:0.95rem;
    line-height:1.45;
    word-break:break-word;
    }
    }























.iam{
color: white;
font-size: 55px;
padding: 15px;
font-family: sans-serif;
}
.text{
color: white;
border-right: 2px solid red;
font-size: 55px;
font-family: sans-serif;
color: rgb(255, 30, 0);
}
.title_wrapper_type{
display: flex;
justify-content: center;
align-items: center;
}

@media (max-width: 480px) {

.cursor, .outerCircle {
    display: none;
  }

  .cursor {

    display: none;
  }
}


/* footer{
    z-index: 9000;
} */
