::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #131a29;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #4d7cfe, #d67bff);
    border-radius: 6px;
    border: 3px solid #131a29;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #617dcc, #b87ad4);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #4d7cfe #131a29;
}

/* For Edge and IE */
body {
    -ms-overflow-style: none;
}

@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-thumb {
        border-width: 1px;
    }
}
@font-face {
    font-family: xibon;
    src: url(./xibon.ttf);
}
 body,
 html {
     margin: 0;
     padding: 0;
    font-family: "xibon", Arial, Helvetica, sans-serif;
     background-color:#131a29;
     color: #ffffff;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 nav {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 150px;
     background-color: rgba(19, 26, 41,0.8);
     backdrop-filter: blur(10px);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .logo {
     font-size: 24px;
     font-weight: bold;
     color: #4d7cfe;
     text-decoration: none;
     background: linear-gradient(45deg, #4d7cfe, #d67bff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .nav-links {
     display: flex;
     align-items: center;
    justify-content: center;
        flex-grow: 1;
 }

 .nav-links a {
     color: #ffffff;
     text-decoration: none;
     margin-left: 30px;
     font-size: 16px;
     transition: color 0.3s ease;
 }

 .nav-links a:hover {
     color: #4d7cfe;
 }

 .get-started {
     background-color: transparent;
     color: #4d7cfe;
     padding: 10px 20px;
     border: 2px solid #4d7cfe;
     border-radius: 5px;
     text-decoration: none;
     transition: background-color 0.3s ease, color 0.3s ease;
     margin-left: 30px;
    font-size: 14px;
 }

 .get-started:hover {
     background-color: #4d7cfe;
     color: #000 !important;
 }

 .hero {
    text-align: center;
    padding: 100px 0;
    height: 54vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
 }

 h1,
 h2 {
     font-size: 55px;
     background: linear-gradient(45deg, #7790f5, #d54fb4);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 20px;
 }

 h2 {
     font-size: 50px;
     text-align: center;
     margin-bottom: 40px;
 }

 .subtitle {
     font-size: 20px;
     max-width: 600px;
     margin: 0 auto 40px;
 }

 .cta-form {
     display: flex;
     justify-content: center;
     margin-top: 40px;
 }

 input[type="email"] {
     padding: 12px 15px;
     width: 300px;
     border: none;
     border-radius: 4px;
     background-color: #1e2128;
     color: #ffffff;
     font-size: 16px;
     margin-right: 20px;
 }

 button {
     padding: 12px 20px;
     border: none;
    background: linear-gradient(45deg, #4d7cfe, #d67bff);
     color: #ffffff;
     border-radius: 4px;
     cursor: pointer;
     font-size: 16px;
     transition: background-color 0.3s ease;
 }

 button:hover {
background: linear-gradient(45deg, #617dcc, #b87ad4);
 }

 .section {
     padding: 80px 0;
     background-color: #13151a;
 }

 .card-grid {
     display: flex;
     justify-content: space-between;
     gap: 20px;
 }

 .card {
     background-color: #1e2128;
     border-radius: 10px;
     padding: 70px;
     text-align: center;
     flex: 1;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(77, 124, 254, 0.1), rgba(214, 123, 255, 0.1));
     opacity: 0;
     transition: opacity 0.3s ease;
 }

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

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

 .card-icon,
 .card-title,
 .card-value,
 .card-description {
     position: relative;
     z-index: 1;
 }
 .card-icon {
     font-size: 36px;
     margin-bottom: 20px;
 }

 .card-title {
     font-size: 25px;
     margin-bottom: 15px;
     color: #ffffff;
 }

 .card-value {
     font-size: 48px;
     font-weight: bold;
     margin-bottom: 15px;
     color: #4d7cfe;
 }

 .card-description {
     font-size: 18px;
     color: #e6dddd;
 }

 .ri-time-line {
     color: #4d7cfe;
 }

 .ri-brain-line {
     color: #d67bff;
 }

 .ri-flashlight-line {
     color: #ff6b6b;
 }

 .ri-money-dollar-circle-line {
     color: #4cd964;
 }

 .ri-line-chart-line {
     color: #5ac8fa;
 }

 .ri-team-line {
     color: #ff9500;
 }

 .roi-calculator {
     background-color: #13151a;
     padding: 80px 0;
     text-align: center;
 }

 .calculator-form {
     max-width: 100%;
     margin: 0 auto;
     background-color: #1e2128;
    padding: 40px 20px;
     border-radius: 10px;
    box-sizing: border-box
 }

 .input-group {
     margin-bottom: 20px;
     text-align: left;
 }

 .input-group label {
     display: block;
     text-align: left;
     margin-bottom: 10px;
     color: #ffffff;
     font-size: 16px;
 }

 .input-group input {
     width: 100%;
     padding: 15px;
     border: none;
     border-radius: 5px;
     background-color: #2a2d36;
     color: #ffffff;
     font-size: 18px;
    box-sizing: border-box;
 }

 .savings-result {
     background-color: #2a2d36;
     padding: 30px;
     border-radius: 10px;
     margin-top: 30px;
   
 }

 .savings-result h3 {
     margin-bottom: 15px;
     font-size: 20px;
     color: #ffffff;
 }

 .savings-amount {
     font-size: 48px;
     font-weight: bold;
     color: #4cd964;
     word-break: break-all;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 40px;
 }

 .section {
     padding: 100px 0;
 }

 h2 {
     font-size: 42px;
     margin-bottom: 60px;
 }

 .cta-section {
     background-color: #13151a;
     padding: 100px 0;
     text-align: center;

 }

 .cta-section p {
     font-size: 18px;
     max-width: 600px;
     margin: 0 auto 40px;
     color: #a0a0a0;
 }

 .cta-button {
     display: inline-block;
    background: linear-gradient(45deg, #4d7cfe, #d67bff);
     color: #ffffff;
     padding: 18px 36px;
     border-radius: 5px;
     text-decoration: none;
     font-size: 18px;
     transition: background-color 0.3s ease;
 }

 .cta-button:hover {
background: linear-gradient(45deg, #617dcc, #b87ad4);
 }

 footer {
     background-color: #1e2128;
     padding: 60px 0;
     color: #a0a0a0;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
 }

 .footer-column {
   
     max-width: 200px;
     margin-bottom: 20px;
 }

 .footer-column h4 {
     color: #ffffff;
     margin-bottom: 20px;
 }

 .footer-column ul {
     list-style-type: none;
     padding: 0;
 }

 .footer-column ul li {
     margin-bottom: 10px;
 }

 .footer-column ul li a {
     color: #a0a0a0;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-column ul li a:hover {
     color: #ffffff;
 }

 .copyright {
     text-align: center;
     margin-top: 40px;
     padding-top: 20px;
     border-top: 1px solid #2a2d36;
 }
 @media (max-width: 1200px) {
     .container {
         padding: 0 20px;
     }

     nav {
         padding: 15px 50px;
     }
 }

 @media (max-width: 768px) {
     nav {
         flex-direction: column;
         padding: 15px;
     }

     .nav-links {
         margin-top: 20px;
     }

     .nav-links a {
         margin-left: 15px;
     }

     .get-started {
         margin-top: 20px;
         margin-left: 0;
     }

     h1,
     h2 {
         font-size: 48px;
     }

     .hero {
         padding: 60px 0;
         height: auto;
     }

     .card-grid {
         flex-direction: column;
     }

     .card {
         padding: 40px;
     }


     .input-group input {
         font-size: 16px;
     }

     .footer-content {
         flex-direction: column;
         align-items: center;
     }

     .footer-column {
         max-width: 100%;
         text-align: center;
         margin-bottom: 30px;
     }
 }

 @media (max-width: 480px) {

     h1,
     h2 {
         font-size: 40px;
     }

     .subtitle {
         font-size: 20px;
     }

     .cta-form {
         flex-direction: column;
         align-items: center;
     }

     input[type="email"] {
         width: 90%;
         margin-right: 0;
         margin-bottom: 20px;
     }

     button {
         width: 70%;
     }

     .card {
         padding: 30px;
     }
         .savings-amount {
             font-size: 35px; 
             word-break: break-all;
         }
 }
 .get-started-phone {
     background-color: transparent;
     color: #4d7cfe;
     padding: 10px 20px;
     border: 2px solid #4d7cfe;
     border-radius: 5px;
     text-decoration: none;
     transition: background-color 0.3s ease, color 0.3s ease;
     margin-left: 30px;
     font-size: 14px;
     display: none;
 }
  .get-started-phone:hover {
      background-color: #4d7cfe;
      color: #000 !important;
  }
/* hamburger menu  */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
        padding: 25px;
        flex-direction: row;
    }

    .nav-links {
        display: none;
        width: 100%;
        text-align: center;
        order: 3;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .get-started {
        margin-left: auto;
    }

    .hamburger {
        display: flex;
        order: 2;
    }
.get-started{
    display: none;
}
.get-started-phone{
    display: block;
}
}

#meet-claire {
    background-color: #1a2236;
    padding: 80px 0;
}

.meet-claire-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.claire-image {
    flex: 1;
    text-align: center;
}

.claire-image img {
    max-width: 100%;
        height: auto;
        /* border-radius: 50%; */
        box-shadow: 0 0 30px rgba(77, 167, 255, 0.3);}

.claire-description {
    flex: 1;
}

.claire-description p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.claire-description ul {
    list-style-type: none;
    padding: 0;
}

.claire-description ul li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.claire-description ul li i {
    color: #4cd964;
    font-size: 20px;
    margin-right: 10px;
}

.learn-more-btn {
    display: inline-block;
    background: linear-gradient(45deg, #4d7cfe, #d67bff);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.learn-more-btn:hover {
    background: linear-gradient(45deg, #617dcc, #b87ad4);
}

.learn-more-btn i {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .meet-claire-content {
        flex-direction: column;
    }

    .claire-image,
    .claire-description {
        flex: none;
        width: 100%;
    }

    .claire-image img {
           
        max-width: 290px;
    
    }
}
#ai-revolution {
    background-color: #131a29;
    padding: 80px 0;
}

.comparison-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.comparison-column {
    flex: 1;
    background-color: #1e2128;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comparison-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.icon-container {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.icon-container i {
    color: #4d7cfe;
    font-size: 60px;
}

.comparison-column p {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.comparison-column .description {
    font-size: 16px;
    font-weight: normal;
    color: #a0a0a0;
}

.ai-twins {
    background: linear-gradient(135deg, #4d7cfe, #d67bff);
}

.ai-twins h3,
.ai-twins p,
.ai-twins .description {
    color: #ffffff;
}

.ai-twins .icon-container i {
    color: #ffffff;
}

.brain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.brain-grid i {
    font-size: 40px;
}

@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
    }
}
.video-section {
   background-color: #111836;
   padding: 100px 0;
   text-align: center;
 }

 .video-content {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
 }

 .video-content h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #4da7ff, #ff4da7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
 }

 .video-grid {
   display: grid;
   grid-template-columns: 1fr;
   grid-template-rows: auto;
   grid-gap: 20px;
 }

 .big-video,
 .small-video {
   grid-column: 1 / -1;
   padding-bottom: 56.25%;
   /* 16:9 aspect ratio */
 }

 .video-wrapper {
   position: relative;
   height: 0;
   overflow: hidden;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .video-wrapper iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: 0;
 }

 @media (min-width: 768px) {
   .video-grid {
     grid-template-columns: 1fr 1fr;
     grid-template-rows: auto auto;
   }

   .big-video {
     grid-column: 1 / -1;
   }

   .small-video {
     grid-column: span 1;
     padding-bottom: 56.25%;
   }
 }
 .about-us {
      padding: 4rem 2rem;
        background-color: #111836;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
 }

 .onboarding {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, #0a0f1c, #1a2236);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     transition: opacity 0.5s ease;
     overflow: hidden;
 }

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

 .onboarding-content {
     text-align: center;
     padding: 2rem;
     max-width: 600px;
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border-radius: 20px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
     animation: fadeIn 1s ease-out;
 }

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

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

 .onboarding h1 {
     font-size: 3rem;
     margin-bottom: 1rem;
     background: linear-gradient(45deg, #4d7cfe, #d67bff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     animation: gradientShift 5s ease infinite;
 }

 @keyframes gradientShift {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 .onboarding p {
     font-size: 1.25rem;
     margin-bottom: 2rem;
     color: #a0a0a0;
 }

 .firm-options {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
 }

 .firm-button {
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 1.5rem;
     font-size: 1rem;
     background: rgba(255, 255, 255, 0.1);
     border: none;
     border-radius: 12px;
     color: #ffffff;
     cursor: pointer;
     transition: all 0.3s ease;
     overflow: hidden;
     position: relative;
 }

 .firm-button::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(77, 124, 254, 0.3) 0%, rgba(214, 123, 255, 0.3) 100%);
     opacity: 0;
     transform: scale(0);
     transition: transform 0.5s ease-out, opacity 0.3s ease-out;
 }

 .firm-button:hover::before {
     opacity: 1;
     transform: scale(1);
 }

 .firm-button i {
     font-size: 2.5rem;
     margin-bottom: 0.5rem;
     position: relative;
     z-index: 1;
     transition: color 0.3s ease;
 }

 .firm-button span {
     position: relative;
     z-index: 1;
 }

 .firm-button:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(77, 124, 254, 0.2);
 }

 .firm-button:hover i {
     color: black;
 }

 @media (max-width: 768px) {
    .onboarding h1 {
            font-size: 2rem;
     
        }
    
        .onboarding p {
            font-size: 0.9rem;
      
        }
    
        .firm-button {
            padding: 0.8rem;
    
        }
    
        .firm-button i {
            font-size: 1.8rem;
           
        }
                .tooltip{
                    display: none;
                }
 }

 @media (max-width: 480px) {
     .onboarding h1 {
         font-size: 2rem;
     }

     .onboarding p {
         font-size: 0.9rem;
     }
 }
 #change-industry {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background: linear-gradient(45deg, #4d7cfe, #d67bff);
     color: #ffffff;
     padding: 12px 20px;
     border-radius: 30px;
     font-size: 16px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 10px rgba(77, 124, 254, 0.3);
     display: flex;
     align-items: center;
     z-index: 1000;
     border: none;
 }

 #change-industry i {
     margin-right: 8px;
     font-size: 20px;
 }

 #change-industry:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 15px rgba(77, 124, 254, 0.4);
 }

 @media (max-width: 768px) {
     #change-industry {
         bottom: 20px;
         right: 20px;
         font-size: 14px;
         padding: 12px;
         width: auto;
         height: auto;
         border-radius: 30px;
     }

     #change-industry i {
         margin-right: 6px;
         font-size: 18px;
     }

     #change-industry span {
         display: inline;
     }
 }

#change-industry .tooltip {
    visibility: hidden;
    width: 220px;
    background-color: #4d7cfe;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
    z-index: 1;
    bottom: 140%;
    /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#change-industry .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    /* Arrow at the bottom of the tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #4d7cfe transparent transparent transparent;
}

#change-industry:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
    /* Slight upward movement for effect */
}



