/* DigiSign Landing Page Styles */

/* Main Color Scheme - Based on Get Started Button */
:root {
    --primary-gradient-start: #00D4FF;
    --primary-gradient-end: #8A2BE2;
    --hover-gradient-start: #00BFFF;
    --hover-gradient-end: #9932CC;
    --primary-shadow: rgba(0, 212, 255, 0.3);
    --hover-shadow: rgba(0, 212, 255, 0.4);
    --text-glow: rgba(255, 255, 255, 0.6);
    --accent-color: #00D4FF;
    --accent-secondary: #8A2BE2;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/*Heeader dropdown styling*/
/* Dropdown container */
.dropdown-custom {
    position: relative;
}

/* Dropdown hidden by default */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0f0f0f;
    color: white;
    list-style: none;
    margin: 0;
    padding: 8px 0; /* reduced vertical padding */
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

    /* Dropdown links */
    .dropdown-menu-custom li a {
        display: block;
        padding: 6px 12px; /* reduced height */
        text-decoration: none;
        font-size: 0.8rem; /* smaller font size */
        color: #808080; /* white text */
        transition: background 0.3s ease;
    }

        .dropdown-menu-custom li a:hover {
            background: #f8f9fa; /* subtle hover effect for dark bg */
            color: #1e1e1e;
        }

/* Show dropdown on hover */
.dropdown-custom:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



/* Hero Section - EXACT Original Design Match */
.hero-section {
    background: #000 !important;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px 0;
}
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
       /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');*/
        opacity: 0.3;
    }
    .hero-section::after {
        content: '';
        position: absolute;
        right: 0; /* flush with right edge */
        bottom: 0; /* flush with bottom edge */
        width: 800px;
        height: 560px;
        background-image: url('/img/dottedcircle-banner.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom right;
        opacity: 0.5;
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding-left: 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 450;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #FFFFFF;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

    .hero-title .highlight {
        background: linear-gradient(135deg, #00D4FF 0%, #4F46E5 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
        margin-top: 0.3rem;
        font-weight: 600;
    }

        .hero-title .highlight:hover {
            background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 20px var(--text-glow);
            filter: brightness(1.15);
        }

.hero-subtitle {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-btn {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px var(--primary-shadow);
    letter-spacing: 0.02em;
}

    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px var(--hover-shadow);
        color: #FFFFFF;
        text-decoration: none;
        background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
    }

    .hero-btn i {
        font-size: 0.9rem;
        margin-left: 4px;
    }

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 80px 0 40px 0;
    }

        .hero-section::after {
            width: 350px;
            height: 350px;
            right: 30px;
            opacity: 0.4;
        }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        padding-left: 20px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 50vh;
        padding: 60px 0 30px 0;
    }

        .hero-section::after {
            width: 250px;
            height: 250px;
            right: 20px;
            opacity: 0.3;
        }

    .hero-title {
        font-size: 2rem;
    }
}




.navbar {
    background: transparent !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
    overflow: visible !important;
}

.navbar .container-fluid {
    overflow: visible !important;
}

.navbar-collapse {
    overflow: visible !important;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.navbar-brand .logo i {
    margin-right: 0.5rem;
    color: #667eea;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* Custom Navigation Links with Beautiful Effects */
.nav-link-custom {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 1.5rem !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    position: relative !important;
    cursor: pointer !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    background: transparent !important;
    overflow: hidden !important;
}

.nav-link-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 8px;
    opacity: 0;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link-custom:hover {
    color: white !important;
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 0 20px var(--text-glow);
    box-shadow: 0 8px 25px var(--primary-shadow);
}

.nav-link-custom:hover::before {
    left: 0;
    opacity: 0.15;
}

.nav-link-custom:hover::after {
    width: 80%;
}

.nav-link-custom:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Active state for current page */
.nav-link-custom.active {
    color: white !important;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%) !important;
    box-shadow: 0 4px 15px var(--primary-shadow) !important;
}

.nav-link-custom.active::after {
    width: 80%;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
}

/* Responsive navigation effects */
@media (max-width: 992px) {
    .nav-link-custom {
        margin: 0.5rem 1rem !important;
        padding: 0.75rem 1.5rem !important;
    }
    
    .nav-link-custom:hover {
        transform: translateX(5px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .nav-link-custom {
        margin: 0.25rem 0.5rem !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.95rem !important;
    }
    
    .nav-link-custom:hover {
        transform: translateX(3px) scale(1.01);
    }
}

/* AI Logo Positioning - Move further to the right */
.navbar-nav.ms-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* DigiCore Logo Positioning - Move forward towards Home button */
.digicore-brand {
    color: white !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
    text-decoration: none;
    margin-left: 8.8rem !important;
    transition: all 0.3s ease;
}

.digicore-logo {
    height: 60px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    display: block;
}

.digicore-logo:hover {
    transform: scale(1.05);
}

/* Responsive DigiCore logo positioning */
@media (max-width: 1200px) {
    .digicore-brand {
        margin-left: 5.5rem !important;
    }
}

@media (max-width: 992px) {
    .digicore-brand {
        margin-left: 4.2rem !important;
    }
}

@media (max-width: 768px) {
    .digicore-brand {
        margin-left: 2.7rem !important;
    }
    
    .digicore-logo {
        height: 40px;
    }
}

.ai-logo-container {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.ai-logo {
    height: 48px;
    transition: all 0.3s ease;
    display: block;
    cursor: pointer;
}

.ai-logo:hover {
    transform: scale(1.05);
}

/* Responsive AI logo positioning */
@media (max-width: 1400px) {
    .ai-logo-container {
        right: 3rem;
    }
}

@media (max-width: 1200px) {
    .ai-logo-container {
        right: 2rem;
    }
}

@media (max-width: 992px) {
    .ai-logo-container {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .ai-logo-container {
        position: relative;
        right: auto;
        transform: none;
        margin-left: 1rem;
        display: inline-block;
    }
    
    .ai-logo {
        height: 40px;
    }
}

.hero-content {
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content:hover {
    transform: translateY(-5px);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--hover-gradient-start) 40%, var(--primary-gradient-end) 80%, var(--hover-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title:hover .highlight {
    background: linear-gradient(135deg, var(--hover-gradient-start) 0%, #40E0D0 30%, var(--hover-gradient-end) 70%, #6A0DAD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(138, 43, 226, 0.7);
    filter: brightness(1.15);
}
.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-subtitle:hover {
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(110deg, #13D5E0 0%, #544BDB 100%);
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--primary-shadow);
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: -1;
        border-radius: 12px;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        color: white;
    }

        .btn-primary:hover::before {
            left: 0;
        }

    .btn-primary:active {
        transform: translateY(-3px) scale(1.02);
        transition: all 0.1s ease;
    }

    .btn-primary i {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: 0.7rem;
        font-size: 14px;
        transform: rotate(-45deg);
    }

    .btn-primary:hover i {
        transform: rotate(-45deg) translateX(4px);
        color: white;
    }

/* Responsive hover effects */
@media (max-width: 768px) {
    .btn-primary {
        padding: 12px 28px;
        font-size: 15px;
    }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

            .btn-primary:hover i {
                transform: rotate(-45deg) translateX(3px);
            }
}



/* Demo container */
.demo-container {
    text-align: center;
}

.demo-title {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 300;
}


.hero-graphic {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.element:nth-child(3) {
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Capabilities Section */
.capabilities-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.capability-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.capability-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.capability-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.capability-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.capability-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Section - Pixel Perfect with All Products */


.products-header {
    background: #0f0f0f;
    padding: 3rem 0 2rem;
    text-align: center;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}


.product-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.product-navs {
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.product-nav-item {
    min-width: 166px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    
    font-size: 0.9rem;
    font-weight: 500;
    background: #0f0f0f;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.product-nav-item:hover {
    transform: translateY(-2px);
    background-color:white;
    color:black;
}

/* Product-specific colors */
    .product-nav-item[data-product="digisign"].active {
        background: #d34842;
        color: white;
    }

    .product-nav-item[data-product="digivouch"].active {
        background: #62a3df;
        color: white;
    }

    .product-nav-item[data-product="digiverify"].active {
        background: #2f2f74;
        color: white;
    }

    .product-nav-item[data-product="digiintellect"].active {
        background: #004b7d;
        color: white;
    }

    .product-nav-item[data-product="digipay"].active {
        background: #00887a;
        color: white;
    }

    .product-nav-item[data-product="digicore-platform"].active {
        background: #59918c;
        color: white;
    }

    .product-nav-item[data-product="digicore-connect"].active {
        background: #6ead9d;
        color: white;
    }

/* Product content backgrounds */
.product-content {
    padding: 3rem 0 4rem 0;
    text-align: center;
    display: none;
}

.product-content.active {
    display: block;
}

#digisign-content {
    background: url('/img/ProductCovers/DigiSign Product Profile.jpg') no-repeat center center;
    background-size: cover;
}

#digivouch-content {
    background: url('/img/ProductCovers/vouch.jpg') no-repeat center center;
    background-size: cover;
}

#digiverify-content {
    background: url('/img/ProductCovers/Verify.jpg') no-repeat center center;
    background-size: cover;
}

#digiintellect-content {
    background: url('/img/ProductCovers/DigiIntellect AI-ML Enablement Platform .jpg') no-repeat center center;
    background-size: cover;
}

#digipay-content {
    background: url('/img/ProductCovers/DigiIntellect Trade Finance Product Portfolio.jpg') no-repeat center center;
    background-size: cover;
}

#digicore-platform-content {
    background: url('/img/ProductCovers/DigiIntelelct Retail Credit Scoring Product Profile.jpg') no-repeat center center;
    background-size: cover;
}

#digicore-connect-content {
    background: url('/img/ProductCovers/DigiIntelelct SME Credit Scoring Product Profile.jpg') no-repeat center center;
    background-size: cover;
}

.product-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.product-icon i {
    font-size: 4rem;
    color: white;
    margin: 0 0.5rem;
}

.digicore-connec-icon {
    background: #59918c;
}
.digisign-icon {
    background: #d34842;
}
.digiverify-icon {
    background: #2f2f74;
}
.digivouch-icon {
    background: #62a3df;
}
.digiintellect-icon {
    background: #004b7d;
}
.digipay-icon {
    background: #008577;
}
.digicore-platform-icon {
    background: #59918c;
}

.product-icon i:first-child {
    font-size: 5rem;
}

.product-icon i:last-child {
    font-size: 2rem;
    position: absolute;
    top: -10px;
    right: -10px;
    color: #28a745;
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.product-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-origin: content-box;
    padding: 10px;
}
/*.product-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 8px;*/
    /*    display: flex;*/
    /*    align-items: center;*/
    /*    justify-content: center;*/
    /*margin-bottom: 1rem;*/
    /*    color: white;*/
    /*    font-size: 2rem;*/
    /*background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 10px;
}*/

.product-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}
.product-card-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.download-section {
    text-align: center;
    margin-top: 3rem;
}

.download-btn {
    color: white;
    padding: 12px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.download-btn:hover {
    background: white;
    color: #dc3545;
    transform: translateY(-2px);
    text-decoration: none;
}

.download-btn i {
    font-size: 1.1rem;
}

/* Responsive design for products section */
@media (max-width: 992px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .product-nav {
        gap: 0.5rem;
    }
    
    .product-nav-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .product-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .product-name {
        font-size: 2.5rem;
    }
    
    .product-nav {
        flex-direction: column;
        align-items: center;
    }
}

/* Technology Advantage Section - Pixel Perfect */
.tech-advantage-section {
    padding: 5rem 0;
    background: white;
    background: var(--bg-light);
}
.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-left {
    padding-right: 2rem;
}

.tech-title {
    font-size: 3.0rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.highlight-blue {
    background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tech-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tech-btn {
    background: linear-gradient(90deg, #13D5E0 0%, #544BDB 100%);
    
    color: white;
    padding: 12px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tech-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--primary-shadow);
    text-decoration: none;
    color: white;
}

.tech-btn i {
    font-size: 0.9rem;
    transform: rotate(45deg);
}

.tech-right {
    display: flex;
    align-items: start;
}

.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
}

.tech-card {
    background: white;
    border-radius: 15px;
    padding: 0.9rem;
    text-align: start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tech-card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: #e0e0e0;
    line-height: 1;
}

.tech-card-icon {
    width: 50px;
    height: 50px;
    background: #eeedfc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: #5548dc;
    font-size: 1.8rem;
}

.tech-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #333;
}

.tech-card-description {
    color: #666;
    line-height: 1.3;
    font-size: 0.90rem;
}

/* Responsive design for technology section */
@media (max-width: 992px) {
    .tech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-left {
        padding-right: 0;
        text-align: center;
    }
    
    .tech-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .tech-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-description {
        font-size: 1rem;
    }
}

/* OCR and NLP Capabilities Section - Pixel Perfect */
.ocr-section {
    padding: 5rem 0;
    background: #fbf9fe;
}

.ocr-title-main {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.ocr-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.ocr-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ocr-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.ocr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.ocr-card-number {
    width: 60px;
    height: 60px;
    background: #f0e9fb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #6721da;
    font-size: 2rem;
    font-weight: 700;
}

.ocr-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.ocr-card-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.ocr-card-accent {
    width: 70px;
    height: 6px;
    background: #f0e9fb;
    margin: 0 auto;
    border-radius: 0px;
    transform: skewX(-50deg);
}

/* Responsive design for OCR grid */
@media (max-width: 1200px) {
    .ocr-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .ocr-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ocr-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ocr-title-main {
        font-size: 2rem;
    }
    
    .ocr-subtitle {
        font-size: 1rem;
    }
}

/* Compliance-by-Design Approach Section - Pixel Perfect */
.compliance-design-section {
    padding: 5rem 0;
    background: white;
}

.compliance-design-content {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 0 auto;
}

.compliance-design-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compliance-img {
    max-width: 92%;
    height: auto;
    border-radius: 15px;
    box-shadow: -18px -18px 0 #eff5ff; /* ← sharp shadow at -X, +Y */
}


.compliance-design-text {
    padding-left: 2rem;
}

.compliance-design-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.2;
}

.compliance-design-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.compliance-design-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.compliance-design-item {
    display: flex;
    align-items: flex-start;
    border: 1px solid #f3f3f3;
    border-radius: 15px;
    height:95px;
    padding: 15px;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.compliance-design-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(110deg, #13D5E0 0%, #544BDB 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--primary-shadow);
}
.compliance-design-inner-content{
    display:flex;
    flex-direction:column;
}
.compliance-design-content {
    flex: 1;
    padding-top: 0.25rem;
}

.compliance-design-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.3;
}

.compliance-design-item-description {
    color: #666;
    font-size: 1rem;
}

/* Responsive design for compliance section */
@media (max-width: 992px) {
    .compliance-design-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .compliance-design-text {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .compliance-design-content {
        padding: 0 1rem;
    }
    
    .compliance-design-title {
        font-size: 2rem;
    }
    
    .compliance-design-description {
        font-size: 1rem;
    }
}

/* Why Choose Section - Pixel Perfect */
.why-choose-section {
    padding: 5rem 0;
    background: #000000;
    color: white;
}

.why-choose-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.why-choose-description {
    text-align: center;
    font-size: 1.1rem;
    color: #797979;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background: #171717;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(110deg, rgb(19, 213, 224) 0%, rgb(84, 75, 219) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.why-choose-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.why-choose-card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.why-choose-accent {
    width: 70px;
    height: 6px;
    background: linear-gradient(110deg, rgb(19, 213, 224) 0%, rgb(84, 75, 219) 100%);
    margin: 0 auto;
    transform: skewX(-20deg);
}

/* Responsive design for why choose section */
@media (max-width: 992px) {
    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .why-choose-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-choose-title {
        font-size: 2rem;
    }
    
    .why-choose-description {
        font-size: 1rem;
    }
}

/* Why Best Section */
.why-best-section {
    padding: 5rem 0;
    background: white;
}

.best-feature {
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.best-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.best-feature p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Client Section */

.section-title-main {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}



.clients-section {
    padding: 5rem 0;
}

.clients-second-section {
    padding: 5rem 0;
    background: #fff;
}

.clients-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
}

.clients-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 0 2rem;
}

.client-logo {
    flex: 0 0 calc(25% - 1.5rem);
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 120px;
}

    .client-logo img {
        max-width: 100%;
        max-height: 80px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(70%);
        transition: filter 0.3s ease, transform 0.3s ease;
    }

    .client-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

        .client-logo:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .carousel-dot.active {
        background: #007bff;
        transform: scale(1.2);
    }

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

    .carousel-controls:hover {
        background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

@media (max-width: 768px) {
    .client-logo {
        flex: 0 0 calc(50% - 1rem);
    }

    .section-title-main {
        font-size: 2rem;
    }

    .carousel-controls {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .client-logo {
        flex: 0 0 calc(100% - 1rem);
    }
}

/* Partners Section */
.partners-section {
    padding: 5rem 0;
}
.partners-second-section {
    padding: 0rem 0rem 5rem 0rem;
    background: #fff;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.partners-second-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* slightly wider min size */
    gap: 2rem;
    margin-top: 3rem;
    align-items: center; /* centers logos vertically in each grid cell */
    justify-items: center; /* centers logos horizontally */
}

.partner-second-logo {
    max-width: 120px; /* keeps logos consistent size */
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

    .partner-second-logo:hover {
        transform: scale(1.05);
        filter: grayscale(0%);
    }


.partner-logo {
    background: white;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    width: 60%;
    height: auto;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card img {
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}



/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-brand-logos {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-digicore-logo {
    height: 40px;
    margin-right: 1rem;
}

.footer-ai-logo {
    height: 30px;
    transition: all 0.3s ease;
}

.footer-ai-logo:hover {
    transform: scale(1.05);
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-brand .logo i {
    margin-right: 0.5rem;
    color: #667eea;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #667eea;
    transform: translateY(-2px);
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: #667eea;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .product-tabs {
        justify-content: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .capability-card,
    .product-card,
    .why-card {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
}

/* AI Integration Section - Pixel Perfect */
.ai-integration-section {
    padding: 5rem 0;
    background: white;
}

.section-title-main {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1A1A1A;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    line-height: 1.2;
}


.section-title-main:hover {
    transform: translateY(-3px);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .section-title-main:hover .highlight-blue {
        background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
        filter: brightness(1.15);
    }

.highlight-blue {
    background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-blue:hover {
    background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--text-glow);
    filter: brightness(1.15);
}

/* General highlight class for all highlighted text */
.highlight {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight:hover {
    background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--text-glow);
    filter: brightness(1.15);
}
.section-subtitle-main {
    text-align: center;
    color: #747474;
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom:70px;
    margin-top:10px;
}


.section-subtitle-main:hover {
    transform: translateY(-2px);
    color: #555;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-subtitle-main::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

.section-subtitle-main:hover::after {
    width: 60px;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px; /* space between rows */
    max-width: 1200px;
    margin: 0 auto;
}

.ai-card {
    background: white;
    border-radius: 16px;
    padding:1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.08), 0 20px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 240, 240, 0.8);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-width: 380px;
    min-height:300px;
    margin: 0 auto;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.02) 0%, 
        rgba(138, 43, 226, 0.02) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.ai-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 8px 15px rgba(0, 0, 0, 0.1),
        0 20px 30px rgba(0, 0, 0, 0.12),
        0 40px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
}

.ai-card:hover::before {
    opacity: 1;
}

.ai-card:hover .ai-icon-wrapper {
    transform: translateY(-8px) scale(1.1);
}

.ai-card:hover .ai-icon-number {
    background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
    box-shadow: 
        0 8px 20px rgba(0, 212, 255, 0.3),
        0 15px 35px rgba(138, 43, 226, 0.2);
    transform: scale(1.15) rotate(5deg);
}

.ai-card:hover .ai-title {
    color: var(--accent-color);
    transform: translateY(-3px);
    text-shadow: 0 2px 8px rgba(0, 212, 255, 0.2);
}

.ai-card:hover .ai-description {
    color: #555;
    transform: translateY(-2px);
}

.ai-card:hover .ai-card-line {
    width: 60px;
    background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.ai-icon-wrapper {
    margin-bottom: 0.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.ai-icon-number {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:0 4px 12px rgba(0, 212, 255, 0.2), 0 8px 20px rgba(138, 43, 226, 0.15);
    position: relative;
    padding:8px;
    overflow: hidden;
}

.ai-icon-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    padding:4px;
    width: 70%;
    height: 70%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
}

.ai-card:hover .ai-icon-number::before {
    left: 100%;
}

.ai-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}



.ai-card-line {
    width: 60px;
    height: 6px;
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    transform: skewX(-25deg);
}

/* Enhanced focus states for accessibility */
.ai-card:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Active state for better interaction feedback */
.ai-card:active {
    transform: translateY(-6px) scale(1.01);
    transition: all 0.1s ease;
}

/* Responsive design for AI grid */
@media (max-width: 992px) {
    .ai-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .ai-card {
        padding: 0.7rem 1.5rem;
        max-width: 300px;
    }
    
    .ai-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 576px) {
    .ai-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title-main {
        font-size: 2rem;
    }
    
    .section-subtitle-main {
        font-size: 1rem;
    }
    
    .ai-card {
        padding: 0.6rem 1.2rem;
        max-width: 280px;
    }
    
    .ai-card:hover {
        transform: translateY(-6px) scale(1.005);
    }
    
    .ai-icon-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Who We Are Section - Recreated from Image Design */
.who-we-are-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.who-content {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
    width: 100%;
}

.who-text {
    max-width: 600px;
    margin-bottom: 2rem;
}

.who-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}

    .who-title .highlight-blue {
        background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
    }
    .who-title .highlight-blue {
        background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.who-description {
    font-size: 1rem;
    color: #232934;
    line-height: 1.4;
    font-weight: 380;
    max-width: 590px;
}

.who-contact-btn {
    background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
    color: white;
    padding: 8px 17px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: absolute;
    top: 0;
    right: 2rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

.who-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    text-decoration: none;
    color: white;
}

.who-contact-btn i {
    font-size: 1rem;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.who-contact-btn:hover i {
    transform: rotate(45deg) scale(1.1);
}

.who-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 4rem;
    max-width: 1600px;
    width: 100%;
}

.who-card {
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2.5rem 3.8rem;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card-specific backgrounds to match reference image */
    .who-card:nth-child(1) {
        background: #f6f5fd;
        border-bottom: 2px solid #c0bbf2;
    }

    .who-card:nth-child(2) {
        background: #f2fffd;
        border-bottom: 2px solid #a0e3db;
    }

    .who-card:nth-child(3) {
        background: #f6f9ff;
        border-bottom: 2px solid #c2dbff;
    }

.who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.who-card:nth-child(1):hover {
    box-shadow: 0 12px 40px rgba(118, 75, 162, 0.15);
}

.who-card:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(0, 188, 212, 0.15);
}

.who-card:nth-child(3):hover {
    box-shadow: 0 12px 40px rgba(79, 195, 247, 0.15);
}

.who-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    margin-left: -40px;
}

    .who-card-title.purple {
        color: #5548dc;
    }

    .who-card-title.teal {
        color: #00b39e;
    }

    .who-card-title.blue {
        color: #5c9eff;
    }

.who-card-description {
    color: #242121;
    line-height: 1.4;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    margin-left: -40px;
    margin-top: -9px;
}

/* Special case for purple card - remove flex-grow so accent line stays close to text */
.who-card:nth-child(1) .who-card-description {
    flex-grow: 0;
    margin-bottom: 1.5rem;
}

.who-card-list {
    list-style: none;
    padding: 0;
}

    .who-card-list li {
        color: #747474;
        line-height: 1.6;
        font-size: 1rem;
        margin-left: -40px;
        position: relative;
        padding-left: 1.5rem;
        font-weight: 400;
        margin-bottom: 1.1rem;
    }

.who-card-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

    .who-card-list.teal li::before {
        color: #00b39e;
    }

.who-card-list.blue li::before {
    color: #4FC3F7;
}


.feature-name {
    font-weight: 700;
    color: #2d3748;
}
.who-product-name {
    color: #00b39e;
    font-weight:600;
}

.who-card-list.teal {
    color: #47a366;
}

.who-card-list.blue .feature-name {
    color: #4FC3F7;
}

.who-card-accent {
    width: 70px;
    flex-shrink: 0;
    transform: skewX(-50deg);
    height: 6px;
}

.who-card:nth-child(1) .who-card-accent.purple {
    background: #5548dc;
    flex-shrink: 0;
}

.who-card-accent.teal {
    background: #47a366;
}

.who-card-accent.blue {
    background: linear-gradient(135deg, #4FC3F7 0%, #29B6F6 100%);
}

/* Responsive design for who we are section */
@media (max-width: 1200px) {
    .who-content {
        max-width: 1200px;
        padding: 0 1.5rem;
    }
    
    .who-cards {
        gap: 2rem;
    }
    
    .who-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .who-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 3rem auto 0;
    }
    
    .who-contact-btn {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 2rem;
        align-self: flex-start;
    }
    
    .who-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .who-description {
        text-align: center;
        margin: 0 auto 2rem;
    }
    
    .who-text {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .who-content {
        padding: 0 1rem;
    }
    
    .who-title {
        font-size: 2.5rem;
    }
    
    .who-description {
        font-size: 1.1rem;
    }
    
    .who-cards {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .who-card {
        padding: 2rem 1.5rem;
    }
    
    .who-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .who-title {
        font-size: 2rem;
    }
    
    .who-description {
        font-size: 1rem;
    }
    
    .who-cards {
        gap: 1rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-detail {
    color: var(--text-light);
    font-size: 0.9rem;
}
.footer-text-content{
    font-size:0.8rem;
    margin-bottom:1.5rem !important;
}
.social-icons {
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin-top: 1rem;
}
    .social-icons p {
        font-size: 0.7rem;
        color: #919191;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0.2rem 0 0 0;
    }
    .social-icons a {
        width: 25px;
        height: 25px;
        background: linear-gradient(110deg, rgb(19, 213, 224) 0%, rgb(84, 75, 219) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 0.7rem;
    }
.gradient-icon {
    background: linear-gradient(110deg, rgb(19, 213, 224) 0%, rgb(85, 73, 219) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
        .social-icons a:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            color: #3099df;
        }

.contact-form {
    flex: 1;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #eee;
    padding: 12px 15px;
    margin-bottom: 1rem;
}

    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    }

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
}
.footer-section-one{
    width:45%;
}
.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    margin-right: 2rem;
}

    .footer-section h5 {
        margin-bottom: 1rem;
        color: white;
    }

    .footer-section p
     {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        margin-bottom: 0.5rem;
        display: block;
    }
.Quick-Links a {
    text-decoration: none;
    color: #919191;
    font-size:0.85rem;
    margin-bottom:0.25rem;
}
    .footer-section a:hover {
        color: var(--accent-color);
    }

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display:flex;
    align-items:center;
    justify-content:space-between
}
.footer-bottom-text {
    font-size:0.9rem;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .ai-integration-section {
        padding: 60px 0;
    }

    .tech-content,
    .compliance-content,
    .who-content,
    .vmv-content,
    .contact-content {
        flex-direction: column;
    }

    .product-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .product-nav-item {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .ai-card,
    .tech-card,
    .ocr-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .partners-grid {
        flex-direction: column;
        align-items: center;
    }

    .partner-logo {
        margin-bottom: 1rem;
    }
}

/* Vision Mission Values Section - EXACT Figma Match */

.vmv-section {
    background: #f6f9ff;
    padding: 100px 0;
}
.VissionMission {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.VissionMission-content {
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
}

.vm-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
}

.vmv-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vmv-Values {
    width: 100%;
    background-color: white;
    display: flex;
    gap: 30px;
    margin-top: 20px;
    border-radius: 20px;
}

.vmv-image {
    padding: 40px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
    font-size: 1.1rem;
    line-height: 1;
    color: #333;
}

    .values-list li {
        padding: 16px 0;
        border-bottom: 1px solid #e0e0e0;
    }

        .values-list li:last-child {
            border-bottom: none;
        }

        .values-list li strong {
            display: block;
            font-size: 1.15rem;
        }


.vmv-description {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}



@media (max-width: 768px) {
    .vmv-content {
        flex-direction: column !important;
        gap: 40px;
    }

    .vmv-image,
    .vmv-text {
        max-width: 100%;
    }
}
.contact-section {
    background: #fff;
    padding: 3rem 1rem; /* Add horizontal padding for smaller screens */
}

.contact-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

    /* Inputs and button styling */
    .contact-form input,
    .contact-form button {
        height: 55px;
        padding: 0 20px;
        font-size: 1rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        flex: 1 1 220px;
        min-width: 200px;
        background-color: #f8f9fa;
        outline: none;
    }

        /* Placeholder styles */
        .contact-form input::placeholder,
        input.fa::placeholder {
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #888;
            font-size: 0.8rem;
        }

    /* Button styling */
    .contact-form button {
        background: linear-gradient(90deg, #13D5E0 0%, #544BDB 100%);
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
        border: none;
    }

/*    states styling for form button */
/* Loading spinner */
.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success pulse animation */
.btn-success-pulse {
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Error shake animation */
.btn-error-shake {
    animation: errorShake 0.5s ease-in-out;
}

@keyframes errorShake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-4px);
    }

    75% {
        transform: translateX(4px);
    }
}

/* Icon bounce-in animation */
.btn-icon {
    display: inline-block;
    animation: iconBounceIn 0.5s ease-out;
    margin-right: 6px;
}

@keyframes iconBounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* State color transitions */
.btn-loading {
    background-color: #3498db !important;
    transition: background-color 0.3s ease;
}

.btn-success {
    background-color: #27ae60 !important;
    transition: background-color 0.3s ease;
}

.btn-error {
    background-color: #e74c3c !important;
    transition: background-color 0.3s ease;
}
/* === Responsive Behavior === */
@media (max-width: 768px) {
    .contact-form {
        flex-direction: column;
        align-items: stretch;
    }

        .contact-form input,
        .contact-form button {
            flex: none;
            width: 100%;
        }
}


:root {
    --hero-bg: #1A1A1A;
    --primary-blue: #4A90E2;
    --primary-cyan: #00D4FF;
    --primary-green: #4CAF50;
    --red-section: #E53E3E;
    --text-white: #FFFFFF;
    --text-gray: #718096;
    --text-dark: #2D3748;
    --bg-light: #FFFFFF;
    --bg-gray: #F7FAFC;
    --card-shadow: rgba(0, 0, 0, 0.1);
    --primary-gradient: linear-gradient(135deg, #00D4FF 0%, #4A90E2 100%);
    --text-gradient: linear-gradient(135deg, #00D4FF 0%, #4CAF50 100%);
    /* Main Color Scheme - Based on Get Started Button */
    --primary-gradient-start: #00D4FF;
    --primary-gradient-end: #8A2BE2;
    --hover-gradient-start: #00BFFF;
    --hover-gradient-end: #9932CC;
    --primary-shadow: rgba(0, 212, 255, 0.3);
    --hover-shadow: rgba(0, 212, 255, 0.4);
    --text-glow: rgba(255, 255, 255, 0.6);
    --accent-color: #00D4FF;
    --accent-secondary: #8A2BE2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 0;
}

/* Navbar */
.navbar {
    background: #1a1a1a !important;
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.navbar-brand {
    color: white !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 0 !important;
    transition: color 0.3s ease !important;
}

    .navbar-nav .nav-link:hover {
        color: #667eea !important;
    }


/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2D3748;
    line-height: 1.2;
}

    .section-title .highlight {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* AI Integration Section - EXACT Figma Match */
.ai-integration-section {
    background: #FFFFFF;
    padding: 100px 0;
}



    .ai-card:hover {
        transform: translateY(-5px);
    }

.ai-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ai-icon-wrapper img {
        width: 80%;
        height: 80%;
        object-fit: cover;
    }

.ai-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
    line-height: 1.3;
    font-weight: bold;
}

.ai-description {
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    color: #000000;
    line-height: 1.3;
    font-size: 1rem;
    font-weight: 400;
    margin:0px 10px 1rem 10px;
}

/* Section Title Styles - Exact Figma */




.section-title-main .highlight-blue {
    background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-main .highlight-blue {
    background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title-main .highlight-blue:hover {
    background: linear-gradient(135deg, var(--hover-gradient-start) 0%, var(--hover-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px var(--text-glow);
    filter: brightness(1.15);
}

/*map form section */
.custom-contact-card {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    max-width: 390px;
}

.custom-contact-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.custom-contact-item {
    display: flex;
    align-items: center; /* aligns icon at top */
    gap: 12px;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

    .custom-contact-item i {
        font-size: 1rem;
        color: #5549db;
        margin-top: 3px; /* pushes icon slightly down */
    }

.custom-contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* ensures left alignment */
}

.custom-contact-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.custom-contact-value {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
}

/* Products Section - EXACT Figma Match */
.products-section {
    margin-top: 100px;
    background: white;
    color: white;
    padding: 0;
}
    .products-section .section-title-main {
        color: #FFFFFF;
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

        .products-section .section-title-main .highlight-white {
            color: #FFFFFF;
        }

    .products-section .section-subtitle-main {
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

.product-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}



    .product-nav-item.active,
    .product-nav-item:hover {
        background: #FFFFFF;
        color: #E53E3E;
        text-decoration: none;
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-feature-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    color: #1A1A1A;
    transition: all 0.3s ease;
    border: none;
}

    .product-feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.product-feature-icon {
    width: 70px;
    height: 70px;
    background: #E53E3E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: #FFFFFF;
    font-size: 1.8rem;
}

.product-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1A1A1A;
    line-height: 1.3;
}

.product-feature-description {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.btn-red {
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 14px 32px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #E53E3E;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
}

    .btn-red:hover {
        background: transparent;
        color: #FFFFFF;
        text-decoration: none;
    }

/* Technology Advantage Section */


.tech-content {
    align-items:center;
    gap: 3rem;
}

.tech-text {
    flex: 1;
}


.tech-title .highlight {
    background: var(--accent-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}


.tech-card:hover {
    transform: translateY(-5px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.tech-title-small {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.tech-description-small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* OCR Section */


.ocr-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .ocr-card:hover {
        transform: translateY(-5px);
    }

.ocr-icon {
    width: 60px;
    height: 60px;
    background: var(--purple-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.ocr-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.ocr-description {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Compliance Section - EXACT Figma Match */
.compliance-section {
    background: #FFFFFF;
    padding: 100px 0;
}

.compliance-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.compliance-image {
    flex: 1;
    max-width: 500px;
}

    .compliance-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.compliance-text {
    flex: 1;
    max-width: 550px;
}

.compliance-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1A1A1A;
    line-height: 1.2;
}

    .compliance-title .highlight-blue {
        background: linear-gradient(135deg, #48E8E6 0%, #7384E0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.compliance-description {
    color: #666666;
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .compliance-list li {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
        font-size: 1.1rem;
        color: #1A1A1A;
        font-weight: 500;
    }

        .compliance-list li i {
            color: #00D4FF;
            margin-right: 16px;
            font-size: 1.2rem;
            width: 20px;
        }

@media (max-width: 768px) {
    .compliance-content {
        flex-direction: column;
        gap: 40px;
        /* Who We Are Section - EXACT Figma Match */
        .who-we-are-section

{
    background: #F8F9FA;
    padding: 100px 0;
}
/* Who We Are Section - EXACT Figma Match */
.who-we-are-section {
    .who-text

{
    flex: 1;
    max-width: 600px;
}

.who-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1A1A1A;
    line-height: 1.2;
}

.who-description {
    color: #666666;
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.who-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 1;
}

.who-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

    .who-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

.who-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D4FF 0%, #4A90E2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: #FFFFFF;
    font-size: 1.5rem;
}

.who-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1A1A1A;
}



@media (max-width: 768px) {
    .who-content {
        flex-direction: column;
        gap: 40px;
    }

    .who-cards {
        grid-template-columns: 1fr;
    }
}



.who-cards {
    grid-template-columns: 1fr;
}






.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}


@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .partners-grid {
    }
}
