body, html{
    overflow-x: hidden;
}
body{
    margin: 0;
    padding: 0;
    background-color: rgb(9, 5, 15);
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: white;
}
.slide-in{
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.slide-in.active{
    opacity: 1;
    transform: translateX(0);
}
@keyframes slideIn{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
/* General Pop-Up Styling */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #2b005e;
    color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none; /* Hidden initially */
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
}

/* Pop-Up Content */
.popup-content {
    text-align: center;
}

.popup h2 {
    margin-bottom: 2vw;
    font-size: 1.8em;
    color: #f995e6;
}

.popup p {
    margin-bottom: 2.5vw;
    font-size: 1.1em;
}
.signup-button{
    text-decoration: none;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    background: #4f1b8f;
    padding: 6px 8px;
    
}
.signup-button:hover{
    text-decoration: none;
    background: #6e2fb9;
    color: white;
}
/* Navbar Section */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: linear-gradient(90deg, #ff55ff, #00ffeb);
    width: 94%;
    margin: 30px auto 0 auto;
    border-radius: 10px;
    position: relative; /* To position the dropdown menu */
}

.navbar-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2b0b3e;
}

.navbar-toggle {
    display: block;
    cursor: pointer;
}

.navbar-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #2b0b3e;
    transition: all 0.3s ease;
}

/* Dropdown Menu */
.navbar-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 60px; /* Adjust based on navbar height */
    right: 14px;
    background-color: #ffffff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    width: 200px; /* Adjust width as needed */
    z-index: 1000; /* Ensure it appears above other elements */
}

.navbar-menu li {
    padding: 12px 16px;
}

.navbar-menu li:hover {
    background-color: #f2dffc; /* Light purple hover */
}

.navbar-link {
    text-decoration: none;
    color: #2b0b3e;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-link i {
    font-size: 18px;
}

/* Active Button Border Color */
.category-btn.active {
    background-color: #7d39cb; /* Dark purple background */
    border: 2px solid #7d39cb; /* Dark purple border */
    color: white;
}

.category-btn.active i {
    color: white;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .navbar-menu {
        right: 14px;
        width: 150px; /* Adjust for smaller screens */
    }

    .navbar-link {
        font-size: 14px;
    }

    .navbar-link i {
        font-size: 16px;
    }
}

/* Positioning and Styling for Chatbot Button */
#chatbot-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 95px;
    height: 95px;
    background: url('girl-avatar.png') no-repeat center center / cover;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

#chatbot-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}
#chatbot-button, #chat-window {
    z-index: 9999; /* High z-index to stay on top of other elements */
}

/* Chat Window */
#chat-window {
    position: fixed;
    bottom: 20px; /* Slightly above the chatbot button */
    right: 20px;
    width: 400px;
    height: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default */
    flex-direction: column;
}

/* Chat Window Header */
#chat-header {
    background: #492660;
    color: #fff;
    padding: 12px;
    font-size: 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center; /* Center content vertically */
}

/* Avatar in Header */
#chat-header-avatar {
    width: 30px; /* Adjust size as needed */
    height: 30px;
    border-radius: 50%; /* Make it circular */
    margin-right: 10px; /* Space between avatar and text */
}

/* Name and status container */
#chat-header-info {
    display: flex;
    align-items: center; /* Vertically center the elements */
    margin-right: auto; /* Push the close button to the right */
}

/* Icy AI Name */
#chat-header-name {
    font-size: 20px;
    font-weight: bold;
}

/* Status indicator */
#chat-header-status {
    font-size: 12px;
    display: flex;
    align-items: center; /* Align dot and text on the same line */
    margin-left: 10px; /* Space between "Icy AI" and the dot */
}

/* Green dot */
#chat-header-dot {
    width: 8px;
    height: 8px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px; /* Space between dot and "Connected" text */
}

/* Close button */
#close-chat {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    margin-left: auto; /* Push close button to the right */
}


/* Chat Area for Messages */
#chat-area {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
/* Initial Avatar and Greeting Text */
#chatbot-avatar {
    text-align: center; /* Center content horizontally */
    margin-top: 20px; /* Space from the top */
}

/* Style for the avatar inside the chat area */
#chatbot-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

/* Greeting text styling */
#greeting-text {
    margin-top: 10px;
    color: indigo;
    font-size: 16px;
    font-weight: bold;
}
/* User message bubble */
.user-message {
    background: #492660;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    margin: 10px 0;
    max-width: 70%;
    margin: 10px 20px 10px auto; /* Add margin-right */
}
/* Bot message bubble */
.bot-message {
    background: #e0e0e0;
    color: #000;
    padding: 8px 12px;
    border-radius: 10px;
    margin: 10px 0;
    max-width: 70%;
    margin: 10px auto 10px 20px; /* Add margin-left */
    word-wrap: break-word; /* Handle long messages */
}

/* Input Section */
#chat-input{
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

#chat-input input{
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#chat-input button{
    background: #492660;
    color: #fff;
    padding: 10px 15px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}
.gradienttitle{
    background: linear-gradient(to bottom, #F98AFF, #80FFFF); /* Your gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradienthere{
    background: linear-gradient(to right, #7afbff, #e671d0, #9a5bec); /* Your gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* General Styles */
.landing {
    position: relative;
    overflow: hidden;
}

.svg-background {
    position: absolute;
    top: 18%;
    left: 10%;
    width: 80%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.svg-background img {
    width: 100%;
    height: auto;
    opacity: 0.7;
}

/* Mobile-First Layout */
.landing-content {
    display: flex;
    flex-direction: column; /* Mobile-first: stack items vertically */
    align-items: center;
    padding: 5vw 0;
    box-sizing: border-box;
}

/* Text Container */
.text-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text horizontally */
    justify-content: center;
    width: 90%;
    padding: 0;
}

.transformtext {
    font-size: 7vw;
    margin: 0 0 20px 0;
    text-align: left;
}

.undertransformtext {
    display: none; /* Hide on mobile */
    font-size: 4vw;
    line-height: 7.5vw;
    margin-top: 1.5vw;
    text-align: left;
}
.undercarousel {
    font-size: 4vw;
    line-height: 7.5vw;
    margin-top: 1.5vw;
    text-align: center;
    display: block;
}
.carousel-container {
    width: 90%;
    margin: 20px 0;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column; /* Stacks items vertically */
    justify-content: center;
    align-items: center;
    text-align: center; /* Ensures everything in the container is centered */
}
.carousel {
    position: relative;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vw 0;
    height: auto;
    overflow: hidden;
}
.arrows{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none; /* Prevents arrows from blocking other elements */
}
.arrows img{
    width: 50px;
    cursor: pointer;
}
.left-arrow, .right-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 80px;
    height: auto;
    z-index: 4;
    pointer-events: all; /* Enables click events */
    border-radius: 50%;
    box-shadow: 0 0 1vw rgb(219, 134, 253);
}
.left-arrow{
    left: 37px;
}

.right-arrow{
    right: 37px;
}
.theme {
    transition: transform 0.5s ease, opacity 0.5s ease;
    width: 40%;
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.theme img{
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}
.theme-center img:hover{
    transform: scale(1.03);
}
.theme-center{
    z-index: 2;
    transform: scale(1);
    opacity: 1;
    margin: 0 auto;
}
.theme-left,
.theme-right{
    z-index: 1;
    transform: scale(0.8);
    opacity: 1;
}
.theme-left{
    transform: scale(0.8) translateX(70%);
}
.theme-right{
    transform: scale(0.8) translateX(-70%);
}
/* Styles for the Custom Button */
.mainbutton {
    display: inline-block;
    padding: 14px 24px;
    background-color: indigo;
    border: 1px solid rgb(97, 221, 252);
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 1.4em;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Text Gradient */
    color: transparent; 
    background: linear-gradient(to left, rgb(255, 117, 209), rgb(228, 138, 255), rgb(40, 247, 247)); /* Apply gradient to the text */
    -webkit-background-clip: text;
    background-clip: text;

    position: relative; /* Ensure relative positioning for pseudo-element */
}

/* Hover Effect */
.mainbutton:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    /* Text Gradient */
    color: transparent; 
    background: linear-gradient(to left, rgb(255, 117, 209), rgb(228, 138, 255), rgb(40, 247, 247)); /* Apply gradient to the text */
    -webkit-background-clip: text;
    background-clip: text;
}

/* Optional: Focus Styles for Accessibility */
.mainbutton:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}


.features{
    display: flex;
    justify-content: space-between;
    height: auto;
    background-size: cover;
    background-position: center;
}
.column1, .column2{
    flex: 1;
    height: auto;
}
.column2{
    margin-left: -10vw;
}
.girlssphone{
    width: 90%;
    height: auto;
    margin: 15vw 0 0 0;
}
.salesmachinetext{
    font-size: 4vw;
    font-weight: bold;
    line-height: 6.5vw;
    margin: 0 0 5vw -35vw;
    color: rgb(223, 144, 255);
}
.robotlist{
    line-height: 10vw;
    font-size: 2.9vw;
    margin: 15vw 0 0 0;
    text-shadow: 0 0 1vw white;
    list-style-type: none;
}
.worktitle{
    font-size: 5.5vw;
    text-align: left;
    margin: 5vw 0 7vw 7vw;
}
.multiple{
    font-weight: bold;
    display: inline;
}
.stars{
    width: 70vw;
    border-radius: 5vw;
    margin: 10vw 0 3vw 15vw;   
}
.starstext{
    font-size: 5vw;
    letter-spacing: .1vw;
    width: 85vw;
    text-align: center;
    margin: 0 0 6vw 7.55vw;
    background: linear-gradient(to right, #7ab8ff, #f363d8); /* Your gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.icons {
    padding: 20px;
    text-align: center;
  }

  .icon-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .icon-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .icon {
    width: 50%;
    height: auto;
  }

  .icon-title {
    font-size: 5vw;
    color: #ec56d1;
    margin-top: 10px;
  }

  .icon-description {
    color: #ffffff;
    font-size: 3.5vw;
    max-width: 80%;
    margin-top: 20px;
  }

/* Upgrade Your Business Section */
.upgrade-business-section {
    background-color: #f2dffc; /* Light purple background */
    color: #31006A; /* Dark purple text */
    padding: 60px 20px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.upgrade-business-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.upgrade-business-section .section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #31006A;
    text-shadow: none;
    text-align: center;
}

.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px;
}

.category-btn {
    background-color: white;
    color: #5f23a4;
    border: 2px solid #7432c0;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn i {
    font-size: 1.2em;
}

.category-btn:hover {
    background-color: #c56ae1; /* Light purple hover color */
    color: white;
    transform: scale(1.05);
}

.category-btn.active {
    background-color: #7d39cb;
    border: 2px solid #9452df;
    color: white;
}

.category-btn.active i {
    color: white;
}

.category-content {
    position: relative;
    padding: 40px 20px;
    border: 2px solid #5f20a8;
    border-radius: 15px;
    background-color: #f9f9f9;
    min-height: 350px; /* Fixed height */
    max-height: 350px; /* Fixed height */
    box-shadow: 0 0 20px rgba(49, 0, 106, 0.1);
    transition: background-color 0.5s ease, color 0.5s ease;
    overflow-y: auto; /* If content overflows */
}

.content-item {
    display: none;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.content-item.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.content-item h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #621db1;
    text-align: left;
}

.content-item ul {
    list-style: none;
    padding: 0;
}

.content-item ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: rgb(138, 64, 222);
}

.content-item ul li i {
    margin-right: 10px;
    color: #bc89f7;
    font-size: 1.5em;
}

.content-item ul li strong {
    margin-left: 5px;
    font-weight: bold;
    background: linear-gradient(to right, #db62c5, #aa4de1); /* Your gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .upgrade-business-section .section-title {
        font-size: 2em;
    }

    .category-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .category-content {
        padding: 20px;
        min-height: 300px;
        max-height: 300px;
    }

    .content-item h3 {
        font-size: 1.5em;
    }

    .content-item ul li {
        font-size: 1em;
    }
}

/* Ensure consistent box size across all categories */
.category-content {
    height: 350px; /* Fixed height */
    overflow: hidden; /* Hide any overflow */
}

/* Additional Aesthetic Enhancements */

/* Additional Info Section */
.additional-info-section {
    background-color: #f2dffc; /* Complementary light purple */
    padding: 60px 20px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.additional-info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.additional-info-section .additional-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #31006A;
    text-shadow: none;
    text-align: center;
}

.additional-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.feature {
    background-color: white;
    border: 2px solid #31006A;
    border-radius: 15px;
    padding: 20px;
    width: 30%;
    min-width: 250px;
    box-shadow: 0 0 15px rgba(49, 0, 106, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(49, 0, 106, 0.2);
}

.feature i {
    font-size: 2em;
    color: #e190fa;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #31006A;
}

.feature p {
    font-size: 1em;
    color: #555;
}

/* Responsive for Additional Info */
@media (max-width: 768px) {
    .additional-content {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        width: 80%;
    }
}

.itseasy{
    width: 100vw;
    height: 22vw;
    margin-bottom: 5vw;
    background: #804aa0;
}
.easy{
    height: 14vw;
    width: 14vw;
    border-radius: 50%;
    margin: 4vw 0 0 1vw;
    box-shadow: 0 0 3vw .5vw#31006a;
}
.card {
    width: 85%;
    position: relative;
    margin: 2% auto;
    border-radius: 3.3vw !important;
    background: #643580;
    overflow: hidden; /* Ensure rounded corners apply to the content */
    padding: 0; /* Remove any padding that could offset the image */
}

.card-img-top {
    width: 80%; /* Adjust the width as desired */
    height: auto; /* Maintain original proportions */
    display: block; /* Ensures the image behaves as a block-level element */
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
    margin-top: 2vh;
    border-radius: 3.3vw 3.3vw 0 0; /* Apply top rounded corners only */
}

.card-title{
    text-align: center;
    letter-spacing: .2vw;
    font-size: 4.5vw;
    border-top: .2vw solid white;
    padding-top: 5vw;
}
.card-text{
    font-size: 3vw;
    width: 100%;
    text-align: center;
    letter-spacing: .2vw;
    margin: 0 auto;
    padding-bottom: 3vw;
}
.list-group .list-group-item{
    font-size: 3.1vw;
    padding: 2vw;
    list-style-type: none;
    color: rgb(218, 218, 218);
    background: #6e3e8a;
}
.button2{
    width: 50vw;
    margin: 6vw 0 0 25vw;
    display: block;
    transition: transform 0.3s ease;
}
.button2:hover{
    transform: scale(1.05);
}
/* Pricing Plans Section */
.pricing-section {
    background-color: #f2dffc; /* Light purple background */
    color: #31006A; /* Dark purple text */
    padding: 60px 20px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.pricing-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-section .pricing-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #31006A;
    text-shadow: none;
}

.pricing-card {
    background-color: white;
    border: 2px solid #31006A;
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 20px rgba(49, 0, 106, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(49, 0, 106, 0.2);
}

.plan-header {
    margin-bottom: 20px;
}

.plan-icon {
    font-size: 3em;
    color: #e190fa;
    margin-bottom: 15px;
}

.plan-name {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2em;
    color: #31006A;
}

.plan-price span {
    font-size: 0.8em;
    color: #555;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #555;
}

.plan-features li i {
    color: #e190fa;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.plan-features li:hover i {
    color: #31006A;
}

.btn-primary {
    background-color: #31006A;
    width: 40%;
    margin: 20px auto;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #e190fa;
    transform: scale(1.05);
    color: white;
}

@media (max-width: 768px) {
    .pricing-section .pricing-title {
        font-size: 2em;
    }
    
    .pricing-card {
        padding: 20px 15px;
    }
    
    .plan-name {
        font-size: 1.5em;
    }
    
    .plan-price {
        font-size: 1.5em;
    }
    
    .plan-features li {
        font-size: 1em;
    }
    
    .plan-icon {
        font-size: 2.5em;
    }
}

.typedtext {
    font-size: 4.5vw;
    text-align: center;
    font-weight: bold;
    margin: 7vw 0 0 10vw;
    padding-top: 5vw;
    text-align: left;
    background: linear-gradient(to right, #7ab8ff, #f94fda, #f739d4); /* Your gradient colors */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.securitytitle{
    font-weight:bold;
    font-size: 3.6vw;
    line-height: 9vw;
}
.securitytext{
    width: 70vw;
    height: auto;
    font-size: 1.25em;
    padding: 6vw 0 0 0;
    line-height: 5.5vw;
    margin: 0vw 10vw 6vw 15vw;
    
}
.glowing{
    text-shadow: 0 0 10px #f995e6, 0 0 20px #f995e6, 0 0 30px #f995e6, 0 0 40px #d972b9, 0 0 70px #d972b9, 0 0 80px #d972b9;
    animation: neon-glow 1.5s ease-in-out infinite alternate;
}
@keyframes neon-glow {
    to {
        text-shadow: 0 0 20px #f995e6, 0 0 30px #f995e6, 0 0 40px #f995e6, 0 0 50px #d972b9, 0 0 60px #d972b9, 0 0 100px #d972b9;
    }
}
/* Centering the How It Works Container */
.how-it-works-container {
    max-width: 800px; /* Adjust as needed */
    margin: 10vw auto;    /* Centers the container horizontally */
    padding: 20px;     /* Optional padding */
    background-color: #2b005e; /* Example background color */
    border-radius: 10px; /* Optional: Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
}

/* Centering Text and Icons */
.how-it-works {
    text-align: center; /* Centers text and inline elements */
}

.howtitle, .howtitle2 {
    text-align: center; /* Ensures headings are centered */
    color: white; /* Ensures text is visible against the background */
    font-size: 1.6em;
}

/* Styling the Steps */
.step {
    margin-bottom: 1em;
    border-bottom: 1px solid rgb(211, 152, 245);
    cursor: pointer;
    padding-bottom: 1em;
    font-size: 1em;
}

.step-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3em;
    padding: 0.5em 0;
    width: 100%;
    font-weight: 600;
    color: white; /* Ensures text is visible */
}

.step-title .toggle-icon {
    margin-left: 10px;      /* Space between text and icon */
    font-size: 1.3em;       /* Larger icon size */
    transition: transform 0.3s ease;
}

.step-content {
    display: none;        /* Hidden by default */
    padding: 0.5em;
    font-size: 1.05em;
    line-height: 1.5;
    color: #e0e0e0;
    width: 100%; /* Full width to maintain layout */
}

.step.open .step-content {
    display: block;        /* Shows content when active */
}

.toggle-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.step.open .toggle-icon {
    transform: rotate(45deg);
}

/* Bold Text */
.bold {
    font-weight: bold;
}



.faq {
    margin: 6vw 0 5vw 0;
    text-align: center;
}
.faq-item {
    margin: 0 auto;
    width: 95%;
    color: white;
    border-bottom: 1px solid #996dbb;
    overflow: hidden;
    transition: background-color 0.3s;
}
.faq-question {
    cursor: pointer;
    padding: 20px 10px;
    font-size: 3vw;
    margin: 0;
}
.faq-question:hover{
    background: #17002c;
}

.faq-answer{
    display: none;
    padding: 10px;
    font-size: 3vw;
}
.active{
    display: block;
}
.footer{
    background-color: #804aa0;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
    color: white;
    padding: 20px 10px;
    text-align: center;
}
.footer-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-column{
    flex: 1;
    min-width: 200px;
}
.footer-title{
    font-size: 1.6em;
    margin-bottom: 10px;
}
.footer-links{
    list-style: none;
    padding: 0;
}
.footer-links li{
    margin: 5px 0;
}
.footer-links a{
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover{
    color: #f995e6;
}
.footer-bottom{
    margin-top: 20px;
    border-top: 1px solid #4c006a;
    padding-top: 10px;
}
.footer-bottom a{
    color: #f995e6;
    text-decoration: none;
}
.footer-bottom a:hover{
    text-decoration: underline;
}
/*Smallest Size*/
@media (max-width: 576px){
.column{
    width: 100%;
    float: none;
    margin-bottom: 20px;
}
.colpicsmagnify{
    margin: 2vw 0 0 29vw;
}
.colpicschart{
    margin: 8vw 0 -4vw 19vw;
}
.colpicsglobe{
    margin: 9vw 0 2vw 28vw;
}
.coltextstitles{
    font-size: 6.5vw;
}
.coltexts{
    padding: 0 10vw;
    text-align: center;
    font-size: 3.3vw;
}
.footer-container{
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.popup{
    width: 90%;
    max-width: 375px;
}
.how-it-works-container{
    width: 500px;
}
}

/* Large Phones (576px - 696px) */
@media (min-width: 576px) and (max-width: 696px) {
    .landing-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 0 0 0;
        padding: 2vw 0 2vw 0;
    }
    .svg-background {
        top: 18%;
        left: 7%;
        width: 86%;
    }
    .text-container {
        display: flex;
        flex-direction: column; /* Keep stacking the text */
        align-items: center; /* Center text horizontally */
        width: 100%; /* Full width on large iPads */
        padding: 0; /* Adjust as needed for spacing */
        margin-bottom: 4vw; /* Optional spacing below text */
    }
    .transformtext, .undertransformtext {
        padding-left: 0; /* No individual padding/margin */
        margin: 0; /* Remove margin for proper alignment */
    }

    .transformtext {
        font-size: 2.8em;
    }

    .undertransformtext {
        font-size: 1.8em;
        line-height: 55px;
        margin-top: 1vw; /* Space between transformtext and undertransformtext */
    }

    /* Carousel Container */
    .carousel-container {
        width: 100%; /* Right 50% of the screen */
        margin: 10px 0 10px 0; /* Remove extra margin */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .carousel {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .undercarousel {
        font-size: 4.4vw;
        line-height: 7vw;
        margin: 20px 0 20px 0;
        text-align: center;
        display: block; /* Show on mobile */
    }
    .theme{
        width: 36vw;
    }
    .arrows{
        top: 50%;
        transform: translateY(-50%);
    }
    .left-arrow{
        left: 10vw;
    }
    .right-arrow{
        right: 10vw;
    }
    .logoname{
        font-size: 4vw;
    }
    .signinbutton{
        font-size: 3.1vw;
        padding: 0.3vw 0.8vw;
    }
    .features{
        height: 45vh;
    }
    .column{
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .colpicsmagnify{
        margin: 2vw 0 0 29vw;
    }
    .colpicschart{
        margin: 8vw 0 -4vw 19vw;
    }
    .colpicsglobe{
        margin: 9vw 0 2vw 28vw;
    }
    .coltextstitles{
        font-size: 6.5vw;
    }
    .coltexts{
        padding: 0 10vw;
        text-align: center;
        font-size: 3.3vw;
    }
    .securitytext{
        margin-left: 10vw;
    }
    .popup{
        width: 90%;
        max-width: 428px;
    }
}

/* iPad Sizes (697px - 801px) */
@media (min-width: 697px) and (max-width: 801px){
    .landing-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 0 0 0;
        padding: 2vw 0 2vw 0;
    }
    .svg-background {
        top: 18%;
        left: 15%;
        width: 70%;
    }
    .text-container {
        display: flex;
        flex-direction: column; /* Keep stacking the text */
        align-items: center; /* Center text horizontally */
        width: 100%; /* Full width on large iPads */
        padding: 0; /* Adjust as needed for spacing */
        margin-bottom: 4vw; /* Optional spacing below text */
    }
    .transformtext, .undertransformtext {
        padding-left: 0; /* No individual padding/margin */
        margin: 0; /* Remove margin for proper alignment */
    }

    .transformtext {
        font-size: 3.1em;
    }

    .undertransformtext {
        display: none;
    }

    /* Carousel Container */
    .carousel-container {
        width: 100%; /* Right 50% of the screen */
        margin: 10px 0 10px 0; /* Remove extra margin */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .carousel {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .undercarousel {
        font-size: 4vw;
        line-height: 7vw;
        margin: 20px 0 20px 0;
        text-align: center;
        display: block; /* Show on mobile */
    }
    .theme{
        width: 30vw;
    }
    .arrows{
        top: 50%;
        transform: translateY(-50%);
    }
    .left-arrow{
        left: 17vw;
    }
    .right-arrow{
        right: 17vw;
    }
    .mainbutton{
        width: 40vw;
        margin: 6vw 0 0 0;
    }
    .column2{
        width: 40vw;
        margin-left: -16vw;
    }
    .robotlist{
        font-size: 2.4vw;
        float: right;
        margin: 3vw 1vw -20vw 0vw;
    }
    .features{
        height: 50vh;
    }
    .column{
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .worktitle{
        font-size: 5.5vw;
    }
    .colpicsmagnify{
        margin: 2vw 0 0 29vw;
    }
    .colpicschart{
        margin: 8vw 0 -4vw 19vw;
    }
    .colpicsglobe{
        margin: 9vw 0 2vw 28vw;
    }
    .coltextstitles{
        font-size: 6.5vw;
    }
    .coltexts{
        font-size: 3.3vw;
    }
    .card-img-top{
        height: 43vw;
    }
    .card-title{
        font-size: 3.6vw;
        letter-spacing: 0;
    }
    .card-text{
        font-size: 2.5vw;
    }
    .list-group .list-group-item{
        font-size: 2.45vw;
    }
    .button2{
        width: 40vw;
        margin-left: 27vw;
    }
    .securitytext{
        margin-left: 10vw;
    }
    .faq-item{
        margin: 0 auto;
        width: 95%;
    }
    .faq-question{
        font-size: 2.6vw;
    }
    .faq-answer{
        font-size: 2.4vw;
        width: 90%;
        margin: 1vw auto;
    }
    .popup{
        width: 90%;
        max-width: 900px;
    }
}

/* Large iPads (802px - 928px) */
@media (min-width: 802px) and (max-width: 928px) {
    .landing-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 0 0 0;
        padding: 2vw 0 2vw 0;
    }
    .svg-background {
        top: 16%;
        left: 18%;
        width: 64%;
    }
    .text-container {
        display: flex;
        flex-direction: column; /* Keep stacking the text */
        align-items: center; /* Center text horizontally */
        width: 100%; /* Full width on large iPads */
        padding: 0; /* Adjust as needed for spacing */
        margin-bottom: 4vw; /* Optional spacing below text */
    }
    .transformtext, .undertransformtext {
        padding-left: 0; /* No individual padding/margin */
        margin: 0; /* Remove margin for proper alignment */
    }

    .transformtext {
        font-size: 3.1em;
    }

    .undertransformtext {
        display: none;
    }

    /* Carousel Container */
    .carousel-container {
        width: 100%; /* Right 50% of the screen */
        margin: 20px 0 20px 0; /* Remove extra margin */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .carousel {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .undercarousel {
        font-size: 4vw;
        line-height: 7vw;
        margin: 20px 0 20px 0;
        text-align: center;
        display: block; /* Show on mobile */
    }
    .theme{
        width: 24vw;
    }
    .theme-left{
        transform: scale(0.8) translateX(120%);
    }
    .theme-right{
        transform: scale(0.8) translateX(-120%);
    }
    .arrows{
        top: 50%;
        transform: translateY(-50%);
    }
    .left-arrow{
        left: 24vw;
    }
    .right-arrow{
        right: 24vw;
    }
    .mainbutton{
        width: 54vw;
        margin: 6vw 0 0 0;
    }
    .stars{
        width: 60vw;
        margin: 5vw 0 3vw 20vw; 
    }
    .starstext{
        font-size: 3.5vw;
    }
    .features{
        height: 55vh;
    }
    .worktitle{
        font-size: 5vw;
    }
    .card-title{
        font-size: 3.6vw;
        letter-spacing: 0;
    }
    .card-img-top{
        height: 45vw;
    }
    .card-text{
        font-size: 2.4vw;
    }
    .list-group .list-group-item{
        font-size: 2.3vw;
    }
    .mainbutton{
        width: 35vw;
        margin: 6vw 0 0 0;
    }
    .button2{
        width: 35vw;
        margin-left:30vw;
    }
    .securitytext{
    margin-left: 15vw;
    }
    .faq-item{
        margin: 0 auto;
        width: 85%;
    }
    .faq-question{
        font-size: 2.4vw;
    }
    .faq-answer{
        font-size: 2.1vw;
        width: 90%;
        margin: 1vw auto;
    }
    .popup {
        width: 90%;
        max-width: 800px;
    }
}

/* Medium Computers (929px - 1200px) */
@media (min-width: 929px) and (max-width: 1200px){
    .landing-content {
        flex-direction: row; /* Arrange items side by side */
        justify-content: space-between;
        align-items: center;
    }
    .svg-background {
        top: 16%;
        left: 60%;
        width: 40%;
    }
    .text-container {
        width: 60%; /* Half of the screen */
        align-items: center; 
    }

    .transformtext {
        font-size: 2.8em;
        margin: 0;
    }

    .undertransformtext {
        display: block; /* Show on desktop */
        font-size: 1.8em;
        line-height: 50px;
    }
   /* Carousel Container */
    .carousel-container {
        width: 40%; /* Right 50% of the screen */
        margin: 0; /* Remove extra margin */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .undercarousel {
        display: none; /* Hide on desktop */
    }
    .theme{
        width: 18vw;
    }
    .theme-left{
        transform: scale(0.8) translateX(80%);
    }
    .theme-right{
        transform: scale(0.8) translateX(-80%);
    }
    .arrows{
        top: 50%;
        transform: translateY(-50%);
    }
    .left-arrow{
        left: 7vw;
    }
    .right-arrow{
        right: 7vw;
    }
    .mainbutton{
        width: 30vw;
        margin: 3vw 0 0 0;
    }
    .girlssphone{
        width: 80%;
        height: auto;
        margin: 15vw 0 0 5vw;
    }
    .salesmachinetext{
        font-size: 3.3vw;
        line-height: 5.5vw;
        margin: 0 0 5vw -25vw;
    }
    .robotlist{
        line-height: 7vw;
        font-size: 2.4vw;
        margin: 15vw 0 0 0;
    }
    .stars{
        width: 50vw;
        margin: 5vw 0 3vw 25vw; 
    }
    .starstext{
        font-size: 3vw;
    }
    .features{
        height: 70vh;
    }
    .worktitle{
        font-size: 4.2vw;
        margin-left: 17vw;
    }
    .card{
        width: 65%;
        margin: 2% auto;
    }
    .card-img-top{
        height: 35vw;
    }
    .card-title{
        font-size: 2.9vw;
        padding-bottom: 2vw;
        letter-spacing: 0;
    }
    .card-text{
        font-size: 1.9vw;
        letter-spacing: .05vw;
    }
    .list-group .list-group-item{
        font-size: 1.8vw;
    }
    .button2{
        width: 25vw;
        margin-left: 35vw;
    }
    .typedtext{
        font-size: 4vw;
        margin: 7vw 0 0 10vw;
    }
    .securitytitle{
        font-size: 3.2vw;
    }
    .securitytext{
        font-size: 2.5vw;
        margin-left: 15vw;
    }
    .faq-item{
        margin: 0 auto;
        width: 70%;
    }
    .faq-question{
        font-size: 1.9vw;
    }
    .faq-answer{
        font-size: 1.7vw;
        width: 85%;
        margin: 1vw auto;
    }
    .popup {
        width: 80%;
        max-width: 900px;
    }
}
/* Standard Computer Screens (1201px - 1439px) */
@media (min-width: 1201px) and (max-width: 1439px) {
    .navbar{
        margin: 3vw 0 0 3vw;
    }
    .landing-content {
        flex-direction: row; /* Arrange items side by side */
        justify-content: space-between;
        align-items: center;
    }
    .svg-background {
        top: 12%;
        left: 60%;
        width: 38%;
    }
    .text-container {
        width: 60%; /* Half of the screen */
        align-items: center; 
    }

    .transformtext {
        font-size: 3.2em;
        margin: 0;
    }

    .undertransformtext {
        display: block; /* Show on desktop */
        font-size: 1.8em;
        line-height: 50px;
    }
   /* Carousel Container */
    .carousel-container {
        width: 40%; /* Right 50% of the screen */
        margin: 0; /* Remove extra margin */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .undercarousel {
        display: none; /* Hide on desktop */
    }
    .theme{
        width: 16vw;
    }
    .theme-left{
        transform: scale(0.8) translateX(80%);
    }
    .theme-right{
        transform: scale(0.8) translateX(-80%);
    }
    .arrows{
        top: 50%;
        transform: translateY(-50%);
    }
    .left-arrow{
        left: 7vw;
    }
    .right-arrow{
        right: 7vw;
    }
    .mainbutton{
        width: 24vw;
        margin: 3vw 0 0 0;
    }
    .girlssphone{
        width: 70%;
        height: auto;
        margin: 15vw 0 0 5vw;
    }
    .salesmachinetext{
        font-size: 3vw;
        line-height: 5.5vw;
        margin: 0 0 5vw -25vw;
    }
    .robotlist{
        line-height: 7vw;
        font-size: 2.2vw;
        margin: 15vw 0 0 0;
    }
    .worktitle{
        font-size: 3.5vw;
        margin-left: 22vw;
    }
    .features{
        height: 80vh;
    }
    .icon-container {
        flex-direction: row;
        justify-content: space-around;
      }
  
      .icon {
        width: 20vw;
      }
  
      .icon-title {
        font-size: 2vw;
      }
  
      .icon-description {
        font-size: 1.5vw;
      }
    .stars{
        width: 50vw;
        margin: 5vw 0 3vw 25vw; 
    }
    .starstext{
        font-size: 2.4vw;
    }
    .card{
        width: 55%;
        margin: 2% auto;
    }
    .card-img-top{
        height: 30vw;
    }
    .card-title{
        font-size: 2.4vw;
        padding-bottom: 1vw;
        letter-spacing: 0;
    }
    .card-text{
        font-size: 1.7vw;
        letter-spacing: .05vw;
        padding: 1vw;
    }
    .list-group .list-group-item{
        font-size: 1.5vw;
    }
    .button2{
        width: 25vw;
        margin-left: 35vw;
    }
    .typedtext{
        font-size: 4vw;
        margin: 7vw 0 0 10vw;
    }
    .securitytitle{
        font-size: 3.2vw;
    }
    .securitytext{
        width: 60vw;
        font-size: 2vw;
        margin-left: 20vw;
    }
    .faq-item{
        margin: 0 auto;
        width: 70%;
    }
    .faq-question{
        font-size: 1.7vw;
    }
    .faq-answer{
        font-size: 1.6vw;
        width: 50vw;
        margin: 1vw auto;
    }
    .popup {
        width: 70%;
        max-width: 1000px;
    }
}

/* Large Computer Screens (1440px - 1650px) */
@media (min-width: 1440px) and (max-width: 1650px) {
    .landing-content {
        flex-direction: row; /* Arrange items side by side */
        justify-content: space-between;
        align-items: center;
    }
    .svg-background {
        top: 12%;
        left: 58%;
        width: 34%;
    }
    .text-container {
        width: 50%; /* Half of the screen */
        align-items: end; 
    }
    .transformtext {
        font-size: 3.6em;
        margin: 0;
    }
    .undertransformtext {
        display: block; /* Show on desktop */
        font-size: 2em;
        line-height: 50px;
    }
   /* Carousel Container */
    .carousel-container {
        width: 50%; /* Right 50% of the screen */
        margin: 0; /* Remove extra margin */
        display: flex;
        align-items: left;
    }
    .undercarousel {
        display: none; /* Hide on desktop */
    }
    .theme{
        width: 14vw;
    }
    .theme-left{
        transform: scale(0.8) translateX(80%);
    }
    .theme-right{
        transform: scale(0.8) translateX(-80%);
    }
    .arrows{
        top: 50%;
        transform: translateY(-50%);
    }
    .left-arrow{
        left: 9vw;
    }
    .right-arrow{
        right: 9vw;
    }
    .mainbutton{
        width: 20vw;
        margin: 3vw 0 0 0;
    }
    .girlssphone{
        width: 70%;
        height: auto;
        margin: 15vw 0 0 5vw;
    }
    .salesmachinetext{
        font-size: 3vw;
        line-height: 5.5vw;
        margin: 0 0 5vw -25vw;
    }
    .robotlist{
        line-height: 7vw;
        font-size: 2.2vw;
        margin: 15vw 0 0 0;
    }
    .worktitle{
        font-size: 3vw;
    }
    .icon-container {
        flex-direction: row;
        justify-content: space-around;
      }
  
      .icon {
        width: 20vw;
      }
  
      .icon-title {
        font-size: 2vw;
      }
  
      .icon-description {
        font-size: 1.5vw;
      }
    .stars{
        width: 40vw;
        margin: 5vw 0 3vw 30vw; 
    }
    .starstext{
        font-size: 2.2vw;
        width: 85vw;
        margin: 0 0 6vw 7.55vw;
    }
    .features{
        height: 95vh;
    }
    .worktitle{
        font-size: 3.8vw;
        margin-left: 23vw;
    }
    .card{
        width: 50%;
        margin: 2% auto;
    }
    .card-img-top{
        height: 27vw;
    }
    .card-title{
        font-size: 2.1vw;
        padding-bottom: 2vw;
        letter-spacing: 0;
        padding-top: 2vw;
    }
    .card-text{
        font-size: 1.4vw;
        letter-spacing: .05vw;
        padding-bottom: .5vw;
    }
    .list-group .list-group-item{
        font-size: 1.4vw;
        padding: 1.2vw;
    }
    .button2{
        width: 20vw;
        margin-left: 37.5vw;
    }
    .typedtext{
        font-size: 3.2vw;
        margin: 3vw 0 0 19vw;
    }
    .securitytitle{
        font-size: 3vw;
    }
    .securitytext{
        width: 50vw;
        font-size: 1.6vw;
        margin-left: 25vw;
    }
    .faq-item{
        margin: 0 auto;
        width: 70%;
    }
    .faq-question{
        font-size: 1.4vw;
    }
    .faq-answer{
        font-size: 1.3vw;
        width: 50vw;
        margin: 1vw auto;
    }
    .popup {
        width: 60%;
        max-width: 1100px;
    }
}


/* Super Large Gaming Computer Screens (1651px+) */
@media (min-width: 1651px) and (max-width: 1899px) {
    .landing-content {
        flex-direction: row; /* Arrange items side by side */
        justify-content: space-between;
        align-items: center;
    }
    .svg-background {
        top: 12%;
        left: 58%;
        width: 34%;
    }
    .text-container {
        width: 50%; /* Half of the screen */
        align-items: end; 
    }
    .transformtext {
        font-size: 3.8em;
        margin: 0;
    }
    .undertransformtext {
        display: block; /* Show on desktop */
        font-size: 2.2em;
        line-height: 50px;
    }
   /* Carousel Container */
    .carousel-container {
        width: 50%; /* Right 50% of the screen */
        margin: 0; /* Remove extra margin */
        display: flex;
        align-items: left;
    }
    .undercarousel {
        display: none; /* Hide on desktop */
    }
    .theme{
        width: 14vw;
    }
    .theme-left{
        transform: scale(0.8) translateX(80%);
    }
    .theme-right{
        transform: scale(0.8) translateX(-80%);
    }
    .arrows{
        top: 50%;
        transform: translateY(-50%);
    }
    .left-arrow{
        left: 9vw;
    }
    .right-arrow{
        right: 9vw;
    }
    .mainbutton{
        width: 18vw;
        margin: 3vw 0 0 0;
    }
    .girlssphone{
        width: 60%;
        height: auto;
        margin: 15vw 0 0 5vw;
    }
    .salesmachinetext{
        font-size: 2.8vw;
        line-height: 5.5vw;
        margin: 0 0 5vw -25vw;
    }
    .robotlist{
        line-height: 6.5vw;
        font-size: 2.1vw;
        margin: 15vw 0 0 0;
    }
    .worktitle{
        font-size: 3.5vw;
        margin-left: 25vw;
    }
    .icon-container {
        flex-direction: row;
        justify-content: space-around;
      }
  
      .icon {
        width: 20vw;
      }
  
      .icon-title {
        font-size: 2vw;
      }
  
      .icon-description {
        font-size: 1.5vw;
      }
    .stars{
        width: 40vw;
        margin: 5vw 0 3vw 30vw; 
    }
    .starstext{
        font-size: 2.2vw;
        width: 85vw;
        margin: 0 0 6vw 7.55vw;
    }
    .features{
        height: 90vh;
    }
    .card{
        width: 40%;
        margin: 2% auto;
    }
    .card-img-top{
        height: 22vw;
    }
    .card-title{
        font-size: 1.8vw;
        padding-bottom: 1vw;
        letter-spacing: 0;
    }
    .card-text{
        font-size: 1.3vw;
        letter-spacing: .05vw;
    }
    .list-group .list-group-item{
        font-size: 1.2vw;
    }
    .button2{
        width: 20vw;
        margin-left: 39vw;
    }
    .typedtext{
        font-size: 3.2vw;
        margin: 2vw 0 0 10vw;
    }
    .securitytitle{
        font-size: 2.6vw;
    }
    .securitytext{
        width: 50vw;
        font-size: 1.5vw;
        margin-left: 28vw;
    }
    .faq-item{
        margin: 0 auto;
        width: 65%;
    }
    .faq-question{
        font-size: 1.2vw;
    }
    .faq-answer{
        font-size: 1.2vw;
        width: 70%;
        margin: 1vw auto;
    }
    .popup {
        width: 50%;
        max-width: 800px;
    }
    .signup-button{
        padding: .5vw 1vw;
    }
}
/* Super Large Gaming Computer Screens (1900px+) */
@media (min-width: 1900px){
    .landing-content {
        flex-direction: row; /* Arrange items side by side */
        justify-content: space-between;
        align-items: center;
    }
    .svg-background {
        top: 12%;
        left: 60%;
        width: 30%;
    }
    .text-container {
        width: 50%; /* Half of the screen */
        align-items: end; 
    }
    .transformtext {
        font-size: 4em;
        margin: 0;
    }
    .undertransformtext {
        display: block; /* Show on desktop */
        font-size: 2.2em;
        line-height: 70px;
    }
   /* Carousel Container */
    .carousel-container {
        width: 50%; /* Right 50% of the screen */
        margin: 0; /* Remove extra margin */
        display: flex;
        align-items: left;
    }
    .undercarousel {
        display: none; /* Hide on desktop */
    }
    .theme{
        width: 12vw;
    }
    .theme-left{
        transform: scale(0.8) translateX(100%);
    }
    .theme-right{
        transform: scale(0.8) translateX(-100%);
    }
    .arrows{
        top: 50%;
        transform: translateY(-50%);
    }
    .left-arrow{
        left: 10vw;
    }
    .right-arrow{
        right: 10vw;
    }
    .mainbutton{
        width: 20vw;
        margin: 1vw 0 0 0;
    }
    .girlssphone{
        width: 60%;
        height: auto;
        margin: 15vw 0 0 15vw;
    }
    .salesmachinetext{
        font-size: 2.3vw;
        line-height: 4vw;
        margin: 0 0 5vw -25vw;
    }
    .robotlist{
        line-height: 5.5vw;
        font-size: 1.9vw;
    }
    .worktitle{
        font-size: 2.2vw;
        margin: 5vw 0 7vw 35vw;
    }
    .features{
        height: 120vh;
    }
    .icon-container {
        flex-direction: row;
        justify-content: space-around;
      }
  
      .icon {
        width: 20vw;
      }
  
      .icon-title {
        font-size: 2vw;
      }
  
      .icon-description {
        font-size: 1.5vw;
      }
    .stars{
        width: 30vw;
        margin: 5vw 0 3vw 20vw; 
    }
    .starstext{
        font-size: 2.2vw;
        width: 85vw;
        margin: 0 0 4vw -7vw;
    }
    .itseasy{
        width: 80vw;
        height: 14.5vw;
        margin-bottom: 5vw;
        margin-left: -5vw;
    }
    .easy{
        height: 10vw;
        width: 10vw;
        margin: 2vw 0 0 2.5vw;
        box-shadow: 0 0 3vw .5vw#31006a;
    }
    .card{
        width: 40%;
        margin: 1% auto;
    }
    .card-img-top{
        height: 22vw;
    }
    .card-title{
        font-size: 1.5vw;
        padding-bottom: 1vw;
        letter-spacing: 0;
        padding-top: 2vw;
    }
    .card-text{
        font-size: 1.1vw;
        letter-spacing: .05vw;
        padding-bottom: 1vw;
    }
    .list-group .list-group-item{
        font-size: 1vw;
        padding: 1vw;
    }
    .button2{
        width: 15vw;
        margin: 3vw 0 0 42vw;
    }
    .typedtext{
        font-size: 2.2vw;
        margin: 1vw 0 0 30vw;
    }
    .securitytitle{
        font-size: 2.3vw;
    }
    .securitytext{
        width: 50vw;
        font-size: 1.4vw;
        line-height: 3vw;
        margin-left: 28vw;
    }
    .faq-item{
        margin: 0 auto;
        width: 55%;
    }
    .faq-question{
        font-size: 1vw;
    }
    .faq-answer{
        font-size: .9vw;
        width: 60%;
        margin: 1vw auto;
    }
    .popup {
        width: 40%;
        max-width: 900px;
    }
    .signup-button{
        padding: .5vw 1vw;
    }
}