:root {
    --ocr-primary-red: #dc3545;
    --ocr-dark-text: #1a1a1a;
    --ocr-light-bg: #f8f9fa;
    --ocr-gradient-start: #ff6b6b;
    --ocr-gradient-end: #ee5a6f;

    --primary-white: #ffffff;
    --secondary-white: #f8f9fa;
    --light-gray: #f0f2f5;
    --accent-red: #e63946;
    --accent-red-dark: #c1121f;
    --accent-crimson: #d90429;
    --accent-rose: #ff4d6d;
    --text-dark: #1a1a2e;
    --text-gray: #4a4a5a;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(230, 57, 70, 0.2);

    /* for stats section */
    --dv-primary: #fa3b45;
    --dv-primary-dark: #e02935;
    --dv-gradient-start: #ff4757;
    --dv-gradient-end: #ff8a97;
    --dv-bg-light: #fff5f6;
    --dv-text-dark: #1a1a2e;
    --dv-text-muted: #6b6b7a;
}

.bi {
    height: auto !important;
}

/* 
-----------------------------------------------------------------------------------    
Hero section for Main Page
------------------------------------------------------------------------------------ 
*/

.dt-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(217, 4, 41, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--primary-white) 0%, var(--light-gray) 100%);
}

/* Animated Background Grid */
.dt-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(230, 57, 70, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 57, 70, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: dt-gridMove 30s linear infinite;
}

@keyframes dt-gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(50px);
    }
}

/* Floating Orbs */
.dt-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: dt-float 12s ease-in-out infinite;
}

.dt-orb-1 {
    width: 450px;
    height: 450px;
    background: var(--accent-red);
    opacity: 0.08;
    top: -100px;
    right: -100px;
}

.dt-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--accent-rose);
    opacity: 0.07;
    bottom: -80px;
    left: -80px;
    animation-delay: -6s;
}

.dt-orb-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-crimson);
    opacity: 0.05;
    top: 50%;
    left: 30%;
    animation-delay: -3s;
}

@keyframes dt-float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Glass Card */
.dt-glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(230, 57, 70, 0.15);
    border-radius: 28px;
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(230, 57, 70, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.dt-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-rose), transparent);
    border-radius: 28px 28px 0 0;
}

/* Typography */
.dt-brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-red-dark) 0%, var(--accent-red) 50%, var(--accent-rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.dt-tagline {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    color: var(--accent-red);
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.dt-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.dt-section-title span {
    color: var(--accent-red);
}

/* Feature Item */
.dt-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dt-feature-item:hover {
    background: rgba(230, 57, 70, 0.05);
    border-color: rgba(230, 57, 70, 0.15);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.dt-feature-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-rose));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.3);
}

.dt-feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.dt-feature-text h4 {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.dt-feature-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.dt-stats-container {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.dt-stat-item {
    text-align: center;
    position: relative;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid rgba(230, 57, 70, 0.1);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.05);
}

.dt-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-red-dark), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dt-stat-label {
    color: var(--text-gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.3rem;
}

/* CTA Button */
.dt-cta-btn {
    padding: 1rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-rose));
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow:
        0 10px 35px rgba(230, 57, 70, 0.35),
        0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.dt-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 45px rgba(230, 57, 70, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.dt-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.dt-cta-btn:hover::before {
    left: 100%;
}

/* Visual Section */
.dt-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* AI Eye */
.dt-ai-eye {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.9) 0%, rgba(217, 4, 41, 0.7) 40%, transparent 70%);
    position: relative;
    animation: dt-pulse 4s ease-in-out infinite;
    box-shadow:
        0 0 60px rgba(230, 57, 70, 0.3),
        0 0 120px rgba(230, 57, 70, 0.15);
}

.dt-ai-eye::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, rgba(230, 57, 70, 0.8) 40%, var(--accent-red-dark) 80%);
    box-shadow:
        0 0 30px rgba(230, 57, 70, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.dt-ai-eye::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--text-dark);
    box-shadow: inset 0 0 10px rgba(230, 57, 70, 0.6);
}

/* Eye Ring */
.dt-eye-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    border: 2px solid rgba(230, 57, 70, 0.25);
    border-radius: 50%;
    animation: dt-rotateRing 20s linear infinite;
}

.dt-eye-ring::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent-red);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-red);
}

.dt-eye-ring-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border: 1px dashed rgba(230, 57, 70, 0.15);
    border-radius: 50%;
    animation: dt-rotateRing 30s linear infinite reverse;
}

@keyframes dt-rotateRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes dt-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

/* Floating Tech Icons */
.dt-floating-icon {
    position: absolute;
    /* width: 60px;
    height: 60px; */
    background: var(--primary-white);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: 16px;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    animation: dt-floatIcon 5s ease-in-out infinite;
    box-shadow:
        0 10px 30px rgba(230, 57, 70, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.dt-floating-icon i {
    font-size: 1.4rem;
    color: var(--accent-red);
}

.dt-icon-label {
    font-weight: 600;
    margin-bottom: 3px;
}

.dt-icon-1 {
    top: -5%;
    left: 5%;
    animation-delay: 0s;
}

.dt-icon-2 {
    top: 0%;
    right: -2%;
    animation-delay: -1.25s;
}

.dt-icon-3 {
    bottom: 0%;
    left: 0%;
    animation-delay: -2.5s;
}

.dt-icon-4 {
    bottom: 5%;
    right: 0%;
    animation-delay: -3.75s;
}

@keyframes dt-floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Circuit Lines */
.dt-circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.5;
}

.dt-circuit-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-red), var(--accent-rose), transparent);
    animation: dt-scanLine 5s linear infinite;
}

.dt-circuit-line:nth-child(1) {
    top: 18%;
    width: 60%;
    left: -60%;
    animation-delay: 0s;
}

.dt-circuit-line:nth-child(2) {
    top: 38%;
    width: 80%;
    left: -80%;
    animation-delay: -1.25s;
}

.dt-circuit-line:nth-child(3) {
    top: 58%;
    width: 50%;
    left: -50%;
    animation-delay: -2.5s;
}

.dt-circuit-line:nth-child(4) {
    top: 78%;
    width: 70%;
    left: -70%;
    animation-delay: -0.6s;
}

@keyframes dt-scanLine {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100vw + 100%));
    }
}

/* Decorative Dots */
.dt-dot-pattern {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(230, 57, 70, 0.2) 2px, transparent 2px);
    background-size: 15px 15px;
}

.dt-dot-pattern.dt-top-right {
    top: 30px;
    right: 30px;
}

.dt-dot-pattern.dt-bottom-left {
    bottom: 30px;
    left: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .dt-feature-item {
        display: grid;
    }

    .dt-brand-title {
        font-size: 2.5rem;
    }

    .dt-visual-container {
        margin-top: 3rem;
        min-height: 350px;
    }

    .dt-ai-eye {
        width: 240px;
        height: 240px;
    }

    .dt-eye-ring {
        width: 300px;
        height: 300px;
    }

    .dt-eye-ring-outer {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 576px) {
    .dt-brand-title {
        font-size: 1.8rem;
    }

    .dt-tagline {
        font-size: 0.7rem;
        letter-spacing: 5px;
    }

    .dt-stats-container {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .dt-stat-item {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .dt-glass-card {
        padding: 1.5rem;
    }

    .dt-ai-eye {
        width: 180px;
        height: 180px;
    }

    .dt-eye-ring {
        width: 240px;
        height: 240px;
    }

    .dt-eye-ring-outer {
        width: 300px;
        height: 300px;
    }

    .dt-floating-icon {
        width: 45px;
        height: 45px;
    }

    .dt-floating-icon i {
        font-size: 1rem;
    }

    .dt-dot-pattern {
        display: none;
    }
}

/* 
-----------------------------------------------------------------------------------    
OCR Carousel on main page
------------------------------------------------------------------------------------ 
*/
.ocr-content-wrapper {
    background: white;
    border-radius: 24px;
    padding: 24px 0px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.ocr-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* background: linear-gradient(135deg, var(--ocr-gradient-start), var(--ocr-gradient-end)); */
    color: white;
    padding: 6px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: ocr-pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

@keyframes ocr-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.ocr-badge-new::before {
    content: '✦';
    font-size: 1.2rem;
}

.ocr-main-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--ocr-dark-text);
    line-height: 1.2;
    margin: 20px 0;
}

.ocr-highlight {
    background: linear-gradient(135deg, #ff0000, #7b0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.ocr-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #495057;
    margin-bottom: 20px;
}

.ocr-description {
    font-size: 1rem !important;
    color: #6c757d;
    /* line-height: 1.5; */
    /* margin: 24px 0; */
}

.ocr-cta-button {
    /* background: linear-gradient(135deg, var(--ocr-gradient-start), var(--ocr-gradient-end)); */
    color: white;
    padding: 11px 40px;
    border-radius: 17px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    /* box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3); */
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ocr-cta-button:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 12px 35px rgba(220, 53, 69, 0.4); */
    color: white;
}

.ocr-image-wrapper {
    position: relative;
    animation: ocr-float 6s ease-in-out infinite;
}

@keyframes ocr-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.ocr-image-wrapper img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.ocr-image-wrapper:hover img {
    transform: scale(1.02);
}

.ocr-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.ocr-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 0.93rem;
}

.ocr-feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.ocr-feature-icon {
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--ocr-gradient-start), var(--ocr-gradient-end)); */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

@media (max-width: 992px) {
    .ocr-main-title {
        font-size: 2.2rem;
    }

    .ocr-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .ocr-main-title {
        font-size: 1.8rem;
    }

    .ocr-subtitle {
        font-size: 1.4rem;
    }

    .ocr-description {
        font-size: 1rem;
    }
}

/* 
-----------------------------------------------------------------------------------    
Carousel on Digital Transformation Page
------------------------------------------------------------------------------------ 
*/

.TrustTierCarouselBG {
    background-image: URL('../img/Digivision/TrustTierBackground.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.bg-light {
    background-color: #f7f7f7 !important;
}

.background-img {
    height: 100vh;
    display: flex;
    justify-content: center;
}

.background-img img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

h3 {
    font-size: 40px;
    margin-bottom: 12px;
    line-height: 1.4;
}

swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}

swiper-slide img {
    display: block;
    width: 100%;
}

.hexagon {
    /* Modify size here: */
    --size: 75px;
    width: var(--size);
    height: calc(var(--size) * 0.57735);
    background: #fff;
    position: relative;
    text-align: center;
}


.carousel-inner {
    height: auto !important;
}

.my-list-group {
    list-style: none;
}

.my-list-group .my-list-group-item {
    padding: 10px;
    background: #fff;
    color: #000;
    /* padding: 18px 98px; */
    font-size: 16px;
    cursor: pointer;
    /* box-shadow: 0 0 35px -28px #080509; */
}

.bg-lightpurple {
    background: #f5f5fc;
}

.my-list-group-item.my-active {
    background: #ee1d23;
    color: #fff;
}

.my-card,
.my-card-ldrs {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
    min-height: 100%;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

.my-card {
    background-color: #ffffff;

}

.my-card-ldrs {
    background-color: #0000008f;
}

.my-card h5,
.my-card-ldrs {
    font-size: 1.4rem;
}

/* .my-card:hover,
		.my-card-ldrs:hover {
			background: linear-gradient(80.77deg, #FF0000 0%, #FF4500 100%);
			color: #ffffff;
			transform: translateY(-5px);
		} */

/* .my-card-fcps {
			background-color: #ffffff;
			color: grey;
			word-wrap: break-word !important;
			word-break: break-word !important;
		} */

/* .my-card-fcps:hover {
			color: black;
			box-shadow: 0px 24px 48px -13px rgba(0, 0, 0, 0.05);
		} */

#FCPS-header h3::after {
    content: "";
    position: relative;
    display: block;
    width: 218px;
    height: 3px;
    background: #ee1d23;
    left: 0;
    right: 0;
    margin: auto;
    top: 10px;
}

.img-circle {
    width: 71px;
    height: 67px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 35px -23px #080509;
}

.img-circle img {
    width: 100%;
    height: 67px;
    position: absolute;
    top: 0%;
    left: 0;
    background-color: white;
}

.rounded-animated {
    border-radius: 40px 40px 40px 0;
    transition: border-radius 0.3s;
}

.rounded-animated:hover {
    border-radius: 0 40px 40px 40px;
}

#card-info {
    font-size: 0.7rem;
}

#knowMore::before {
    position: absolute;
    content: "";
    height: 25px;
    width: 25px;
    background-color: #fbb8a9;
    border-radius: 50px;
    left: 0;
    bottom: 0px;
    z-index: -1;
    transition: var(--transition);
}

.get-started-btn {
    font-size: 15px;
    font-weight: 700;
    color: var(--paragraphColor);
    position: relative;
    z-index: 1;
    padding-left: 10px;
    text-decoration: none;
}

.text-center {
    text-align: center;
}

.features_img {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

.features_img_kyc {
    max-width: 100%;
    height: 100px;
    width: 100px;
}

.black-btn {
    background-color: #000 !important;
    padding: 12px 29px 10px;
    font-size: 14px;
    border: none;
    height: 37px;
}

.image-container {
    height: 160px;
}

.jumbo .nav-link {
    width: max-content;
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 400;
}

.dropdown-menu a,
.dropdown-menu a:active {
    text-decoration: none;
    color: #000000;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 7px 0px;
}

.dropdown-menu a:hover {
    font-weight: 500;
    background: transparent;
}

.dropdown-menu a i {
    font-size: 1.1rem;
    color: #ee1d23 !important;
    margin-right: 7px;
    font-weight: bolder;
}

.dropdown-menu a img {
    width: 20px;
    height: auto;
    margin-right: 7px;
    filter: grayscale(20%);
}

.dropdown-menu a:hover img {
    filter: grayscale(0%);
}

.dropdown-menu a .d-flex {
    transition: all 0.5s;
}

.dropdown-menu-mega a img {
    width: 25px;
    height: auto;
    filter: grayscale(0%);
}

.dropdown-menu-mega a h5 {
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.dropdown-menu-mega a .text div {
    font-size: 0.75rem;
    opacity: 0.5
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: #ee1d23;
    color: #fff;
    width: 100%;
    font-weight: 400;
}

@media only screen and (min-width: 992px) {
    .dropdown-menu-mega {
        width: 55vw;
        font-size: 0.8rem !important;
    }

    .dropdown:hover .dropdown-menu-mega {
        display: flex;
    }

    .dropdown:hover .dropdown-menu {
        display: block
    }

    .dropdown-menu-mega .show {
        display: flex;
    }
}

.red-shadow {
    box-shadow: 0 3px 20px rgb(231 8 19 / 12%) !important;
}

.footer-widget h3 {
    margin-bottom: 20px;
    color: var(--whiteColor);
    position: relative;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(78, 94, 106, .1882352941);
    font-size: 16px;
    font-weight: 700
}

.footer-widget h3::before {
    bottom: -1px;
    left: 0;
    width: 75px;
    height: 3px;
    background-color: var(--whiteColor);
    content: "";
    position: absolute
}

.footer-widget .footer-contact-info {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer-widget .footer-contact-info li {
    color: var(--whiteColor);
    padding-left: 55px;
    position: relative;
    margin-bottom: 25px;
    font-size: 13.5px
}

.footer-widget .footer-contact-info li:last-child {
    margin-bottom: 0
}

.footer-widget .footer-contact-info li i {
    font-size: 25px;
    position: absolute;
    left: 0;
    top: 0
}

.footer-widget .footer-contact-info li span {
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    opacity: .6
}

.footer-widget a {
    display: inline-block;
    color: var(--whiteColor);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.footer-widget .footer-contact-info li a:hover {
    color: var(--optionalColor)
}

.footer-widget .footer-contact-info li .social {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.footer-widget .footer-contact-info li .social li {
    display: inline-block;
    padding-left: 0;
    margin-right: 15px;
    margin-bottom: 0
}

.footer-widget .footer-contact-info li .social li a {
    display: inline-block
}

.footer-widget .footer-contact-info li .social li a i {
    position: relative;
    color: var(--whiteColor);
    font-size: 17px;
    transition: var(--transition)
}

.footer-widget .footer-contact-info li .social li a:hover {
    transform: translateY(-2px)
}

.footer-widget .footer-contact-info li .social li a:hover i {
    color: #ee1d23 !important;
}

.footer-widget .footer-contact-info li .social li:last-child {
    margin-right: 0
}

.container-with-background {
    background-size: cover;
    background-position: top;
    color: black;
    font-size: large;
    height: auto;
}

.kyc-prod {
    height: 475px;
    padding: 15px 25px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 3px 20px rgba(36, 157, 210, .12);
    border: 1px solid #00000010
}

/* .card-header {
    transition: 1s ease;
    width: 700px;
    height: 100px;
} */


/* .card-header:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    transition: 1s ease;

} */

.container-card {
    position: relative;
    background: linear-gradient(71deg, #080509, #1a171c, #080509);
    border-radius: 45px;
    padding: 20px;
    min-height: 185px;
    /* width: 650px; */

}

.container-card::before,
.container-card::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 1px;

}

.container-card::before {
    top: 0;
    background: linear-gradient(to left, red, transparent);
    width: 87%;

}


.container-card::after {
    bottom: 0;
    background: linear-gradient(to right, red, transparent);
    width: 90%;
    margin-left: 20px;
}

.card_sample {
    min-height: 305px;
    display: grid;
    align-items: center;
    justify-content: center;
}

.btn_try {
    margin-left: 30px;
}

.custom-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 0 35px -28px #080509;
}

.custom-card .card-body {
    flex-grow: 1;
}


.projcard-container {
    margin: 50px 0;
    font-family: 'Open Sans', arial, sans-serif;
    color: #333;
    font-size: 14px;
}

.projcard-container,
.projcard-container * {
    box-sizing: border-box;
}

.projcard-container {
    margin-left: auto;
    margin-right: auto;
    width: 1270px;
}

.projcard {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 2px solid #ddd;
    font-size: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 21px -12px rgba(0, 0, 0, .66);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.projcard:hover {
    box-shadow: 0 34px 32px -33px rgba(0, 0, 0, .18);
    transform: translate(0px, -3px);
}

.projcard::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
    opacity: 0.07;
}

.projcard-textbox-aadhaar::before,
.projcard-textbox-aadhaar::after {
    content: "";
    position: absolute;
    display: block;
    background: #ff0000bb;
    background: #fff;
    top: -20%;
    left: -55px;
    height: 140%;
    width: 60px;
    transform: rotate(8deg);
}

.projcard:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #424242, transparent 50%);
}

.projcard-innerbox {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.projcard-img {
    position: absolute;
    height: 250px;
    width: 400px;
    top: 0;
    left: 0;
    transition: transform 0.2s ease;
}

.projcard:nth-child(2n) .projcard-img {
    left: initial;
    right: 0;
}

.projcard:hover .projcard-img {
    transform: scale(1.05) rotate(1deg);
}

.projcard:hover .projcard-bar {
    width: 70px;
}

.projcard-textbox,
.projcard-textbox1 {
    position: absolute;
    top: 7%;
    bottom: 7%;
    left: 430px;
    width: calc(100% - 470px);
    font-size: 17px;
}

.projcard:nth-child(2n) .projcard-textbox,
.projcard:nth-child(2n) .projcard-textbox1 {
    left: initial;
    right: 430px;
}

.projcard-textbox::before,
.projcard-textbox::after,
.projcard-textbox1::before,
.projcard-textbox1::after {
    content: "";
    position: absolute;
    display: block;
    background: #ff0000bb;
    background: #fff;
    top: -20%;
    left: -55px;
    height: 140%;
    width: 60px;
    transform: rotate(8deg);
}

.projcard-textbox1::before {
    content: "";
    position: absolute;
    display: block;
    background: #ff0000bb;
    background: #fff;
    top: -20%;
    left: -55px;
    height: 140%;
    width: 60px;
    transform: rotate(8deg);
    border-left: solid 4px grey;
}

.projcard:nth-child(2n) .projcard-textbox::before,
.projcard:nth-child(2n) .projcard-textbox1::before {
    display: none;
}

.projcard-textbox::after,
.projcard-textbox1::after {
    display: none;
    left: initial;
    right: -55px;
}

.projcard:nth-child(2n) .projcard-textbox::after,
.projcard:nth-child(2n) .projcard-textbox1::after {
    display: block;
}

.projcard-textbox *,
.projcard-textbox1 * {
    position: relative;
}

.projcard-title {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    font-size: 26px;
}

.projcard-subtitle {
    font-family: 'Voces', 'Open Sans', arial, sans-serif;
    color: #888;
}

.projcard-bar {
    left: -2px;
    width: 50px;
    height: 5px;
    margin: 10px 0;
    border-radius: 5px;
    background-color: #424242;
    transition: width 0.2s ease;
}

.projcard-blue .projcard-bar {
    background-color: #0088FF;
}

.projcard-blue::before {
    background-image: linear-gradient(-70deg, #0088FF, transparent 50%);
}

.projcard-blue:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #0088FF, transparent 50%);
}

.projcard-red .projcard-bar {
    background-color: #D62F1F;
}

.projcard-red::before {
    background-image: linear-gradient(-70deg, #D62F1F, transparent 50%);
}

.projcard-red:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #D62F1F, transparent 50%);
}

.projcard-green .projcard-bar {
    background-color: #40BD00;
}

.projcard-green::before {
    background-image: linear-gradient(-70deg, #40BD00, transparent 50%);
}

.projcard-green:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #40BD00, transparent 50%);
}

.projcard-yellow .projcard-bar {
    background-color: #F5AF41;
}

.projcard-yellow::before {
    background-image: linear-gradient(-70deg, #F5AF41, transparent 50%);
}

.projcard-yellow:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #F5AF41, transparent 50%);
}

.projcard-orange .projcard-bar {
    background-color: #FF5722;
}

.projcard-orange::before {
    background-image: linear-gradient(-70deg, #FF5722, transparent 50%);
}

.projcard-orange:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #FF5722, transparent 50%);
}

.projcard-brown .projcard-bar {
    background-color: #C49863;
}

.projcard-brown::before {
    background-image: linear-gradient(-70deg, #C49863, transparent 50%);
}

.projcard-brown:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #C49863, transparent 50%);
}

.projcard-grey .projcard-bar {
    background-color: #424242;
}

.projcard-grey::before {
    background-image: linear-gradient(-70deg, #424242, transparent 50%);
}

.projcard-grey:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, #424242, transparent 50%);
}

.projcard-customcolor .projcard-bar {
    background-color: var(--projcard-color);
}

.projcard-customcolor::before {
    background-image: linear-gradient(-70deg, var(--projcard-color), transparent 50%);
}

.projcard-customcolor:nth-child(2n)::before {
    background-image: linear-gradient(-250deg, var(--projcard-color), transparent 50%);
}

.projcard-description {
    z-index: 10;
    font-size: 14px;
    color: #424242;

    overflow: hidden;
    text-overflow: ellipsis;
}

.projcard-tagbox {
    position: absolute;
    bottom: 3%;
    font-size: 14px;
    cursor: default;
    user-select: none;
    pointer-events: none;
}

.projcard-tag {
    display: inline-block;
    background: #E0E0E0;
    color: #777;
    border-radius: 3px 0 0 3px;
    line-height: 26px;
    padding: 0 10px 0 23px;
    position: relative;
    margin-right: 20px;
    cursor: default;
    user-select: none;
    transition: color 0.2s;
}

.projcard-tag::before {
    content: '';
    position: absolute;
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    height: 6px;
    left: 10px;
    width: 6px;
    top: 10px;
}

.projcard-tag::after {
    content: '';
    position: absolute;
    border-bottom: 13px solid transparent;
    border-left: 10px solid #E0E0E0;
    border-top: 13px solid transparent;
    right: -10px;
    top: 0;
}

.black-btn {
    background-color: #000 !important;
    padding: 12px 29px 10px;
    font-size: 14px;
    border: none;
    height: 37px;
}

.features-card {
    height: 353px;

}

.features-button {
    margin-top: -24px;
}

.features_img_demo {
    height: 88px;
    width: 126px;
    max-width: 100%;
}

.features_img_business {
    height: 92px;
    width: 126px;
    max-width: 100%;
}

.features_img_partner {
    height: 100px;
    width: 169px;
    max-width: 100%;
}

.custom-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 1);
    transform: translateY(2px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.highlight2 {
    color: #f7345e;
    background: linear-gradient(-107deg, #3f3737 0%, red 100%);
    transform: skewX(-10deg);
    position: relative;
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.visionComponent {
    width: 249px;
    margin-bottom: 10px;
}

.VComponents {
    height: 455px;

}

.VComponents_button {
    margin-top: 10px;
}

.Components_img {
    width: 250px;
}

.Mycard {
    height: 410px;
    position: relative;
}

.Mycard .VComponents_button {
    position: absolute;
    bottom: 10px;
    left: 50px;
}

.down-arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Ensure the container has a height to center vertically */
}

.down-arrow {
    font-size: 45px;
    /* Adjust size as needed */
}

.down-varrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ensure the container has a height to center vertically */
}

.down-varrow {
    font-size: 45px;
    /* Adjust size as needed */
}

.Banner-img {
    max-width: 85%;
    height: auto;
}

.sm-text-center {
    align-items: center;
}



.Why-Choose-section {
    min-height: fit-content;
}

.large-title {
    font-size: 500%;
}

.hero-section {
    background-repeat: no-repeat;
    background-size: cover;
}

.NewLaunchLabel {
    font-size: 25px;
    font-family: poppins;
    background-color: #ee1d23;
    animation: blinker 3s linear infinite;
}

.two-color-background {
    height: 100vh;
    background: linear-gradient(to top, #000000 50%, #ffffff 50%);
}

.two-color-background .product-header-container {
    color: #000000;
    height: 50vh;
}

.two-color-background .product-header-container h1 {
    font-size: 4rem;
    font-weight: 500;
}

.two-color-background .provide-header-container {
    color: #ffffff;
    height: 50vh;
}

.two-color-background .provide-header-container h1 {
    font-size: 3rem;
    font-weight: 500;
}


.masking_content,
.fcps_content {
    background-color: #f8f8f8;
    color: #000000;
    width: 100%;
    height: min-content;
    border-radius: 5px;
    margin-left: -100px;
    margin-top: 20px;
    z-index: 1;
}

.fcps_content {
    /* margin-left: 0px; */
    margin-top: 20px;
    margin-right: -100px !important;
    /* z-index: 1; */
}

.img-full {
    max-width: 100%;
    height: -webkit-fill-available;
}

h3 {
    font-size: 30px;
}


.banner-content .banner-header p {
    color: black;
    font-size: 3.3rem;
    font-weight: 500;
    /* font-: italic; */
}

.banner-content .banner-header span {
    color: white;
    font-size: 2rem;
}

.banner-content .banner-body {
    font-size: 1rem;
}

.background-section {
    /* height: 100vh; */
    background-image: url('../img/digivision/ai-components.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.line::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 3.2px;
    bottom: 0;
    background: #fbbde7;
    left: 100px;
}

.image-icon p:first-of-type {
    margin-left: 80px;
    font-weight: bold;
    margin-top: -20px;
    font-size: 1rem;
}

.image-icon p {
    margin-left: 65px;
    margin-top: -10px;
}

.image-icon h3 {
    font-size: 2rem;
    font-weight: bold;
}

#scrollTopButton {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 0;
    width: 40px;
    height: 40px;
    right: 28px;
    bottom: 16px;
    cursor: pointer;
    border: none;
    transition: opacity .1s linear;
    z-index: 10000;
    box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
    background-color: #212121;
}

#scrollTopButton svg {
    fill: #ffffff;
    width: 36%;
}

.early_prevention_section {
    color: white;
    height: 100vh;
    background-image: url('../img/Doc_Ai/early_prevention1.jpg');
    background-size: cover;
    background-position: center;
}

.early_prevention_section::before {
    content: '';
    background-color: #ff000066;
    height: 100%;
    position: absolute;
    width: 100%;
}

.early_prevention_section h1 {
    position: relative;
    z-index: 1024;
    font-size: 3rem;
    text-shadow: 5px 5px black;
    text-align: center;
}

.early_prevention_section h2 {
    position: relative;
    z-index: 1024;
    text-shadow: 5px 5px black;
    font-size: 2rem;
}

#coming-soon-img {
    z-index: 1;
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 3px 18px 3px black;
}

#currency-switch1,
#currency-switch2 {
    width: 3rem;
    height: 22px;
}

#currency-switch1+label,
#currency-switch2+label {
    font-size: 1.2rem;
}

.skewed-row {
    position: relative;
    overflow: hidden;
}

.skewed-row::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: #ee1d23;
    transform: skewX(-10deg);
    transform-origin: top left;
    z-index: 1;
}

.col-md-6.skewed-col {
    position: relative;
    z-index: 0;
}

.bg-early-prevention {
    color: white;
    height: 100vh;
    background-image: url('../img/Doc_Ai/early_prevention.png');
    background-size: cover;
    background-position: center;
}



@media (max-width: 575.98px) {
    .mb-xs-5 {
        margin-bottom: 3rem !important;
    }

    .px-xs-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .d-xs-flex {
        display: flex;
    }

    /* .hero-section {
				height: 100vh;
			} */

    .masking_content {
        margin-left: 0px !important;
    }

    #FCPS-header h3::after {
        top: 5px !important;
    }

    /* .component_diagram {
				margin-top: 100%;
			} */
}

@media (min-width: 992px) {
    .hero-section {
        height: auto;
    }
}



.rborder-to-components {
    border-right: 1px solid red;
}

@media (min-width: 1000px) {

    #timeline .demo-card:nth-child(odd) .head::after,
    #timeline .demo-card:nth-child(even) .head::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
    }

    #timeline .demo-card:nth-child(odd) .head::before,
    #timeline .demo-card:nth-child(even) .head::before {
        position: absolute;
        content: "";
        width: 9px;
        height: 9px;
        background-color: #bdbdbd;
        border-radius: 9px;
        box-shadow: 0px 0px 2px 8px #f7f7f7;
    }
}

/* Some Cool Stuff */
.demo-card:nth-child(1) {
    order: 1;
}

.demo-card:nth-child(2) {
    order: 4;
}

.demo-card:nth-child(3) {
    order: 2;
}

.demo-card:nth-child(4) {
    order: 5;
}

.demo-card:nth-child(5) {
    order: 3;
}

.demo-card:nth-child(6) {
    order: 6;
}

/* Border Box */
* {
    box-sizing: border-box;
}

/* Fonts */
/* body {
		 font-family: Roboto;
	} */
#timeline {
    /* padding: 100px 0; */
    background: #f7f7f7;
    border-top: 1px solid rgba(191, 191, 191, 0.4);
    border-bottom: 1px solid rgba(191, 191, 191, 0.4);
}

#timeline p.leader {
    text-align: center;
    max-width: 90%;
    margin: auto;
    margin-bottom: 0px;
}

#timeline .demo-card-wrapper {
    position: relative;
    margin: auto;
}

@media (min-width: 1000px) {
    #timeline .demo-card-wrapper {
        display: flex;
        flex-flow: column wrap;
        width: 1170px;
        height: 1650px;
        margin: 0 auto;
    }
}

#timeline .demo-card-wrapper::after {
    z-index: 1;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    border-left: 1px solid rgba(191, 191, 191, 0.4);
}

@media (min-width: 1000px) {
    #timeline .demo-card-wrapper::after {
        border-left: 1px solid #bdbdbd;
    }
}

#timeline .demo-card {
    position: relative;
    display: block;
    /* margin: 10px auto 80px; */
    max-width: 98%;
    z-index: 2;
}

@media (min-width: 480px) {
    #timeline .demo-card {
        max-width: 60%;
        box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
    }
}

@media (min-width: 720px) {
    #timeline .demo-card {
        max-width: 40%;
    }
}

@media (min-width: 1000px) {
    #timeline .demo-card {
        max-width: 450px;
        height: 400px;
        /* margin: 90px;*/
        margin-top: 45px;
        margin-bottom: 45px;
    }

    #timeline .demo-card:nth-child(odd) {
        margin-right: 32px !important;
        margin-left: 42px !important;
    }

    #timeline .demo-card:nth-child(odd) .head::after {
        border-left-width: 15px;
        border-left: solid;
        left: 100%;
    }

    #timeline .demo-card:nth-child(odd) .head::before {
        left: 491.5px;
    }

    /*#timeline .demo-card:nth-child(even) {
			 margin-left: 45px;
		}*/
    #timeline .demo-card:nth-child(even) .head::after {
        border-right-width: 15px;
        border-right: solid;
        right: 100%;
    }

    #timeline .demo-card:nth-child(even) .head::before {
        right: 489.5px;
    }

    /*#timeline .demo-card:nth-child(2) {
			 margin-top: 180px;
		}*/
}

#timeline .demo-card .head {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 400;
}

#timeline .demo-card .head .number-box {
    display: inline;
    float: left;
    margin: 15px;
    padding: 10px;
    font-size: 35px;
    line-height: 35px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.17);
}

#timeline .demo-card .head h2 {
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: inherit;
    letter-spacing: 2px;
    margin: 0;
    padding-bottom: 6px;
    line-height: 1rem;
}

@media (min-width: 480px) {
    #timeline .demo-card .head h2 {
        font-size: 165%;
        line-height: 1.2rem;
    }
}

#timeline .demo-card .head h2 span {
    display: block;
    font-size: 0.6rem;
    margin: 0;
}

@media (min-width: 480px) {
    #timeline .demo-card .head h2 span {
        font-size: 0.8rem;
    }
}

#timeline .demo-card .body {
    background: #fff;
    border: 1px solid rgba(191, 191, 191, 0.4);
    border-top: 0;
    padding: 15px;
}

@media (min-width: 1000px) {
    #timeline .demo-card .body {
        height: 315px;
    }
}

#timeline .demo-card .body p {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 15px;
}

#timeline .demo-card .body img {
    display: block;
    width: 100%;
}

#timeline .demo-card .body a {
    color: #de0606;
}

#timeline .demo-card--step1 {
    background-color: #46b8e9;
}

#timeline .demo-card--step1 .head::after {
    border-color: #820000;
}

#timeline .demo-card--step2 {
    background-color: #3ee9d1;
}

#timeline .demo-card--step2 .head::after {
    border-color: #fb0000;
}

#timeline .demo-card--step3 {
    background-color: #3ee9d1;
}

#timeline .demo-card--step3 .head::after {
    border-color: #7e0000;
}

#timeline .demo-card--step4 {
    background-color: #4d92eb;
}

#timeline .demo-card--step4 .head::after {
    border-color: #f90000;
}

#timeline .demo-card--step5 {
    background-color: #3ee9d1;
}

#timeline .demo-card--step5 .head::after {
    border-color: #800000;
}

.bg-redGradient {
    background: linear-gradient(to right, #ff0000, #7b0000);
}



/* *{
		margin: 0;
		padding: 0;
		-webkit-box-sizing: border-box;
				box-sizing: border-box;
		} */
.mt-2 {
    margin-top: -1.5rem !important;
}

.carousel-indicators [data-bs-target] {
    margin-top: -30px !important;
}

.wrapper {
    width: 90%;
    margin: 0 auto;
    max-width: 80rem;
}

.wrapper .cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wrapper .col {
    width: calc(25% - 2rem);
    margin: 1rem;
    cursor: pointer;
}

.service-container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.front,
.back {
    background-size: cover;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-position: center;
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    min-height: 280px;
    height: auto;
    border-radius: 10px;
    color: #fff;
    font-size: 1.5rem;
}

.back {
    background: #cedce7;
    background: -webkit-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
    background: -o-linear-gradient(45deg, #cedce7 0%, #596a72 100%);
    background: linear-gradient(45deg, #cedce7 0%, #596a72 100%);
}

.front:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    opacity: .6;
    background-color: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
}

.container:hover .front,
.container:hover .back {
    -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.inner {
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
}

.service-container .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.service-container .front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.service-container:hover .back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.service-container:hover .front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.front .inner p {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.front .inner p:after {
    content: '';
    width: 4rem;
    height: 2px;
    position: absolute;
    background: #C6D4DF;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -.75rem;
}

.front .inner span {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat';
    font-weight: 300;
}

.bankingfeatures-card {
    height: 100% !important;
}

@media screen and (max-width: 64rem) {
    .col {
        width: calc(33.333333% - 2rem);
    }
}

@media screen and (max-width: 48rem) {
    .wrapper.col {
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 32rem) {
    .wrapper.col {
        width: 100%;
        margin: 0 0 2rem 0;
    }
}

.mb-md-5 {
    margin-bottom: 1rem !important;
}

.mt-md-5 {
    margin-top: 1rem !important;
}

.audit {
    text-align: center;
}


/* Hero section animation */

/* Initial state for animation */
.animate-slide-fade-top {
    opacity: 0;
    transform: translateY(-100px);
    animation: slideFadeInTop 2s forwards;
    animation-delay: 0.8s;
}

.animate-slide-fade-bottom {
    opacity: 0;
    transform: translateY(100px);
    animation: slideFadeInBottom 2s forwards;
    animation-delay: 0.8s
}

/* Keyframes for fade + slide from top */
@keyframes slideFadeInTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes for fade + slide from bottom */
@keyframes slideFadeInBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
-----------------------------------------------------------------------------------    
Hero section for Digital Transformation Page
------------------------------------------------------------------------------------ 
*/

.hero-section {
    background: radial-gradient(circle at top left, #ff4b5c 0, #2b2b36 55%, #060608 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section .container-fluid {
    padding: 20px 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 35px;
    width: 272px;
    height: 272px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    filter: blur(2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-badge span.icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #111;
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-title {
    font-weight: 700;
    line-height: 1.1;
}

.hero-punchline {
    font-size: 1.05rem;
    color: #f6e9ff;
    max-width: 34rem;
}

.hero-lead {
    font-size: 0.97rem;
    color: #e2ddff;
    max-width: 32rem;
}

.hero-cta-main {
    background: linear-gradient(135deg, #ffb347, #ff7b5c);
    border: none;
    color: #1b0c22;
    font-weight: 600;
    padding-inline: 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.hero-cta-main:hover {
    filter: brightness(1.03);
    transform: translateY(-1px);
}

.hero-cta-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.hero-cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-meta {
    font-size: 0.8rem;
    color: #cfc7ff;
}

.hero-benefit-icon {
    width: 89px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.16);
    margin-right: 0.75rem;
    color: #ffb347;
}

.hero-benefit-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.hero-benefit-text {
    font-size: 0.82rem;
    color: #d7d1ff;
}

.hero-benefit-card {
    border-radius: 14px;
    padding: 0.9rem 0.95rem;
    background: rgba(6, 6, 8, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

.hero-showcase-card {
    border-radius: 22px;
    background: radial-gradient(circle at top, rgba(255, 180, 71, 0.16), transparent 65%),
        linear-gradient(145deg, rgba(17, 17, 28, 0.96), rgba(7, 7, 16, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.6rem 1.6rem 1.2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.hero-showcase-card img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.hero-showcase-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c4fffb;
}

.hero-showcase-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.hero-showcase-metric {
    font-size: 0.8rem;
    color: #f8f4ff;
}

.hero-showcase-pill {
    font-size: 0.73rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px dashed rgba(255, 255, 255, 0.22);
    color: #ffe3b3;
}

.hero-fade {
    position: absolute;
    inset: auto 0 0 0;
    height: 120px;
    background: linear-gradient(to top, rgba(6, 6, 8, 0.95), transparent);
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-showcase-card {
        margin-top: 2rem;
    }
}

@media (min-width: 992px) {
    .hero-section {
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    .hero-title {
        font-size: 2.6rem;
    }
}

/* 
-----------------------------------------------------------------------------------    
OCR vs IDP on Digital Transformation Page
------------------------------------------------------------------------------------ 
*/

.ocr-idp {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 50%, #ffffff 100%);
    color: #1a0000;
    min-height: 100vh;
    padding: 40px 0px;
    overflow-x: hidden;
}

.ocr-idp .header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ocr-idp .badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #ff8787);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ocr-idp h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #dc2626, #ff8787);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ocr-idp .subtitle {
    font-size: 1.2rem;
    color: #7f1d1d;
    max-width: 700px;
    margin: 0 auto;
}

.ocr-idp .toggle-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    background: #ffffff;
    border: 2px solid #fca5a5;
    color: #dc2626;
    padding: 12px 28px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.category-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.4);
}

.comparison-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tech-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0 30px;
    border: 2px solid #fca5a5;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover::before {
    opacity: 1;
}

.ocr-card {
    color: #dc2626;
}

.ocr-card:hover {
    border-color: #dc2626;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
}

.idp-card {
    color: #ffffff;
    position: relative;
}

.idp-card::after {
    content: 'AI-POWERED';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc2626;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.idp-card:hover {
    border-color: #dc2626;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
}

.ocr-idp .card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding: 70px 0px 0px 0px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ocr-card .icon-circle {
    background: #dc2626;
    color: #ffffff;
}

.idp-card .icon-circle {
    background: #ffffff;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #640000 !important;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 0.9rem;
    color: #7f1d1d;
}

.feature-section {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #dc2626;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: currentColor;
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 10px;
    margin-bottom: 12px;
    background: #fef2f2;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #1a0000;
    border-left: 3px solid transparent;
}

.feature-item:hover {
    background: #fee2e2;
    transform: translateX(8px);
    border-left-color: #dc2626;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    /* transform: translate(-50%, -50%); */
    z-index: 10;
}

.vs-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5);
    }
}

@media (max-width: 968px) {
    .comparison-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vs-divider {
        position: relative;
        left: 14%;
        top: auto;
        transform: none;
        margin: -20px 0;
    }

    .ocr-idp h1 {
        font-size: 2rem;
    }

    .tech-card {
        padding: 30px;
    }
}

.hidden {
    display: none;
}

/* ------------------------------------------------------------------
FAQ section in main page
-------------------------------------------------------------------- */

#faqSection {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 50%, #ffffff 100%);
}

.faq-title {
    color: #c41e3a;
    font-weight: 700;
    font-size: 2.2rem;
}

#faqSection .badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #ff8787);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Accordion Container */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* Accordion Item Borders */
.accordion-item {
    border: 1px solid #c41e3a;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

/* Accordion Button - Collapsed State */
.accordion-button {
    background-color: #ffffff;
    color: #c41e3a;
    font-weight: 600;
    border: none;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(196, 30, 58, 0.25) !important;
    border-color: #c41e3a !important;
}

/* Accordion Button - Expanded State */
.accordion-button:not(.collapsed) {
    background-color: #c41e3a !important;
    color: #ffffff !important;
    box-shadow: none;
}

/* Custom Arrow Icon Color - Collapsed */
.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(22%) sepia(90%) saturate(2000%) hue-rotate(340deg);
}

/* Custom Arrow Icon Color - Expanded */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Accordion Body */
.accordion-body {
    background-color: #fff5f5;
    color: #333;
    padding: 20px;
    line-height: 1.7;
}

/* Hover Effect */
.accordion-button:hover {
    background-color: #f8d7da;
    color: #c41e3a;
}

.accordion-button:not(.collapsed):hover {
    background-color: #a01830;
    color: #ffffff;
}

/* ------------------------------------------------------------------
FAQ section in main page
-------------------------------------------------------------------- */

/* Contact Section */
.contact-section {
    background-color: #ffffff;
}

.contact-section .badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #ff8787);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-title {
    color: #c41e3a;
    font-weight: 700;
    font-size: 2.2rem;
}

.contact-description {
    color: #555;
    font-size: 1rem;
}

/* Contact Cards */
.contact-card {
    background-color: #fff5f5;
    border: 2px solid #c41e3a;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    background-color: #c41e3a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.contact-card:hover .contact-icon-wrapper,
.contact-card:hover .contact-label,
.contact-card:hover .contact-link {
    color: #ffffff;
}

/* Icon Wrapper */
.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: #c41e3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    background-color: #ffffff;
    color: #c41e3a;
}

/* Contact Label */
.contact-label {
    color: #c41e3a;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

/* Contact Link */
.contact-link {
    color: #333;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #c41e3a;
}

.contact-card:hover .contact-link:hover {
    color: #ffffff;
}

/* CTA Button */
.btn-contact {
    background-color: #c41e3a;
    color: #ffffff;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #c41e3a;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: #ffffff;
    color: #c41e3a;
    border-color: #c41e3a;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-card {
        padding: 25px 15px;
    }
}

/* ---------------------------------------------------------------------------
Agentic AI section in main page
--------------------------------------------------------------------------- */

/* Section Base */
.digivision-section {
    position: relative;
    padding: 60px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated Gradient Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%); */
    z-index: -2;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 15s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #c41e3a, #ff6b6b);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b6b, #ffa07a);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #c41e3a, #ff4757);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Container */
.dv-container {
    /* max-width: 1200px; */
    margin: 0 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Image Wrapper */
.image-wrapper {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.glass-frame {
    padding: 15px;
    background: #343a40;
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.image-card {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .image-card {
    transform: scale(1.02);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #c41e3a, #ff6b6b);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 16px;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Content Wrapper */
.content-wrapper {
    flex: 1;
    min-width: 350px;
}

/* Tagline */
.tagline {
    display: inline-block;
    background: rgba(196, 30, 58, 0.2);
    color: #ff6b6b;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

/* Title */
.dv-title {
    font-size: 42px;
    color: #000;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #c41e3a, #ff6b6b, #ffa07a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.dv-description {
    color: rgba(0, 0, 0, 0.85);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 500;
}

.dv-description:last-child {
    margin-bottom: 0;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.08);
    color: rgba(0, 0, 0, 0.9);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pill:hover {
    background: rgba(196, 30, 58, 0.2);
    border-color: rgba(196, 30, 58, 0.4);
}

.pill-dot {
    width: 8px;
    height: 8px;
    background: #c41e3a;
    border-radius: 50%;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-dv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c41e3a, #e63950);
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.btn-primary-dv:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
    color: #000;
}

.btn-primary-dv svg {
    transition: transform 0.3s ease;
}

.btn-primary-dv:hover svg {
    transform: translateX(5px);
}

.btn-secondary-dv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary-dv:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .dv-container {
        flex-direction: column;
        text-align: center;
    }

    .dv-title {
        font-size: 34px;
    }

    .feature-pills {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
    }

    .floating-badge {
        right: 20px;
    }
}

@media (max-width: 576px) {
    .digivision-section {
        padding: 60px 15px;
    }

    .dv-title {
        font-size: 28px;
    }

    .image-card {
        height: 350px;
    }

    .glass-card {
        padding: 20px;
    }

    .btn-primary-dv,
    .btn-secondary-dv {
        width: 100%;
        justify-content: center;
    }
}

/* -------------------------------------------------------------------------------
Stats section on main page
------------------------------------------------------------------------------- */
/* Impact Section */
.dv-impact-section {
    padding: 40px 0;
    background: radial-gradient(ellipse at top right, #ffe5e8 0%, #fff0f2 25%, #ffffff 60%);
    position: relative;
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}

/* Section Header */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dv-primary);
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(250, 59, 69, 0.08);
    border: 1px solid rgba(250, 59, 69, 0.2);
    animation: pulse-badge 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dv-primary);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dv-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Stat Cards */
.stat-card {
    position: relative;
    padding: 40px 0;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff 0%, #fff8f9 100%);
    border: 1.5px solid rgba(250, 59, 69, 0.15);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 10px 30px rgba(250, 59, 69, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
}



.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--dv-primary);
    box-shadow:
        0 25px 60px rgba(250, 59, 69, 0.25),
        0 0 0 1px rgba(250, 59, 69, 0.1);
}

/* Animated Glow */
.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 59, 69, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    animation: rotate-glow 10s linear infinite;
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

@keyframes rotate-glow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Stat Content */
.stat-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--dv-gradient-start) 0%, var(--dv-gradient-end) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(250, 59, 69, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dv-text-dark);
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stat-currency {
    font-size: 2.5rem;
    margin-right: 2px;
}

.counter {
    font-variant-numeric: tabular-nums;
}

.stat-unit {
    font-size: 1.8rem;
    color: var(--dv-primary);
    margin-left: 4px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--dv-text-dark);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--dv-text-muted);
    font-weight: 400;
}

/* Trust Badge */
.trust-badge {
    display: inline-block;
    padding: 5px 30px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(250, 59, 69, 0.95) 0%, rgba(224, 41, 53, 0.95) 100%);
    box-shadow:
        0 12px 40px rgba(250, 59, 69, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent,
            rgba(255, 255, 255, 0.2),
            transparent 30%);
    animation: rotate-shimmer 4s linear infinite;
}

@keyframes rotate-shimmer {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.trust-badge-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    font-weight: 600;
}

.trust-number {
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trust-text {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.trust-separator {
    opacity: 0.5;
    font-size: 1.2rem;
}

.trust-years {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .stat-number {
        font-size: 2.8rem;
    }

    .stat-currency {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .dv-impact-section {
        padding: 60px 0;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-currency {
        font-size: 1.6rem;
    }

    .stat-unit {
        font-size: 1.4rem;
    }

    .trust-badge {
        padding: 18px 32px;
    }

    .trust-badge-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .trust-separator {
        display: none;
    }
}

/* ------------------------------------------------------------
Workflow on main page
------------------------------------------------------------*/

.adp-idp-workflow {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
    min-height: 100vh;
    color: #fff;
    overflow-y: hidden;
    overflow-x:auto;
    position: relative;
}

.adp-idp-workflow::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.workflow-container {
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.flowchart-area {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 1300px;
    margin: 0 auto;
}

.workflow-box {
    background: rgba(30, 41, 59, 0.6);
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 15px;
    padding: 25px;
    position: absolute;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    width: 280px;
}

.workflow-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
    border-color: rgba(99, 102, 241, 0.8);
}

.workflow-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.workflow-box p,
.workflow-box ul {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.workflow-box ul {
    list-style: none;
    padding-left: 0;
}

.workflow-box ul li::before {
    content: "• ";
    color: #6366f1;
    font-weight: bold;
    margin-right: 8px;
}

.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.label-special {
    color: #f472b6;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.central-server {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    border: 2px solid rgba(139, 92, 246, 0.6);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.4);
    width: 320px;
}

.central-server::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

.arrow {
    position: absolute;
    z-index: 5;
}

.arrow svg {
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.arrow-horizontal svg {
    animation: none;
}

.arrow-text {
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-top: 5px;
    white-space: nowrap;
}

.decision-box {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.6);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transform: rotate(45deg);
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.decision-content {
    transform: rotate(-45deg);
    font-size: 1rem;
}

.decision-label {
    position: absolute;
    color: #60a5fa;
    font-weight: 600;
    font-size: 1rem;
}

.label-yes {
    top: 160px;
    left: -55px;
}

.label-no {
    bottom: 209px;
    right: -10px;
}

.applications-box {
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 15px;
    padding: 25px;
    position: absolute;
    width: 320px;
}

.applications-box h4 {
    color: #f472b6;
    font-style: italic;
    margin-bottom: 15px;
}

.applications-box ol {
    color: #a78bfa;
    padding-left: 20px;
}

.applications-box ol li {
    margin: 8px 0;
    font-weight: 500;
}

/* Left Column Positions */
.input-doc {
    top: 0;
    left: 0;
}

.arrow-1 {
    top: 130px;
    left: 290px;
}

.ocr-engine {
    top: 230px;
    left: 0;
}

.arrow-2 {
    top: 240px;
    left: 290px;
}

.post-processing {
    top: 650px;
    left: 0;
}

.arrow-3 {
    top: 875px;
    left: 290px;
}

.output-formatter-1 {
    top: 1010px;
    left: 0;
}

.arrow-4 {
    top: 1130px;
    left: 330px;
}

.final-output {
    top: 1090px;
    left: 500px;
}

/* Middle Column Positions */
.pre-processing {
    top: 100px;
    left: 360px;
}

.arrow-5 {
    top: 350px;
    left: 475px;
}

.idp-model {
    top: 410px;
    left: 360px;
}

.arrow-6 {
    top: 875px;
    left: 630px;
}

.decision {
    top: 810px;
    left: 410px;
}

.arrow-7 {
    top: 710px;
    left: 470px;
}

.arrow-11 {
    top: 950px;
    left: 115px;
}

.arrow-12 {
    top: 1030px;
    left: 720px;
}

.output-formatter-2 {
    top: 800px;
    left: 700px;
}

/* Right Column Positions */
.central-server {
    top: 0;
    left: 1050px;
}

.ml-layer {
    top: 240px;
    left: 1050px;
    width: 320px;
}

.arrow-8 {
    top: 410px;
    left: 1165px;
}

.applications {
    top: 460px;
    left: 1050px;
}

/* Horizontal Arrows from IDP Model */
.arrow-to-ml {
    top: 270px;
    left: 650px;
}

.arrow-to-apps {
    top: 520px;
    left: 650px;
}

@media (max-width: 1400px) {
    .flowchart-area {
        transform: scale(0.8);
        transform-origin: top left;
        height: 1440px;
    }
}

@media (max-width: 1200px) {
    .flowchart-area {
        height: 1170px;
    }
}

@media (max-width: 992px) {
    .flowchart-area {
        transform: scale(0.5);
        height: 900px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    .flowchart-area {
        transform: scale(0.4);
        height: 720px;
    }
}

@media (max-width: 576px) {
    .flowchart-area {
        /* transform: scale(0.3); */
        height: 420px;
    }
}