
/* =========================================

    Global Style

========================================= */



:root {

    --primary-color: #0f75bd;

    --primary-dark: #0b5a91;

    --primary-hover: #127eca;

    --secondary-color: #de700f;

    --text-color: #222;

    --text-light: #666;

    --text-light-hover: #ccc;

    --background-color: #ffffff;

    --dark-border-color: #d1d1d1;

    --border-color: #e5e5e5;
    
    --white-color: #fff;

    --black-color: #000;

    --light-black-color: #333;

    --font-primary: 'Poppins', sans-serif;

    --font-secondary: 'Open Sans', sans-serif;

    /* Fallback/Body */

    --spacing-unit: 8px;

}



*,

*::before,

*::after {

    box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

:target {
    scroll-margin-top: 180px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    outline: none;
}

a:focus,
a:visited{
    color: initial;
    outline: none;
}

a:hover{
    color: #ccc;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button{
    cursor: pointer;
}

.container-fluid {
    max-width: 1440px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.large-container{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}

@media(max-width:768px){
    .large-container{
        padding: 0 20px;
    }

}


/* Typography Utility */

.text-uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.margin-top{
    margin-top: 50px;
}

.post, .page{
    margin: 0;
}










.fill-button {
    position: relative;
    display: inline-block;
    margin: 10px 0 0;
    border-radius: 5px;
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    line-height: 1.5;
    color: var(--white-color) !important;
    background-color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color .35s ease-in-out;
}

.fill-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    transition: width .35s ease-in-out;
}

.fill-button:hover::after {
    width: 100%;
}

.fill-button.white-bg{
    background-color: var(--white-color);
    color: var(--black-color) !important;
}

.fill-button.white-bg:hover{
    color: var(--white-color) !important;
}


.primary-button:disabled,
.primary-button{
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    padding: 7px 15px !important;
}













/* =========================================

    Header Styles start here

========================================= */


.site-header {
    width: 100%;
    font-family: var(--font-primary);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.site-header .header-top {
    background-color: #145786;
    color: var(--white-color);
    padding: 15px 0;
}

.site-header .header-top .header-top-inner {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.site-header .header-top .header-top-inner .left-content {
    display: flex;
    gap: 20px;
    align-items: center;
}

.site-header .header-top .header-top-inner .left-content a {
    font-size: clamp(11px, 1vw, 14px);
    line-height: 1.25;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white-color);
}

.site-header .header-top .header-top-inner .left-content a:hover{
    color: var(--secondary-color);
}

.site-header .header-top .header-top-inner .left-content a i{
    font-size: clamp(13px, 1vw, 17px);
}

.site-header .header-top .header-top-inner .right-content{
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.site-header .header-top .header-top-inner .right-content a{
    position: relative;
    color: var(--white-color);
    font-size: 12px;
    line-height: 1.25;
}

.site-header .header-top .header-top-inner .right-content a:first-child{
    background-color: #1e8e3e;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.site-header .header-top .header-top-inner .right-content a:not(:first-child){
    padding: 0 0 0 7px;
}

.site-header .header-top .header-top-inner .right-content a:not(:first-child)::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--white-color);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.site-header .header-middle {
    background: linear-gradient(180deg, var(--primary-color) 0%,#1483d1 48.83%, var(--primary-color) 95.18%);
    padding: 20px 0;
}

.site-header .header-middle .header-main-flex{
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.site-header .header-middle .header-main-flex .site-branding{
    display: flex;
    gap: 15px;
    align-items: center;
}

.site-header .header-middle .header-main-flex .site-branding .nav-toggle{
    display: none;
    background-color: transparent;
    border: 0;
    padding: 0;
}

.site-header .header-middle .header-main-flex .site-branding .nav-toggle img{
    display: block;
}

.site-header .header-middle .header-main-flex .site-branding a{
    display: block;
}

.site-header .header-middle .header-main-flex .site-branding a img{
    display: block;
    width: 100%;
    max-width: 200px;
}

.site-header .header-middle .header-main-flex .header-search {
    flex: 1;
    max-width: 600px;
}

.site-header .header-middle .header-main-flex .header-search .search-input-group {
    display: flex;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.site-header .header-middle .header-main-flex .header-search .search-input-group .search-field {
    width: 100%;
    border: none;
    padding: 11px 15px;
    color: #bababa;
    outline: none;
    font-style: italic;
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
}

.site-header .header-middle .header-main-flex .header-search .search-input-group .search-submit {
    background: var(--secondary-color);
    color: var(--white-color);
    border: none;
    padding: 0 30px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 0;
    cursor: pointer;
}

.site-header .header-middle .header-main-flex .header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: flex-end;
}

.site-header .header-middle .header-main-flex .header-actions .switcher{
    border: 1px solid var(--white-color);
    font-size: 12px;
    border-radius: 5px;
    color: var(--white-color);
    padding: 5px 15px;
}

.site-header .header-middle .header-main-flex .header-actions .switcher.currency {
    text-transform: uppercase;
}

.site-header .header-middle .header-main-flex .header-actions .login-btn{
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.site-header .header-middle .header-main-flex .header-actions .login-btn:hover{
    color: var(--secondary-color);
}

.site-header .header-middle .header-main-flex .header-actions .login-btn img{
    width: 27px;
    height: 27px;
}

.site-header .header-middle .header-main-flex .header-actions .xoo-wsc-sc-cont .xoo-wsc-sc-bki::before {
    color: var(--white-color);
    font-size: 24px;
}

/* .site-header .header-middle .header-main-flex .header-actions .cart-btn{
    position: relative;
}

.site-header .header-middle .header-main-flex .header-actions .cart-btn img{
    width: 28px;
    height: 28px;
}

.site-header .header-middle .header-main-flex .header-actions .cart-btn .cart-count{
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--secondary-color);
    border-radius: 50%;
    line-height: 20px;
    font-size: 10px;
    font-family: 'poppins-regular';
    font-weight: 400;
    color: #fff;
    height: 16px;
    width: 16px;
    text-align: center;
    align-content: center;
} */

.site-header .main-navigation {
    border: 1px solid #ddd8d8;
    background-color: var(--white-color);
}

.site-header .main-navigation .menu-wrapper .menu-close{
    display: none;
    position: absolute;
    left: 100%;
    top: 40px;
    border-radius: 0;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1.25;
}


.site-header .main-navigation .menu-wrapper .nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}


.site-header .main-navigation .menu-wrapper .nav-menu > li > a {
    color: var(--light-black-color);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 15px 10px;
    display: block;
}

.site-header .main-navigation .menu-wrapper .nav-menu > li > a:hover {
    color: var(--primary-color);
}

.site-header .main-navigation .menu-wrapper .nav-menu > li.menu-item-has-children > a{
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.site-header .main-navigation .menu-wrapper .nav-menu > li.menu-item-has-children > a::after{
    content: '';
    border-right: 2px solid var(--light-black-color);
    border-bottom: 2px solid var(--light-black-color);
    height: 7px;
    width: 7px;
    transform: translateY(-50%) rotate(45deg);
}

.site-header .main-navigation .menu-wrapper .nav-menu > li > ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background-color: var(--white-color);
    top: 103%;
}

.nav-right-links {
    display: flex;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--light-black-color);
}


@media(max-width:1022px){
    .site-header .header-middle .header-main-flex{
        gap: 10px;
    }
    
    .site-header .header-middle .header-main-flex .site-branding .nav-toggle{
        display: block;
    }
    
    .site-header .header-middle .header-main-flex .site-branding a img{
        width: 100%;
        max-width: 150px;
    }
    
    .site-header .header-middle .header-main-flex .header-search{
        max-width: 100%;
        width: 100%;
        flex: auto;
        order: 3;
    }
    
    .site-header .header-middle .header-main-flex .header-actions .switcher{
        display: none;
    }
    
    .site-header .main-navigation{
        position: fixed;
        left: -100%;
        top: 0;
        max-width: 270px;
        width: 100%;
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .site-header .main-navigation.show{
        left: 0;
    }
    
    .site-header .main-navigation .menu-wrapper .menu-close{
        display: flex;
    }
    
    .site-header .main-navigation .menu-wrapper .nav-menu{
        flex-direction: column;
        height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    /* .site-header .main-navigation .menu-wrapper .nav-menu > li {
        position: inherit;
    } */
    
    .site-header .main-navigation .menu-wrapper .nav-menu > li > a {
        padding: 15px 0;
        border-bottom: 1px solid var(--text-light-hover);
    }

    .site-header .main-navigation .menu-wrapper .nav-menu > li > ul {
        box-shadow: none;
    }
    
    /* .site-header .main-navigation .menu-wrapper .nav-menu > li.menu-item-has-children > a{
        justify-content: space-between;
    }
    
    .site-header .main-navigation .menu-wrapper .nav-menu > li.menu-item-has-children > a::after{
        transform: translateY(-50%) rotate(-45deg);
    }
    
    .site-header .main-navigation .menu-wrapper .nav-menu > li > ul{
        position: absolute;
        width: 100%;
        height: 100%;
        left: 100%;
        top: 0;
        box-shadow: none;
        padding: 50px 20px;
        overflow-y: auto;
        background-color: var(--white-color);
        transition: all 0.3s ease;
    }

    .site-header .main-navigation .menu-wrapper .nav-menu > li > ul::after{
        content: '';
        position: absolute;
        left: 20px;
        top: 25px;
        height: 10px;
        width: 10px;
        border-left: 2px solid var(--light-black-color);
        border-bottom: 2px solid var(--light-black-color);
        transform: rotate(45deg);
    }

    .site-header .main-navigation .menu-wrapper .nav-menu > li.focus > ul{
        left: 0;
    } */

}

@media(max-width:768px){
    .site-header .header-top .header-top-inner{
        justify-content: center;
        flex-direction: column;
    }
    
    .site-header .header-middle .header-main-flex .header-actions .login-btn .login-lnk-mob{
        display: none;
    }
    
    .site-header .header-middle .header-main-flex .header-search .search-input-group .search-submit{
        display: none;
    }

}

@media(max-width:480px){
    .site-header .header-top .header-top-inner .right-content a.delivery-offer{
        width: 100%;
        justify-content: center;
    }
}


/* =========================================

    Header Styles end here

========================================= */



































/* =========================================

    Footer Styles start here

========================================= */

.site-footer {
    background: #222;
    color: #ffffff;
    font-size: 12px;
    line-height: 26px;
}

.site-footer .footer-main {
    padding: 40px 0;
}

.site-footer .footer-main .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.site-footer .footer-main .footer-row .footer-col {
    flex: 1;
    min-width: 200px;
}

.site-footer .footer-main .footer-row .footer-col a:hover{
    color: var(--secondary-color);
}

.site-footer .footer-main .footer-row .footer-col.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.site-footer .footer-main .footer-row .footer-col.footer-contact img{
    max-width: 205px;
}

.site-footer .footer-main .footer-row .footer-col.footer-contact .location-detail{
    margin: 30px 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.site-footer .footer-main .footer-row .footer-col.footer-contact .contact-link {
    display: flex;
    gap: 5px;
    align-items: center;
    width: fit-content;
}

.site-footer .footer-main .footer-row .footer-col h4 {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.site-footer .footer-main .footer-row .footer-col ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .footer-main .footer-row .footer-col ul li{
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}

.site-footer .footer-main .footer-row .footer-col a{
    color: var(--white-color);
    outline: none;
}

.site-footer .footer-main .footer-row .footer-col p {
    margin: 0;
}

.site-footer .footer-main .footer-row .footer-col .social-icons{
    margin: 15px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-footer .footer-main .footer-row .footer-col .social-icons a{
    font-size: 22px;
}

.site-footer .footer-main .footer-row .footer-col .review-image-link{
    margin: 15px 0 0;
    display: block;
}

.site-footer .footer-main .footer-row .footer-col .review-image-link img{
    display: block;
}

.site-footer .footer-main .footer-row .footer-col .newsletter-section {
    margin: 20px 0 0;
}

.site-footer .footer-main .footer-row .footer-col .newsletter-section .newsletter-title-wrapper{
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer .footer-main .footer-row .footer-col .newsletter-section .newsletter-title-wrapper .image img{
    width: 50px;
    height: 50px;
}

.site-footer .footer-main .footer-row .footer-col .newsletter-section .newsletter-title-wrapper h4{
    text-transform: uppercase;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
}

.site-footer .footer-main .footer-row .footer-col .newsletter-section form{
    display: flex;
    flex-direction: column;
}

.site-footer .footer-main .footer-row .footer-col .newsletter-section form input{
    font-size: 14px;
    color: var(--black-color);
    padding: 10px 30px;
    border: 1px solid #ddd;
    background-color: var(--white-color);
    border-radius: 5px;
    font-style: italic;
    outline: none;
}

.site-footer .footer-main .footer-row .footer-col .newsletter-section form button{
    margin: 10px 0 0;
    color: var(--light-black-color);
    background-color: #eee;
    padding: 7px 15px;
    font-weight: 600;
    width: fit-content;
}

.site-footer .footer-main .footer-row .footer-col .newsletter-section form button:hover{
    background-color: #e1e1e1;
}

.site-footer .footer-bottom{
    padding: 15px 0;
    border-top: 1px solid #c4c4c44d;
}

.site-footer .footer-bottom p{
    margin: 0;
    font-size: 12px;
    line-height: 18px;
}

@media(max-width: 480px){
    .site-footer .footer-main .footer-row {
        flex-direction: column;
    }
    
    .site-footer .footer-main .footer-row .footer-col:not(:first-child){
        padding: 30px 0 0;
        border-top: 1px solid #c4c4c44d;
    }
}


/* =========================================

    Footer Styles end here

========================================= */
































/* =========================================

    Breadcrum Style start here

========================================= */

.page-breadcrum-wrapper{
    margin: 15px 0;
}

.page-breadcrum-wrapper .breadcrumb{
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 400;
    color: var(--text-light);
}

.page-breadcrum-wrapper .breadcrumb a{
    color: var(--text-light);
}

.page-breadcrum-wrapper .breadcrumb a:hover{
    color: var(--text-light-hover);
}

.page-breadcrum-wrapper .page-title{
    font-size: clamp(16px, 2vw, 25px);
    line-height: 1.25;
    font-weight: 500;
    margin: 0;
}

/* =========================================

    Breadcrum Style end here

========================================= */































/* =========================================

    Blog Sidebar style start here

========================================= */

.blog-sidebar{
    min-width: 240px;
    max-width: 280px;
    width: 100%;
}

.blog-sidebar form .search-wrapper {
    width: 100%;
    border: 1px solid #c2c2c2;
    overflow: hidden;
    border-radius: 3px;
    display: flex;
}

.blog-sidebar form .search-wrapper input{
    border: 0;
    background-color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    color: #222;
    line-height: 1.3;
    padding: 10px;
    outline: none;
    width: 100%;
}

.blog-sidebar form .search-wrapper button{
    color: #757575;
    background-color: var(--secondary-color);
    border: 0;
    border-radius: 0;
    min-width: 105px;
}

.blog-sidebar .category-wrapper{
    margin: 20px 0 0;
}

.blog-sidebar .category-wrapper .title{
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.blog-sidebar .category-wrapper .blog-categories-list .list-item{
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.blog-sidebar .category-wrapper .blog-categories-list .list-item .list-item-link{
    color: var(--text-light);
}

.blog-sidebar .category-wrapper .blog-categories-list .list-item .list-item-link:hover{
    color: var(--text-light-hover);
}

.blog-sidebar .category-wrapper .blog-categories-list .list-item.shaded{
    position: relative;
    border-bottom: 0;
}

.blog-sidebar .category-wrapper .blog-categories-list .list-item.shaded:after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 20;
    -webkit-box-shadow: inset 0px -24px 35px -5px var(--white-color);
    -moz-box-shadow: inset 0px -24px 35px -5px var(--white-color);
    box-shadow: inset 0px -24px 35px -5px var(--white-color);
}

.blog-sidebar .category-wrapper .blog-categories-list .hidden {
    display: none;
}

.blog-sidebar .category-wrapper .show-more-categories{
    border: 0;
    background: transparent;
    padding: 0;
    color: #006bb4;
    margin: 5px 0 0;
}

.blog-sidebar .category-wrapper .all-categories-link,
.blog-sidebar .category-wrapper .parent-category{
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.blog-sidebar .category-wrapper .all-categories-link a{
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.blog-sidebar .category-wrapper .all-categories-link a::before{
    content: '';
    border-left: 1px solid var(--text-light);
    border-bottom: 1px solid var(--text-light);
    height: 7px;
    width: 7px;
    transform: rotate(45deg);
}

.blog-sidebar .category-wrapper .all-categories-link a:hover::before{
    border-color: var(--text-light-hover);
}

.blog-sidebar .category-wrapper .parent-category.active{
    padding: 10px 0 10px 10px;
    border-left: 3px solid var(--secondary-color);
}

.blog-sidebar .category-wrapper .parent-category a{
    color: var(--text-light);
    font-weight: 700;
}

.blog-sidebar .category-wrapper .all-categories-link a:hover,
.blog-sidebar .category-wrapper .parent-category a:hover{
    color: var(--text-light-hover);
}

.blog-sidebar .recent-posts-wrapper{
    margin: 40px 0 0;
}

.blog-sidebar .recent-posts-wrapper .title{
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.blog-sidebar .recent-posts-wrapper .recent-posts-list{
    display: flex;
    gap: 30px;
    flex-direction: column;
}

.blog-sidebar .recent-posts-wrapper .recent-posts-list .recent-post-item .recent-post-image-link{
    display: block;
}

.blog-sidebar .tags-wrapper{
    margin: 40px 0;
}

.blog-sidebar .tags-wrapper .title{
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 20px 0;
}

.blog-sidebar .tags-wrapper .tags-list{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.blog-sidebar .tags-wrapper .tags-list .list-item-link{
    background-color: var(--white-color);
    border-radius: 3px;
    border: 1px solid #e3e3e3;
    color: #00699d;
    padding: 1px 5px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
}

.blog-sidebar .tags-wrapper .tags-list .list-item-link:hover{
    color: var(--text-light-hover);
}

.blog-sidebar .tags-wrapper .view-all-link{
    display: block;
    width: fit-content;
    margin: 10px 0 0;
}


@media(max-width:768px){
   
    .blog-sidebar{
        max-width: 100%;
        padding: 0 0 40px 0;
    }
    
}

/* =========================================

    Blog Sidebar style end here

========================================= */





































/* =========================================

    Pagination Style start here

========================================= */

.custom-pagination{
    text-align: end;
    margin: 40px 0 0;
}

.custom-pagination .page-numbers {
    padding: 6px;
    outline: none;
}

.custom-pagination .page-numbers.current{
    text-decoration: underline;
}


@media(max-width:575px){

    .custom-pagination .page-numbers{
        display: none;
    }

    .custom-pagination .page-numbers.dots,
    .custom-pagination .page-numbers.next,
    .custom-pagination .page-numbers.prev {
        display: inline-block;
    }


}

/* =========================================

    Pagination Style end here

========================================= */
































/* =========================================

   FAQ Page Styles

========================================= */

/*.faq-container {

    padding: 30px 0 60px;

    margin: 0 auto;

}



.faq-category-title {

    color: var(--primary-color);

    font-size: 24px;

    margin: 30px 0 15px;

    border-bottom: 2px solid #eee;

    padding-bottom: 10px;

}



.faq-item {

    margin-bottom: 10px;

    border: 1px solid #e5e5e5;

    border-radius: 4px;

    overflow: hidden;

}



.faq-question {

    background: #f9f9f9;

    color: var(--light-black-color);

    line-height: 1.3;

    padding: 15px 20px;

    width: 100%;

    text-align: left;

    border: none;

    outline: none;

    font-size: 16px;

    font-weight: 600;

    cursor: pointer;

    transition: background 0.3s, color 0.3s;

    position: relative;

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.faq-question:hover {

    background: #f0f0f0;

}



.faq-question.active {

    background: var(--primary-color);

    color: #fff;

}



.faq-question::after {

    content: '+';

    font-size: 20px;

    font-weight: bold;

}



.faq-question.active::after {

    content: '-';

}



.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease-out;

    background: #fff;

}



.faq-answer p {

    padding: 20px;

    margin: 0;

    color: #555;

    line-height: 1.6;

} */

/* =========================================
   Contact Page Styles (Redesign)
   ========================================= */

.contact-redesign-container {
    margin: 40px auto;
}

/* Cards Row */
.contact-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    flex: 1;
    max-width: 400px;
    border: 1px solid #1077c1;
    /* Blue border matches image */
    border-radius: 5px;
    padding: 70px 20px 30px 20px;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 30px;
}

.contact-card .card-icon {
      position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
    background: #1077c1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0;
}

.contact-card .card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-black-color);
    margin: 0 0 5px;
}

.contact-card .card-text {
    font-size: 16px;
    color: #555;
    margin: 0 0 25px;
}

.contact-card .card-button {
    display: inline-block;
    padding: 8px 30px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    border-radius: 3px;
    transition: all 0.3s;
}

.contact-card .card-button:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Help Text Section */
.contact-help-text {
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.contact-help-text .help-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--light-black-color);
    margin-bottom: 10px;
}

.contact-help-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-help-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;
    }
}

