
@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html {
    scroll-behavior: smooth;
    width: 100%;
}

body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    min-height: 100vh;
    background-color: rgb(11, 11, 11);
    color: white;
    cursor: none;
    width: 100%;
    max-width: 100vw;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    #cursor-svg {
        display: none;
    }
}

.header {
    height: 80px;
    border-bottom: 1px solid rgb(26, 26, 26);
    background-color: rgba(12, 12, 12, 0.8);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
    z-index: 1001;
}

@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        z-index: 1000;
    }
    
    .main {
        padding-top: 80px;
    }
}

.nav {
    max-width: 1500px;
    width: 100%;
    height: 80px;
    margin: auto;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .nav {
        width: 100%;
        padding: 0 15px;
    }
}

.logo {
    width: 190px;
    height: 50px;
}

.jk {
    height: 100%;
    width: 100%;
    align-items: center;
    display: flex;
}


.navbar {
    justify-content: end;
    display: flex;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin: 0;
    }
    
    .navbar {
        position: fixed;
        top: 81px;
        right: -100%;
        width: 75%;
        max-width: 250px;
        height: calc(100vh - 79px);
        background-color: rgb(10, 10, 10);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 0;
        border-left: 1px solid rgb(26, 26, 26);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        touch-action: pan-y;
        display: flex;
        transition: right 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
        opacity: 0;
        transform: translateX(20px);
        box-sizing: border-box;
    }
    
    .navbar.active {
        right: 0;
        opacity: 1;
        transform: translateX(0);
    }
    
    .navbar .tt {
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .navsec {
        width: 100%;
        padding: 22px 35px;
        font-size: 19px;
        text-align: left;
        border-bottom: 1px solid rgb(26, 26, 26);
        transition: all 0.3s ease;
        position: relative;
        margin: 0 !important;
        box-sizing: border-box;
        flex-shrink: 0;
    }
    
    .navsec:first-child {
        margin-top: 0 !important;
        padding-top: 22px;
    }
    
    .navsec::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(180deg, #666, #999);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }
    
    .navsec:hover::before {
        transform: scaleY(1);
    }
    
    .navsec:hover {
        transform: none;
        background-color: rgba(25, 25, 25, 0.8);
        padding-left: 40px;
    }
    
    .navsec:active {
        background-color: rgba(30, 30, 30, 0.9);
    }
    
    .navsec:first-child {
        margin-top: 0;
    }
    
    .navsec:last-child {
        border-bottom: none;
    }
}

.tt {
    justify-content: center;
    align-items: center;
    display: flex;
    width: 500px;
    height: 80px;
    color: white;
    font-size: 110%;
}

.navsec {
    margin: 10px;
    transition: 0.3s;
}

.navsec:hover {
    transform: translateY(-2px);
}
.navsec:active {
    color: #c4c4c4;
}


.section1 {
    width: 100%;
    max-width: 100vw;
    height: 1000px;
    justify-content: center;
    align-items: center;
    display: flex;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .section1 {
        height: auto;
        min-height: 600px;
        padding: 40px 20px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .prevmain {
        align-items: flex-start;
        width: 100%;
    }
}

.mmtext {
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .mmtext {
        text-align: left;
        width: 100%;
    }
}

.textmain {
    font-size: 330%;
    font-weight: 600;
    
}

@media (max-width: 768px) {
    .textmain {
        font-size: 300%;
    }
}

@media (max-width: 480px) {
    .textmain {
        font-size: 250%;
      
    }
}

.textdes {
    font-size: 150%;
    color: rgb(255, 255, 255);
    font-weight: 600;
}

.textdes-mobile {
    display: none;
}

.start-now-btn {
    display: none;
}

@media (max-width: 768px) {
    .textdes {
        display: none;
    }
    
    .textdes-mobile {
        display: block;
        font-size: 16px;
        line-height: 1.6;
        color: rgb(194, 194, 194);
        font-weight: 400;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .start-now-btn {
        display: inline-block;
        background-color: white;
        color: rgb(11, 11, 11);
        border: none;
        padding: 14px 32px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        margin-top: 30px;
        transition: all 0.3s ease;
        cursor: pointer;
        font-family: "Open Sans", sans-serif;
    }
    
    .start-now-btn:hover {
        background-color: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
    }
    
    .start-now-btn:active {
        transform: translateY(0);
        background-color: rgba(255, 255, 255, 0.95);
    }
}

@media (max-width: 480px) {
    .textdes {
        font-size: 100%;
    }
    
    .textdes-mobile {
        font-size: 14px;
    }
    
    .start-now-btn {
        padding: 12px 28px;
        font-size: 14px;
        margin-top: 25px;
    }
}




.dwn {
    margin-top: 20px;
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 8px;
  border-width: 0;
  box-shadow: rgba(255, 255, 255, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #000000;
  display: inline-flex;
  font-family: "JetBrains Mono",monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
}

.dwn:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(255, 255, 255, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.dwn:hover {
  
  transform: translateY(-2px);
}

.dwn:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}


.section3 {
    justify-content: center;
    align-items: center;
    display: flex;
}


.section3 {
    min-height: 850px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 40px 20px;
    background-color: rgba(12, 12, 12, 0.8);
    border-top: 1px solid rgb(26, 26, 26);
    border-bottom: 1px solid rgb(26, 26, 26);
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.featurescontainer {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.featurestitle {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 60px;
    text-align: center;
}

.featuresgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    position: relative;
}

@media (max-width: 1024px) {
    .featuresgrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featuresgrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .featurecard {
        padding: 25px;
    }
    
    .featurestitle {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.featurecard {
    border: 1px solid rgb(26, 26, 26);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s;
    background-color: rgba(12, 12, 12, 0.8);
    overflow: hidden;
    z-index: 1;
}

.featurecard:hover {
   
}



.featurecard:hover::before {
    opacity: 1;
}

.featureicon {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FCFCFD;
}

.featuretitle {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.featuredes {
    color: rgb(194, 194, 194);
    line-height: 1.6;
}

.loader {
    color: #fff;
    font-size: 8px;
    width: 0.8em;
    height: 0.8em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
  }
  
  @keyframes mulShdSpin {
    0%,
    100% {
      box-shadow: 0 -3em 0 0.2em, 
      2em -2em 0 0em, 3em 0 0 -1em, 
      2em 2em 0 -1em, 0 3em 0 -1em, 
      -2em 2em 0 -1em, -3em 0 0 -1em, 
      -2em -2em 0 0;
    }
    12.5% {
      box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 
      3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, 
      -2em 2em 0 -1em, -3em 0 0 -1em, 
      -2em -2em 0 -1em;
    }
    25% {
      box-shadow: 0 -3em 0 -0.5em, 
      2em -2em 0 0, 3em 0 0 0.2em, 
      2em 2em 0 0, 0 3em 0 -1em, 
      -2em 2em 0 -1em, -3em 0 0 -1em, 
      -2em -2em 0 -1em;
    }
    37.5% {
      box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
       3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, 
       -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
      box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
       3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, 
       -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
      box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
       3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, 
       -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
      box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 
      3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
      -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
      box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 
      3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, 
      -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
  }
    

  
body.loading {
    overflow: hidden;
}

.page-loader {
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.87);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: #fff;
}

.ghost-loader {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
}

.loadermain {
    margin: auto;
    width: 100px;
    height: 100px;
}

.loaderimg {
    width: 100px;
    animation: cwelitobambito 2s infinite;
}

@keyframes cwelitobambito {
    0%{
    }
    50%{
        transform: translateY(-5px);
    }
    100%{
    }
}

.loading-subtitle {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 500;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #f3f3f3, #ececec);
    border-radius: 2px;
    width: 0%;
    animation: loading 3s ease-in-out infinite;
}

.loading-percentage {
    margin-top: 15px;
    font-size: 12px;
    color: #666;
    font-family: monospace;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

  svg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    width: 100vw;
    height: 100vh;
  }





::-moz-selection {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  
  ::selection {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  
  .section5 {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.philosophycontainer {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.philosophy {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.philosophycontent {
    max-width: 700px;
}

.philosophy h3 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.philosophy p {
    font-size: 20px;
    line-height: 1.5;
    color: rgb(194, 194, 194);
    margin: 0px 0;
}

.philosophyemphasis {
    font-size: 23px !important;
    font-weight: 600;
    color: white !important;
    margin-top: 20px !important;
}

.philosophydivider {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    margin: 0px auto 20px;
}

.philosophy h3, .philosophy p {
    animation: fadeIn 1.5s ease-out;
}

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

.philosophy-emphasis {
    position: relative;
    display: inline-block;
}

.footer {
    background-color: rgb(8, 8, 8);
    border-top: 1px solid rgb(26, 26, 26);
    padding: 40px 0 30px;
    font-family: "Open Sans", sans-serif;
}

.footercontainer {
    max-width: 1200px;
    margin: 0 auto;
    cursor: none;
    padding: 0 20px;
}

.footermain {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 30px;
}

.footerbrand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footerlogo {
    height: 30px;
    margin-bottom: 10px;
}

.footertagline {
    color: #909090;
    font-size: 14px;
}

.footerlinks {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    cursor: none;
}

.footerlinks a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    cursor: none;
}

.footerlinks a:hover {
    color: white;
}

.footersocial {
    display: flex;
    gap: 15px;
    cursor: none;
}

.footersocial a {
    color: #909090;
    font-size: 18px;
    transition: color 0.2s ease, transform 0.2s ease;
    cursor: none;
}

.footersocial a:hover {
    color: white;
    transform: translateY(-2px);
}

.footerbottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgb(26, 26, 26);
    flex-wrap: wrap;
    gap: 20px;
}

.footerlegal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    cursor: none;
}

.footerlegal a {
    color: #707070;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    cursor: none;
}

.footerlegal a:hover {
    color: #b0b0b0;
}

.footercopyright {
    color: #707070;
    font-size: 13px;
}

.languageselect {
    background-color: transparent;
    color: #909090;
    border: 1px solid rgb(26, 26, 26);
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    appearance: none;
    outline: none;
    transition: all 0.2s ease;
    cursor: none;
}

.languageselect:hover {
    border-color: #505050;
    color: white;
}

@media screen and (max-width: 768px) {
    .footermain {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footerlinks {
        justify-content: center;
    }
    
    .footerbottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footerlegal {
        justify-content: center;
    }
}


.previewimg {
    max-width: 1100px;
    width: 100%;
    height: auto;
    aspect-ratio: 1100/620;
    border-radius: 15px;
    margin: auto;
    margin-top: 50px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .previewimg {
        display: none;
    }
}


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

@media (max-width: 768px) {
    .prevmain {
        padding: 20px;
    }
}

.hdlg {
    width: 60px;
}

@media (max-width: 768px) {
    .hdlg {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .hdlg {
        width: 40px;
    }
}

.section4 {
    height: 850px;
    width: 100%;
    max-width: 100vw;
    justify-content: center;
    align-items: center;
    display: flex;
    box-sizing: border-box;
    overflow-x: hidden;
}

.dsad {
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}


.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}




.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0;
    box-sizing: border-box;
    justify-items: center;
    width: 100%;
}

@media (min-width: 769px) {
    .pricing-grid {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card {
    background-color: rgba(12, 12, 12, 0.8);
    border: 1px solid rgb(26, 26, 26);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
    transform-style: preserve-3d;
    will-change: transform;
}




.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
}

.price-period {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
}

.plan-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-item i {
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.feature-item .fas.fa-check {
    color: #f3f3f3;
}

.feature-item .fas.fa-times {
    color: #ef4444;
}

.feature-item.disabled {
    color: #6b7280;

}

.pricing-button {
    width: 100%;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0);
       border: 1px solid rgb(26, 26, 26);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: none;
  
}

.pricing-button:hover {
    background: rgba(46, 46, 46, 0.11);

}

.pricing-button.pro {

}



@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        padding: 2rem;
    }
    
    .section4 {
        height: auto;
        min-height: 600px;
        padding: 40px 20px;
    }
    
    .dsad {
        width: 100%;
    }
    
    .pricing-container {
        width: 100%;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    .featurestitle {
        font-size: 28px;
    }
}
