@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

:root {
    --primary-color: #111111;
    --secondary-color: #F8F7F4;
    --tertiary-color: #000000;
    --quaternary-color: #FFFFFF;
    --quinary-color: #003C43;
    --text-color: #444444;
    --bg-btn-color: #E1EDD9;
    --step-title-color: #020510;
}

body {
    background-color: var(--secondary-color);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
}

/* header start here */
header {
    padding: 10px 0;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.35s ease-out;
    background-color: var(--quaternary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-content .logo a {
    display: block;
}

.header-content .logo a img {
    max-width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

.menu-list ul li {
    position: relative;
}

.menu-list ul li a {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.menu-list ul .sub-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: var(--quaternary-color);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    box-shadow: 0px 0px 4px 0px #003C430F;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    min-width: 220px;
    display: block;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu.show-submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}



span.sub-menu-icon {
    position: static;
    top: 4px;
    color: var(--primary-color);
    right: -15px;
    cursor: pointer;
    font-size: 14px;
    vertical-align: middle;
}

.main-content {
    overflow: hidden;
}

.menu-list ul li.active>a {
    color: var(--quinary-color);
}

.menu-list ul li>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--quinary-color);
    transition: width 0.3s cubic-bezier(.77, 0, .18, 1);
}

li.active span.sub-menu-icon i {
    color: var(--quinary-color);
}

.menu-list ul li a:hover::after,
.menu-list ul li.active>a::after {
    width: 100%;
}

span.menu-close {
    display: none;
}

.menu-icon {
    display: none;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* header end here   */


/* hero section start here */
.hero-section {
    padding: 80px 0 40px;
}

.hero-content .row {
    align-items: center;
}

.hero-content-right {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-content-right img {
    width: 100%;
    height: 536px;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1), rgba(74, 124, 89, 0.1));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-content-right:hover .image-overlay {
    opacity: 1;
}


.reform-title {
    border: 1px solid rgba(0, 60, 67, 0.1);
    border-radius: 44px;
    color: #003C43;
    padding: 8px 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: normal;
    vertical-align: middle;
    display: inline-block;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-content-left h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: var(--primary-color);
    line-height: 120%;
    letter-spacing: -0.3px;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 20px;
    max-width: 490px;
    animation: fadeInUp 1s ease-out 0.4s both;

}

.hero-content-left p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--text-color);
    width: 100%;
    max-width: 638px;

}

.btn-contact-wrapper {
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-contact-wrapper {
    display: inline-block;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    background-color: #003C43;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 8px 10px 20px;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #002a30;
}

.icon-container {
    position: relative;
    width: 30px;
    height: 30px;
    background-color: var(--bg-btn-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.icon {
    color: #003C43;
    transition: all 0.3s ease;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 23px;
    transform: rotate(45deg);
}

.icon-default {
    transform: translateY(0);
    opacity: 1;
}

.icon-hover {
    transform: translateY(24px);
    opacity: 0;
}

/* Fixed hover selectors - changed from .animated-button to .btn-contact */
.btn-contact:hover .icon-default {
    transform: translateY(-24px);
    opacity: 0;
}

.btn-contact:hover .icon-hover {
    transform: translateY(0);
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Animation classes */
.hero-support-tag {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-heading {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-desc {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn-wrap {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-img {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-content-left p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.our_service_text h3 {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.our_service_text p {
    animation: fadeInRight 1s ease-out 0.4s both;
}

.services_page .feature-box {
    border: 1px solid #11111126;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.our_service.services_page .feature-box:hover {
    background-color: #EBEEEA;
}



.contact_us {
    padding: 80px 0 0;
    text-align: center;
}

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



.services_page .feature-box p {
    width: 100%;
    max-width: 339px;
}


@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}


/* hero section end here */

/* our_service  start*/
.our_service {
    padding: 80px 0;
}

.our_service_text {
    text-align: center;
    width: 100%;
    max-width: 549px;
    margin: 0 auto;
}

.section_title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.5px;
    margin-top: 12px;
    margin-bottom: 20px;
    color: var(--primary-color);

}

.how_we_work_left_content h3 {
    width: 100%;
    max-width: 500px;
}

.disc-text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--text-color);

}

.our_service_main {
    margin-top: 40px;
}

.our_service .our_service_main .row .col-lg-6:first-child,
.our_service .our_service_main .row .col-lg-6:nth-child(2) {
    margin-bottom: 24px;
}

.our_service_card {
    box-shadow: 0px 0px 4px 0px #003C430F;
    background: var(--quaternary-color);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    transition: opacity 0.7s cubic-bezier(.77, 0, .18, 1), transform 0.7s cubic-bezier(.77, 0, .18, 1);
    cursor: pointer;
    position: relative;
    padding-bottom: 60px;
}

.our_service_card .service_area {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
}

.our_service_icon {
    margin-bottom: 15px;
}

.our_service_text_box h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 19px;
    line-height: 130%;
    letter-spacing: 0;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.our_service_text_box p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service_area a {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--quinary-color);
    position: relative;
}

.service_area a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--quinary-color);
    transition: width 0.3s cubic-bezier(.77, 0, .18, 1);
}

.service_area a:hover::after {
    width: 100%;
}




@keyframes serviceFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



.our_service_card:hover {
    background-color: #EBEEEA;

}







/* our_service  end*/


/* how_we_work start */
.how_we_work {
    background: var(--quaternary-color);
    padding: 80px 0;
}

.steps {
    display: flex;
    gap: 20px;

}

.steps>img {
    width: 30px;
    height: 30px;
    margin-top: 10px;
    object-fit: cover;
}

.step-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: 0;
    vertical-align: middle;
    margin-bottom: 12px;
    color: var(--step-title-color);
}

.right-col {
    max-width: 458px;
    margin-left: auto;
}

.step-desc {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    vertical-align: middle;
    color: var(--text-color);
}

.steps {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 13px;
    width: 2px;
    height: 100%;
    border-left: 2px dotted #02051033;
    opacity: 0.6;
    bottom: 0;
    z-index: -1;
}


.step-wrapper .steps:last-child::before {
    display: none;
}

.step-wrapper .steps:last-child {
    margin-bottom: 0;
}
















/* how_we_work end */


/* why_choose_paars start */
.why_choose_paars {
    padding: 80px 0;
}

.why_choose_paars_content {
    text-align: center;
    width: 100%;
    max-width: 914px;
    margin: 0 auto;
}

.why_choose_paars_content p {
    width: 100%;
    max-width: 648px;
    margin: 0 auto;
}

.image-center {
    height: 100%;
    width: 100%;
}

.image-center img {
    width: 100%;
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.approach-grid .left-col,
.approach-grid .center-col,
.approach-grid .right-cols {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.approach-grid .feature-box {
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
}

.feature-box {
    border: 1px solid #11111126;
    border-radius: 12px;
    transform: all 0.3s;
}


.approach-grid .feature-box h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-grid .feature-box p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--text-color);
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-icon {
    margin-bottom: 20px;
}

.left-col .feature-box:last-child,
.right-cols .feature-box:last-child {
    margin-bottom: 0;
}

/* why_choose_paars end */
/* together_for_better_governance start */
.together_for_better_governance {
    background: url(../images/bg-together.png);
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.together_for_better_governance_content {
    text-align: center;
}

.building-better .row {
    row-gap: 30px;
}

.building-better-card {
    border: 1px solid #11111126;
    background: var(--quaternary-color);
    padding: 30px;
    height: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.building-better-card:hover {
    background: #EBEEEA;
}


.building-better {
    margin-top: 60px;
}

.building-better-card-icon {
    margin-bottom: 30px;
}

.building-better-card-content h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0;
    color: var(--primary-color);
}



.building-better-card-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.building-better-card-content p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--tertiary-color);
    font-size: 16px;
}

/* together_for_better_governance start */
/* our Blog start */
.our_blog {
    padding: 80px 0;
}

.our_blog_content {
    text-align: left;
    margin-bottom: 48px;
    width: 100%;
}

.article-card-image img {
    width: 100%;
    transition: all 0.3s ease;
}

.article-card-content span {
    font-family: Lato, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--quinary-color);
}

.article-card-content h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0;
    color: var(--primary-color);
    margin-top: 8px;
    margin-bottom: 16px;
}

.article-card-image {
    margin-bottom: 22px;
    overflow: hidden;
    border-radius: 12px;
}

.article-card-image img {
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.article-card-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 60, 67, 0.15);
}

.read-more a {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--quinary-color);
    position: relative;
}

.read-more a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--quinary-color);
    transition: width 0.3s cubic-bezier(.77, 0, .18, 1);
}

.read-more a:hover::after {
    width: 100%;
}

/* our Blog end */

/* footer start */
footer.footer {
    background-color: #FFFFFF;
    padding-top: 60px;

}

.top-footer-wrapper {
    border-bottom: 1px solid #11111126;
    padding-bottom: 40px;
}

.footer-menu-wrapper ul {
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
}

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

.footer-menu-right ul {
    justify-content: flex-end;
}

.footer-menu-wrapper ul li a {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0;
    color: var(--text-color) !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-menu-wrapper ul li a:hover {
    color: var(--quinary-color) !important;
}

.center-footer-inner {
    text-align: center;
    padding: 60px 0;
}

.center-footer-inner h3 {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 25px;
    letter-spacing: 0px;
    margin-bottom: 22px;
    color: var(--tertiary-color);
}

.center-footer-inner p {
    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    color: var(--text-color);
    width: 100%;
    max-width: 808px;
    margin: 0 auto;
}

span.footer-tag {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 16.5px;
    letter-spacing: 0;
    text-align: center;
    padding: 14px 31px !important;
    color: #003C43;
    border-radius: 23px;
    display: inline-block;
}

span.footer-tag a {
    color: #003C43;
}

.footer-tag {
    transition: all 0.3s ease;
}

.footer-tag:hover {
    transform: scale(1.1) rotate(0deg);
}

.footer-tags-row {
    border-bottom: 1px solid #11111126;
    padding-bottom: 22px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tag-1 {
    background-color: #E6F5F7;

    transform: rotate(-27deg);

}

.tag-2 {
    background-color: #F9F4F0;
    transform: rotate(13deg);
}

.tag-3 {
    background-color: #EBEEEA;
    transform: rotate(0deg);
}

.tag-4 {
    background-color: #DEDAF1;
    transform: rotate(-15deg);
}

.tag-5 {
    background-color: #EBEEEA;
    transform: rotate(0deg);
}

.tag-6 {
    background-color: #F9F4F0;
    transform: rotate(13deg);
}


.tag-7 {
    background-color: #E6F5F7;

    transform: rotate(-13deg);
}

.tag-8 {
    background-color: #EBEEEA;

    transform: rotate(0deg);
}

.tag-9 {
    background-color: #DEDAF1;

    transform: rotate(-15deg);
}

.tag-10 {
    background-color: #EBEEEA;

    transform: rotate(0deg);
}


.tag-11 {
    background-color: #F9F4F0;
    padding: 14px 18px !important;
    transform: rotate(21deg);
}

.bottom-footer {
    padding: 20px 0;
}

.bottom-footer-inner p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
    vertical-align: middle;
    margin: 0;
    color: var(--primary-color);
}

/* footer end */


/* services pages css start */
.what-we-offer {
    padding-top: 82px;
    padding-bottom: 60px;
}

.what-we-offer-inner .row {
    align-items: center;
}

.what-we-offer-content p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: justify;
    color: var(--text-color);
}

.what-we-offer-item {
    background-color: var(--quaternary-color);
    border-radius: 12px;
    padding: 30px;
}

.what-we-offer-item-wrapper {
    padding-top: 72px;
}

.what-we-offer-item-content-inner-icon {
    margin-bottom: 30px;
}

.what-we-offer-item-content-inner-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.what-we-offer-item .row {
    align-items: center;
}

.what-we-offer-item-content-inner-text h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0;
    color: var(--primary-color);

}

.what-we-offer-item-content-inner-text-list ul {
    padding: 0;
}


.what-we-offer-item-content-inner-text-list ul li {
    position: relative;
    padding-left: 20px;
}

.what-we-offer-item-content-inner-text-list ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--quinary-color);
    width: 2px;
    height: 100%;
    border-radius: 50%;
}

.what-we-offer-item-content p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: justify;
    color: var(--text-color);

}

.what-we-offer-item:not(:last-child) {
    margin-bottom: 30px;
}

.what-we-offer-item-second .what-we-offer-item-content {
    text-align: right;
}

.other-services-content {
    text-align: center;
}

.other-services .our_service_card {
    height: 100%;
}

.other-services .our_service_card .our_service_icon img {
    width: 60px;
    height: 60px;
}

/*  */
/* about us page css start */
/* about page styling start */
.text-main h1 {
    font-size: 50px;
    font-weight: bold;
    font-family: 'Manrope';
    line-height: 70px;
    color: #111;
    margin: 12px 0 20px;
}

.image-section img {
    width: 100%;
    /* max-width: 482px; */
    max-width: 486px;
}

.image-section {
    text-align: right;
}

ul.feature-list {
    padding-left: 0;
}

.disc-text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: #444444;
}

.approach .disc-text {
    max-width: 894px;
    margin: 0 auto;
}

.what-we-offer-item .col-md-5 {
    padding-right: 0;
}

.who-we-are {
    background: #F8F7F4;
    padding: 80px 0;
}

/* about page styling end */
/* what we do styling start */
.who-we-do {
    padding: 80px 0;
    background: #fff;

}

.pras_has {
    font-size: 40px;
    font-weight: 600;
    line-height: 58px;
    color: #111;
    margin: 12px 0 20px;
    font-family: "Poppins", sans-serif;
}

.text-section {
    max-width: 633px;
    margin: 0 0 0 auto;
}

.who-we-do .image-section img {
    height: 537px;
    object-fit: cover;
    border-radius: 24px;
    max-width: 547px;
}

.text-section .btn-contact-wrapper {
    margin-top: 24px;
}

.text-section p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
    color: #444444;
    /* color: #888; */

}

.text-main {
    max-width: 698px;
    float: left;
}



/* what we do styling end */
/* matter styling start */


.reform-title {
    border: 1px solid rgba(0, 60, 67, 0.1);
    border-radius: 44px;
    color: #003C43;
    padding: 8px 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: normal;
    vertical-align: middle;
    display: inline-block;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.why-it-matter {
    background: #fff;
    padding: 80px 0px;
}

.why-it-matter .row {
    min-height: 555px;
    height: 100%;
}

.matter_img1 {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.matter_img2 {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.together_why {
    text-align: center;
    max-width: 576px;
    width: 100%;
    margin: 0 auto;
}

/* matter styling end */

.btn-contact-wrapper {
    display: inline-block;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    background-color: #003C43;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px 10px 20px;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #002a30;
}



.icon {
    color: #003C43;
    transition: all 0.3s ease;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    font-size: 20px;
    transform: rotate(45deg);
}

.icon-default {
    transform: translateY(0);
    opacity: 1;
}

.icon-hover {
    transform: translateY(24px);
    opacity: 0;
}

/* Fixed hover selectors - changed from .animated-button to .btn-contact */
.btn-contact:hover .icon-default {
    transform: translateY(-24px);
    opacity: 0;
}

.btn-contact:hover .icon-hover {
    transform: translateY(0);
    opacity: 1;
}

/* approach styling start */
.approach {
    padding: 80px 0px;
}

section.approach .feature-box {
    border: none;
    border-radius: 0 !important;
}

.approach .feature-box {
    border-right: 1px dashed #ddd !important;
}


.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 36px;
    display: block;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 22px;
    color: #111111;
    font-family: 'Manrope';
    text-align: left;
}

.why-it-matter .btn-contact-wrapper {
    margin-top: 32px;
}

.approach .feature-box {
    padding: 0 40px 0 20px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Lato';
    color: #444444;
    text-align: left;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    background: url(../images/charm_circle-tick.png);
    width: 20px;
    height: 22px;
}

.app_on {
    text-align: center;
    margin-bottom: 60px;
}

.feature-box.last_child {
    border: unset !important;
}

/* approach styling end */
/* Engagement styling start */
.scale_box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.scale_box h4 {
    font-size: 24px;
    line-height: 34px;
    color: #111111;
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    margin: 18px 0 15px;
}

.scale_box p {
    font-size: 16px;
    line-height: 26px;
    color: #444;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    width: 100%;
    max-width: 443px;
    margin: 0;
}

.scale_box {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

/*section.Engagement .row .col-lg-6 {
    margin-bottom: 30px;
}*/

section.Engagement {
    background: #f8f7f4;
    padding: 80px 0px 10px;
}

.matter_img1 img,
.matter_img2 img {
    width: 100%;

}



.together_why {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

/* Engagement styling end */

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    overflow-y: auto;
    padding: 40px 0;

}

.modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 1200px;
    width: 95%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 32px;
    color: #002a30;
    cursor: pointer;
    z-index: 2;
}

.modal-inner {
    display: flex;
    flex-wrap: wrap;
}

.modal-image {
    flex: 1 1 45%;
    min-width: 220px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    position: relative;
}



.modal-contact-info a {
    color: #0072b1;
    text-decoration: none;
}

.modal-form-inner img {
    margin-bottom: 30px;
}


.modal-form {
    flex: 1 1 47%;
    min-width: 260px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-form h2 {
    margin: 0 0 8px 0;
    font-size: 28px;
    color: #1a1a1a;
}

.modal-form h3 {
    margin: 0 0 12px 0;
    font-size: 32px;
    font-family: 'Manrope';
    color: #111;
    font-weight: 700;
}

.modal-form p {
    font-size: 16px;
    color: #414141;
    margin-bottom: 5px;
    font-family: 'Lato';
    font-weight: 400;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 10px 12px;
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.modal-inner .form-group label {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope';
    color: #111;
    margin-bottom: 12px;
}

.modal-form form {
    border-top: 1px solid #dbdbdb;
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.modal-form textarea {
    min-height: 70px;
    resize: vertical;
    resize: none;
}

.modal-form button {
    background: #003C43;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Manrope';
    display: inline-block;
    border: 1px solid #003C43;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-form button:hover {
    background: transparent;
    border: 1px solid #003C43;
    color: #003C43;
}

.modal-form form input::placeholder,
.modal-form form textarea::placeholder {
    font-family: 'Manrope';
    font-size: 16px;
    color: #707070;
    font-weight: 500;
}

.modal-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
    border-radius: unset !important;
    transform: scaleX(-1);

}

.modal-contact-info {
    margin-top: 24px;
    font-size: 15px;
    position: relative;
    display: flex;
    gap: 10px;
    padding: 20px;
    background: #003C4333;
    justify-content: space-between;
}

.modal-contact-info p {
    color: #ffffffc7;
    font-family: 'Lato';
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}

.modal-contact-info a {
    color: #fff;
    font-weight: 700;
    font-family: 'Lato';
    font-size: 18px;
}

/* 404 Error Page Styles */
.error-404-section {
    padding: 120px 0 80px;
    background-color: var(--secondary-color);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-404-content {
    text-align: center;
}

.error-404-inner {
    max-width: 600px;
    margin: 0 auto;
}

.error-404-icon {
    margin-bottom: 30px;
}

.error-404-icon i {
    font-size: 80px;
    color: var(--quinary-color);
    opacity: 0.8;
}

.error-404-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 120px;
    line-height: 1;
    color: var(--quinary-color);
    margin-bottom: 10px;
    letter-spacing: -2px;
}

.error-404-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.error-404-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--quinary-color);
    color: var(--quaternary-color);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--quaternary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 60, 67, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--bg-btn-color);
    color: var(--primary-color);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background-color: var(--quinary-color);
    color: var(--quaternary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 60, 67, 0.3);
}

.error-404-suggestions {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 60, 67, 0.1);
}

.error-404-suggestions h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: var(--quaternary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.suggestion-item:hover {
    background-color: var(--quinary-color);
    color: var(--quaternary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 60, 67, 0.2);
}

.suggestion-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}


/* Our Clients styling start */
.our_clients {
    background: #fff;
    padding: 80px 0px;
}



.client-logo {
    background: rgba(248, 247, 244, 1);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    margin: 0 20px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our_clients_slider {
    margin-top: 50px;
}

.client-logo img {
    width: 100%;
}

/* our track record styling start */
.our_track_record {
    padding: 80px 0px;
}

/* our track record styling start */
.our_track_record {
    padding: 80px 0px;
}



/* our track record styling start */
.our_track_record {
    padding: 80px 0px;
}

/* Our Previous Projects/Expertise Section Styles */
.our_previous_projects {
    padding: 100px 0;
    background-color: var(--secondary-color);
}



.our_previous_projects_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 44px;
    gap: 40px;
}

.our_previous_projects_content {
    flex: 1;
    max-width: 680px;
}



.our_previous_projects_navigation {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}




.expertise_cards {
    margin-top: 40px;
}

.expertise-card {
    background-color: var(--quaternary-color);
    border-radius: 16px;
    padding: 20px;
    height: inherit !important;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    margin: 0 10px;
}

.expertise_cards .slick-track {
    display: flex !important;
}

.expertise-card:hover {
    transform: translateY(-5px);
}

.expertise-card-icon {
    margin-bottom: 25px;
    text-align: center;
}

.expertise-card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.related_blogs .blog-card-wrapper {
    margin-top: 40px;
}

.feature-box.aos-init.aos-animate {
    transition: all 0.3s !important;
}

.expertise-card-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.expertise-card-content p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--text-color);
    line-height: 28px;
    margin-bottom: 15px;
}

.expertise-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.expertise-checklist li:last-child {
    margin-bottom: 0;
}

.expertise-checklist li i {
    color: var(--quinary-color);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.our_previous_projects_navigation button {
    display: block !important;
    background-color: rgba(223, 228, 226, 1);
}

.our_previous_projects_navigation button:hover {
    background-color: var(--quinary-color);
    color: var(--quaternary-color);
}


/* Blogs Section Styles */


.blogs-section {
    padding: 80px 0;
}

.blogs-section-inner {
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    text-align: center;
}

.blog-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-card-content {
    background: rgba(255, 255, 255, 1);
    padding: 20px;
    border-radius: 12px;
    margin-top: -20px;
    z-index: 1;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card-wrapper {
    margin-top: 50px;
}

.blog-card-wrapper .row div[class^="col"] {
    margin-bottom: 30px;
}

.blog-card-content span {
    font-family: Lato, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--quinary-color);
}

.blog-card-content p {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0;
    color: var(--primary-color);
    margin-top: 8px;
    margin-bottom: 16px;
}

.blog-card-wrapper .btn-contact-wrapper {
    text-align: center;
    display: block;
}

.blog-card-image {
    overflow: hidden;
    border-radius: 12px;
}

.blog-card-inner:hover .blog-card-image img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.blog-details-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.blog-details-header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    gap: 34px;
}

.blog-details-inner {
    border-top: 1px solid rgba(17, 17, 17, 0.15);
    padding: 25px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.15);
    margin-top: 10px;
}

.blog-details-header h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: rgba(17, 17, 17, 1);
    margin-bottom: 0;
}

.read-time {
    border-left: 1px solid rgba(17, 17, 17, 0.15);
    border-right: 1px solid rgba(17, 17, 17, 0.15);
    padding: 0 14px;
}

.blog-details-header p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    color: rgba(68, 68, 68, 1);
    margin-bottom: 0;
}

.blog-details-content-inner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.blog-details-content {
    display: grid;
    margin-top: 60px;
    grid-template-columns: 880px 1fr;
    gap: 90px;
}

.blog-details-content-inner-text-wrapper {
    margin-top: 40px;
}

.blog-details-content-inner-text-wrapper {
    margin-top: 40px;
}

.blog-details-content-inner-text h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.blog-details-content-inner-text p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
}

.travel {
    background: rgba(222, 218, 241, 1);
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.travel-inner img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

.travel-inner-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0.005em;
    text-align: center;
    margin: 0;
}

.travel-inner-content span {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(68, 68, 68, 1);
}

.travel-inner-content p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
    text-align: center;

}

.regulatory {
    background: rgba(255, 255, 255, 1);
    padding: 20px;
    margin-top: 30px;
    border-radius: 12px;
}

.regulatory-inner h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.005em;
}

.regulatory-inner p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
}

.regulatory-inner .btn-contact-wrapper {
    margin-top: 0;
}

.social-links a {
    background: rgba(255, 255, 255, 1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    color: #000;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #003C43;
    color: #fff;
}


.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.travel-inner-content-header {
    margin: 10px 0;
}


.our_previous_projects_navigation button {
    color: #000;
}

/* Blogs Section Styles */

button.ocul {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--quinary-color);
    position: relative;
    background: transparent;
    border: 0;
    display: none;
}

.forscroll {
    overflow: hidden;
}

.mobinbot {
    display: none;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.expertise_cards .slick-track .slick-slide {
    height: auto;
}

/* #menu-header-menu .dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
} */

.together_for_better_governance .slick-arrow {
    display: none !important;
}

#getInTouch .modal-dialog,
#requestProposalModal .modal-dialog,
#partnerWithUsModal .modal-dialog {
    max-width: 1200px;
    justify-content: center;
}

#getInTouch .modal-dialog .modal-body,
#requestProposalModal .modal-dialog .modal-body,
#partnerWithUsModal .modal-dialog .modal-body {
    padding: 0;
}

#getInTouch .modal-dialog button.btn-close,
#requestProposalModal .modal-dialog button.btn-close,
#partnerWithUsModal .modal-dialog button.btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    z-index: 2;
}

#getInTouch .modal-dialog button.btn-close:focus,
#requestProposalModal .modal-dialog button.btn-close:focus,
#partnerWithUsModal .modal-dialog button.btn-close:focus {
    box-shadow: none;
}

body .wpcf7 form .wpcf7-response-output {
    margin: 0em 0.5em 1em;
}

.modal-form form .wpcf7-response-output {
    order: 4;
}

.modal-form form>p:not([class]) {
    order: 5;
}

.expertise_cards .our_previous_projects_navigation {
    justify-content: end;
    margin: 0 0 60px;
}

.modal-form form span.wpcf7-spinner {
    margin: 20px auto;
    display: block;
}

/*new laguage change css */
.menu-list ul .pll-parent-menu-item {
    padding: 7px 5px;
    background: #E1EDD9;
    height: 35px;
}

.menu-list ul .pll-parent-menu-item>a {
    display: none;
}

.menu-list ul .pll-parent-menu-item ul.sub-menu {
    position: static;
    display: flex;
    visibility: visible;
    opacity: 1;
    padding: 0;
    transform: translate(0, 0);
    justify-content: center;
    gap: 0;
    background: transparent;
    border: 0;
    min-width: 0 !important;
    width: auto !important;
    flex-direction: row-reverse;
    padding: 0 !important;
    box-shadow: none !important;
}

.menu-list ul .pll-parent-menu-item ul.sub-menu li.lang-item a {
    border: none;
    background: transparent;
    padding: 6px 15px !important;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    color: #003C43;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.menu-list ul .pll-parent-menu-item ul.sub-menu li.lang-item.current-lang a {
    background: #fff;
    padding: 6px 20px !important;
}

/*new laguage change css */


.menu-header-menu-espanol #menu-header-menu .dropdown ul.sub-menu {
    display: block;
}

.what-we-offer.offerdesk-main {
    padding-top: 40px;
    padding-bottom: 80px;
}

.home .hero-section {
    padding: 80px 0 0;
}