.elementor-2144 .elementor-element.elementor-element-21aa462{--display:flex;}.elementor-2144 .elementor-element.elementor-element-025da10{--display:flex;}.elementor-2144 .elementor-element.elementor-element-23627bc{--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-2144 .elementor-element.elementor-element-6d45df9{--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-2144 .elementor-element.elementor-element-6d45df9.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2144 .elementor-element.elementor-element-0706f49{--display:flex;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-2144 .elementor-element.elementor-element-957069f .elementor-repeater-item-6bced06.elementor-social-icon{background-color:#BF4012;}.elementor-2144 .elementor-element.elementor-element-957069f .elementor-repeater-item-6bced06.elementor-social-icon i{color:#FBE7E7;}.elementor-2144 .elementor-element.elementor-element-957069f .elementor-repeater-item-6bced06.elementor-social-icon svg{fill:#FBE7E7;}.elementor-2144 .elementor-element.elementor-element-957069f{--grid-template-columns:repeat(0, auto);--grid-column-gap:30px;--grid-row-gap:0px;}.elementor-2144 .elementor-element.elementor-element-957069f .elementor-widget-container{text-align:center;}.elementor-2144 .elementor-element.elementor-element-957069f .elementor-social-icon{--icon-padding:0.6em;}.elementor-2144 .elementor-element.elementor-element-e07335c{--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-2144 .elementor-element.elementor-element-e07335c.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2144 .elementor-element.elementor-element-c9d05f0{--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-2144 .elementor-element.elementor-element-6d45df9{--width:55.007%;}.elementor-2144 .elementor-element.elementor-element-0706f49{--width:100%;}.elementor-2144 .elementor-element.elementor-element-e07335c{--width:63.96%;}.elementor-2144 .elementor-element.elementor-element-c9d05f0{--width:59%;}}@media(max-width:1024px) and (min-width:768px){.elementor-2144 .elementor-element.elementor-element-6d45df9{--width:506.431px;}}/* Start custom CSS for html, class: .elementor-element-20b015c *//* Menu &amp; Header Start */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative;
}

.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;*/
    max-width: 70vh;
    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: 0 5rem;
    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: 1rem;
    overflow-y: auto; /* Allows scrolling */
    min-height: 0; /* Prevents flexbox overflow */
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0 5rem 0 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 5px 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);*/
    color: var(--primary-blue);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight:bold;
    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;
}

/* Collapsible Menu Start*/

/* ===== COLLAPSIBLE MENU ITEM USING DETAILS/SUMMARY ===== */

.menu-item-details {
    margin-bottom: 0;
    border: none;
    background: transparent;
    
    margin-bottom:1rem;
}

/* The summary contains the title link AND the toggle icon */
.menu-item-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 0;*/
    padding: 0 1rem 0 1rem;
    cursor: default;
}

.menu-item-details .menu-item-summary a:hover{
    background: var(--light-gray);
    border-radius: 10px;
}

.menu-item-summary::-webkit-details-marker {
    display: none;
}

/* The menu title link - clickable to navigate */
.menu-title-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    flex: 1;
    /*padding: 10px 0;*/
    padding: 0.5rem 1rem;
    display: block;
    /*border-radius: 8px;
    border: 1px solid var(--border);*/
    box-shadow: var(--shadow);
}

.menu-title-link:hover {
    color: #002066;
}

/* The toggle icon - clickable to expand/collapse */
.menu-toggle-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    user-select: none;
    /*transition: transform 0.3s ease;*/
    margin-left: 10px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.menu-toggle-icon:hover{
    background: var(--primary-blue);
    color: white;
}

/* Show + when closed */
.menu-item-details:not([open]) .menu-toggle-icon::before {
    content: '+';
}

/* Show − when open */
.menu-item-details[open] .menu-toggle-icon::before {
    content: '−';
}

/* Submenu list styling */
.menu-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 1rem;
    border-left: 2px solid var(--border-light);
    margin-top: 5px;
    margin-left: 2rem;
}

/* Collapsible Menu End*/


/* Responsive */
@media (max-width: 768px) {
    .modal-wrapper {
                width: 100%;
                max-width: none;
                height: 100vh; /* Ensure full viewport height */
                max-height: 100vh;
            }
            
            .modal-content {
                height: 100%;
                max-height: 100vh;
                overflow-y: auto; /* Allow entire modal to scroll */
            }
            .menu-list {
                grid-template-columns: 1fr;
                /*gap: 30px;*/
            }

            .menu-title {
                font-size: 15px;
            }

            .menu-link {
                font-size: 12px;
                padding: 5px 0;
            }

            .main-menu {
                padding: 2rem 1rem 5rem 1rem;
                /*padding: 2rem 1rem;*/
                -webkit-overflow-scrolling: touch; /* Smooth iOS scrolling */
                overflow-y: visible;
        flex: none; /* Remove flex grow */
            }
}

/* Prevent body scroll when menu is open */
body:has(.menu-modal:target) {
    overflow: hidden;
}

/* Menu &amp; Header Ends */

/* =====  =====   =====   =====   =====   =====   =====   =====  ===== */

/* Main Body Start */

: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: 1rem 20px; */
}


/* Hero Section Start */

        .hero {
            background: var(--gradient);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

/* Hero Section End*/

/* Main Content */
         main {
            padding: 3rem 0;
        }

        .content-section {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .content-section:hover {
            box-shadow: var(--card-hover);
            transform: translateY(-2px);
        }

        .content-section h2 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
            font-weight: 600;
        }

        .content-section h3 {
            color: var(--dark);
            margin: 2rem 0 1rem 0;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .content-section h4 {
            color: var(--dark);
            margin: 1.5rem 0 0.5rem 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .content-section p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .content-section ul {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--gray);
        }

        .content-section li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        /* Research Cards */
        .research-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .research-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .research-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }

        .research-card:hover {
            box-shadow: var(--card-hover);
            transform: translateY(-4px);
        }

        .research-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .research-card p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .research-card a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.3s ease;
        }

        .research-card a:hover {
            color: var(--primary-dark);
        }

        /* Publication Items */
        .publication-item {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .publication-item:hover {
            background: white;
            box-shadow: var(--card-shadow);
        }

        .publication-item h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .publication-item p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .publication-item a {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .publication-item a:hover {
            color: var(--primary-dark);
        }

        /* Filter Tags */
        .filter-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 2rem;
        }

        .tag {
            display: inline-block;
            background: var(--light-gray);
            color: var(--gray);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .tag:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .tag.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* News Items */
        .news-item {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .news-item:hover {
            background: white;
            box-shadow: var(--card-shadow);
        }

        .news-item h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .news-item p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .news-item a {
            color: var(--primary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .news-item a:hover {
            color: var(--primary-dark);
        }
        
/* Main Section End */        




 /* CTA Section Start*/
        .cta-section {
            background: var(--gradient);
            color: white;
            padding: 3rem 0;
            text-align: center;
            border-radius: 20px;
            margin: 2rem 0;
        }

        .cta-section h3 {
            font-size: 2rem;
            font-weight: 700;
            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;
            margin: 0.5rem;
        }*/

        .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);
        }
        
        
        /* ============================================
   PUBLICATIONS YEAR COLLAPSIBLE SECTION
   Add this to your existing CSS
   ============================================ */

/* Year collapsible container */
.year-details {
    background: var(--light);
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.year-details:hover {
    box-shadow: var(--card-shadow);
}

/* Year header (clickable) */
.year-summary {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    padding: 1rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light);
    transition: background 0.3s ease;
}

.year-summary:hover {
    background: var(--light-gray);
}

/* Hide default marker */
.year-summary::-webkit-details-marker {
    display: none;
}

/* Plus/Minus indicator */
.year-summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
    transition: transform 0.3s ease;
}

/* Change to minus when open */
.year-details[open] .year-summary::after {
    content: '−';
}

/* Content area */
.year-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Remove margin from first publication item */
.year-content .publication-item:first-child {
    margin-top: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .year-summary {
        font-size: 1.1rem;
        padding: 0.875rem 1rem;
    }
    
    .year-content {
        padding: 0 1rem 1rem 1rem;
    }
}
        
        
 /* CTA Section End*/
 
 /* 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 */
            }
             .content-grid,
            .expandable-content:target .additional-content {
                grid-template-columns: 1fr;
            }
            
           .mobile-menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .content-section {
                padding: 1.5rem;
            }

            .research-grid {
                grid-template-columns: 1fr;
            }

            .filter-tags {
                justify-content: center;
            }
            
}

  /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-section {
            animation: fadeInUp 0.6s ease-out;
        }

        .research-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .publication-item {
            animation: fadeInUp 0.6s ease-out;
        }

/* Prevent body scroll when menu is open */
body:has(.menu-modal:target) {
    overflow: hidden;
}

/* Main Body End */
/* Up Down Scroll Navigation buttons - fixed position Start */
        .updown-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 9999999999;
        }

        .updown-button {
            display: block;
            width: 40px;
            height: 40px;
            /*background: #333;*/
            color: white;
            text-align: center;
            line-height: 40px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 18px;
            font-weight: bold;
        }

        .updown-button:hover {
            background: #555;
        }

        /* Target anchors */
        #top {
            position: absolute;
            top: 0;
            left: 0;
            width: 1px;
            height: 1px;
        }

        #bottom {
            position: relative;
            display: block;
            width: 100%;
            height: 1px;
            margin-top: -1px;
        }
  /* Up Down Scroll Navigation buttons - fixed position End*/   

/* Footer Start */
        footer {
            /*background: var(--dark);*/
            background: var(--gradient);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 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);
        }

/* Footer End *//* End custom CSS */
/* Start custom CSS for social-icons, class: .elementor-element-957069f */.elementor-element .elementor-element-241bbc2 .elementor-widget .elementor-widget-html{
    text-align:center;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-c9d05f0 *//* 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 */