
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900; /* variable range */
    font-style: normal;
}

@font-face {
    font-family: 'Caveat';
    src: url('../fonts/Caveat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* variable range */
    font-style: normal;
}

/*html,
body{
    max-width:100%;
    overflow-x:initial;
    overflow: hidden;
}*/


body .testimonials-stack{
    
    overflow-x:initial;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* regular */
    font-size: 24px;
    line-height: 32px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 52px;
}

h1 { font-size: 48px; font-weight: 700; }
h2 { font-size: 40px; font-weight: 700; }
h3 { font-size: 32px; font-weight: 600; }
a{ text-decoration:none; }

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.odoo{
    font-family: 'Caveat' !important;
}

.section-space{
    padding: 60px 0px;
}



/* =========================================
PRELOADER
========================================= */

#preloader{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #05010f;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* GLOW BACKGROUND */
.loader-glow{
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109,66,216,0.35) 0%, rgba(109,66,216,0) 70%);
    animation: pulseGlow 3s ease-in-out infinite;
}


/* CONTENT */
.loader-content{
    position: relative;
    text-align: center;
    z-index: 2;
}


/* RING */
.loader-ring{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.08);
    border-top: 3px solid #8b5cf6;
    margin: 0 auto 30px;
    animation: rotateLoader 1s linear infinite;
    position: relative;
}


/* INNER RING */
.loader-ring::before{
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.12);
    animation: rotateReverse 8s linear infinite;
}


/* TITLE */
.loader-content h2{
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
    color: #ffffff;
}


/* SUBTEXT */
.loader-content span{
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    letter-spacing: 1px;
}


/* ANIMATIONS */

@keyframes rotateLoader{
    100%{
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse{
    100%{
        transform: rotate(-360deg);
    }
}

@keyframes pulseGlow{
    0%{
        transform: scale(0.9);
        opacity: .5;
    }

    50%{
        transform: scale(1.1);
        opacity: 1;
    }

    100%{
        transform: scale(0.9);
        opacity: .5;
    }
}

/* =========================
HEADER
========================= */

.header {
    width: 100%;
    background: #14072f;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: 0.4s ease;
}

.header.hide-header {
    transform: translateY(-100%);
}

.header.scrolled {
    background: rgba(10, 2, 24, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    width: auto;
}

/* =========================
NAV MENU
========================= */

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a:hover {

    color: #9476D9;

}

.nav-menu ul li a {
    color: #9b95ad;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
}

/* ACTIVE MENU */

.active-menu {
    color: #ffffff !important;
}

.active-menu::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    /*padding: 10px 56px;*/
     width: 117%; 
    height: 50px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, rgba(12, 4, 27, 0) 13.17%, rgba(148, 118, 217, 0.16) 101.84%);
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
    /*box-shadow: 0 0 35px rgba(139, 92, 246, 0.25);*/
    z-index: -1;
}



.btn-contact {
    padding: 12px 28px;
    border: 1px solid #f6a623;
    border-radius: 50px;
    color: #f6a623;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 18px;
}

.btn-contact:hover {
    background: #f6a623;
    color: #111;
}

/* =========================
MEGA MENU
========================= */

.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    top: 60px;
    width: 1180px;

    background: #0d0222;
    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    padding: 0;

    display: flex;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    overflow: hidden;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-left {
    width: 34%;
    padding: 50px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.mega-left h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 42px;
}

.mega-left p {
    color: #a7a3b5;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 16px;
}

.mega-link {
    color: #8b5cf6 !important;
    font-weight: 700 !important;
}

.mega-right {
    width: 66%;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}

.mega-card {
    transition: 0.4s ease;
}

.mega-card:hover {
    transform: translateY(-6px);
}

.mega-img {
    background: linear-gradient(180deg, #FFFFFF 76.42%, #7C7C7C 100%);
    border-radius: 16px;
    height: 130px;
}

.mega-img img {
    width: auto;
    /*height: 110px;*/
    display: block;
    margin: auto;
    padding-top: 50px;
}

.mega-card h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 32px;
}

.mega-card p {
    color: #a8a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.mega-card a {
    color: #8b5cf6 !important;
    font-weight: 700 !important;
}

/* ===================================
INDUSTRY MEGA MENU
=================================== */

.industry-dropdown{
    position: static !important;
}

.industry-menu{

    position: absolute;

    left: 50%;
    transform: translateX(-50%) translateY(20px);

    top: 60px;

    width: 1180px;

    background: #0d0222;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 18px;

    display: flex;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transition: .4s ease;

    z-index: 999;
}

.industry-dropdown:hover .industry-menu{

    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

/* LEFT */

.industry-left{

    width: 32%;

    padding: 55px 40px;

    border-right: 1px solid rgba(255,255,255,0.08);
}

.industry-left h3 {
    color: #fff;
    font-size: 35px;
    line-height: 64px;
    font-weight: 700;
    margin-bottom: 25px;
}

.industry-left p{

    color: #b3adc2;

    font-size: 17px;

    line-height: 1.8;
}

/* RIGHT */

.industry-right{

    width: 68%;

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 60px;

    padding: 38px 45px;
}

/* COLUMN */

.industry-column .industry-label{

    color: #8f88a6;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1px;

    display: inline-block;

    margin-bottom: 28px;
}

.industry-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: baseline;
}

/* LINKS */

.industry-column ul li a{

    display: flex;

    align-items: center;

    gap: 14px;

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;

    font-weight: 500;

    transition: .3s ease;
}

.industry-column ul li a i {
    width: 22px;
    color: #8b5cf6;
    font-size: 17px;
    transition: .3s ease;
    display: none;
}

/* HOVER */

.industry-column ul li a:hover{

    transform: translateX(6px);

    color: #ffffff;
}

.industry-column ul li a:hover i{

    color: #b794ff;
}

/* ACTIVE STYLE */

.active-industry-link{

    font-weight: 700 !important;

    color: #ffffff !important;
}

.active-industry-link i{

    color: #b794ff !important;
}

/* BOTTOM CONSULT */

.industry-bottom{

    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 20px 35px;

    text-align: right;
}

.industry-bottom p{

    color: #a6a0b5;

    margin: 0;
}

.industry-bottom a{

    color: #3b82f6;

    font-weight: 700;
}

/* ===================================
MOBILE
=================================== */

@media(max-width:991px){

    .industry-menu{

        position: relative;

        width: 100%;

        left: 0;

        top: 10px;

        transform: none !important;

        opacity: 1;

        visibility: visible;

        display: none;

        flex-direction: column;

        border-radius: 14px;
    }

    .industry-left{

        width: 100%;

        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,0.08);

        padding: 30px;
    }

    .industry-left h3{

        font-size: 34px;

        line-height: 44px;
    }

    .industry-right{

        width: 100%;

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 30px;
    }

    .industry-column ul li a{

        font-size: 15px;
    }

    .industry-dropdown.active .industry-menu{

        display: flex;
    }
}

/* =========================
SCROLL TOP
========================= */

.scroll-top-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}

#scrollTopBtn {
    width: 70px;
    height: 70px;
    border: none;
    background: #120726;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn i {
    color: #fff;
    font-size: 18px;
    position: absolute;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: transparent;
    stroke: rgba(255,255,255,0.08);
    stroke-width: 4;
}

.progress-bar {
    fill: transparent;
    stroke: #8b5cf6;
    stroke-width: 4;
    stroke-linecap: round;

    stroke-dasharray: 188.4;
    stroke-dashoffset: 188.4;

    transition: stroke-dashoffset 0.2s linear;
}

/* =========================
MOBILE
========================= */

.menu-toggle {
    display: none;
}

@media(max-width:991px){

    .menu-toggle{
        display:block;
        color:#fff;
        font-size:24px;
    }

    .nav-menu{
        position:fixed;
        top:0;
        left:-100%;
        width:300px;
        height:100vh;
        background:#120726;
        padding:40px 25px;
        transition:0.4s;
    }

    .nav-menu.active{
        left:0;
    }

    .nav-menu ul{
        flex-direction:column;
        align-items:flex-start;
    }

    .mega-menu{
        display:none !important;
    }

    /*.submenu{
        position:relative;
        opacity:1;
        visibility:visible;
        transform:none;
        top:10px;
        display:none;
    }*/

}

/* HERO */

.bg-dark{
    background:
linear-gradient(
    180deg,
    #120526 0%,
    #1A0935 35%,
    #24104A 68%,
    #4B2B86 100%
) !important;
box-shadow:
inset 0 -120px 120px rgba(255,255,255,0.08);
}
.hero {
   /* background: url(../images/home/hero-bg.png);
    background-size: cover;
    background-position: top;*/
    background:
linear-gradient(
    180deg,
    #120526 0%,
    #1A0935 35%,
    #24104A 68%,
    #4B2B86 100%
);

/* optional glow */
position: relative;
overflow: hidden;

box-shadow:
inset 0 -120px 120px rgba(255,255,255,0.08);
    color: #fff;
    padding: 100px 0 300px;
}

.hero h1 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 52px;
    color: #FFFFFF;
    margin: 40px 0px;
}

.hero p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #D2D2D2;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    margin-top: 20px;
    background: orange;
    color: #000;
    font-size: 18px;
    padding: 5px 18px;
    border-radius: 25px;
    text-decoration: none;
}

.hero .stats {
    padding-bottom: 20px;
    margin-top: 100px;
}

/* STATS */
.stats h2 {
    font-size: 40px;
    font-weight: bold;
}

.stats p {
    color: #ccc;
}

/* MOBILE */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 991px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #1a0d3d;
        display: none;
        flex-direction: column;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu ul li {
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .submenu {
        position: static;
        background: none;
    }

    .submenu li a {
        color: #fff;
    }
}


.dashborad {
    margin-top: -250px;
    background-color: #f5f5f7;
}
.dashborad .dash-img img {
    height: auto;
    width: 100%;
    border-radius: 15px;
    /* box-shadow: 0 10px 40px rgb(11 11 11 / 31%), inset 0 0 20px rgb(0 0 0); */
}
/* SECTION */
.partnership {
    background: #f5f5f7;
    padding: 340px 0 80px;
    margin-top: -250px;
}

/* TEXT */
.partner-text {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 32px;
color: #8E8E93;
}

/* H SHAPE BG */
.bg-shape-h {
    width: 250px;
    height: 200px;
    /* border: 3px solid #6c4dd9; */
    border-radius: 20px;
    position: relative;
    /* opacity: 0.2; */
    /* margin-left: auto; */
    background-image: url('../images/home/abt-h-shape2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/*.bg-shape-h::before,
.bg-shape-h::after {
    content: "";
    position: absolute;
    border: 3px solid #6c4dd9;
    border-radius: 50%;
}*/

/*.bg-shape-h::before {
    width: 60px;
    height: 60px;
    top: 10px;
    left: -20px;
}

.bg-shape-h::after {
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: -20px;
}*/

/* TITLE */
.partnership .section-title {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 40px;
line-height: 24px;
color: #6941C6;

}

/* CARD */
.partner-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

/* SHAPE TOP RIGHT */
.card-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-bottom-left-radius: 100%;
}

/* COLORS */
.card-shape.purple {
    background: linear-gradient(#4924A6 40% , #9E77ED 100%);
}

.card-shape.pink {
    background: linear-gradient(#714B67 40%, #D68EC3 100%);
}

/* LOGO */
.partner-card .logo img {
    height: 30px;
    margin-bottom: 15px;
    position: relative;
    text-align: right;
    right: -17px;
}

/* TAG */
.partnership .tag {
    font-size: 17px;
    display: block;
    margin-bottom: 30px;
    margin-top: -30px;
    max-width: 50%;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0px;
}

.partnership .tag.ifs {
    
    color: #ffffff;
    
    background: #6941c6;
    
}

.partnership .tag.odoo {
    color: #ffffff;
    background: #714b67;
    font-family: 'Inter' !important;
}

/* TEXT */
.partner-card h4 {
    font-weight: 700;
    font-size: 32px;
    line-height: 34px;
}

.partner-card p {
    font-size: 16px;
    color: #777;
    line-height: 24px;
}

/* LINK */
.explore {
    color: #6c4dd9;
    font-size: 14px;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {

    .bg-shape-h {
        display: none;
    }

    .section-title {
        text-align: center;
    }

    .partner-text {
        text-align: center;
    }
}

/* SERVICES SECTION */
.services {
    /*background-image: url("../images/home/service-bg.png");
    background-size: cover;
    background-position: center;*/
    color: #fff;
    padding: 80px 0;
}

/* HEADER */
.services .services-header h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.services .services-header p {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 22px;
color: #D2D2D2;

}

/* CARD */
.service-box {
    padding: 20px;
}

/* ICON BOX */
.services .icon-box {
    width: 50px;
    height: 50px;
    background: radial-gradient(91.92% 91.92% at 35% 35%, #BBB2FF 0%, #6941C6 65%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(155, 123, 255, 0.5);
}

.icon-box i {
    color: #fff;
    font-size: 18px;
}

/* TEXT */
.services .service-box h5 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.services .service-box p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #D2D2D2;
}

/* LINK */
.services .service-box a {

font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 24px;
color: #FFFFFF;


}


.service-box:hover .icon-box {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(155, 123, 255, 0.8);
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 768px) {
    .services-header p {
        padding: 0 15px;
    }
}




/* =========================================
CLIENT SECTION
========================================= */

.clients {
    background: #f5f5f7;
    padding: 60px 0;
}


/* TEXT */
.clients .sub-title {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #6941C6;
}

.clients h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #181D27;

    margin-top: 12px;
}

.clients p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #8E8E93;

    margin-top: 12px;
}


/* SLIDER */
.logo-slider {
    overflow: hidden;
    margin-top: 50px;
    cursor: grab;
    user-select: none;
    position: relative;
}

.logo-slider:active{
    cursor: grabbing;
}


/* TRACK */
.logo-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;

    animation: marqueeMove 22s linear infinite;
}


/* PAUSE AUTO ON HOVER */
.logo-slider:hover .logo-track{
    animation-play-state: paused;
}


/* LOGOS */
.logo-track img {
    height: 100px;
    /*opacity: 0.7;*/
    transition: .3s ease;
    pointer-events: none;
}

.logo-track img:hover{
    opacity: 1;
    transform: scale(1.05);
}


/* MARQUEE */
@keyframes marqueeMove {

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(-50%);
    }

}


/* TESTIMONIAL SECTION */


/* =========================================
TESTIMONIALS
========================================= */

.testimonials {
    position: relative;
    background: #1f172f;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
   /* background-image: url('../images/home/testi-bg.png');
    background-size: cover;
    background-position: top center;*/
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #FFFFFF;
}

.testimonials p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #D2D2D2;
}

.testimonial-card h6 {
    font-size: 18px;
    line-height: 16px;
}

.testimonial-card span {
    color: #ccc;
    font-size: 13px;
}

/* SLIDER */
.testimonial-slider {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}

.testimonial-track {
    display: flex;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding-bottom: 10px;

    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

/* CARD COLUMN */
.testimonial-track > div {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
}

/* MOBILE */
@media(max-width:991px){

    .testimonial-track > div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .testimonials h2{
        font-size: 30px;
        line-height: 38px;
    }

    .testimonials .testimonial-card .quote{
        font-size: 24px;
        line-height: 32px;
    }
}

/* CARD */
.testimonial-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    text-align: left;
    position: relative;
    height: 100%;
    /*background: rgba(255,255,255,0.04);*/
    backdrop-filter: blur(10px);
    transition: .4s ease;
}

.testimonial-card:hover{
    /*transform: translateY(-8px);*/
    border-color: rgba(255,255,255,0.4);
}

.testimonials .testimonial-card .quote-icon {
    width: 72px;
    height: 64px;
    opacity: 0.2;
}

.testimonials .testimonial-card .quote-icon i{
    font-size: 80px;
}

.testimonials .testimonial-card .quote {
    font-family: 'inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    text-align: left;
    color: #FFFFFF;
    margin: 20px 0;
}

/* DOTS */
.testimonial-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.testimonial-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: .3s ease;
}

.testimonial-dot.active{
    width: 34px;
    border-radius: 30px;
    background: #FCA732;
}

/* CTA */
.cta {
    /*background: #f5f5f7;*/
    padding: 60px 0;
}

 /*.cta-box {
    background: linear-gradient(135deg, #1c0f3f, #6d4ccf);
    padding: 100px 0px !important;
    border-radius: 15px;
    color: #fff;
}

.cta-btn {
    padding: 12px 32px;
    background: linear-gradient(100.53deg, #FCA732 16.99%, #FFD499 129.08%);
    border-radius: 44px;
    margin-top: 20px;
    position: relative;
    color: #000;
    top: 20px;
}*/

/* BLOGS */
.blogs {
    padding: 60px 0;
}

.blogs h2{
    /*font-size: 40px;
    line-height: 44px;*/

font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 40px;
line-height: 44px;
color: #181D27;

}

.blogs .blog-sub {
    /*color: #777;
    max-width: 600px;
    font-size: 18px;
    line-height: 22px;*/
    /* Supporting text */

font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 22px;
color: #8E8E93;

}

/* SLIDER */
.blogs .blog-slider {
    overflow: hidden;
}

.blogs .blog-track {
    overflow-x: auto;
    scroll-behavior: smooth;
    /*gap: 20px;*/
}

/* remove scrollbar */
.blogs .blog-track::-webkit-scrollbar {
    display: none;
}

/* Blog post card */

.blogs .blog-card {
    padding: 20px;
    width: 96%;
    height: 95%;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px #F1EDF7;
    border-radius: 20px;
     overflow: hidden;   
}

/* CARD */
/*.blogs .blog-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 2px 2px 0px 5px #e0e0e0;
    padding: 20px;
}*/

/* IMAGE */
.blogs .blog-card img {
    width: 100%;
    /* height: 180px; */
    /* object-fit: cover; */
}

.blogs .blog-content {
    padding: 15px;
}

.blogs .blog-content span {
    font-size: 14px;
    color: #6c4dd9;
    line-height: 20px;
}

.blogs .blog-content h5 {
    margin: 10px 0;
    font-size: 18px;
    line-height: 28px;
}

.blogs .blog-content h5 a{
    color: #444;
}

.blogs .blog-content p{
    font-size: 16px;
    line-height: 24px;
}

.blogs .tags span {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 6px;
    display: inline-block;
    font-weight: 500;
}

/* Individual Colors */
/*.tags span:nth-child(1) {
    background: #efeaff;   
    color: #6c4dd9;
}

.tags span:nth-child(2) {
    background: #eaf2ff;   
    color: #3b82f6;
}

.tags span:nth-child(3) {
    background: #fdeaff;   
    color: #d946ef;
}*/

.blogs .tag.purple { background:#efeaff; color:#6c4dd9; }
.blogs .tag.blue { background:#eaf2ff; color:#3b82f6; }
.blogs .tag.pink { background:#fdeaff; color:#d946ef; }

.blogs .tags span:hover {
    transform: translateY(-2px);
    transition: 0.2s;
}

/* MOBILE */
@media (max-width: 768px) {
    .blogs .blog-card {
        min-width: 250px;
    }
}

/* ===== FOOTER ===== */

/*

position: absolute;
width: 1368px;
height: 609px;
left: 34px;
top: -263px;

background: radial-gradient(67.43% 67.43% at 50% 35.59%, #9476D9 0%, #000000 87.98%);
mix-blend-mode: normal;
filter: blur(50px);


flex: none;
order: 0;
flex-grow: 0;
z-index: 0;*/

.footer {
    /*background: radial-gradient(circle at top left, #3a1c71, #0b021d 60%);*/
    /*background: radial-gradient(30.43% 122.43% at 49% -28.41%, #9476D9 0%, #000000 70.98%);*/
    /*background-image: url('../images/home/footer-bg.png');
    background-size: cover;
    background-position: top;*/
    color: #cfcfe6;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer a {
    display: block;
    color: #cfcfe6;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer a:hover {
    color: #fff;
    transform: translateX(3px);
}

/* Logo area */
.footer-logo {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.footer-desc {
    font-size: 13px;
    margin-top: 10px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}



/* Social icons */

.social-icons {
    display: flex;
}
.social-icons a {
    color: #cfcfe6;
    margin-left: 15px;
    font-size: 25px;
    transition: 0.3s;
    font-weight: bold;
    margin-top: 12px;
}

.social-icons a:hover {
    color: #fff;
}

.faq{
  background-color: #f7f3ff;
  padding: 60px 0px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
}


.faq-q{
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  font-weight:600;

font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 20px;
color: #181D27;

}
.faq-a{
  display:none;
  margin-top:10px;
  color:#666;
}
.faq-item.active .faq-a{
  display:block;
}

/* FAQ ANSWER ANIMATION */
.faq-a{
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;

font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
color: #8E8E93;

}

/* ICON ANIMATION */
.faq-q span{
    transition: 0.3s ease;
    font-size: 22px;
    font-weight: 500;
}

/* =========================================
POPUP
========================================= */

.appointment-popup{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: .4s ease;
}

/* ACTIVE */

.appointment-popup.active{
    opacity: 1;
    visibility: visible;
}

/* OVERLAY */

.popup-overlay{
    position: absolute;
    inset: 0;
    background: rgba(5,0,15,.75);
    backdrop-filter: blur(10px);
}

/* BOX */

.popup-box{
    position: relative;
    width: 1100px;
    max-width: 95%;
    background: #14072f;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 30px;

    overflow: hidden;

    display: grid;
    grid-template-columns: 1fr 1fr;

    transform: translateY(40px) scale(.95);

    transition: .4s ease;

    z-index: 2;
}

/* POPUP OPEN ANIMATION */

.appointment-popup.active .popup-box{
    transform: translateY(0) scale(1);
}

/* CLOSE */

.popup-close{
    position: absolute;
    top: 20px;
    right: 20px;

    width: 42px;
    height: 42px;

    border-radius: 50%;
    border: none;

    background: rgba(255,255,255,.08);

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition: .3s ease;

    z-index: 10;
}

.popup-close:hover{
    background: #7F56D9;
    transform: rotate(90deg);
}

/* =========================================
LEFT
========================================= */

.popup-left{
    padding: 70px 60px;
    /*background:
    radial-gradient(circle at top left,#7F56D9 0%,transparent 40%),
    #14072f;*/
}

.popup-tag{
    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: rgba(255,255,255,.08);

    color: #b59cff;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 25px;
}

.popup-left h2{
    font-size: 48px;
    line-height: 58px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
}

.popup-left p{
    color: #b8b3c7;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 40px;
}

.popup-contact{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.popup-contact div{
    color: #fff;
    font-size: 16px;
}

.popup-contact i{
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.08);
    border-radius: 12px;

    text-align: center;
    line-height: 42px;

    margin-right: 12px;

    color: #b59cff;
}

/* =========================================
RIGHT FORM
========================================= */

.popup-right{
    padding: 60px;
    background: #1a0d3d;
}

.form-group{
    margin-bottom: 20px;
}

.form-group label{
    display: block;
    color: #fff;
    /*margin-bottom: 10px;*/
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    height: 40px;

    border-radius: 14px;

    padding: 0 18px;

    color: #fff;

    outline: none;

    transition: .3s ease;
    font-size: 18px;
}

.form-group textarea{
    height: auto;
    padding: 15px 18px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: #7F56D9;
    box-shadow: 0 0 0 4px rgba(127,86,217,.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: #9b95ad;
}

/* BUTTON */

.submit-btn{
    width: 100%;
    height: 58px;

    border: none;

    border-radius: 16px;

    background: linear-gradient(135deg,#7F56D9,#9476D9);

    color: #fff;

    font-weight: 600;
    font-size: 16px;

    cursor: pointer;

    transition: .3s ease;
}

.submit-btn i{
    margin-left: 10px;
}

.submit-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(127,86,217,.35);
}

/* =========================================
MOBILE
========================================= */

@media(max-width:991px){

    .popup-box{
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }

    .popup-left,
    .popup-right{
        padding: 40px 25px;
    }

    .popup-left h2{
        font-size: 34px;
        line-height: 42px;
    }

}






/* Responsive */
@media(max-width:768px){
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .dashborad .dash-img img {
    height: 230px;
}

.hero h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 42px;
}

}



.cta-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 44px;
    text-decoration: none;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #15072F;
    background: linear-gradient(100.53deg, #FCA732 16.99%, #FFD499 129.08%);
    transition: all .4s ease;
    z-index: 1;
    border: none;
}

.cta-btn i{
    font-size: 14px;
    transition: .4s ease;
}

.cta-btn:hover i{
    transform: translateX(5px);
}

/*wawe 1 -->*/

.cta-wave-1::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(
        90deg,
        #5F2EFF,
        #7B3EFF,
        #A66BFF
    );
    z-index: -1;
    transition: width .5s ease;
}

.cta-wave-1:hover::before{
    width: 100%;
}

.cta-wave-1:hover{
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(123,62,255,.35);
}

/*CTA Wave 2 -->*/

.cta-wave-2::before{
    content: "";
    position: absolute;
    inset: -40px;
    background: linear-gradient(
        45deg,
        #5F2EFF,
        #8D4DFF,
        #C58CFF,
        #5F2EFF
    );

    animation: waveRotate 4s linear infinite;
    z-index: -2;
    opacity: 0;
    transition: .4s ease;
}

.cta-wave-2::after{
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 44px;
    background: linear-gradient(100.53deg, #FCA732 16.99%, #FFD499 129.08%);
    z-index: -1;
    transition: .4s ease;
}

.cta-wave-2:hover::before{
    opacity: 1;
}

.cta-wave-2:hover::after{
    background: rgba(26,13,61,.95);
}

.cta-wave-2:hover{
    color: #fff;
    transform: translateY(-3px);
}

@keyframes waveRotate{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

/*CTA Wave 3 -->*/

.cta-wave-3::before{
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    transform: skewX(-20deg);
    transition: .7s ease;
}

.cta-wave-3:hover::before{
    left: 130%;
}

.cta-wave-3:hover{
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 30px rgba(252,167,50,.35);
}

/* =========================================
CTA WAVE 4
========================================= */

.cta-wave-4{
    position: relative;
    overflow: hidden;
}

.cta-wave-4::before{
    content: "";
    position: absolute;

    width: 300%;
    height: 300%;

    left: 50%;
    top: 100%;

    transform: translateX(-50%);

    background: #5F2EFF;

    border-radius: 40%;

    transition: 1s ease;

    z-index: -1;
}

.cta-wave-4:hover::before{
    top: -60%;
}

.cta-wave-4:hover{
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(95,46,255,.35);
}

.cta-wave-4:hover i{
    transform: translateX(6px);
}


/* =========================================
CTA WAVE 5
========================================= */

.cta-wave-5{
    position: relative;
    overflow: hidden;
}

.cta-wave-5::before{
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 44px;

    padding: 2px;

    background: linear-gradient(
        90deg,
        #5F2EFF,
        #A66BFF,
        #FCA732,
        #5F2EFF
    );

    background-size: 300% 300%;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    opacity: 0;

    animation: neonBorder 4s linear infinite;

    transition: .4s ease;
}

.cta-wave-5:hover::before{
    opacity: 1;
}

.cta-wave-5:hover{
    background: #14072f;
    color: #fff;

    transform: translateY(-4px);

    box-shadow: 0 0 25px rgba(127,86,217,.45);
}

@keyframes neonBorder{

    0%{
        background-position: 0% 50%;
    }

    100%{
        background-position: 200% 50%;
    }

}

/* =========================================
CTA WAVE 6
========================================= */

.cta-wave-6{
    position: relative;
    overflow: hidden;
}

.cta-wave-6::before{
    content: "";
    position: absolute;

    top: -50%;
    left: -60%;

    width: 60%;
    height: 220%;

    background: rgba(255,255,255,.35);

    transform: rotate(25deg);

    transition: .8s ease;

    filter: blur(10px);
}

.cta-wave-6::after{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(95,46,255,.12),
        rgba(255,255,255,.08)
    );

    opacity: 0;

    transition: .4s ease;

    z-index: -1;
}

.cta-wave-6:hover::before{
    left: 130%;
}

.cta-wave-6:hover::after{
    opacity: 1;
}

.cta-wave-6:hover{
    color: #fff;

    background: linear-gradient(
        135deg,
        #5F2EFF,
        #A66BFF
    );

    transform: scale(1.04);

    box-shadow: 0 18px 40px rgba(95,46,255,.35);
}


/*Explore BTN*/

 .explore-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;

    transition: .3s ease;
}

.light-btn.explore-btn{
    color: #000;
}

.explore-btn i{
    font-size: 14px;
}

/* ANIMATION */
.explore-v1 i{
    animation: arrowBounce 1.2s infinite;
}

@keyframes arrowBounce{
    0%{
        transform: translateX(0);
    }

    50%{
        transform: translateX(8px);
    }

    100%{
        transform: translateX(0);
    }
}

.explore-v1:hover{
    color: #FCA732;
}

/*Explore Version 2*/

/*.explore-v2{
    position: relative;
}

.explore-v2::before{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;

    width: 0%;
    height: 2px;

    background: #FCA732;

    animation: lineWave 2s infinite;
}

.explore-v2 i{
    animation: arrowSlide 1.5s infinite;
}

@keyframes arrowSlide{
    0%{
        transform: translateX(0);
        opacity: 1;
    }

    50%{
        transform: translateX(6px);
        opacity: .7;
    }

    100%{
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes lineWave{
    0%{
        width: 0%;
    }

    50%{
        width: 100%;
    }

    100%{
        width: 0%;
    }
}

.explore-v2:hover{
    color: #FCA732 !important;
}*/

.explore-v2{
    position: relative;
    transition: .3s ease;
}


/* UNDERLINE */
.explore-v2::before{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;

    width: 0%;
    height: 2px;

    background: #FCA732;
    transition: width .4s ease;
}


/* ICON DEFAULT ANIMATION */
.explore-v2 i{
    animation: arrowSlide 1.5s infinite;
}


/* HOVER */
.explore-v2:hover{
    color: #FCA732 !important;
}


/* UNDERLINE ONLY ON HOVER */
.explore-v2:hover::before{
    width: 100%;
}


/* ICON ANIMATION */
@keyframes arrowSlide{

    0%{
        transform: translateX(0);
        opacity: 1;
    }

    50%{
        transform: translateX(6px);
        opacity: .7;
    }

    100%{
        transform: translateX(0);
        opacity: 1;
    }

}

/*Explore Version 3*/

.explore-v3{
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.explore-v3 .arrow-wrap{
    width: 28px;
    height: 28px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.08);

    animation: pulseArrow 1.8s infinite;
}

.explore-v3 i{
    font-size: 12px;
}

@keyframes pulseArrow{

    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(252,167,50,.6);
    }

    70%{
        transform: scale(1.08);
        box-shadow: 0 0 0 12px rgba(252,167,50,0);
    }

    100%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(252,167,50,0);
    }
}

.explore-v3:hover{
    color: #FCA732 !important;
}

/* =========================================
EXPLORE VERSION 4
========================================= */

.explore-v4{
    position: relative;
    overflow: hidden;
}

.explore-v4 i{
    position: relative;
    animation: arrowTrail 1.5s infinite;
}

.explore-v4::after{
    content: "";
    position: absolute;

    width: 30px;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #FCA732
    );

    right: 12px;
    top: 50%;

    transform: translateY(-50%);

    opacity: 0;

    animation: trailMove 1.5s infinite;
}

@keyframes arrowTrail{

    0%{
        transform: translateX(0);
    }

    50%{
        transform: translateX(8px);
    }

    100%{
        transform: translateX(0);
    }

}

@keyframes trailMove{

    0%{
        opacity: 0;
        transform: translateY(-50%) translateX(-8px);
    }

    50%{
        opacity: 1;
    }

    100%{
        opacity: 0;
        transform: translateY(-50%) translateX(10px);
    }

}

.explore-v4:hover{
    color: #FCA732 !important;
}

/* =========================================
EXPLORE VERSION 5
========================================= */

.explore-v5{
    position: relative;
}

.explore-v5 i{
    width: 30px;
    height: 30px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(252,167,50,.08);

    color: #FCA732;

    animation: glowLoop 2s infinite;

    transition: .3s ease;
}

@keyframes glowLoop{

    0%{
        transform: translateX(0) scale(1);
        box-shadow: 0 0 0 rgba(252,167,50,0);
    }

    50%{
        transform: translateX(6px) scale(1.08);
        box-shadow: 0 0 18px rgba(252,167,50,.45);
    }

    100%{
        transform: translateX(0) scale(1);
        box-shadow: 0 0 0 rgba(252,167,50,0);
    }

}

.explore-v5:hover{
    color: #FCA732 !important;
}

/* =========================================
EXPLORE VERSION 6
========================================= */

.explore-v6{
    position: relative;
    padding: 10px 18px;
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}

.explore-v6::before{
    content: "";
    position: absolute;

    left: -100%;
    top: 0;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(252,167,50,.12),
        rgba(252,167,50,.3),
        rgba(252,167,50,.12)
    );

    transition: .6s ease;

    z-index: -1;
}

.explore-v6:hover::before{
    left: 100%;
}

.explore-v6 i{
    animation: slideArrow 1.3s infinite;
}

@keyframes slideArrow{

    0%{
        transform: translateX(0);
    }

    50%{
        transform: translateX(7px);
    }

    100%{
        transform: translateX(0);
    }

}

.explore-v6:hover{
    color: #FCA732 !important;
    background: rgba(252,167,50,.05);
}



/***********************
ICON Box Hover Effect 1
************************/

.value-box {
    padding: 24px;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px #F1EDF7;
    border-radius: 20px;
    margin: 10px;
    transition: all .45s ease;
    position: relative;
    overflow: hidden;
    height: 90%;
}

 .value-box::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#14072f,#7F56D9);
    opacity: 0;
    transition: .45s ease;
    z-index: 0;
}

 .value-box *{
    position: relative;
    z-index: 2;
}

 .value-box:hover{
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(127,86,217,.25);
}
 .value-box:hover::before{
    opacity: 1;
}

 .value-box:hover h5, 
 .value-box:hover p{
    color: #fff !important;
}

 .value-box i{
    padding: 10px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7F56D9 0%, #9476D9 100%);
    border-radius: 10px;
    color: #fff;
    text-align: center;
    transition: .45s ease;
}

 .value-box:hover i{
    transform: rotate(10deg) scale(1.15);
    background: #fff;
    color: #7F56D9;
}
 .value-box {
    margin: 10px;
}

.value-box i {
    padding: 10px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7F56D9 0%, #9476D9 100%);
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

 .value-box h5 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    margin: 15px 0px;
    color: #252B37;
}

.value-box p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #8E8E93;
}

.value-box{
  margin: 10px;
}

 .title-box h6 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #6941C6;
}

 .title-box h2 {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: #181D27;
}

.title-box p {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #8E8E93;
}

/*.values , .values2 , .values3 , .values4 , .values5 , .values6{
    background: #fff;
    padding: 60px 0px;
}
*/

/***********************
ICON Box Hover Effect 2
************************/


 .value-box2{
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: .4s ease;
    border: 1px solid transparent;
}

 .value-box2::before{
    content: "";
    position: absolute;
    top: -120%;
    left: -120%;
    width: 250%;
    height: 250%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(127,86,217,.15),
        transparent
    );
    transform: rotate(25deg);
    transition: .7s ease;
}

 .value-box2:hover::before{
    left: 100%;
}

 .value-box2:hover{
    border-color: #7F56D9;
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(127,86,217,.15);
}

 .value-box2 i{
    transition: .4s ease;
}

 .value-box2:hover i{
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(127,86,217,.4);
}

/***********************
ICON Box Hover Effect 3
************************/


 .value-box3{
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: .45s ease;
    z-index: 1;
}

 .value-box3::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #14072f;
    transition: .45s ease;
    z-index: -1;
}

 .value-box3:hover::after{
    height: 100%;
}

 .value-box3:hover{
    transform: translateY(-10px);
}

 .value-box3 h5,
 .value-box3 p{
    transition: .4s ease;
}

 .value-box3:hover h5,
 .value-box3:hover p{
    color: #fff;
}

 .value-box3 i{
    transition: .4s ease;
}

 .value-box3:hover i{
    background: #fff;
    color: #14072f;
    transform: rotateY(180deg);
}

/***********************
ICON Box Hover Effect 4
************************/


 .value-box4 {
    padding: 24px;
    background: transparent;
    border-radius: 20px;
    transition: .4s ease;
    position: relative;
}

 .value-box4:hover{
    /*border: 2px solid #7F56D9;*/
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(127,86,217,.15);
    transition: .4s ease;
}

 .value-box4 i{
    transition: .5s ease;
}

 /*.value-box4:hover i{
    transform: translateY(-12px);
    box-shadow: 0 10px 25px rgba(127,86,217,.35);
}

.value-box4:hover .service-icon{
    transform: translateY(-12px);
    box-shadow: 0 10px 25px rgba(127,86,217,.35);
}*/

 .value-box4 h5{
    transition: .3s ease;
}

 .value-box4:hover h5{
    color: #7F56D9;
}


/***********************
ICON Box Hover Effect 5
************************/

 .value-box5{
    padding: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: .45s ease;
    position: relative;
    overflow: hidden;
}

 .value-box5::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(127,86,217,.12),
        rgba(20,7,47,.15)
    );
    opacity: 0;
    transition: .45s ease;
}

 .value-box5:hover::before{
    opacity: 1;
}

 .value-box5:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20,7,47,.15);
}

 .value-box5 *{
    position: relative;
    z-index: 2;
}

 .value-box5 i{
    transition: .45s ease;
}

.value-box5:hover i{
    transform: scale(1.15) rotate(-8deg);
}


.cta-box {
    background-image: url(../images/home/cta.png);
    background-size: cover;
    background-position: center;
    padding: 70px 0px ;
    border-radius: 15px;
    color: #fff;
    /*margin-top: 50px;*/
}













/* =========================================
ROADMAP SECTION
========================================= */

.roadmap-section {
    padding: 60px 0;
    background: #b673f461;
    overflow: hidden;
}

/* =========================================
LEFT TABS
========================================= */

.roadmap-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.roadmap-tab {
    background: #14072f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.roadmap-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgb(139 92 246), #000000); */
    opacity: 0;
    transition: 0.4s ease;
}

.roadmap-tab:hover::before,
.roadmap-tab.active::before{
    opacity: 1;
}

.roadmap-tab:hover{
    transform: translateX(8px);
    border-color: rgba(139,92,246,0.4);
}

/*.roadmap-tab.active {
    background: linear-gradient(135deg, rgb(0 0 0), rgba(30, 10, 60, 1));
    
    box-shadow: 0 0 40px rgba(139,92,246,0.15);
    border: 5px solid #9657f3;
}*/

.roadmap-tab.active{
    position: relative;

    background: linear-gradient(
        135deg,
        rgb(0 0 0),
        rgba(30, 10, 60, 1)
    );

    border: 5px solid #9657f3;

    border-radius: 20px;

    overflow: hidden;

    animation: borderPulse 1.5s linear infinite;
}

/* GLOW BORDER ANIMATION */
@keyframes borderPulse{

    0%{
        border-color: #9657f3;
        box-shadow:
        0 0 0px rgba(150,87,243,0.0),
        0 0 10px rgba(150,87,243,0.3),
        0 0 20px rgba(150,87,243,0.2);
    }

    50%{
        border-color: #f5b544;
        box-shadow:
        0 0 10px rgba(245,181,68,0.5),
        0 0 25px rgba(245,181,68,0.4),
        0 0 45px rgba(245,181,68,0.3);
    }

    100%{
        border-color: #9657f3;
        box-shadow:
        0 0 0px rgba(150,87,243,0.0),
        0 0 10px rgba(150,87,243,0.3),
        0 0 20px rgba(150,87,243,0.2);
    }

}

/* HOVER = STOP ANIMATION */
.roadmap-tab.active:hover{

    animation-play-state: paused;

}

.tab-icon {
    min-width: 30px;
    width: 30px;
    height: 30px;
    border-radius: 14px;
    background: rgba(139,92,246,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-icon i {
    color: #b794ff;
    font-size: 17px;
}
.tab-info{
    flex: 1;
}

.tab-info span{
    color: #8f88a5;
    font-size: 12px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.tab-info h5 {
    color: #fff;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    font-weight: 600;
}

.tab-arrow i{
    color: #9f7aea;
    font-size: 16px;
}

/* =========================================
RIGHT BODY
========================================= */

.roadmap-content{
    display: none;
    animation: fadeSlide 0.5s ease;
}

.roadmap-content.active{
    display: block;
}

@keyframes fadeSlide{

    from{
        opacity: 0;
        transform: translateY(20px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}

.content-card {
    background: #14072f;
    /* background: linear-gradient(135deg, rgb(20 7 47), rgb(20 7 47)); */
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: 24px;
    padding: 15px 40px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.content-card::before{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    /*background: radial-gradient(circle,
    rgba(139,92,246,0.15),
    transparent);*/

    top: -120px;
    right: -120px;
}

/* HEADER */

.content-title {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.content-icon {
    width: 30px;
    height: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg,
    #c084fc,
    #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(124,58,237,0.3);
}

.content-icon i {
    color: #fff;
    font-size: 20px;
}

.content-title span {
    color: #b4abc9;
    font-size: 12px;
    letter-spacing: 1px;
}

.content-title h3 {
    color: #fff;
    font-size: 17px;
    line-height: 30px;
    font-weight: 700;
    margin: 0;
}

/* =========================================
TIMELINE
========================================= */

.timeline-nav{
    position: relative;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.timeline-line{
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
}

.timeline-progress{
    position: absolute;
    top: 14px;
    left: 0;
    width: 25%;
    height: 4px;
    background: linear-gradient(90deg,
    #8b5cf6,
    #f59e0b);

    transition: 0.4s ease;
}

.week-item {
    width: 25%;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 3;
    top: 7px;
}

.week-dot{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3b275f;
    border: 4px solid #7b59d4;
    margin: auto auto 18px;

    transition: 0.4s ease;
}

.week-item.active .week-dot{
    background: #fff;
    border-color: #f59e0b;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(245,158,11,0.5);
}

.week-item h6 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 700;
}

.week-item p{
    color: #b0a8c7;
    font-size: 16px;
    margin: 0;
}

.week-item.active h6{
    color: #f59e0b;
}

/* =========================================
ACTIVITY
========================================= */

.week-content{
    display: none;
    animation: fadeSlide 0.4s ease;
}

.week-content.active{
    display: block;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgb(7 7 7 / 31%);
    transition: 0.4s ease;
}

.activity-item:hover{
    transform: translateY(-6px);
    background: rgba(139,92,246,0.12);
}

.activity-item i {
    width: 35px;
    height: 35px;
    border-radius: 14px;
    background: linear-gradient(135deg,
    #a855f7,
    #6d28d9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
}

.activity-item span {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .activity-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .content-title h3{
        font-size: 32px;
        line-height: 42px;
    }

}

@media(max-width:767px){

    .roadmap-section{
        padding: 80px 0;
    }

    .timeline-nav{
        flex-wrap: wrap;
        gap: 30px;
    }

    .week-item{
        width: 48%;
    }

    .timeline-line,
    .timeline-progress{
        display: none;
    }

    .activity-grid{
        grid-template-columns: 1fr;
    }

    .content-card{
        padding: 28px;
    }

    .content-title{
        align-items: flex-start;
    }

    .content-title h3{
        font-size: 26px;
        line-height: 36px;
    }

}






.image-shine {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 10px; /* optional */
}

.image-shine img {
    display: block;
    width: 100%;
    height: auto;
}

/* Shine Effect */
.image-shine::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 10%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

/* Hover Animation */
.image-shine:hover::before {
    animation: shine 1s ease;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


/* drag smooth */
.testimonial-track{
    cursor: grab;
    user-select: none;
}

.testimonial-track.dragging{
    cursor: grabbing;
    scroll-behavior: auto;
}

.partner-logo img {
    /*height: 40px;*/
    /* margin-bottom: 20px; */
    margin-top: -110px;
}

/* WAVE 1 */
.wave-card::before{
    content: "";
    position: absolute;

    width: 120px;
    height: 120px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border: 2px solid rgba(124,58,237,.25);
    border-radius: 50%;

    animation: pulseWave 4s linear infinite;

    pointer-events: none;
}

/* WAVE 2 */
.wave-card::after{
    content: "";
    position: absolute;

    width: 120px;
    height: 120px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border: 2px solid rgba(124,58,237,.18);
    border-radius: 50%;

    animation: pulseWave 4s linear infinite;
    animation-delay: 2s;

    pointer-events: none;
}

@keyframes pulseWave{

    0%{
        width: 120px;
        height: 120px;
        opacity: 0.8;
    }

    100%{
        width: 700px;
        height: 700px;
        opacity: 0;
    }

}








.bizsprint-diagram{
    position:relative;
    width:450px;
    height:350px;
    margin:auto;
}

.center-circle{
    width:150px;
    height:150px;
    border-radius:50%;
    background:#fff;
    border:5px solid #8b5a7e;

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    z-index:10;

    box-shadow:0 0 30px rgba(139,90,126,.2);
}

.outer-circle{
    position:absolute;

    width:120px;
    height:70px;

    background:#8b5a7e;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:25px;

    font-weight:600;

    animation:floatModule 4s ease-in-out infinite;
}

.sales{
    top:60px;
    left:100px;
    transform:rotate(-60deg);
}

.ecommerce{
    top:20px;
    left:180px;
}

.accounting{
    top:60px;
    right:100px;
    transform:rotate(60deg);
}

.billing{
    bottom:60px;
    right:100px;
    transform:rotate(-60deg);
}

.email{
    bottom:20px;
    left:180px;
}

.inventory{
    bottom:60px;
    left:100px;
    transform:rotate(60deg);
}

.side-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;
    border:4px solid #8b5a7e;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;
    font-size:14px;

    position:absolute;
}

.side-circle.left{
    left:0;
    top:120px;
}

.side-circle.right{
    right:0;
    top:240px;
}

@keyframes floatModule{
    50%{
        transform:translateY(-10px);
    }
}


.elevate-flow{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
    position:relative;
    flex-wrap:wrap;
}

.elevate-flow::before{
    content:"";
    position:absolute;
    width:75%;
    height:20px;

    background:linear-gradient(
        90deg,
        #8b5a7e,
        #a56cf5
    );

    border-radius:50px;

    z-index:1;
}

.flow-circle{
    width:130px;
    height:130px;

    border-radius:50%;
    background:#fff;

    border:5px solid #8b5a7e;

    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    box-shadow:0 0 30px rgba(139,90,126,.15);

    animation:floatCircle 4s ease-in-out infinite;
}

.flow-circle:nth-child(even){
    margin-top:80px;
}

@keyframes floatCircle{
    50%{
        transform:translateY(-12px);
    }
}


.testimonials-stack{
    position:relative;
    overflow:hidden;
}

.testimonial-stack-wrapper{
    position:relative;
    padding-bottom:100px;
}

/* Sticky Stack */
.testimonial-sticky-card{
    position:sticky;
    top:120px;
    padding-bottom:120px;
}

/*.testimonial-card{
        min-height:85vh;
    display:flex;
    align-items:center;
    border-radius:32px;
    padding:60px;
    position:relative;
    overflow:hidden;
    box-shadow:0 25px 80px rgba(0,0,0,.25);
}*/

/* ODOO */
.odoo-card{
    background:linear-gradient(
        135deg,
        #714B67 0%,
        #875A7B 100%
    );
    color:#fff;
}

/* IFS */
.ifs-card{
    background:linear-gradient(
        135deg,
        #003A70 0%,
        #005BAA 100%
    );
    color:#fff;
}

.service-badge{
    position:absolute;
    top:30px;
    right:30px;

    padding:10px 18px;

    border-radius:50px;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);
}

.quote-icon{
    font-size:55px;
    margin-bottom:25px;
    opacity:.25;
}

.testimonial-text{
    font-size:1.4rem;
    line-height:1.8;
    margin-bottom:40px;
    max-width:90%;
}

.client-info h5{
    margin-bottom:4px;
    font-weight:700;
}

.client-info span{
    display:block;
    opacity:.85;
    margin-bottom:5px;
}

.client-info small{
    opacity:.7;
}

/* Logo Box */

.logo-box{
    display:flex;
    justify-content:center;
    align-items:center;

    height:260px;

    border-radius:24px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);
}

.client-logo{
    max-width:300px;

    filter:grayscale(100%);
    opacity:.8;

    transition:.4s;
}

.testimonial-card:hover .client-logo{
    filter:none;
    opacity:1;
}

/* CTA */

.view-more-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:18px 34px;

    border-radius:60px;

    text-decoration:none;

    color:#fff;

    font-weight:600;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    transition:.3s;
}

.view-more-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    background:rgba(255,255,255,.15);
}

/* Stack Effect */



.testimonial-sticky-card:nth-child(1){
    top:120px;
}

.testimonial-sticky-card:nth-child(2){
    top:150px;
}

.testimonial-sticky-card:nth-child(3){
    top:180px;
}

.testimonial-sticky-card:nth-child(4){
    top:210px;
}

/* Mobile */

@media(max-width:991px){

    .testimonial-sticky-card{
        position:relative;
        top:auto !important;
    }

    .testimonial-card{
        padding:35px;
        min-height:auto;
    }

    .testimonial-text{
        font-size:1rem;
        max-width:100%;
    }

    .logo-box{
        margin-top:30px;
        height:180px;
    }

    .service-badge{
        position:relative;
        top:auto;
        right:auto;
        display:inline-block;
        margin-bottom:20px;
    }
}

/*.testimonial-card{
    transition:.4s ease;
}

.testimonial-sticky-card:hover .testimonial-card{
    transform:scale(1.02);
}

.testimonials-stack {
    position: relative;
    overflow: visible;
    padding: 80px 0 80px;
}
*/
/* Sticky Title */

/*.testimonials-stack .section-title{
    position:sticky;
    top:30px;
    z-index:1;
    margin-bottom:60px;
}*/

/* Wrapper */

/*.testimonial-stack-wrapper{
    position:relative;
}*/

/* Sticky Cards */

/*.testimonial-sticky-card{
    position:sticky;
    margin-bottom:100px;
}*/

/* Stacking Levels */

/*.testimonial-sticky-card:nth-child(1){
    top:120px;
    z-index:1;
}

.testimonial-sticky-card:nth-child(2){
    top:150px;
    z-index:2;
}

.testimonial-sticky-card:nth-child(3){
    top:180px;
    z-index:3;
}

.testimonial-sticky-card:nth-child(4){
    top:210px;
    z-index:4;
}*/

/* Card */

/*.testimonial-card{
    min-height:500px;
    border-radius:32px;
    padding:60px;
    display:flex;
    align-items:center;
    position:relative;

    box-shadow:
    0 30px 80px rgba(0,0,0,.25);

    transition:.4s;
}

.testimonial-card:hover{
    transform:scale(1.02);
}*/

/* ODOO */

/*.odoo-card {
    background: #724b68;
    color: #fff;
}*/

/* IFS */

/*.ifs-card {
    background: #6941c6;
    color: #fff;
}
*/
/* Badge */

/*.service-badge{
    position:absolute;
    top:30px;
    right:30px;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}*/

/* Quote */

/*.quote-icon{
    font-size:60px;
    opacity:.2;
    margin-bottom:20px;
}

.testimonial-text{
    font-size:1.35rem;
    line-height:1.8;
    margin-bottom:40px;
}*/

/* Logo */

/*.logo-box{
    height:260px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:24px;

    background:rgba(255,255,255,.08);
}

.client-logo{
    max-width:280px;

    filter:grayscale(100%);
    opacity:.8;

    transition:.3s;
}

.testimonial-card:hover .client-logo{
    filter:none;
    opacity:1;
}*/

/* Button */

/*.view-more-btn{
    display:inline-flex;
    align-items:center;

    color:#fff;
    text-decoration:none;

    padding:18px 34px;

    border-radius:60px;

    background:rgba(255,255,255,.1);

    border:1px solid rgba(255,255,255,.15);
}*/

/* Mobile */

/*@media(max-width:991px){

    .section-title{
        position:relative;
        top:auto;
    }

    .testimonial-sticky-card{
        position:relative;
        top:auto !important;
        margin-bottom:30px;
    }

    .testimonial-card{
        min-height:auto;
        padding:35px;
    }

    .logo-box{
        margin-top:30px;
        height:180px;
    }

}*/

.form-group input[type=file]{
height: 65px;

}

option{
    background: #261947;
}


.ifs-page .odoo-hero img.odoo-silver {
    height: 130px;
    width: auto;
}



.ifs-page .odoo-hero span {
    background: rgb(132 39 226 / 50%);
}

.ifs-page .odoo-services .service-box .service-icon {
    background: radial-gradient(
        76.25% 76.25% at 50% 50%,
        #d9b8ff 0%,
        #8427e2 65.38%
    );
}

.ifs-page .vertical-timeline::before {
    background: linear-gradient(
        to bottom,
        #8427e2,
        #b36cff,
        #8427e2
    );
}

.ifs-page .timeline-icon {
    background: linear-gradient(
        135deg,
        #8427e2,
        #b36cff
    );
    border: 6px solid #f5f2f7;
    box-shadow: 0 10px 30px rgba(132, 39, 226, 0.35);
}

.ifs-page .retail-tab-btn.active {
    color: #8427e2;
}

.ifs-page .retail-tab-btn.active::before {
    background: #8427e2;
}

.ifs-page .odoo_application .retail-tab-content a {
    color: #8427e2;
}

.ifs-page .why-choose-odoo-solution .why-box i {
    background: radial-gradient(
        76.25% 76.25% at 50% 50%,
        #d9b8ff 0%,
        #8427e2 65.38%
    );
}

/***************
   Mobile view
*****************/



@media (max-width: 768px) {

    h1 , h2 , h3 , h4 , h5 , h6{
        font-size: 35px;
        line-height: 42px;
    }

.partnership .tag {
    margin-top: 54px;
    max-width: 100%; 
}

.logo-box {
    display: none;
}

.testimonial-sticky-card {
    
    padding-bottom: 20px;
}

.cta .cta-box h3 {
    font-size: 20px;
    line-height: 32px;
}

.hero-center {
    bottom: 80px !important;
    
}
.hero-lines {
    
    display: none;
}

.floating-card {
    display: none !important;
}

.odoo-logo-wrap {
   
    justify-content: flex-start !important;
}

.industry-overview h5:before {
    
    left: -7% !important;

}

.how-odoo .step-box {
   
    height: 300px !important;
}

.about-hero .title {
    
    font-size: 50px !important;
   
}

.problem .quote-box {
    
    margin-bottom: 20px;
}

.leadership{
    padding: 30px 0px;
}
.leadership .chess img {
    
    right: 0% !important;
    
}

.career-hero:before {
    
    height: 72% !important;
    
}
.contact-form-box {
    
    position: relative !important;
    
}

/*.mobile-menu{
    display: block !important;
}*/

.desktop-menu{
    display: none !important;
}



}


.mobile-menu{
    display: none;
}





@media(max-width:991px){

    html,
body{
    max-width:100%;
    
    overflow-x: hidden !important;
}

    .submenu{

        display:none !important;

        position:static;

        opacity:1;

        visibility:visible;

        transform:none;

        width:100%;
    }

    .submenu.active{

        display:block !important;
    }

}

.retail-overlay-content h6{
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
}

.news-section{

    padding:80px 0;

    background:#fff;

}

.news-section h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
    font-family: 'Inter';
}

.news-section h2 span{

    color:#f4b400;

}

.news-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.news-card:hover{

    transform:translateY(-10px);

}

.news-card img {
    width: 100%;
    /* height: 320px; */
    /* object-fit: cover; */
}

.news-content{

    padding:20px;

    text-align:center;

}

.news-content h5 {
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter';
}

.newsSwiper{

    padding-bottom:60px;

}

.swiper-button-next,
.swiper-button-prev{

    color:#6d3fd4;

}

.swiper-pagination-bullet-active{

    background:#6d3fd4;

}

@media(max-width:991px){

.news-section h2{

    font-size:34px;

}

.news-card img{

    height:250px;

}

}