:root {
    --primary-gradient: linear-gradient(90deg, #2e3192 0%, #1bffff 100%);
    --primary-dark: #1E1E1E;
    --primary-purple: #7c3aed;
    --primary-blue: #2e3192;
    --primary-cyan: #1bffff;
    --text-white: #fff;
    --text-purple: #b39ddb;
    --box-bg: #181828;
    --footer-bg: #10101a;
    --transition: 0.2s cubic-bezier(.4, 0, .2, 1);
}

html,
body {
    font-family: 'Public Sans', Arial, sans-serif;
    background: var(--primary-dark);
    color: var(--text-white);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

/* common classes */
.fs-18 {
    font-size: 18px;

}

.main-heading {
    font-size: 42px;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.outline-btn {
    background: transparent;
    border: 1px solid #FFFFFF;
    padding: 12px 24px;
    text-align: center;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
}


/* Navbar */
.navbar {
    font-family: 'Public Sans', Arial, sans-serif;
    z-index: 100;
    position: absolute;
    top: 0;
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin-right: 1rem;
    transition: color var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-cyan) !important;
}

.btn-contact {
    background: transparent;
    color: #6363F1;
    border-radius: 2rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border: 1px solid #6363F1;


    transition: background var(--transition), transform var(--transition);
}

.btn-contact:hover {
    background: var(--primary-purple);
    color: var(--text-white);
    transform: scale(1.05);
}

.hero-section {
    background: url("../imgs/bannersec-bg.svg") no-repeat center;
    /* height: 100vh; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow-x: hidden; */
    padding: 180px 30px;
    /* background-size: cover; */
}

.leftside-bg {
    left: -200px;
    top: 120px;
}

.righttside-bg {
    right: -200px;
    bottom: 120px;
}

.bg-gradients {
    position: relative;
    min-width: 320px;
    min-height: 320px;
    /* width: 100%; */
}

.bg-gradients .circle {
    width: 220px;
    height: 220px;
    background: linear-gradient(180deg, #4D34AD 0%, #3F289C 6.51%, #400099 100%);
    filter: blur(84px);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;

}

.bg-gradients .circle-2 {
    background: #4973FF;
    width: 170px;
    height: 170px;
    top: unset;
    left: 0;
    bottom: 0;
}

.bg-gradients.another-bg {
    min-width: 222px;
    max-height: 232px;
    min-height: auto;
    transform: translateX(100px);
}

.bg-gradients.another-bg .circle {
    width: 150px;
    height: 150px;
}

.bg-gradients.another-bg .circle-2 {
    width: 120px;
    height: 120px;
}



.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.inner-content {
    max-width: 714px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    margin-bottom: 24px;

}

.hero-title span {
    background: linear-gradient(90deg, #9263F1 0%, #4288EC 50%, #3ED3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    color: var(--text-purple);
    font-size: 1.2rem;
    margin-bottom: 2.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background: linear-gradient(90deg, #9263F1 0%, #4288EC 50%, #3ED3AF 100%);
    color: var(--text-white);
    border: none;
    display: inline-block;
    border-radius: 2rem;
    padding: 12px 24px;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    box-shadow: 0 4px 24px 0 rgba(44, 62, 80, 0.12);
}

.hero-btn:hover {
    background: var(--primary-purple);
    transform: scale(1.05);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(90deg, rgba(81, 92, 236, 0.16) 0%, rgba(0, 175, 219, 0.16) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px 0 rgba(44, 62, 80, 0.10);
    animation: float 3s ease-in-out infinite;
    font-size: 2rem;
    position: absolute;
    top: -30px;
    left: 150px;
    rotate: -30deg;
}

.floating-icon.code {
    top: unset;
    right: unset;
    left: 220px;
    bottom: 0px;
    rotate: -10deg;

}



.floating-icon.app {
    top: -90px;
    right: 400px;
    left: unset;
    bottom: unset;
    rotate: 40deg;
}

.floating-icon.workflow {
    top: -40px;
    right: 160px;
    left: unset;
    bottom: unset;
    rotate: 0deg;
}


.floating-icon.compliance {
    top: unset;
    right: 180px;
    left: unset;
    bottom: 22px;
    rotate: 36deg;
}






.floating-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-icon:nth-child(3) {
    animation-delay: 1s;
}

.floating-icon:nth-child(4) {
    animation-delay: 1.5s;
}

.floating-icon:nth-child(5) {
    animation-delay: 2s;
}

.floating-icon:nth-child(6) {
    animation-delay: 2.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* Why Choose Section */
.why-section {
    background: #252525;
    border-radius: 60px;
    margin-top: -3rem;
    margin-bottom: 2.5rem;
    padding: 55px 100px;
    /* max-width: 1200px; */
    margin-left: 40px;
    margin-right: 40px;
    position: relative;
    z-index: 2;
}



.why-card {
    border-radius: 1.2rem;
    text-align: start;
    margin-bottom: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    padding-right: 40px;
}


.why-card::before {
    content: "";
    width: 1px;
    height: 80%;
    background: #464646;
    right: 0;
    position: absolute;
}

.why-card.third-card::before,
.why-card.six-card::before {
    content: none;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.why-card .icon {
    background: #7272F2;
    margin-bottom: 1rem;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card h5 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.why-card p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.why-section-title {
    color: #fff;
    font-size: 18px;
    letter-spacing: 1px;
    /* margin-bottom: 10px; */
}

.why-section-main {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    max-width: 500px;
    line-height: 1.1;
}

.why-section-desc {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.4;
    max-width: 500px;
}

/* Core Services */
.core-section {
    background: transparent;
    padding: 2.5rem 0 2.5rem 0;
    position: relative;
}

.core-section .container {
    z-index: 2;
    position: relative;
}

.core-section .bg-line {
    position: absolute;
    top: 0;
}

.core-section .custom-carousel {
    padding-bottom: 50px;
}

.core-section .custom-cardbox {
    background: #202020;
    padding: 60px 40px;
    border: 1px solid #464646;
    min-height: 100%;
}

.core-section .custom-cardbox.colored-card {
    background-color: #7D5FFF;
}


.core-section .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}


.core-section-title {
    color: var(--text-white);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.1;
}

.core-section-title span {
    font-weight: 700;
    display: block;
}

.core-card {
    background: var(--box-bg);
    border-radius: 1.2rem;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: left;
    box-shadow: 0 2px 16px 0 rgba(44, 62, 80, 0.10);
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
}

.core-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(44, 62, 80, 0.18);
}

.core-section .carousel-dark .carousel-indicators {
    align-items: center;
    margin-bottom: 0;
}


.core-section .carousel-dark .carousel-indicators [data-bs-target] {
    background: #464646;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: .3s ease-in-out;
    border: none;
}

.core-section .carousel-indicators [data-bs-target].active {
    width: 37px;
    border-radius: 30px;
    background: #7D5FFF;
}


/* ---------- ready sec --------- */
.ready-sec {
    padding: 60px 0;
    background: linear-gradient(90deg, #7D5FFF 0%, #4260EB 58.17%, #3EBEBF 89.98%);

}


/* --------- Audit Sec ---- */
.audit-process {
    position: relative;
    padding: 100px 0;
    padding-bottom: 0px;
}

.audit-process .hading-line {
    width: 40px;
    height: 3px;
    border-radius: 30px;
    background: #fff;
    margin: 0 auto;
    display: block;
    margin-bottom: 100px;
}


.audit-process .container {
    z-index: 2;
    position: relative;
}

/* -------------- who Needs Section ------------ */
.whoneeds-sec {
    padding: 50px 0;
    background-color: #7272F2;
}




.whoneeds-sec .whoneed-cardbox {
    background: #fff;
    padding: 16px;
    border: 1px solid #7272F2;
    box-shadow: 0px 4px 12px 0px #0000001F;
    min-height: 100%;
}

.whoneeds-sec .whoneed-cardbox .card-heading {
    color: #29363D;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
}


.whoneeds-sec .whoneed-cardbox .card-disc {
    font-size: 18px;
    color: #656B8A;
}

.whoneeds-sec .whoneed-cardbox .img-sec img {
    width: 100%;
}


/* ---------------------- Why trust Section ------------------- */
.trust-sec {
    padding: 90px 0;
    padding-bottom: 220px;
}

.dark-text {
    color: #333333;
}

.trust-sec .whytrust-card {
    padding: 24px;
    background: #fff;
    border-radius: 32px;
    border-end-end-radius: 0;
    min-height: 100%;
}

.trust-sec .whytrust-card.card-2 {
    border-radius: 32px;
    border-bottom-left-radius: 0;

}

.trust-sec .whytrust-card.card-3 {
    border-radius: 32px;
    border-top-right-radius: 0;

}

.trust-sec .whytrust-card.card-4 {
    border-radius: 32px;
    border-top-left-radius: 0;

}


.trust-sec .whytrust-card .svg-iconbox {
    width: 77px;
    height: 77px;
    background: linear-gradient(180deg, #7272F2 0%, #6363F1 100%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 15px;
}

.lets-auditbox {
    background: #7272F2;
    max-width: 70%;
    padding: 60px 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 32px;
    margin: 0 auto;
    margin-top: -320px;
}

.lets-auditbox .main-heading {
    font-size: 40px;
    font-weight: 800;
    /* max-width: 450px; */
    text-align: center;
}

.lets-auditbox .text-disc {
    text-align: center;

}

.custom-footersec {
    padding: 160px 0;
    background: #19191B;
    padding-bottom: 0;

}

.custom-footersec .footer-logosec {
    /* padding: 24px 0; */
    border-bottom: 2px solid #D9D9D9;
    margin-bottom: 32px;
}

.custom-footersec .ftr-heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
}

.custom-footersec .ftr-custom-ul {
    list-style: none;
    padding-left: 0;
}

.custom-footersec .ftr-custom-ul .ftr-links {
    margin-bottom: 8px;
}

.custom-footersec .ftr-bottomsec {
    padding-top: 100px;
}

.custom-footersec .ftr-bottomsec p {
    font-size: 14px;
    text-align: center;
    padding: 16px 0;
    background: #121214;
}

.not-suresec {
    background: #7272f2;
    padding-top: 0;
}

.not-suresec .not-suresecbox {
    padding: 50px;
    background-color: #5656d9;
    border-radius: 40px;
    /* min-width: 930px; */
    width: 100%;
    display: flex;
    flex-direction: column;
}

.not-suresec .outline-btn {
    background: #fff;
    color: #000;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .floating-icons {
        max-width: 90vw;
    }
}

@media (max-width: 991.98px) {

    .why-section,
    .core-section,
    .process-section,
    .who-section,
    .trust-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .floating-icon {
        top: -50px;
        left: -30px;
    }

    .floating-icon.code {
        left: 0;
        bottom: 0;
    }

    .floating-icon.app {
        right: 240px;
    }

    .floating-icon.workflow {
        right: -40px;
    }

    .floating-icon.compliance {
        right: 60px;
        bottom: 0;
    }

    .hero-section {
        padding-bottom: 100px;
    }

    .why-section {
        margin-top: 0;
        padding: 55px 100px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .why-card.third-card::before {
        content: "";
    }

    .why-card.second-card::before,
    .why-card.forth-card::before {
        content: none;
    }

    .custom-footersec .ftr-heading {
        text-align: center;
        margin-bottom: 20px;
    }

    .custom-footersec .ftr-heading br {
        display: none;
    }

    .custom-footersec .ftr-custom-ul {
        margin-bottom: 30px;
    }

    .custom-footersec .ftr-custom-ul .ftr-links {
        text-align: center;
    }

    .custom-footersec .ftr-bottomsec {
        padding-top: 10px;
    }


}

@media (max-width: 767.98px) {

    .cta-section h2 {
        font-size: 1.1rem;
    }

    .floating-icons {
        display: none;
    }

    .lets-auditbox {
        max-width: 90%;
        padding: 60px;
        margin-bottom: 30px;
    }

    .custom-footersec .footer-logosec {
        text-align: center;
    }

    .custom-footersec .ftr-heading {
        font-size: 30px;
    }

    .lets-auditbox .main-heading {
        font-size: 30px;
        max-width: unset;
    }

    .trust-sec .whytrust-card {
        border-radius: 32px !important;
    }

    .main-heading {
        font-size: 32px;
    }

    .why-section-main {
        font-size: 32px;
    }

    .why-section {
        padding: 55px 50px;
    }

    .hero-section {
        padding: 150px 30px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 36px;
    }

    .why-card::before {
        content: none !important;
    }
}



/* ---------------------- Contact us  ---------------------------- */

.contact-usbannersec {
    padding: 160px 0;
    padding-bottom: 100px;
    background: url("../imgs/contact-bannerimg.png") no-repeat center;
    background-size: cover;
}

.contact-usbannersec .main-heading {
    font-size: 46px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}


.contact-us .custom-footersec {
    padding: 60px 0;
    padding-bottom: 0;
}

.contact-usbannersec .main-heading span {
    background: linear-gradient(90deg, #9263F1 0%, #4288EC 50%, #3ED3AF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.contact-fromsec {
    /* background: #937afc; */
    background: #f0edff;
    padding: 50px 0;
    background-image: url("../imgs/contact-bg.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-blend-mode: multiply;
}

.contact-fromsec h2{
    color: #121214;
}



.contact-fromsec .form-outterbox .custom-formsec {
    padding: 50px;
    background: #7d5fff;
    border-radius: 50px;
}

.contact-fromsec .form-outterbox .custom-formsec input,
.contact-fromsec .form-outterbox .custom-formsec textarea,
.contact-fromsec .form-outterbox .custom-formsec select {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #c2b5ff;
    border-radius: 0;
    padding-left: 0;
    outline: none;
    box-shadow: none;
}

.contact-fromsec .form-outterbox .custom-formsec input::placeholder,
.contact-fromsec .form-outterbox .custom-formsec textarea::placeholder {
    color: #fff;
}

.contact-fromsec .form-outterbox .custom-formsec select {
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M2%205L8%2011L14%205%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
}

.contact-fromsec .form-outterbox .custom-formsec select option {
    background: #2e3192;
    padding-inline: 20px;
}


.contact-fromsec .form-outterbox .custom-formsec .select-title {
    color: #ffffff86;
}


.contact-fromsec .form-outterbox .custom-formsec .form-btn {
    background: #ffffff;
    border: 0;
    border-radius: 50px;
    padding: 12px 60px;
    width: 100%;
    /* margin-top: 30px; */
}


@media (max-width: 991px) {
    .contact-usbannersec .main-heading {
        font-size: 36px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 50px;
    }
}