
:root {
    --primary-color: #563dff;
    --secondary-color: #ffffff;
    --dark-color: #2c2c2c;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #333;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    position: relative;
    padding-left: 30px; /* Space for the circle */
}

li::before {
    content: "✓"; /* The tick symbol */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Align vertically */
    width: 20px;
    height: 20px;
    border-radius: 50%; /* Make it a circle */
    background-color: #c6b8c8; /* Circle color */
    color: #4a1788; /* Tick color */
    font-size: 14px;
    text-align: center;
    line-height: 20px; /* Vertically center the tick */
}

li.platinum-card::before {
    content: "✓"; /* The tick symbol */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* Align vertically */
    width: 20px;
    height: 20px;
    border-radius: 50%; /* Make it a circle */
    background-color: #0046AF; /* Circle color */
    color: white; /* Tick color */
    font-size: 14px;
    text-align: center;
    line-height: 20px; /* Vertically center the tick */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 15px;
}

.text-center {
    text-align: center;
}

h2 {
    font-weight: bold;
    margin-bottom: 25px;
}

p {
    font-size: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distribute space between columns */
}

.featureRow {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distribute space between columns */
    margin-top: 70px;
}

.col {
    flex: 1 1 19%;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.card {
    background-color: white;
    border: none;
    color: black;
    width: 100%;
    border-radius: 0.5rem;
    box-sizing: border-box;
}

.card img {
    width: 38px;
    height: auto;
    margin-bottom: 10px;
}

.card h4 {
    font-weight: bold;
    margin-top: 10px;
}

.card p {
    font-size: 12px;
    font-weight: bold;
    text-align: left;
}

.card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.card-body {
    padding: 20px;
}

.navbar-collapse {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-link {
    color: #505F98;
    font-size: 16px;
    font-weight: 500;
}

.nav-link:hover {
    color: #2c3e50;
}

.disabled-link {
    color: #b0b0b0 !important;
    cursor: not-allowed;
}

/* When the button is expanded or active */
.navbar-toggler.open {
    position: relative;
    z-index: 20;
}

.navbar-toggler.open .navbar-toggler-icon {
    transform: rotate(90deg);
}

/* Allow tooltip to function while link is disabled */
.nav-link.disabled-link {
    pointer-events: all !important;
}

.hero-section {
    align-items: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-section {
    padding: 5rem 0;
}

.background-div {
    background-image: url('../images/Boxes.png');
    background-position: right center;
    background-repeat: no-repeat; /* Prevents the image from repeating */
    border-radius: 15px; /* Rounded corners for a smoother look */
    padding: 20px; /* Inner padding for spacing between content and background */
    color: grey;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    display: inline-block;
    margin-bottom: 1rem;
}

.purple-section {
    background-color: #692CE0;
    color: #fff;
}

.custom-card {
    height: 241px;
    width: 236px;
    border-radius: 26px;
}

.background-feature-div {
    background-image: url('../images/Features-Background.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat; /* Prevents the image from repeating */
}

.industries-section {
    padding: 5rem 0;
}

.pricing-section {
    color: #fff;
    background-color: #692CE0;
    padding: 5rem 0;
}

.btn-choose-first {
    background: #7da1d0;
    color: #0046AF;
    font-weight: 600;
    border-radius: 23px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    width: 153px;
    margin-left: 50px;
    margin-top: 48px
}

.btn-choose-second {
    background: #7da1d0;
    color: #0046AF;
    font-weight: 600;
    border-radius: 23px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    margin-top: 1px;
    width: 153px;
    margin-left: 50px;
}

.btn-choose-third {
    background: #0046AF;
    color: white;
    font-weight: 200;
    border-radius: 23px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    margin-top: 1px;
    width: 153px;
    margin-left: 50px;
}

.plan-card {
    background: white;
    color: black;
}

.background-pricing-div {
    background-image: url('../images/Pricing-model-Background.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.toggle-container {
    display: inline-flex;
    position: relative;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    background-color: white;
}

.toggle-container label {
    padding: 10px 16px;
    cursor: pointer;
    color: #333;
    transition: background-color 0.1s, color 0.3s;
    z-index: 1;
    text-align: center;
    border-radius: 25px;
}

.toggle-container .toggle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: white;
    transition: transform 0.3s, background-color 0.3s;
    z-index: 0;
    border-radius: 25px;
}

/* When YEARLY is checked, move the background to the right */
.toggle-container input#yearly:checked ~ .toggle-bg {
    transform: translateX(100%);
    background-color: #032962;  /* Background color for 'yearly' option */
}

/* When MONTHLY is checked, move the background to the left */
.toggle-container input#monthly:checked ~ .toggle-bg {
    transform: translateX(0);
    background-color: #032962;  /* Background color for 'monthly' option */
}

/* Style for the labels when checked */
.toggle-container input:checked + label {
    color: white;
    background-color: #032962;
    border-radius: 25px;
}

.upcoming-features-section {
    padding: 5rem 0;
    margin-bottom: -95px;
}

.up-coming-description {
    margin-left: 68px
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: space-between; /* Distribute space between items */
    gap: 20px; /* Adds space between the items */
}
  
.feature-item {
    width: 32%; /* Set fixed width for each feature */
    margin-bottom: 20px; /* Space between rows */
}

.up-coming-image {
    display: inline-block;
    width: auto;
    height: auto;
    margin-left: 10px;
    border-radius: 20px;
}

.contact-section {
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.background-contact-div {
    background-image: url('../images/Contact-Us-background.png');
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    filter: blur(0px);
    max-width: 100%; /* Prevents overflow */
    margin: 0 auto; /* Center the section */
    width: 100%;
    background-position-x: unset;
}

.contact-label {
    font-weight: bold;
    margin-top: 6%;
    margin-right: -5%;
    font-size: 45px;
}

.contact-statement {
    width: 30%;
    margin-left: 9%;
}

.contact-label-2 {
    font-weight: bold;
    font-size: 37px;
    margin-top: 42%;
    margin-left: 9rem;
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    margin-left: 75px;
    margin-right: 63px;
    margin-top: 16px;
}

.name-fields {
    display: flex; /* Use Flexbox to align items horizontally */
    width: 100%; /* Ensure the container takes the full width */
}

.name-fields input {
    width: 48%; /* Ensure each input takes up about 48% of the container's width */
}

.name-fields input:first-child {
    margin-right: 4%; /* Adds space between the first name and last name */
}

.form-control-name {
    padding: .375rem .75rem;
    border-radius: var(--bs-border-radius);
    width: 40%;
}

.transparent-input, .transparent-textarea {
    background-color: #f4f4f4;
    border: 1px solid black;
    opacity: 95%;
}

.transparent-input:focus, .transparent-textarea:focus {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: white;
    outline: none;
}

.send-button-style {
    width: 100%;
}

#responseMessage {
    background-color: rgb(180 155 228);
    color: #692CE0;
    line-height: 18px;
    font-size: 15px;
    padding: 10px 20px;
    width: 92%;
    margin-top: 11px;
    margin-left: 10px;
    font-weight: bold;
    text-align: left;
    display: none;
}

.footer-section {
    color: #fff;
    background-color: #692CE0;
    padding: 5rem 0;
}

.location-styling {
    flex: 1 1 19%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

footer {
    color: #333;
}

.footer-bottom {
    border-top: 1px solid white;
    background-color: #692CE0;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #555;
}

.footer-links a {
    text-decoration: none;
    color: #333;
}

.footer-links a:hover {
    text-decoration: underline;
}

.toggle-option {
    flex: 1;
    text-align: center;
    line-height: 32px;
    cursor: pointer;
    color: #A9A9A9;
    font-weight: bold;
    z-index: 2;
    transition: color 0.3s ease;
}

input[type="radio"] {
    display: none;
}

.toggle-bg {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 96px;
    height: 32px;
    background-color: #0F1F44;
    border-radius: 16px;
    transition: transform 0.3s ease, width 0.3s ease;
    z-index: 1;
}

.no-tick::before {
    content: none;
}

.nav-text-colour {
    color: #505F98;
}


/* Media Queries for Responsiveness */
@media (max-width: 1300px) {
    .DetailAR {
        margin-left: 16%;
    }
    .col {
        flex: 1 1 30%; /* 3 columns on medium screens */
    }
    .up-coming-description {
        margin-left: 5rem;
    }
}

@media (max-width: 992px) {
    .DetailAR {
        margin-left: 0%;
    }
    .WLB{
        margin-left: 25%;
    }
    .col {
        flex: 1 1 45%; /* 2 columns on smaller screens */
    }
    .featureRow {
        padding-top: 25px; /* Center the cards in a single column */
        margin-left: 15%;
    }
    
    .up-coming-description {
        margin-left: 45px
    }

    .background-contact-div {
        background-position: center;
        background-size: 99% 98%;
        margin-left: 9%;
    }

    .contact-label {
        font-size: 211%;
        margin-top: 12%;
        margin-right: 79%;
    }

    .contact-label-2 {
        display: none;
    }

    .contact-form-container {
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 20px;
    }

    .form-control.transparent-input {
        border-radius: 5px;
        font-size: 14px;
    }

    .send-button-style {
        font-size: 16px;
        padding: 10px 20px;
        width: 100%;
        margin-top: 10px;
    }

    .send-button-style img {
        width: 20px;
        margin-left: 10px;
    }

    .col.formStyling {
        padding-left: 0;
        padding-right: 0;
    }

    .form-control {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #emailResponseMessage {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .featureRow {
        margin-left: 25%;
    }
    .WLB{
        margin-left: 0%;
    }
    
    .col {
        flex: 1 1 100%; /* 1 column on small screens */
    }
    
    h2 {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }

    .background-feature-div {
        background-image: url('../images/Features-Background.png');
        background-size: cover;
        background-position: right center;
        background-repeat: no-repeat;
    }
    
    .background-contact-div {
        background-image: url('../images/Contact-Us-background.png');
        background-position: center;
        background-repeat: no-repeat;
        filter: blur(0px);
        border-radius: 10px; /* Reduced border radius for better appearance on small screens */
        justify-content: center;
        align-items: center;
        height: 500px;
        position: relative;
        margin: 0 auto;
        padding: 0 15px; /* Keep padding for better spacing */
    }
    .contact-form-container {
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
    }
    .form-control {
        width: 28%;
    }
    .send-button-style {
        width: 28%;
    }
    .up-coming-description {
        margin-left: 24%;
    }

    #responseMessage {
        max-width: 90%;
        padding: 8px 16px;
        font-size: 14px;
    }
    .background-div {
        padding: 15px;
    }
    .background-pricing-div {
        padding: 15px;
    }
}

@media (max-width: 618px) {
    .background-contact-div {
      width: 100%; /* Adjust this to the desired width */
      padding: 0 20px; /* Optional: Add padding for better spacing */
    }
}

@media (max-width: 500px) {
    .featureRow {
        margin-left: 15%;
    }
    .up-coming-description {
        margin-left: 19px
    }
}

@media (max-width: 375px) {
    .featureRow {
        margin-left: 12%;
    }

    .contact-form-container {
        margin-left: 8%;
        margin-right: -24%;
        margin-top: 16px;
    }

    .contact-label {
        font-weight: bold;
        font-size: 33px;
        text-align: center;
        margin-top: 0;
        padding-top: 10%;
        padding-top: 27%;
    }

    .contact-statement {
        display: none
    }

    .contact-heading {
        font-size: 24px;
        text-align: center;
    }
    
    .contact-form {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    h2 {
        font-size: 20px;
    }

    p {
        font-size: 12px;
    }

    #responseMessage {
        max-width: 50%;
        padding: 6px 12px;
        font-size: 13px;
        margin-left: 5px;
        margin-top: 8px;
    }
}

@media (max-width: 900px) {
    .background-contact-div {
        background-image: url('../images/Contact-Us-background.png');
        background-position: center;
        background-repeat: no-repeat;
        filter: blur(0px);
        border-radius: 15px;
        justify-content: center;
        align-items: center;
        height: 740px;
        width: 1283px;
        position: relative;
        margin: 0 auto;
        padding: 0 15px;
        background-size: cover;
        white-space: nowrap;
    }

    .contact-form-container {
        margin-left: 2%;
        margin-right: -12%;
        margin-top: 9%;
    }
    .form-control {
        width: 80%;
    }
    .send-button-style {
        width: 80%;
    }
    .contact-statement {
        display: none;
    }
    .form-control-name {
        padding: .375rem .75rem;
        border-radius: var(--bs-border-radius);
        width: 40%;
    }
    .name-fields {
        display: flex;
        width: 100%;
    }
    
    .name-fields input {
        width: 38%;
    }
    
    .name-fields input:first-child {
        margin-right: 4%;
    }
    .contact-label {
        font-weight: bold;
        font-size: 33px;
        text-align: center;
        margin-top: 0;
        padding-top: 10%;
        padding-top: 16%;
    }

    #responseMessage {
        max-width: 78%;
        padding: 6px 12px;
        font-size: 13px;
        margin-left: 5px;
        margin-top: 8px;
    }
}

@media (max-width: 450px) {
    .background-contact-div {
        background-image: url('../images/Contact-Us-background.png');
        background-position: center;
        background-repeat: no-repeat;
        filter: blur(0px);
        border-radius: 15px;
        height: 807px;
        width: 27rem;
        position: relative;
        margin: 0 auto;
        padding: 7px 11px;
    }

    .contact-form-container {
        border-radius: 10px;
        margin: 0 auto;
    }

    .form-control {
        width: 100%;
        padding: 12px;
    }

    .send-button-style {
        width: 100%;
        padding: 12px;
    }

    .contact-statement {
        display: none;
    }

    .form-control-name {
        width: 48%;
        padding: .375rem .75rem;
        border-radius: var(--bs-border-radius);
    }

    .name-fields {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .name-fields input {
        width: 48%;
    }

    .contact-label {
        font-weight: bold;
        font-size: 24px;
        margin-top: 5%;
        padding: 22px;
        color: white;
        text-align: center;
    }
    
    #responseMessage {
        max-width: 99%;
        padding: 6px 12px;
        font-size: 13px;
        margin-left: 5px;
        margin-top: 8px;
    }
}

@media screen and (min-width: 1072px) {
    .background-contact-div {
        background-size: 83% 94%;
        background-position-x: right;
    }

    .contact-form-container {
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        margin-left: 27%;
        padding: 20px;
    }
    .form-control {
        width: 94%;
    }
    .send-button-style {
        width: 94%;
        margin-right: 10%;
    }
    .form-control-name {
        padding: .375rem .75rem;
        border-radius: var(--bs-border-radius);
        width: 40%;
    }
    .name-fields {
        display: flex;
        width: 100%;
    }
    
    .name-fields input {
        width: 45%;
    }
    
    .name-fields input:first-child {
        margin-right: 4%;
    }
}

@media (max-width: 576px) {
    .background-div {
        padding: 10px;
    }
    .background-pricing-div {
        padding: 10px;
    }
    #emailResponseMessage {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .contact-form-container {
        margin-left: 4%;
        margin-right: 4%;
        margin-top: 16px;
    }

    .name-fields {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .name-fields input {
        width: 48%;
    }

    .contact-label {
        font-weight: bold;
        font-size: 33px;
        text-align: center;
        margin-top: 0;
        padding-top: 33%;
        white-space: nowrap;
    }

    .contact-statement {
        display: none
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .navbar-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-toggler {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
        height: 40px;
    }
    .full-screen-only {
        display: none;
    }
}

@media (min-width: 992px) {
    .mobile-only {
        display: none;
    }
}

@media (min-width: 990) {
    .background-contact-div {
        width: 94%;
        margin-left: 114px;
        padding: 20px;
    }

    .contact-form-container {
        background-color: rgba(255, 255, 255, 0.7);
        border-radius: 10px;
        margin-left: 20px;
        padding: 20px;
    }
    .form-control {
        width: 94%;
    }
    .send-button-style {
        width: 94%;
    }
    .form-control-name {
        padding: .375rem .75rem;
        border-radius: var(--bs-border-radius);
        width: 40%;
    }
    .name-fields {
        display: flex;
        width: 100%;
    }
    
    .name-fields input {
        width: 45%;
    }
    
    .name-fields input:first-child {
        margin-right: 4%;
    }
}

@media (max-width: 767px) {
    .feature-item {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1020px) {
    .feature-item {
        width: 47%;
    }

    .feature-item:nth-child(3) {
        width: 47%;
        margin-left: 25%;
    }
}


#emailResponseMessage {
    background-color: rgb(180 155 228);
    line-height: 1.4;
    font-size: 0.8125rem;
    padding: 10px 20px;
    max-width: 100%;
    margin-top: 10px;
    font-weight: bold;
    text-align: left;
    display: none;
}
