* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    background-color: #F5F5F5 !important;
    color: #161C2D !important;

}

img {
    max-width: 100%;
}

img.w-100 {
    width: 100%;
}

/* Fluid font sizes between 920px and 1600px */
/* min size = max size - 20% */
.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.font-17 {
    font-size: 17px;
}

.font-18 {
    font-size: 18px;
}

.font-19 {
    font-size: 19px;
}

.font-20 {
    font-size: 20px;
}

.font-21 {
    font-size: 21px;
}

.font-22 {
    font-size: 22px;
}

.font-23 {
    font-size: 23px;
}

.font-24 {
    font-size: 24px;
}

.font-25 {
    font-size: 25px;
}

.font-26 {
    font-size: 26px;
}

.font-27 {
    font-size: 27px;
}

.font-28 {
    font-size: 28px;
}

.font-29 {
    font-size: 29px;
}

.font-30 {
    font-size: 30px;
}

.font-31 {
    font-size: 31px;
}

.font-32 {
    font-size: 32px;
}

.font-33 {
    font-size: 33px;
}

.font-34 {
    font-size: 34px;
}

.font-35 {
    font-size: 35px;
}

.font-36 {
    font-size: 36px;
}

.font-37 {
    font-size: 37px;
}

.font-38 {
    font-size: 38px;
}

.font-39 {
    font-size: 39px;
}

.font-40 {
    font-size: 40px;
}

.font-41 {
    font-size: 41px;
}

.font-42 {
    font-size: 42px;
}

.font-43 {
    font-size: 43px;
}

.font-44 {
    font-size: 44px;
}

.font-45 {
    font-size: 45px;
}

.font-46 {
    font-size: 46px;
}

.font-47 {
    font-size: 47px;
}

.font-48 {
    font-size: 48px;
}

.font-49 {
    font-size: 49px;
}

.font-50 {
    font-size: 50px;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.lh1 {
    line-height: 1;
}

.lh1-15 {
    line-height: 1.15;
}

.lh1-2 {
    line-height: 1.2;
}

.lh1-25 {
    line-height: 1.25;
}

.lh1-3 {
    line-height: 1.3;
}

.lh1-35 {
    line-height: 1.35;
}

.lh1-4 {
    line-height: 1.4;
}

.lh1-45 {
    line-height: 1.45;
}

.lh1-5 {
    line-height: 1.5;
}

.lh1-55 {
    line-height: 1.55;
}

.lh1-6 {
    line-height: 1.6;
}

.lh1-65 {
    line-height: 1.65;
}

.lh1-7 {
    line-height: 1.7;
}

.lh1-75 {
    line-height: 1.75;
}

.lh1-8 {
    line-height: 1.8;
}

.lh1-85 {
    line-height: 1.85;
}

.lh1-9 {
    line-height: 1.9;
}

.lh1-95 {
    line-height: 1.95;
}

.lh2 {
    line-height: 2;
}

.text-center {
    text-align: center;
}

.text161C2D {
    color: #161C2D;
}

.opacity70 {
    opacity: .7;
}

dl,
ol,
ul {
    margin: 0 !important;
    padding: 0 !important;
}

li {
    margin: 0;
    margin-left: 24px;
    padding: 0;
}

ul.m-0 {
    margin: 0;
    padding: 0;
}

ul.m-0 li {
    margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 !important;
}

.max-width1200 {
    max-width: 78vw;
    width: 100%;
    margin: 0 auto;
}

/* Header */
.top_Ev {
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.top_Ev::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    animation: revealDots 3s ease-out forwards;
    z-index: 0;
}

/* Ensures content stays above the animated background */
.top_Ev>* {
    position: relative;
    z-index: 1;
}

@keyframes revealDots {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_wrapper,
.right_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right_menu {
    gap: 2.5vw;
}

.right_menu .btn {
    font-weight: 500;
    padding: .65vw 1.25vw;
    border-radius: 16px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.logo img {
    width: 10vw;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5vw;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #913AFF;
}

.btn {
    font-family: "Poppins", sans-serif !important;
    padding: 14px 16px !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    text-align: center !important;
}

.btn.btn-black {
    color: #F4F4F4;
    background-color: #000;
    transition: all 0.3s ease;
}

.btn.btn-black:hover {
    background-color: #913AFF;
    color: #fff;
}

.btn.btn.btn-white {
    background-color: #fff;
    color: #000;
    transition: all 0.3s ease;
}

.btn.btn-white:hover {
    background-color: #913AFF;
    color: #fff;
}

.btn.btn-purple:hover {
    background-color: #fff;
    color: #000;
}

.btn.btn-purple:hover img {
    filter: brightness(0);
    animation: phoneVibrate 0.3s infinite;
    transition: filter 0.3s ease;
}

@keyframes phoneVibrate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.btn.btn-purple {
    background-color: #913AFF;
    color: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 110px 0 250px 0;
    text-align: center;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2.5vw;
}

.highbx {
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
}

.subheading {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px !important;
}

ul.custom-bullets {
    list-style: none;
    padding-left: 0;
}

ul.custom-bullets li.subheading {
    position: relative;
}

ul.custom-bullets li.subheading::before {
    content: "•";
    color: #CB30E0;
    font-size: 1.5em;
    position: absolute;
    left: -16px;
    top: 49%;
    transform: translateY(-50%);

}

.engage-img {
    display: block;
}

.engage-img-mob {
    display: none;
}

.hero-title {
    font-size: 78px;
    line-height: 1.2;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: -0.03em;
}

.highlight {
    color: #FFFFFF;
    background: linear-gradient(270deg,
            rgba(145, 58, 255, 0.04) 0%,
            rgba(145, 58, 255, 0.32) 100%);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    /* Starts at 0% width */
    padding: 0 6px;
    border-radius: 0;

    position: relative;
    animation: expandBackground 2s ease-out forwards;
}

.cursor {
    display: inline-block;
    background-color: #913AFF;
    animation: blinker 800ms infinite;
    width: 4px;
    position: relative;
}

.cursor::after {
    content: "";
    position: absolute;
    right: -4vw;
    width: 3.2vw;
    height: 3.2vw;
    top: 50%;
    transform: translateY(-50%);
    background: url('../assets/Spark.svg');
    animation: rotate 3s linear infinite;
    transform-origin: center center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

@keyframes blinker {
    0% {
        background-color: #913AFF;
    }

    50% {
        background-color: transparent;
    }

    100% {
        background-color: #913AFF;
    }
}

@keyframes expandBackground {
    0% {
        background-size: 0% 100%;
        /* No gradient visible */
    }

    100% {
        background-size: 100% 100%;
        /* Fully expanded */
    }
}

/* .highlight::after {
    content: "";
    position: absolute;
    right: -60px;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../assets/Spark.svg');
    animation: rotate 3s linear infinite;
    transform-origin: center center;
} */

@keyframes rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.hero-desc {
    color: #FFFFFF;
    line-height: 1.4;
    letter-spacing: -0.02em;
    font-size: 25px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    gap: 12px;
}

.contact-cta-section {
    background-color: #f5f5f5;
    padding: 140px 0 140px 0;
    text-align: center;
}

.contact-cta-container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.contact-card {
    border: 1px solid #EEEEEE;
}

.contact-card,
.cta-card {
    background: #FBFBFB;
    padding: 2.5vw;
    text-align: left;
    border-radius: 24px;
    width: 50%;
}

.cta-card img.phone {
    filter: brightness(0);
}

.contact-card h3,
.cta-card h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px !important;
    letter-spacing: -0.04em;
}

.contact-card h3 {
    color: #1B1B1B;
    width: 84%;
}

.contact-form textarea {
    margin-bottom: 32px !important;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px 24px;
    margin-bottom: 12px !important;
    background: #F4F4F4;
    border: 1px solid #EEEEEE;
    border-radius: 16px;
    font-size: 1vw;
    font-family: inherit;
}

.contact-form textarea {
    height: 250px;
    resize: none;
}

.btn {
    display: inline-block;
    padding: 16px 30px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 16px;
}

.btn.black {
    background-color: #8A32FA;
    color: #fff;
    box-shadow: 0px 1px 2px 0px #0D0D120F;
    width: 100%;
    transition: all 0.3s ease;
}

.btn.white {
    background-color: #fff;
    color: #000;
    margin-top: 20px;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn.white:hover {
    background: #913AFF;
    color: #fff;
}


.btn.white:hover img {
    filter: brightness(1);
    animation: phoneVibrate 0.3s infinite;
    transition: filter 0.3s ease;
}

@keyframes phoneVibrate {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.blank {
    height: 200px;
}

.btn-purple {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 16px;
}

.btn img {
    width: 16px;
}

.cta-card .btn.white {
    margin: 0;
}

.cta-card h3 {
    width: 70%;
    line-height: 1.3;
}

.cta-card {
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;
}

.cta-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(131.05deg, #1B1B1B 41.89%, #913AFF 115.2%);
    opacity: 0;
    z-index: -1;
    transition: opacity 1s ease-out;
    border-radius: inherit;
}

.cta-card.aos-animate::before {
    opacity: 1;
}

.cta-footer {
    display: flex;
    align-items: center;
    font-size: 1vw;
    font-weight: 500;
}

.cta-footer .dot {
    height: 8px;
    width: 8px;
    background-color: #4fffb0;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}

.precision-section {
    background-color: #000;
    color: #fff;
    padding: 149px 0;
}

.precision-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

.precision-left {
    width: 46%;
}

.precision-left h2 {
    font-weight: 500;
    margin-bottom: 15px !important;
    letter-spacing: -1.8px;
    line-height: 1.2;
}

.precision-left p {
    color: #FFFFFF;
    line-height: 1.6;
}

.para4 {
    opacity: .65;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.375vw;
    margin-bottom: 20px !important;
}

.icon {
    /* background-color: #7b61ff;
    color: #fff;
    font-weight: bold;
    border-radius: 50%; */
    width: 1.875vw;
    height: 1.875vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 100%;
    height: auto;
}


.feature p {
    font-size: 21px;
    color: #FFFFFF;
    margin: 0;
}

/* Right: FAQ */
.precision-right {
    width: 54%;
    flex-shrink: 0;
}

.faq-box {
    background: #fff;
    color: #000;
    border-top: 5px solid #913AFF;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    border-radius: 0 0 24px 24px;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 21px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 21px 21px;
    font-size: 16px;
    letter-spacing: -0.2px;
    font-weight: 400;
    color: #000000;
}

.faq-item.open .arrow {
    transform: rotate(180deg);
}

.big_cmpn .big_cmpn_wrapper,
.why_we_built_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.688vw;
}

.why_evalio_head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.why_evalio .para p {
    margin: 0;
}

.why_evalio .btn-white:hover {
    background-color: #fff;
    color: #000;
}

.why_evalio ol {
    list-style-type: none;
}

.why_evalio ol li {
    margin: 0;
}

.why_evalio_head h3,
.why_built_head h3 {
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -1.2px;
}

.why_evalio_head p,
.why_built_head p {
    font-weight: 400;
    line-height: 1.54;
    opacity: 0.7;
    color: #161C2D;
    width: 92%;
    letter-spacing: -0.2px;
    text-align: center;
}

.why_built_head p {
    font-weight: 500;
}

.why_built_head p {
    width: 57%;
}

.why_evalio_head ul {
    display: flex;
    justify-content: center;
    gap: 2.438vw;
    list-style-type: none;
}

.why_evalio_head ul li img {
    height: 2.5vw;
    width: auto;
}

.why_evalio_content {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.big_cmpn {
    padding: 55px 0;
    background: #F5F5F5;
}

.why_we_built {
    background: #F5F5F5;
}

.big_cmpn .big_cmpn_wrapper .why_evalio,
.do_more {
    width: 50%;
}

.do_more img,
.do_more .img_d {
    width: 100%;
    height: auto;
}

.why_evalio {
    background: #8A32FA;
    padding: 32px 48px 48px;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    align-items: flex-start;
    border-radius: 24px;
    color: #fff;
}

.para {
    line-height: 1.8;
}

.para1 {
    margin-top: 26px;
    margin-bottom: 20px;
}

.do_more {
    background: #FFFFFF;
    padding: 32px 48px;
    border: 1px solid #E7E7E7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
}

.custom_q {
    margin-top: 110px;
}

.custom_q ul {
    display: flex;
    width: 100%;
    gap: 1.25vw;
    justify-content: space-between;
    list-style-type: none;
}

.custom_q ul li {
    width: calc((100% / 3) - 20px);
    background: #fff;
    padding: 24px;
    border: 1px solid #E7E7E7;
    display: flex;
    flex-direction: column;
    gap: 32px;
    border-radius: 24px;
    justify-content: space-between;
}

.custom_q ul li .text_b h6 {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.2px;
    margin-bottom: 10px !important;
}

.custom_q ul li .text_b p {
    color: #6D6D6D;
    letter-spacing: -0.2px;
    line-height: 1.8;
}

.img_b {
    /* box-shadow: -7px 6px 19px 0px #8530F10D;
	box-shadow: -26px 22px 35px 0px #8530F10A;
	box-shadow: -59px 50px 47px 0px #8530F108;
	box-shadow: -105px 90px 55px 0px #8530F103;
	box-shadow: -164px 140px 61px 0px #8530F100; */

}

.img_b:hover {
    box-shadow: -7px 6px 19px 0px #8530F10D, -26px 22px 35px 0px #8530F10A, -59px 50px 47px 0px #8530F108, -105px 90px 55px 0px #8530F103, -164px 140px 61px 0px #8530F100;
}

.custom_q ul li img {
    width: 100%;
}

.mb-3 {
    margin-bottom: 30px !important;
}

.why_we_built_wrapper .why_built_head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
}

.why_we_built_wrapper .why_built_content {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    align-items: center;
}

.why_we_built_wrapper .why_built_content .img_t {
    width: 50%;
}

.why_we_built_wrapper .why_built_content .flow {
    width: 50%;
}

.why_we_built_wrapper .why_built_content .flow ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why_we_built_wrapper .why_built_content .flow ul li {
    display: flex;
    gap: 22px;
}

.why_we_built_wrapper .why_built_content .flow ul li h6 {
    font-size: 21px;
    font-weight: 500;
    color: #161C2D;
    letter-spacing: -0.5px;
    margin-bottom: 12px !important;
}

.why_we_built_wrapper .why_built_content .flow ul li p,
.ttxbx p {
    font-size: 17px;
    width: 100%;
    font-weight: 500;
    color: #161C2D;
    opacity: 0.7;
    letter-spacing: -0.2px;
    margin: 0;
}

.why_we_built_wrapper .why_built_content .flow ul li .number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why_we_built_wrapper .why_built_content .flow ul li .number img {
    width: 100%;
}

.why_we_built_wrapper .why_built_content .flow ul li .number span {
    font-size: 1.063vw;
    color: #913AFF;
    line-height: 1.2;
}

.arrow img {
    transition: transform 0.3s ease;
}

.arrow img.rotated {
    transform: rotate(90deg);
}

.stats-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
}

.why_we_built_wrapper {
    padding-top: 100px;
    padding-bottom: 120px;
}

.customers,
.why_we_built_wrapper .why_built_content .img_t img {
    width: 100%;
}

.why_we_built_wrapper .why_built_content .img_t img {
    width: 100%;
    border-radius: 16px;
    border-bottom: 0.6px solid #F1F1F5;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-value {
    font-size: 48px;
    font-weight: 500;
    color: #161C2D;
    flex-shrink: 0;
    width: 105px;
    text-align: center;
}

.stat-value.sect {
    width: 74px;
}

.stat-label {
    font-size: 17px;
    color: #161C2D;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.stat-label span {
    display: block;
    opacity: .6;
    font-weight: 500;
}

/* Footer */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    font-size: 0.75vw;
    padding-bottom: .875vw;
    padding-top: 4vw;
}

.footer-top p {
    font-size: 0.75vw;
    font-weight: 400;
}

.faq-item.open .arrow img {
    transform: rotate(90deg);
}

.footer-logo {
    /* width: 12vw; */
}

.footer-bottom {
    text-align: center;
    border-top: solid 1px #E7E9ED;
    padding: 16px 0;
}

.footer-bottom p {
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 12px !important;
}

.social-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.social-box a {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    line-height: 1;
    border-radius: 50%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.engage {
    padding-top: 90px;
    padding-bottom: 70px;
    position: relative;
    background: #fff;
    z-index: 0;
}

.engage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.055) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    animation: revealDots 3s ease-out forwards;
    z-index: -1;
}

.custmore-sec {
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
    background: #fff;
    z-index: 0;
    border-top: 1px solid #E7E9ED;
}

.candidates {
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;
    background: #fff;
    z-index: 1;
}

.custmore-sec::before,
.candidates::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.055) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
    animation: revealDots 3s ease-out forwards;
    z-index: -1;
}

.engageimgbox {
    margin: 120px 0;
}

.engageimgbox svg {
    width: 100%;
}

.heading2 {
    letter-spacing: -1.2px;
    margin-bottom: 15px !important;
}

.heading3 {
    letter-spacing: -0.2px;
    width: 60%;
    margin-inline: auto;
    display: table;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.5;
}

.heading3.a2 {
    width: 78%;
}

.whysec {
    display: flex;
    gap: 40px;
    margin-top: 70px;
}

.whysec-left {
    width: 57%;
}

.whysec-right {
    width: 43%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.whysec-left-card {
    border: 1px solid #D3D3D3;
    border-radius: 24px;
    padding: 36px 26px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whysec-right-card {
    background: #F9F5FF;
    border-radius: 24px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 2px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.crdimg img {
    max-width: 100%;
}

.whysec-right-card img {
    width: 42px;
    height: 42px;
}

.trackp {
    max-width: 80%;
}

.imgt-img {
    background: #fff;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.ttxbx h6 {
    margin-bottom: 12px !important;
}

.banbtn {
    width: 160px;
}

section.testimonial_slider_section {
    padding: 60px 10px;
    text-align: center;
}

.testimonial_slider_section h2 {
    font-size: 32px;
    font-weight: bold;
}

.testimonial_slider_section p.subtitle {
    margin: 10px auto 30px;
    color: #555;
    max-width: 700px;
    line-height: 1.5;
}

/* Swiper rows */
.testimonial_slider_section .swiper {
    padding-bottom: 50px;
}

/* Testimonial card */
.testimonial_slider_section .testimonial {
    display: flex;
    text-align: left;
    gap: 15px;
    background: #F7F7F7;
    border-radius: 36px;
    padding: 11px 12px;
    min-width: 300px;
}

.testimonial_slider_section .testimonial:hover {
    box-shadow: 0px 14px 31px 0px #8A32FA1A, 0px 57px 57px 0px #8A32FA17, 0px 127px 76px 0px #8A32FA0D, 0px 226px 90px 0px #8A32FA03, 0px 353px 99px 0px #8A32FA00;
}

.testimonial_slider_section .testimonial img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial_slider_section .testimonial p {
    font-size: 14px;
    color: #333;
    margin: 0;
    text-align: left;
}

.testimonial_slider_section .testimonial .name {
    font-weight: bold;
    margin-top: 8px;
}

.testimonial_slider_section .testimonial .role {
    font-size: 13px;
    color: #777;
}
.candidates ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 80px 0 !important;
}
.candidates ul li{
list-style-type: none;
width: calc((100% / 3) - 32px);
border: 1px solid #EBEDEF;
padding: 36px;
margin: 0;
border-radius: 20px;
}
.candidates ul li:hover{
background: #F9F5FF;
}
.candidates ul li:hover img {
    filter: brightness(0) saturate(100%) invert(28%) sepia(95%) saturate(7495%) hue-rotate(267deg) brightness(95%) contrast(98%);
}
.candidates ul li .card_wrapper{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 39px;
    width: 100%;
}
.candidates ul li .card_wrapper .card_content{
    display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
}
.candidates ul li .card_wrapper h6{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #072032;
}
.candidates ul li .card_wrapper p{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    color: #5C6972;
    margin: 0;
}