  :root {
            --Real-primary: #1a2332;
            --Real-accent: #c49b63;
            --Real-accent-light: #e5d4b8;
            --Real-text-primary: #1a2332;
            --Real-text-secondary: #5a6c7d;
            --Real-bg-light: #f8f6f3;
            --Real-white: #ffffff;
            --Real-success: #2d7a4f;
            --Real-border: #e0dcd5;
        }
     /* Hero Section */
        .Real-hero {
            background: linear-gradient(135deg, var(--Real-primary) 0%, #2a3f5f 100%);
            color: var(--Real-white);
            padding: 6rem 2rem 8rem;
            position: relative;
            overflow: hidden;
        }
        
        .Real-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(196, 155, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(196, 155, 99, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .Real-hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .Real-hero h1 {
             
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
            max-width: 900px;
            animation: fadeInUp 0.8s ease-out;
        }
        
        .Real-hero h1 .Real-highlight {
            color: var(--Real-accent);
            display: block;
        }
        
        .Real-hero-subtitle {
            font-size: 1.35rem;
            max-width: 750px;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.8;
            font-weight: 300;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }
        
        .Real-hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 900px; 
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }
        
        .Real-stat-item {
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .Real-stat-number {
             
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--Real-accent);
            display: block;
            margin-bottom: 0.3rem;
        }
        
        .Real-stat-label {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .Real-cta-group {
            margin-top: 2.5rem;
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }
        
        .Real-btn-primary {
            background: var(--Real-accent);
            color: var(--Real-primary);
            padding: 1.2rem 3rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            letter-spacing: 0.3px;
        }
        
        .Real-btn-primary:hover {
            background: var(--Real-accent-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(196, 155, 99, 0.4);
        }
        
        .Real-btn-secondary {
            background: transparent;
            color: var(--Real-white);
            padding: 1.2rem 3rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .Real-btn-secondary:hover {
            border-color: var(--Real-accent);
            background: rgba(196, 155, 99, 0.1);
            transform: translateY(-3px);
        }
        
        /* Problem Section */
        .Real-problem-section {
            padding: 6rem 2rem;
            background: var(--Real-bg-light);
            position: relative;
        }
        
        
        
        .Real-section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .Real-section-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--Real-accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
        }
        
        .Real-section-title {
             
            font-size: 3rem;
            font-weight: 700;
            color: var(--Real-primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -1px;
        }
        
        .Real-section-description {
            font-size: 1.2rem;
            color: var(--Real-text-secondary);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .Real-problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .Real-problem-card {
            background: var(--Real-white);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid var(--Real-border);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .Real-problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--Real-accent);
            border-radius: 4px 0 0 4px;
            transition: height 0.4s ease;
        }
        
        .Real-problem-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(26, 35, 50, 0.1);
        }
        
        .Real-problem-card:hover::before {
            height: 100%;
        }
        
        .Real-problem-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: block;
        }
        
        .Real-problem-card h3 {
             
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--Real-primary);
        }
        
        .Real-problem-card p {
            color: var(--Real-text-secondary);
            line-height: 1.7;
        }
        
        /* Solution Section */
        .Real-solution-section {
            padding: 6rem 2rem;
            background: var(--Real-white);
        }
        
        .Real-solution-intro {
            max-width: 100%;
            margin:0;
            text-align: left;
            padding: 3rem 0px;
            background: linear-gradient(135deg, var(--Real-primary) 0%, #2a3f5f 100%);
            color: var(--Real-white);
            border-radius:0px;
            position: relative;
            overflow: hidden;
        }
        
        .Real-solution-intro::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(196, 155, 99, 0.15) 0%, transparent 70%);
        }
        
        .Real-solution-intro h2 {
             
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .Real-solution-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        /* Features Section */
        .Real-features-section {
            padding: 6rem 2rem;
            background: var(--Real-bg-light);
        }
        
        .Real-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }
        
        .Real-feature-card {
            background: var(--Real-white);
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--Real-border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .Real-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(196, 155, 99, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(40%, -40%);
        }
        
        .Real-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(26, 35, 50, 0.12);
            border-color: var(--Real-accent-light);
        }
        
        .Real-feature-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .Real-feature-icon {
            font-size: 3rem;
            
        }
        
        .Real-feature-card h3 {
             
            font-size: 1.8rem;
            color: var(--Real-primary);
            margin: 0;
        }
        
        .Real-feature-list {
            list-style: none;
        }
        
        .Real-feature-list li {
            padding: 0.8rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--Real-text-secondary);
            border-bottom: 1px solid var(--Real-border);
        }
        
        .Real-feature-list li:last-child {
            border-bottom: none;
        }
        
        .Real-feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--Real-accent);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        /* Benefits Section */
        .Real-benefits-section {
            padding: 6rem 2rem;
            background: var(--Real-white);
        }
        
        .Real-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }
        
        .Real-benefit-card {
            text-align: center;
            padding: 2.5rem 2rem;
            background: var(--Real-bg-light);
            border-radius: 16px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }
        
        .Real-benefit-card:hover {
            background: var(--Real-white);
            border-color: var(--Real-accent-light);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(26, 35, 50, 0.08);
        }
        
        .Real-benefit-number {
             
            font-size: 3.5rem;
            color: var(--Real-accent);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 1rem;
            display: block;
        }
        
        .Real-benefit-card h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--Real-primary);
            font-weight: 600;
        }
        
        .Real-benefit-card p {
            color: var(--Real-text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
        }
        
        /* Technology Section */
        .Real-tech-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, var(--Real-primary) 0%, #2a3f5f 100%);
            color: var(--Real-white);
            position: relative;
            overflow: hidden;
        }
        
        .Real-tech-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 40%, rgba(196, 155, 99, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(196, 155, 99, 0.08) 0%, transparent 50%);
        }
        
        .Real-tech-content {
            position: relative;
            z-index: 1;
        }
        
        .Real-tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .Real-tech-item {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .Real-tech-item:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            border-color: rgba(196, 155, 99, 0.3);
        }
        
        .Real-tech-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--Real-accent);
        }
        
        .Real-tech-item p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .Real-cta-section {
            padding: 6rem 2rem;
            background: var(--Real-bg-light);
            text-align: center;
        }
        
        .Real-cta-box {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--Real-primary) 0%, #2a3f5f 100%);
            padding: 5rem 3rem;
            border-radius: 24px;
            color: var(--Real-white);
            position: relative;
            overflow: hidden;
        }
        
        .Real-cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(196, 155, 99, 0.1) 0%, transparent 60%);
            animation: rotate 20s linear infinite;
        }
        
        .Real-cta-box h2 {
             
            font-size: 3rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }
        
        .Real-cta-box p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .Real-cta-contact {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }
        
        .Real-contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 1.2rem 2rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .Real-contact-icon {
            font-size: 1.8rem;
            color: var(--Real-accent);
        }
        
        .Real-contact-info {
            text-align: left;
        }
        
        .Real-contact-label {
            font-size: 0.85rem;
            opacity: 0.8;
            margin-bottom: 0.2rem;
        }
        
        .Real-contact-value {
            font-size: 1.2rem;
            font-weight: 600;
        }
        .DemoHeading {
    padding: 24px;
    text-align: center;
    border-bottom: solid 1px #eee;
}
.DemoHeading p {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #a7a7a7;
}
.DemoHeading h5 {
    font-size: 25px;
    font-weight: bold;
    color: #000;
}
.assets-dashboard-preview1 {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}
        .assets-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.assets-dashboard-mockup {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.Frorm_new form.enquiry-form input.btn.submit {
    background: var(--Real-accent);
}
         /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .Real-hero h1 {
                font-size: 2.5rem;
            }
            
            .Real-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .Real-section-title {
                font-size: 2rem;
            }
            
            .Real-features-grid {
                grid-template-columns: 1fr;
            }
            
            .Real-cta-group {
                flex-direction: column;
            }
            
            .Real-btn-primary, .Real-btn-secondary {
                width: 100%;
                text-align: center;
            }
            
            .Real-cta-box {
                padding: 3rem 2rem;
            }
            
            .Real-cta-box h2 {
                font-size: 2rem;
            }
            .Real-hero, .Real-problem-section,.Real-cta-section, .Real-features-section, .Real-benefits-section, .Real-tech-section{
                    padding: 4rem 0;
            }
            .Real-hero-stats{
                margin-bottom: 30px;
            }
            .row{
    margin-right: -15px;
    margin-left: -15px;
            }
            .Real-tech-grid { 
    grid-template-columns: 100%; 
}

        }