/* Site Header */
.site-header {
    border-bottom: 1px solid #F7F7F7;
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;*/
    /*line-height: 1.6;*/
    
        position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
}

/* Header Wrapper */
.site-header .header-wrap {
    width: calc(100% - 100px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 2.5vw;
    /*position: relative;*/
}

.site-header .header-wrap nav {
      margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2.5vw;
    
}

/* Site Logo */
.site-header .site-logo img {
    width: 60px;
}

/* Hamburger Menu Button */
.site-header .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
    margin-left: auto;
}

.site-header .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #11131c;
    transition: all 0.3s ease;
    position: absolute;
}

.site-header .menu-toggle span:first-child {
    transform: translateY(-6px);
}

.site-header .menu-toggle span:last-child {
    transform: translateY(6px);
}

/* Hamburger Transform to X */
.site-header .menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.site-header .menu-toggle.active span:last-child {
    transform: rotate(-45deg);
}

/* Main Navigation Container */
.site-header .main-navigation {
    position: relative;
    margin-bottom: 0;
}

.site-header .main-navigation,
.site-header .main-navigation li {
    position: unset !important;
}

/* Navigation List */
.site-header .nav-list {
    padding-left: 0;
    margin: 0;
    display: flex;
    gap: 1.84vw;
    justify-content: center;
    align-items: center;
    list-style: none;
}

/* Navigation Links */
.site-header .nav-list li a {
    font-size: 15px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    color: #11131c;
    text-decoration: none;
    white-space: nowrap;
}

/* Menu Items with Dropdown */
.site-header .has-dropdown > a,
.site-header .nav-list > li:hover > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-block: 26px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 500;
}

/* Dropdown Arrow Icon */
.site-header .has-dropdown > a::after {
    content: "";
    background: url("/wp-content/uploads/2026/01/down-triangle-icon.svg") center/contain no-repeat;
    width: 8px;
    height: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Hover State for Menu Items */
.site-header .has-dropdown:hover > a,
.site-header .nav-list > li:hover > a {
    font-weight: 700;
}

.site-header .has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Mega Menu Dropdown Container */
.site-header .mega-menu-dropdown {
    padding-inline: 0;
    position: absolute;
    left: 50%;
    top: 100%;
    translate: -50% 0;
    width: calc(100% - 80px);
    z-index: 11;
    display: none;
    border: 2px solid #F7F7F7;
    border-top: 0;
}

/* Show Mega Menu on Hover */
.site-header .has-dropdown:hover .mega-menu-dropdown {
    display: block;
}

/* Mega Menu Content Wrapper */
.site-header .mega-menu-content {
	background-color: #fff;
    padding-block: 0;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, calc(100% / 3));
}

/* Mega Menu Columns */
.site-header .mega-menu-column {
    padding: 30px 43px;
    flex: 1;
    background-color: #fff;
}

/* Section Headings */
.site-header .section-title {
    color: #879298;
    font-size: 12px;
    line-height: 1.1;
    position: relative;
    margin-top: 20px;
    margin-bottom: 23px;
    letter-spacing: 0;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase;
}

/* Links List Inside Mega Menu */
.site-header .links-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
    display: block;
}

.site-header .links-list li:not(:last-child) {
    margin-bottom: 23px;
}

.site-header .links-list li:not(:has(p)):not(:last-child) {
    margin-bottom: 10px;
}

.site-header .links-list a {
    display: block;
    text-decoration: none;
}

/* Link Titles */
.site-header .link-title {
    color: #11131C;
    font-size: 15px;
    font-family: 'Gilroy', sans-serif !important;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
    letter-spacing: 0;
    white-space: normal;
}

.site-header .link-title:has(img) {
    display: grid;
    grid-template-columns: max-content auto;
    gap: 13px;
}

.site-header .link-title img {
    width: 17px;
    display: inline-block;
}

.new-tag {
    background-color: var(--e-global-color-033b3db);
    color: #fff;
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    margin-left: 3px;
    padding: 2px 3px;
    translate: 0 -2px;
}

.site-header .links-list .link-title:has(+ p) {
    margin-bottom: 10px;
}

/* Link Descriptions */
.site-header .link-description {
    font-size: 13px;
    color: #5C6066;
    line-height: 1.438;
    margin-bottom: 0;
    font-family: 'Gilroy', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

/* Links with Arrow Icon */
.site-header .link-with-arrow > * {
    font-size: 14px;
    font-family: 'Gilroy', sans-serif;
    font-weight: 600;
    position: relative;
    color: #11131c;
}

.site-header .link-with-arrow > *::after {
    content: '';
    background: url("/wp-content/uploads/2026/01/long-arrow-right.svg") center/contain no-repeat;
    width: 23px;
    height: 9px;
    display: inline-block;
    margin-left: 4px;
    transform: translateY(0px);
}

/* Menu Featured Wrapper */
.site-header .menu-featured-wrap {
    margin-top: 20px;
}

.site-header .menu-featured-wrap .card-content {
    padding: 15px 20px 20px 20px;
    white-space: normal;
}

.site-header .menu-featured-wrap .card-content * + .link-with-arrow {
    margin-top: 18px;
}

.site-header .menu-featured-wrap .featured-card {
    background-color: #f5f8f6;
    border: 1px solid #f5f8f6;
}

/* Featured Images */
.site-header .featured-image {
    width: 100%;
    height: auto;
    aspect-ratio: 9/5;
    object-fit: cover;
    object-position: center top;
}

/* Custom Buttons */
.custom-btn {
    display: inline-block;
    position: relative;
    min-width: 180px;
    padding: 12px 20px;
    border: 2px solid #11131c;
    background-color: #fff;
    color: #11131c;
    font-family: 'Gilroy', sans-serif;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.custom-btn:hover {
    color: #fff;
    background-color: #11131c;
}

.custom-btn.btn-red {
    background-color: var(--e-global-color-033b3db);
    color: #fff;
    border-color: var(--e-global-color-033b3db);
}

.custom-btn.btn-red:hover {
    background-color: #fff;
    color: var(--e-global-color-033b3db);
    border-color: var(--e-global-color-033b3db);
}

/* Header CTA Wrapper */
.site-header .header-cta-wrap {
    display: flex;
    gap: 10px;
}

.site-header .header-cta-wrap .custom-btn{
    padding: 8px 10px;
    font-size: 14px;
    min-width: unset!important;
	width: clamp(100px, 11.5vw, 170px);
}

/* ============================================
   MOBILE STYLES (768px and below)
   ============================================ */
@media screen and (max-width: 768px) {
    /* Header Wrapper */
    .site-header .header-wrap {
        width: calc(100% - 40px);
        padding: 8px 0;
    }
    
    .site-header .site-logo img {
    width: 40px;
    position: relative;
    z-index: 9991;
}

    /* Show Hamburger Menu */
    .site-header .menu-toggle {
        display: flex;
    }

    /* Hide Desktop Navigation by Default */
    .site-header .main-navigation {
        position: fixed!important;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        height: auto;
        max-height: 100vh;
        overflow: auto;
        background-color: #fff;
        z-index: 999;
        overflow-y: auto;
        transition:  400ms ease;
        padding: 80px 20px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        filter: blur(3px);
    }

    /* Show Mobile Menu When Active */
    .site-header .main-navigation.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        filter: blur(0px);
    }

    /* Navigation List - Mobile */
    .site-header .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-header .nav-list > li {
        border-bottom: 1px solid #f0f0f0;
    }

    /* Navigation Links - Mobile */
    .site-header .nav-list li a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        white-space: normal;
    }

    /* Menu Items with Dropdown - Mobile */
    .site-header .has-dropdown > a,
    .site-header .nav-list > li:hover > a {
        padding-block: 15px;
        justify-content: space-between;
        width: 100%;
    }

    /* Dropdown Arrow - Mobile */
    .site-header .has-dropdown > a::after {
        margin-left: auto;
    }

    /* Rotate Arrow When Open */
    .site-header .has-dropdown.active > a::after {
        transform: rotate(180deg);
    }

    /* Remove Hover Effects on Mobile */
    .site-header .has-dropdown:hover > a,
    .site-header .nav-list > li:hover > a {
        font-weight: 600;
    }

    .site-header .has-dropdown:hover > a::after {
        transform: none;
    }

    .site-header .has-dropdown.active > a::after {
        transform: rotate(180deg);
    }

    /* Mega Menu Dropdown - Mobile */
    .site-header .mega-menu-dropdown {
        position: static;
        width: 100%;
        translate: none;
        border: none;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* Show Dropdown When Active */
    .site-header .has-dropdown.active .mega-menu-dropdown {
        display: block;
        max-height: 2000px;
    }

    /* Remove Hover Display on Mobile */
    .site-header .has-dropdown:hover .mega-menu-dropdown {
        display: none;
    }

    .site-header .has-dropdown.active .mega-menu-dropdown {
        display: block;
    }

    /* Mega Menu Content - Mobile (Stack Columns) */
    .site-header .mega-menu-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Mega Menu Columns - Mobile */
    .site-header .mega-menu-column {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .site-header .mega-menu-column:last-child {
        border-bottom: none;
    }

    /* Section Title - Mobile */
    .site-header .section-title {
        margin-top: 10px;
        margin-bottom: 15px;
        font-size: 11px;
    }

    /* Links List - Mobile */
    .site-header .links-list li:not(:last-child) {
        margin-bottom: 15px;
    }

    /* Link Title - Mobile */
    .site-header .link-title {
        font-size: 14px;
    }

    /* Link Description - Mobile */
    .site-header .link-description {
        font-size: 12px;
    }

    /* Featured Card - Mobile */
    .site-header .menu-featured-wrap {
        margin-top: 15px;
    }

    /* Header CTA Wrapper - Mobile */
    .site-header .header-cta-wrap {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
        /*border-top: 1px solid #f0f0f0;*/
        margin-top: 20px;
    }
    
    .site-header .header-wrap nav {
    flex-direction: column;
}

.site-header .nav-list,.site-header .header-cta-wrap {
    width: 100%;
}

.site-header .nav-list > li > a {
    width: 100%;
    /* justify-content: space-between; */
    display: inline-flex;
}

    /* Custom Buttons - Mobile */
    .site-header .header-cta-wrap .custom-btn {
        width: 100%;
        min-width: auto;
    }

    /* Mobile Overlay */
    .site-header .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .site-header .mobile-overlay.active {
        display: block;
    }
}



.site-footer {
    background-color: var(--e-global-color-f6bdf2b);
    color: #ffffff;

}

.site-footer .footer-container {
    padding-block: 87px;
    width: calc(100% - 100px);
    margin-inline: auto;
}

.site-footer nav {
    padding-bottom: 40px;
    border-bottom: 1px solid #2a2d3a;
}

.site-footer .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.site-footer .logo-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 200px;
}

/*.site-footer .logo {*/
/*    background-color: var(--e-global-color-033b3db);*/
/*    padding: 12px 16px;*/
/*    display: inline-block;*/
/*    width: fit-content;*/
/*}*/

/*.site-footer .logo-text {*/
/*    font-weight: bold;*/
/*    font-size: 16px;*/
/*    line-height: 1.3;*/
/*}*/

.site-footer .site-logo img{
    width: 70px;
}
.site-footer .tagline {
    font-size: 16px;
    font-weight: 600;
    /*margin-top: 8px;*/
}

.site-footer .nav-links {
    display: flex;
    gap: 50px;
    flex: 1;
    /*justify-content: flex-end;*/
    justify-content: space-evenly;
    /*padding-top: 10px;*/
}

.site-footer .nav-column h3 {
    font-size: 18px;
    font-family: 'Gilroy', sans-serif!important;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.site-footer .nav-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*.site-footer .nav-column li {*/
/*    margin-bottom: 12px;*/
/*}*/

.site-footer .nav-column a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
        font-family: "Gilroy", sans-serif;
    font-weight: 400;
    transition: opacity 0.2s;
    line-height: 2;
}

.site-footer .nav-column a:hover {
    opacity: 0.7;
}

/* .site-footer .new-badge {
    background-color: var(--e-global-color-033b3db);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 6px;
    font-weight: 600;
} */

.site-footer .footer-section {
    padding-top: 40px ; 
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.site-footer .newsletter-text {
     
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.site-footer .social-links {
    display: flex;
    gap: 20px;
}

.site-footer .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1d29;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.2s;
    padding: 10px;
}

.site-footer .social-icon:hover {
    background-color: var(--e-global-color-033b3db);
}
.site-footer .social-icon img{
    width: 100%;
}
.site-footer .social-icon:hover img{
    filter: invert(1);
}

@media screen and (max-width:768px){
    .site-footer .footer-container {
    width: calc(100% - 40px);
}

.site-footer .nav-links {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px, 1fr));
    gap: 30px;
    width: 100%;
}

.site-footer .logo-section {
    width: 100%;
}

.site-footer .nav-content {
    width: 100%;
    flex-direction: column;
    gap: 50px;
} 

.site-footer .nav-column {
    width: 100%;
}

.site-footer .footer-content {
    flex-direction: column-reverse;
    gap: 20px;
}

}