:root {
            --primary-color: #caebea;
            --secondary-color: #caebea;
            --accent-color: #23BABF;
            --light-bg: #f8f9fa;
            --text-dark: #49515B;
            --text-light: #6c757d;
            --bs-dark: #072c46;
            
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }
            p{
            color: var(--text-dark);
            }
            
        

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 120px 0 80px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            opacity: 0.1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 45px;      
            line-height: 60px;    
            margin-bottom: 16px;  
            letter-spacing: -1px; 
            font-weight: 600; 
               
        }
       .hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    font-family: 'Axiforma Medium';
    margin-bottom: 30px;
    opacity: 0.9;
}

/* For white text sections */
.text-white .hero-subtitle {
    opacity: 0.8;
    color: var(--bs-white);
}

/* For center aligned sections */
.text-center .hero-subtitle {
    margin: auto;
    max-width: 610px;
}


        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            color: var(--accent-color);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            color: var(--text-dark);
        }

        .hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
            
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* CTA Buttons */
        .btn-primary-custom {
            background: var(--accent-color);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-primary-custom:hover {
            background: #20ba5a;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .btn-outline-custom {
            color: white;
            border: 2px solid white;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            background: transparent;
            transition: all 0.3s ease;
        }

        .btn-outline-custom:hover {
            background: white;
            color: var(--primary-color);
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            color: var(--bs-dark); 
            
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            margin-bottom: 60px;
            font-size: 1.1rem;
        }

        .feature-card {
            padding: 40px 30px;
            background: white;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: var (--bs-dark);
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--bs-dark);
        }

        .feature-description {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background: var(--secondary-color);
        }

        .benefit-item {
            display: flex;
            align-items: start;
            margin-bottom: 30px;
            padding: 25px;
            background: white;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform: translateX(10px);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            flex-shrink: 0;
            margin-right: 20px;
        }

        .benefit-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--bs-dark);
        }

        .benefit-content p {
            color: var(--text-light);
            margin: 0;
        }

        /* Use Cases Section */
        .use-cases-section {
            padding: 80px 0;
            background: white;
        }

        .use-case-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 40px;
            border-radius: 20px;
            color: white;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .use-case-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transition: all 0.5s ease;
        }

        .use-case-card:hover::after {
            top: -30%;
            right: -30%;
        }

        .use-case-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(7, 44, 70, 0.3);
        }

        .use-case-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .use-case-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .use-case-description {
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: var(--secondary-color);
        }

        .testimonial-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--accent-color);
            opacity: 0.2;
            position: absolute;
            top: 20px;
            right: 30px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--bs-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            margin-right: 15px;
        }

        .author-info h5 {
            margin: 0;
            font-size: 1rem;
            font-weight: 600;
            color: var(--bs-dark);
        }

        .author-info p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-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 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
            opacity: 0.1;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        .heading_focus_text
        {
            color: var(--text-dark);
        }

       

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-stats {
                justify-content: center;
            }

            .cta-title {
                font-size: 2rem;
            }
        }
/* footer */
/* Footer Copyright Styling */
.site_footer .copyright_widget p,
.site_footer .copyright_widget,
.footer_bottom p,
.footer_bottom,
.copyright_text {
    color: white !important;
}
    
        
    