.elementor-2146 .elementor-element.elementor-element-a2ee8d6{--display:flex;}.elementor-2146 .elementor-element.elementor-element-99877c4{--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-2146 .elementor-element.elementor-element-039263e{--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-2146 .elementor-element.elementor-element-039263e.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2146 .elementor-element.elementor-element-68a1c7f{--display:flex;--align-items:flex-start;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-2146 .elementor-element.elementor-element-8c706bb .elementor-repeater-item-6bced06.elementor-social-icon{background-color:#BF4012;}.elementor-2146 .elementor-element.elementor-element-8c706bb .elementor-repeater-item-6bced06.elementor-social-icon i{color:#FBE7E7;}.elementor-2146 .elementor-element.elementor-element-8c706bb .elementor-repeater-item-6bced06.elementor-social-icon svg{fill:#FBE7E7;}.elementor-2146 .elementor-element.elementor-element-8c706bb{--grid-template-columns:repeat(0, auto);--grid-column-gap:30px;--grid-row-gap:0px;}.elementor-2146 .elementor-element.elementor-element-8c706bb .elementor-widget-container{text-align:center;}.elementor-2146 .elementor-element.elementor-element-8c706bb .elementor-social-icon{--icon-padding:0.6em;}.elementor-2146 .elementor-element.elementor-element-9d7300e{--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-2146 .elementor-element.elementor-element-9d7300e.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2146 .elementor-element.elementor-element-47ef366{--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-2146 .elementor-element.elementor-element-039263e{--width:55.007%;}.elementor-2146 .elementor-element.elementor-element-68a1c7f{--width:100%;}.elementor-2146 .elementor-element.elementor-element-9d7300e{--width:63.96%;}.elementor-2146 .elementor-element.elementor-element-47ef366{--width:59%;}}@media(max-width:1024px) and (min-width:768px){.elementor-2146 .elementor-element.elementor-element-039263e{--width:506.431px;}}/* Start custom CSS for html, class: .elementor-element-cabbd49 *//* 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 */

/* =====  =====   =====   =====   =====   =====   =====   =====  ===== */

: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;*/
        }
  
  /* Hero Section */
        .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;
        }

        /* 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;
        }

        /* Learning Paths */
        .learning-paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .path-card {
            background: white;
            border-radius: 12px;
            /*padding: 2rem;*/
            padding: 2rem 2rem 0.5rem 2rem;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align:center;
        }

        .path-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }

        .path-card:hover {
            box-shadow: var(--card-hover);
            transform: translateY(-4px);
        }

        .path-card .path-icon {
            display: inline-block;
            width: 60px;
            height: 60px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1rem auto;
        }

        .path-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
            text-align: center;
        }

        .path-card p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.6;
            text-align: center;
        }

        .path-card ul {
            padding-left: 1.5rem;
            color: var(--gray);
            font-size: 0.9rem;
        }

        .path-card li {
            margin-bottom: 0.5rem;
        }

        /* Module Template */
        .module-template {
            background: var(--light);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            margin: 2rem 0;
            transition: all 0.3s ease;
        }

        .module-template:hover {
            background: white;
            box-shadow: var(--card-shadow);
        }

        .module-template h4 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .module-template ul {
            padding-left: 1.5rem;
            color: var(--gray);
        }

        .module-template li {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        /* Training Modules */
        .training-modules {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .module-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;
        }

        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient);
        }

        .module-card:hover {
            box-shadow: var(--card-hover);
            transform: translateY(-4px);
        }

        .module-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .module-card p {
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .module-card .module-content {
            background: var(--light);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            margin-top: 1rem;
        }

        .module-card .module-content h5 {
            color: var(--dark);
            margin-bottom: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
        }

        .module-card .module-content p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        /* Video Placeholder */
        .video-placeholder {
            background: var(--light-gray);
            border-radius: 8px;
            padding: 2rem;
            text-align: center;
            margin: 1rem 0;
            border: 2px dashed var(--border);
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            background: var(--light);
            border-color: var(--primary);
        }

        .video-placeholder .play-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .video-placeholder p {
            color: var(--gray);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Quick Fixes */
        .quick-fixes {
            background: #fef3c7;
            border: 1px solid #f59e0b;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .quick-fixes h4 {
            color: #d97706;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .quick-fixes p {
            color: #92400e;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .quick-fixes ul {
            padding-left: 1.5rem;
            color: #92400e;
            font-size: 0.9rem;
        }

        .quick-fixes li {
            margin-bottom: 0.5rem;
        }  
 
 /* Modules Videos Clickable Thumbnail Start */ 
 
 .training-modules-content{
      
            gap: 1rem;
            margin-top: 1rem;
     
 }
 
  /* INSERT: CSS for collapsible module cards */
    
    .module-card-details {
        background: white;
        border-radius: 12px;
        padding: 0;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--border);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        margin-bottom:1rem;
    }

    .module-card-details::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
        z-index: 1;
    }

    .module-card-details:hover {
        box-shadow: var(--card-hover);
        transform: translateY(-4px);
    }

    .module-card-summary {
        list-style: none;
        cursor: pointer;
        padding: 2rem;
        display: block;
        position: relative;
    }

    .module-card-summary::-webkit-details-marker {
        display: none;
    }

    .module-card-summary::after {
        content: '+';
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: var(--primary);
        font-weight: 400;
        transition: transform 0.3s ease;
    }

    .module-card-details[open] .module-card-summary::after {
        content: '\2212';
    }

    .module-card-summary h3 {
        color: var(--primary);
        margin-bottom: 1rem;
        font-size: 1.25rem;
        font-weight: 600;
    }

    .module-card-summary p {
        color: var(--gray);
        margin-bottom: 0;
        line-height: 1.6;
    }

    .module-card-content {
        padding: 0 2rem 2rem 2rem;
    }

    /* INSERT: Grid layout for modules with text + single video */
    .module-content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        background: var(--light);
        padding: 1.5rem;
        border-radius: 8px;
        border: 1px solid var(--border);
        align-items: start;
    }

    .module-content-grid .module-text h5 {
        color: var(--dark);
        margin-bottom: 0.75rem;
        font-size: 1rem;
        font-weight: 600;
    }

    .module-content-grid .module-text p {
        color: var(--gray);
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }

    .module-content-grid .module-video {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .module-content-grid .module-video .video-thumbnail-simple {
        margin: 0;
        max-width: 100%;
    }

    /* INSERT: Grid layout for modules with multiple videos */
    .module-content-grid-videos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        background: var(--light);
        padding: 1.5rem;
        border-radius: 8px;
        border: 1px solid var(--border);
    }

    .module-content-grid-videos .module-intro {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }

    .module-content-grid-videos .module-intro p {
        color: var(--gray);
        font-size: 0.95rem;
        margin-bottom: 0;
    }

    .module-content-grid-videos .video-item h6 {
        color: var(--dark);
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* INSERT: Video description styling */
    .module-content-grid-videos .video-item .video-desc {
        color: var(--gray);
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }

    .module-content-grid-videos .video-item .video-thumbnail-simple {
        margin: 0;
        max-width: 100%;
    }
    
          .video-thumbnail-simple {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

.video-thumbnail-simple img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-thumbnail-simple:hover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,0,0,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.video-thumbnail-simple:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff0000;
}

    /* INSERT: Smaller video thumbnails for grid layout */
    .video-thumbnail-simple.video-small {
        max-width: 100%;
    }

    .video-thumbnail-simple.video-small .play-overlay {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* INSERT: Responsive adjustments */
    @media (max-width: 768px) {
        .module-content-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .module-content-grid-videos {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .module-card-summary {
            padding: 1.5rem;
        }

        .module-card-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .module-card-summary::after {
            right: 1.5rem;
        }
    }
        
  /* Modules Videos Clickable Thumbnail End */      
        
  
  /* Footer */
        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.visible {
            opacity: 1;
            transform: translateY(0);
        }
  
       
 /* 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*//* End custom CSS */
/* Start custom CSS for social-icons, class: .elementor-element-8c706bb */.elementor-element .elementor-element-241bbc2 .elementor-widget .elementor-widget-html{
    text-align:center;
}/* End custom CSS */
/* Start custom CSS for search, class: .elementor-element-bca85a9 *//* ===== 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;*/
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-47ef366 *//* 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 */