* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html {
    font-size: 16px;
}

html, body {
    scroll-behavior: smooth;
}

.animate-up {
    transform: translateY(50px);
    opacity: 0;
}

.animate-up.active {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}


@keyframes sway {
    0% {
        transform: translateY(20px);
    }
    50% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0);
    }
}


/*@keyframes sway {
    0% {
        transform: translateY(70px) rotate(-1deg);
    }
    50% {
        transform: translateY(40px) rotate(1deg);
    }
    100% {
        transform: translateY(0) rotate(0);
    }
}*/

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-1300px);
    }
}

/* ------------------- NAVIGATION STYLES ------------------- */

.site-header {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    box-shadow: 0 8px 4px rgba(0, 0, 0, 0.21);
    width: 100%;
    z-index: 1000;
}

.header-logo img {
    height: 55px; 
    width: auto;
    padding-left: 40px;
}

#navbar {
    flex-grow: 1;
    margin: 0 20px;
}

.navbar_menu {
    display: flex;
    list-style: none;
    justify-content: flex-start;
    gap: 25px;
    padding-left: 55px;
}

.navbar_item {
    position: relative;
}

.navbar_links {
    text-decoration: none;
    color: #2D1B4D;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar_links:hover {
    color: #8B5CF6;
}

.navbar_dropdown_menu {
    position: absolute;
    top: 100%;
    display: none;
}

.navbar_item:hover .navbar_dropdown_menu {
    display: block;
}

.navbar_item .fa-chevron-down {
    transition: transform 0.3s ease;
}

.navbar_item:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-number {
    text-decoration: none;
    color: #2D1B4D;
    font-size: 16px;
    font-weight: 600;
    padding-right: 11px;
    transition: color 0.3s ease;
    font-family: "IBM Plex Sans", sans-serif;
}

.contact-number:hover{
    color: #8B5CF6;
}

.header-login, .header-trial {
    font-family: "IBM Plex Sans", sans-serif;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-login {
    background-color: transparent;
    color: #6B3FA0;
    border: 1px solid #6B3FA0;
}

.header-login:hover {
    background-color: #8B5CF6;
    color: #fff;
}

.header-trial {
    background-color: #6B3FA0;
    color: #fff;
    margin-right: 45px;
}

.header-trial:hover {
    background-color: #4C2D73;
}

/* ------------------- BODY STYLES ------------------- */

body {
    /*background-color: #f9effc;*/
    background-color: #fffcf4;
    overflow-x: hidden;
}

h1 {
    font-size: 40px;
    font-weight: bold;
    color:black;
    font-family: "Barlow Condensed", sans-serif;
}

p {
    font-size: 18px;
    color: black;
    font-family: "Poppins", sans-serif;
}

/* ------------------- HERO STYLES ------------------- */

.hero-alpha {
    background-image: url(/media/Hero_Image_Test3.png);
    background-color: #c4b6ec;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 888px;
    width: 100%;
    z-index: 1000;
}


.hero-centre {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: 250px;
}

.hero-centre h1 {
    font-size: 110px;
    margin-bottom: 20px;
}

.hero-centre p {
    font-size: 35px;
    margin-bottom: 25px;
}

.hero-centre button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 21px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #6B3FA0;
    color: #fff;
    font-family: "Poppins";
}

.hero-centre button:hover {
    background-color: #4C2D73;
}

.hero-image {
    height: 300px;
    width: auto;
    margin-bottom: 45px;
}

/* ------------------- SOLUTIONS STYLES ------------------- */

.solutions-alpha {
    height: 777px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 111px;
}

.solutions-top {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.solutions-content-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
    margin-bottom: 20px;
}

.solutions-break {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    background-color: #A78BFA;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    padding: 7px;
    border-radius: 20px;
    margin-top: 90px;
    margin-left: 50px;
    opacity: 34%;
}

#solutions-title {
    padding-bottom: 18px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    z-index: 50;
}

#solutions-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-image: url('/media/Underline.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 50;
}

#solutions-description {
    width: 60%;
    text-align: center;
}

.solutions-row-alpha {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
    margin-bottom: 80px;
}

.solutions-row-beta {
    display: flex;
    flex-direction: row;
}

.solutions-row-alpha-1 {
    display: flex;
    flex-direction: row;
    margin-right: 50px;
}

.solutions-row-alpha-2 {
    display: flex;
    flex-direction: row;
}

.solutions-content {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin-top: 0px;
    margin-left: 32px;
}

.solutions-head {
    font-weight: bold;
    margin-bottom: 5px;
}

.solutions-body {
    background-color: #fffcfc;
    padding: 8px;
    border-radius: 11px;
    filter: drop-shadow(2px 2px 21px rgba(0, 0, 0, 0.1))
}

.solutions-icons {
    height: 100px;
    width: 100px;
    /*filter: drop-shadow(12px 12px 18px rgba(227, 133, 238, 0.70));*/
    filter: drop-shadow(11px 11px 18px rgba(196, 133, 238, 0.7));
}

/* ------------------- BENEFITS STYLES ------------------- */

.benefits-alpha {
    height: 710px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.benefits-top {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#benefits-title {
    padding-bottom: 18px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    z-index: 50;
}

#benefits-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-image: url('/media/Underline.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 50;
}

#benefits-description {
    width: 60%;
    text-align: center;
}

.benefits-content-wrapper {
    display: flex;
    flex-direction: row;
    width: 80%;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
}

.benefits-content p {
    width: 90%;
}

.benefits-head {
    font-weight: bold;
    margin-bottom: 10px;
}

.benefits-body {
    margin-top: 15px;
    background-color: #fffcfc;
    padding: 11px;
    border-radius: 11px;
    filter: drop-shadow(2px 2px 21px rgba(0, 0, 0, 0.1));
}

.benefits-image {
    display: flex;
    justify-content: center;
    width: 50%;
}

#benefits-image {
    height: 300px;
    width: auto;
    /*filter: drop-shadow(12px 12px 18px rgba(227, 133, 238, 0.70));*/
    filter: drop-shadow(12px 12px 18px rgba(196, 133, 238, 0.7));
}

/* ------------------- PRICING STYLES ------------------- */

.pricing-alpha::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.pricing-alpha {
    position: relative;
    background-color: rgba(139, 92, 246, 0.3);
    height: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.pricing-alpha.sway {
    animation: sway 2s ease-in-out;
}

.pricing-top {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#pricing-title {
    padding-bottom: 18px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    z-index: 50;
}

#pricing-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-image: url('/media/Underline.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 50;
}

#pricing-description {
    width: 60%;
    text-align: center;
}

.monthly-to-yearly {
    display: flex;
    flex-direction: row;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
}

#monthly-button {
    background-color: #6B3FA0;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    padding: 8px 15px;
    border: 3px solid #cf4386;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 8px;
}

#monthly-button:hover {
    background-color: #4C2D73;
}

#yearly-button {
    background-color: goldenrod;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-right: 8px;
}

#yearly-button:hover {
    background-color: rgb(162, 124, 27);
}

#save-2-months {
    color: black;
    font-size: 12px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #cf4386;
    text-underline-offset: 3px;
}

.pricing-content-wrapper {
    display: flex;
    flex-direction: row;
    width: 91%;
    justify-content: center;
    align-items: center;
}

.pricing-plan {
    background-color: #fffcf4;
    height: 440px;
    width: 370px;
    margin-left: 20px;
    margin-right: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 28px;
    /*filter: drop-shadow(6px 6px 12px rgba(227, 133, 238, 0.40));*/
    filter: drop-shadow(11px 11px 18px rgba(196, 133, 238, 0.7));
}

.pricing-head {
    width: 80%;
    font-weight: bold;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px;
}

.pricing-body {
    width: 83%;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pricing-cost {
    font-size: 35px;
    font-weight: bold;
    color: #cf4386;
}

.pricing-month {
    font-weight: bold;
    color: #cf4386;
    margin-bottom: 21px;
}

.pricing-text {
    border: 2px;
    border-color: black;
}

.pricing-button {
    background-color: #6B3FA0;
    color: #fff;
    font-family: "IBM Plex Sans", sans-serif;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
    margin-bottom: 35px;
}

.pricing-button:hover {
    background-color: #4C2D73;
}

#pricing-popular {
    border: 3px solid #cf4386;
}

.pricing-plan {
  position: relative;
}

#pricing-popular .popular-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #cf4386;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
  border: 2px solid #cf4386;
}

/* ------------------- INTEGRATIONS STYLES ------------------- */

.integrations-alpha {
    height: 1050px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.integrations-content-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.integrations-testimonial {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.integrations-testimonial-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}

#integrations-title {
    font-weight: bold;
    text-align: center;
    margin-top: 48px;
    margin-bottom: 16px;
    margin-right: 25px;
}

.integrations-colour-element {
    font-weight: bold;
    color: #cf4386;
}

#integrations-underline-element, 
#integrations-underline-element-2 {
    text-decoration: underline;
    text-decoration-color: #cf4386;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

#integrations-quote {
    background-color: #fffcfc;
    padding: 17px;
    border-radius: 11px;
    filter: drop-shadow(2px 2px 21px rgba(0, 0, 0, 0.1));
    width: 600px;
    margin-right: 25px;
}

#integrations-image {
    height: 320px;
    width: auto;
    border-radius: 25px;
    filter: drop-shadow(11px 11px 18px rgba(196, 133, 238, 0.7));
    margin-left: 35px;
}

#five-stars {
    width: 100px;
    height: auto;
    opacity: 40%;
    margin-left: 250px;
}

.integrations-conveyer-wheel {
    width: 80%;
    height: 140px;
    overflow: hidden;
    border-radius: 15px;
    margin: 70px auto 0;
    background-color: #fff;
    filter: drop-shadow(2px 2px 21px rgba(0, 0, 0, 0.1));
    padding: 15px 0;
    box-sizing: border-box;
}

.integrations-conveyer-content {
    display: flex;
    height: 110px;
    width: calc(130px * 10);
    animation: scroll 16s linear infinite;
    will-change: transform;
}

.integrations-image {
    cursor: pointer;
    width: auto;
    height: 110px;
    object-fit: cover;
    flex-shrink: 0;
    margin-left: 10px;
    margin-right: 10px;
}

.integrations-conveyer-wheel:hover .integrations-conveyer-content {
    animation-play-state: paused;
}

.integrations-conveyer-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#integrations-title-2 {
    font-weight: bold;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 16px;
}

#integrations-quote-2 {
    background-color: #fffcfc;
    padding: 17px;
    border-radius: 11px;
    filter: drop-shadow(2px 2px 21px rgba(0, 0, 0, 0.1));
    width: 900px;
    text-align: center;
}

/* ------------------- AUTOMATED STYLES ------------------- */

.automated-alpha {
    height: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.automated-input-wrapper {
    height: 380px;
    width: 69%;
    border-radius: 25px;
    background-color: #8B5CF6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#automated-title {
    margin-top: 25px;
    color: rgb(255, 211, 99);
}

#automated-description {
    margin-top: 25px;
    color: honeydew;
    width: 75%;
}

.automated-numbers {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 35px;
}

.automated-pipe {
    height: 40px;
    width: auto;
}

#automated-number-element-1 {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #cf4386;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

#automated-number-element-2,
#automated-number-element-3,
#automated-number-element-4,
#automated-number-element-5 {
    color: #fff;
    margin-left: 20px;
    margin-right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgb(190, 183, 183);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

.automated-user {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.automated-user-input {
    width: 400px;
    height: 40px;
    padding: 10px;
    border-radius: 8px;
    font-size: 16px;
}

.automated-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#automated-button {
    width: 400px;
    height: 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #cf4386;
    color: #fff;
    font-family: "Poppins";
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

#automated-previous-button {
    width: 100px;
    height: 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #75475d;
    color: #fff;
    font-family: "Poppins";
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-right: 10px;
}

#automated-button:hover {
    background-color: #b63b76;
}

.automated-input-reviews {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

.reviews-1, .reviews-2, .reviews-3, .reviews-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#review-1-img-1, #review-2-img-1, #review-3-img-1, #review-4-img-1 {
    width: 110px;
    height: 30px;
    background-color: #2D1B4D;
    border-radius: 10px;
    margin-left: 25px;
    margin-right: 25px;
}

#review-1-img-2, #review-2-img-2, #review-3-img-2, #review-4-img-2 {
    width: 100px;
    height: 100px;
    margin-left: 25px;
    margin-right: 25px;
}

/* ------------------- FAQ STYLES ------------------- */

.faq-alpha::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.faq-alpha {
    position: relative;
    background-color: rgba(139, 92, 246, 0.3);
    height: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
}

.faq-alpha.sway {
    animation: sway 2s ease-in-out;
}

.faq-top {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
}

#faq-title {
    padding-bottom: 18px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    z-index: 50;
}

#faq-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 25px;
    background-image: url('/media/Underline.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 50;
}

#faq-description {
    text-align: center;
}

.faq-content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 100px;
}

.faq-content-wrapper ul {
    list-style: none;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: center;
    padding-left: 250px;
}

.faq-image {
    display: flex;
    flex-direction: column;
    width: 50%;
    align-items: start
}

.faq-content-filler {
    display: flex;
    flex-direction: row;
}

/* ------------------- FOOTER STYLES ------------------- */

.footer-alpha {
    height: 250px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #8B5CF6;
    border-top: solid 1px #2D1B4D;
    box-shadow: 0 -8px 4px rgba(0, 0, 0, 0.21);
    z-index: 1000;
}