.elementor-2136 .elementor-element.elementor-element-4b0dc4d{--display:flex;}.elementor-2136 .elementor-element.elementor-element-e76d538{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-2136 .elementor-element.elementor-element-fad942b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2136 .elementor-element.elementor-element-fad942b.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2136 .elementor-element.elementor-element-62ed2ef{--display:flex;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-2136 .elementor-element.elementor-element-4f81fda .elementor-repeater-item-6bced06.elementor-social-icon{background-color:#BF4012;}.elementor-2136 .elementor-element.elementor-element-4f81fda .elementor-repeater-item-6bced06.elementor-social-icon i{color:#FBE7E7;}.elementor-2136 .elementor-element.elementor-element-4f81fda .elementor-repeater-item-6bced06.elementor-social-icon svg{fill:#FBE7E7;}.elementor-2136 .elementor-element.elementor-element-4f81fda{--grid-template-columns:repeat(0, auto);--grid-column-gap:30px;--grid-row-gap:0px;}.elementor-2136 .elementor-element.elementor-element-4f81fda .elementor-widget-container{text-align:center;}.elementor-2136 .elementor-element.elementor-element-4f81fda.elementor-element{--align-self:flex-start;}.elementor-2136 .elementor-element.elementor-element-4f81fda .elementor-social-icon{--icon-padding:0.6em;}.elementor-2136 .elementor-element.elementor-element-e537ab9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2136 .elementor-element.elementor-element-e537ab9.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2136 .elementor-element.elementor-element-cdc712c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-search{--e-search-input-color:var( --e-global-color-text );}.elementor-widget-search.e-focus{--e-search-input-color:var( --e-global-color-text );}.elementor-widget-search .elementor-pagination{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}@media(min-width:768px){.elementor-2136 .elementor-element.elementor-element-fad942b{--width:46.387%;}.elementor-2136 .elementor-element.elementor-element-e537ab9{--width:53%;}.elementor-2136 .elementor-element.elementor-element-cdc712c{--content-width:1104px;}}@media(max-width:1024px) and (min-width:768px){.elementor-2136 .elementor-element.elementor-element-fad942b{--width:506.431px;}}/* Start custom CSS for html, class: .elementor-element-b17b43c */html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative;
}

/* Header Styles */

.e-con{
    padding: 0 !important;
    
}

.custom-header {
   background: var(--gradient);
    border-bottom: 1px solid var(--border-light);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px !important;
    width: auto;
}

.menu-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background: #002066;
    transform: translateY(-1px);
}

.menu-button-text {
    order: 2;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 20px;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* Modal Overlay */
.menu-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-modal:target {
    opacity: 1;
    visibility: visible;
}

/* Modal Wrapper */
.modal-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 800px;
    height: 100vh;
    background: var(--white);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.menu-modal:target .modal-wrapper {
    right: 0;
}

.modal-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0; /* CRITICAL FIX for mobile */
}

/* Top Row with Close Button */
.menu-top-row {
    padding: 20px 30px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: flex-end;
}

.close-button {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--primary-blue);
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #002066;
}

/* Main Menu */
.main-menu {
    flex: 1;
    padding: 30px;
    overflow-y: auto; /* Allows scrolling */
    min-height: 0; /* Prevents flexbox overflow */
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   /* gap: 40px;*/
}

.menu-item {
    margin-bottom: 0;
}

.menu-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 15px 0;
    padding: 0;
}

.menu-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-link-item-wrapper {
    margin-bottom: 8px;
}

.menu-link-item {
    display: block;
            margin: 0;
            padding: 0;
}

.menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    font-size: 14px;
    width: 100%;
}

.menu-link:hover {
    color: var(--primary-blue);
    background: var(--light-blue);
    margin: 0 -10px;
    padding: 12px 10px;
    border-radius: 4px;
}

.link-text {
    flex: 1;
}

/* Bottom Row */
.bottom-row {
    padding: 20px 30px;
    border-top: 1px solid var(--border-light);
    background: var(--gray);
}

.bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bottom-links li {
    margin: 0;
}

.bottom-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 12px 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bottom-link:hover {
    color: #002066;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-wrapper {
                width: 100%;
                max-width: none;
            }

            .menu-list {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .menu-title {
                font-size: 18px;
            }

            .menu-link {
                font-size: 15px;
                padding: 10px 0;
            }

            .main-menu {
                padding: 20px;
                -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
            }
}

/* Prevent body scroll when menu is open */
body:has(.menu-modal:target) {
    overflow: hidden;
}

/* ===== FORCE SHOW ELEMENTOR SEARCH WIDGET ===== */

/* Override the hidden class that Elementor adds */
.e-search.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Force show all search elements */
.e-search {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search form */
.e-search-form {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search input wrapper */
.e-search-input-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search input */
.e-search-input {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width:100%;
}

/* Force show search button */
.e-search-submit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show results container */
.e-search-results-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide the hidden class completely */
.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any inline styles that might be added */
[style*="display: none"] {
    display: block !important;
}

[style*="visibility: hidden"] {
    visibility: visible !important;
}

[style*="opacity: 0"] {
    opacity: 1 !important;
}

/* Make sure search is always visible */
.elementor-widget-container search {
    display: block !important;
    visibility: visible !important;
}

/* Override Elementor's specific hidden states */
.elementor-widget-container .e-search.hidden,
.elementor-widget-container .hidden,
.elementor-widget-container [class*="hidden"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
   /* height: auto !important;
    width: auto !important;*/
}
/* ********************************************************************************************************************************************************************** */

:root {
			--primary-blue: #003087;
			--light-blue: #e6f1ff;
			--white: #ffffff;
			/* --gray: #f8f9fa; */
			--text-dark: #1a1a1a;
			--border-light: #e1e4e8;
            /*--primary: #8ed1fc;*/
            --primary: #a3c4db;
            --primary-dark: #5a67d8;
            /*--secondary: #abb8c3;*/
            --secondary: #a3c4db;
            --accent: #f093fb;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #718096;
            --light-gray: #e2e8f0;
            --border: #cbd5e0;
            --success: #48bb78;
            --warning: #ed8936;
            --danger: #f56565;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
            --card-hover: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light-gray);
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            /*padding: 0 20px;*/
        }

        /* Header Styles - Tab ones */
      /*  header {
            background: var(--gradient);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            backdrop-filter: blur(10px);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }

        nav a:hover {
            color: #e2e8f0;
            transform: translateY(-1px);
        }

        nav a.active {
            color: #e2e8f0;
            font-weight: 600;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        nav a:hover::after, nav a.active::after {
            width: 100%;
        }

        .cta-nav {
            background: var(--gradient);
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px !important;
            font-weight: 600 !important;
        }

        .cta-nav:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }*/

        /* Page Header */
        .page-header {
            background: var(--gradient);
            color: white;
            padding: 8rem 0 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,');
            background-size: cover;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Content Sections */
        
        .content-section {
        background: white;
        padding: 2rem;
        /*padding: 4rem 0;*/
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        border: 1px solid var(--border);
        margin-bottom: 2rem;
        margin-top:1rem;
    }

        .content-card {
            background: var(--light);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            border: 1px solid var(--border);
        }

        .content-card h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .content-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            margin: 2rem 0 1rem;
        }

        .content-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .content-card ul {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

        .content-card li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        
        .content-section h2 {
        color: var(--dark);
        margin-bottom: 1.5rem;
        font-size: 1.75rem;
    }

    .content-section h3 {
        color: var(--dark);
        margin: 1.5rem 0 1rem 0;
        font-size: 1.25rem;
    }

    .content-section h4 {
        color: var(--dark);
        margin: 1rem 0 0.5rem 0;
        font-size: 1.1rem;
    }

    .content-section p {
        /*color: var(--gray);*/
        margin-bottom: 1rem;
    }

    .content-section ul {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--gray);
    }

    .content-section li {
        margin-bottom: 0.5rem;
    }
    
    .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .feature-item {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }

        .feature-item h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        /* Stats Section */
        .stats-section {
            background: var(--gradient);
            color: white;
            padding: 3rem 0;
            text-align: center;
            border-radius: 20px;
            margin: 2rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item h3 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            background: var(--light);
            padding: 3rem 0;
            text-align: center;
            border-radius: 20px;
            margin: 2rem 0;
        }

        .cta-section h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .btn {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
        }

       
        /* Tool Demo Section */
        .tool-demo {
            padding: 4rem 0;
            background: var(--light);
        }

        .demo-container {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            border: 2px dashed var(--border);
            margin: 2rem 0;
        }

        .demo-screen {
            background: var(--light);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow);
            margin: 2rem 0;
            border: 1px solid var(--border);
        }

        .demo-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }

        .demo-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .demo-buttons {
            display: flex;
            gap: 1rem;
        }

        .demo-btn {
            padding: 0.5rem 1rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--light-gray);
            color: var(--gray);
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .demo-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .demo-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            margin-top: 2rem;
        }

        .demo-sidebar {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 1.5rem;
        }

        .demo-main {
            background: var(--light-gray);
            border-radius: 12px;
            padding: 1.5rem;
            min-height: 400px;
        }

        .demo-chart {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            margin: 1rem 0;
            text-align: center;
            color: var(--gray);
        }
        
        /* Workflow Section */
        .workflow {
           /* padding: 4rem 0;*/
            background: var(--light);
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .step-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 16px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .step-card h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1rem;
        }
        /* CTA Section */
        .cta-section {
            padding: 4rem 0;
            background: var(--gradient);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        /* Partners Section */
    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 1rem;
    }

    .partner-item {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid var(--border);
        text-align: center;
        font-weight: 500;
        color: var(--gray);
    }

        /* Footer */
        footer {
            /*background: var(--dark);*/
            background: var(--gradient);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 0.5rem;
            margin-bottom:0.5rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 1rem;
            margin-top: 1rem;
            border-top: 1px solid #334155;
            color: white;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            /*opacity: 0;*/
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

           /* nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--light);
                box-shadow: var(--shadow);
                padding: 1rem;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }*/

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }
        }
        
/* Expandable features section */
        .expandable-features {
            position: relative;
        }

        /* Hide additional features by default */
        .additional-features {
            display: none;
        }

        /* Show additional features when targeted */
        .expandable-features:target .additional-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        /* Hide load more button when expanded */
        .expandable-features:target .load-more-container {
            display: none;
        }

        /* Button styles - matching existing design */
        .load-more-container,
        .collapse-container {
            text-align: center;
            margin-top: 2rem;
        }

        .load-more-btn,
        .collapse-btn {
            display: inline-block;
            background: var(--gradient);
            color: white;
            padding: 1rem 2rem;
            margin-top:1rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: var(--card-shadow);
        }

        .load-more-btn:hover,
        .collapse-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--card-hover);
        }

        /* Initially hide collapse button */
        .collapse-container {
            display: none;
        }

        /* Show collapse button when expanded */
        .expandable-features:target .collapse-container {
            display: block;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .features-grid,
            .expandable-features:target .additional-features {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */
/* Start custom CSS for social-icons, class: .elementor-element-4f81fda */.elementor-widget-social-icons .elementor-widget-container{
        float: left;
    width: 50%;
    padding-left:4rem;
}

.elementor-social-icons-wrapper .elementor-grid-item{
    padding-right:1rem;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-cdc712c *//* Override the hidden class that Elementor adds */
.e-search.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
}

/* Force show all search elements */
.e-search {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search form */
.e-search-form {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search input wrapper */
.e-search-input-wrapper {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show search input */
.e-search-input {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width:100%;
}

/* Force show search button */
.e-search-submit {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force show results container */
.e-search-results-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Hide the hidden class completely */
.hidden {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any inline styles that might be added */
[style*="display: none"] {
    display: block !important;
}

[style*="visibility: hidden"] {
    visibility: visible !important;
}

[style*="opacity: 0"] {
    opacity: 1 !important;
}
/* Make sure search is always visible */
.elementor-widget-container search {
    display: block !important;
    visibility: visible !important;
}

/* Override Elementor's specific hidden states */
.elementor-widget-container .e-search.hidden,
.elementor-widget-container .hidden,
.elementor-widget-container [class*="hidden"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
   /* height: auto !important;
    width: auto !important;*/
}/* End custom CSS */