/* ===================================================
   GOOGLE FONT
=================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===================================================
   ROOT VARIABLES
=================================================== */
:root {
    --gbp-section-padding: 40px 0;
    --gbp-mobile-section-padding: 20px 0;

    --gbp-primary-color: #020066;
    --gbp-secondary-color: #C00063;

    --gbp-hover-color: #C00063;

    --gbp-white-color: #fff;
    --gbp-body-color: #F7F8FC;
    --gbp-light-white-color: rgba(255, 255, 255, 0.92);
    --gbp-black-color: #000000;
    --gbp-paragraph-color: #5B6475;
    --gbp-h6-color: #020066;

    --gbp-text-color: #64748b;
    --gbp-heading-color: #0f172a;

    --gbp-border-color: #e2e8f0;
    --gbp-bg-light: #f8fafc;

    --gbp-primary-font: 'Poppins', sans-serif;
    --gbp-secondary-font: 'Montserrat', sans-serif;

    --gbp-heading-font: 'Yantramanav', sans-serif;
    --gbp-body-font: 'Roboto', sans-serif;

    --gbp-transition: all 0.3s ease;

    --gbp-shadow: 0 10px 30px rgba(2, 0, 102, 0.06);
}

/* ===================================================
   RESET
=================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;

    font-family: var(--gbp-body-font);

    color: var(--gbp-text-color);

    background: var(--gbp-body-color);
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    transition: var(--gbp-transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}



/* ===================================================
   MAIN WRAPPER
=================================================== */
.gbp-site-wrapper {
    overflow: hidden;
    padding-top: 122px;
}


:root {
    --mobile-space: 10px;
}

.container,
.container-fluid {
    padding-left: var(--mobile-space);
    padding-right: var(--mobile-space);
}


/* ===================================================
   TOPBAR
=================================================== */
.gbp-topbar-area {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: var(--gbp-primary-color);

    padding: 12px 40px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.gbp-topbar-flex {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.gbp-topbar-left,
.gbp-topbar-right {

    display: flex;
    align-items: center;
    gap: 30px;
}

.gbp-topbar-link {

    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--gbp-light-white-color);

    font-size: 12px;
    font-weight: 500;
}

.gbp-topbar-link i {
    font-size: 15px;
    color: var(--gbp-light-white-color);
}

.gbp-topbar-link i:hover,
.gbp-topbar-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: var(--gbp-secondary-color);
    opacity: 1;
}

/* Right Topbar Items */
.gbp-topbar-right .gbp-topbar-link {

    position: relative;

    padding-right: 18px;
    margin-right: 18px;
}

/* Vertical Line */
.gbp-topbar-right .gbp-topbar-link:not(:last-child)::after {

    content: '';

    position: absolute;

    top: 50%;
    right: -15px;

    width: 1px;
    height: 18px;

    background:
        var(--gbp-bg-light);

    transform: translateY(-50%);
}

/* ===================================================
   HEADER
=================================================== */
/* ===================================================
   TOPBAR
=================================================== */
.gbp-topbar-area {

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: var(--gbp-primary-color);

    padding: 12px 40px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===================================================
   NAVBAR
=================================================== */
.gbp-navbar-area {

    position: fixed;

    top: 40px;
    /* FIXED GAP ISSUE */

    left: 0;

    width: 100%;

    z-index: 9998;

    background: var(--gbp-white-color);

    padding: 0 40px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.04);
}

.gbp-navbar-inner {

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

/* ===================================================
   PREMIUM TOGGLE BUTTON
=================================================== */
.gbp-mobile-toggle {

    width: 42px;
    height: 42px;

    border: none;
    outline: none;

    background: transparent;

    display: none;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    position: relative;
}

/* Hamburger Lines */
.gbp-mobile-toggle span {

    position: absolute;

    width: 26px;
    height: 2px;

    background: var(--gbp-primary-color);

    border-radius: 50px;

    transition: 0.35s ease;
}

/* Top Line */
.gbp-mobile-toggle span:nth-child(1) {
    transform: translateY(-8px);
}

/* Middle Line */
.gbp-mobile-toggle span:nth-child(2) {
    opacity: 1;
}

/* Bottom Line */
.gbp-mobile-toggle span:nth-child(3) {
    transform: translateY(8px);
}

/* ACTIVE ICON */
.gbp-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.gbp-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.gbp-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ===================================================
   PREMIUM MOBILE MENU
=================================================== */
.gbp-mobile-menu-area {

    position: fixed;

    top: 130px;
    right: -100%;

    width: 320px;
    max-width: 100%;

    height: calc(100vh - 130px);

    background:
        linear-gradient(180deg,
            #001d75 0%,
            #002594 100%);

    z-index: 9997;

    overflow-y: auto;

    transition: 0.45s cubic-bezier(.77, 0, .18, 1);

    box-shadow:
        -10px 0 40px rgba(0, 0, 0, 0.18);
}

/* ACTIVE */
.gbp-mobile-menu-area.active {
    right: 0;
}

/* INNER */
.gbp-mobile-menu-inner {
    padding: 35px 25px;
}

/* MENU ITEMS */
.gbp-mobile-nav-list li {
    margin-bottom: 8px;
}

.gbp-mobile-nav-list li a {

    display: flex;
    align-items: center;

    padding: 15px 18px;

    border-radius: 12px;

    color: var(--gbp-white-color);

    font-size: 15px;
    font-weight: 500;

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(10px);

    transition: 0.3s ease;
}

/* Hover */
.gbp-mobile-nav-list li a:hover {

    background:
        var(--gnp-hover-color);

    transform: translateX(6px);
}

/* BUTTONS */
.gbp-mobile-btns {

    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

/* ===================================================
   MOBILE CONTACT ICONS
=================================================== */
.gbp-mobile-contact {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);
}

.gbp-mobile-contact a {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255, 255, 255, 0.08);

    color: #fff;

    font-size: 17px;

    transition: 0.3s ease;
}

.gbp-mobile-contact a:hover {

    background: #fff;

    color:
        var(--gbp-primary-color);

    transform: translateY(-3px);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media(max-width:991px) {

    .gbp-site-wrapper {
        padding-top: 110px;
    }

    .gbp-navbar-area {

        top: 48px;

        padding: 0 20px;
    }

    .gbp-navbar-inner {
        min-height: 72px;
    }

    .gbp-desktop-menu,
    .gbp-navbar-buttons {
        display: none;
    }

    .gbp-mobile-toggle {
        display: flex;
    }

    .gbp-mobile-menu-area {

        top: 120px;

        height:
            calc(100vh - 120px);
    }
}

/* MOBILE */
@media(max-width:767px) {

    .gbp-topbar-area {
        padding: 8px 15px;
    }

    .gbp-topbar-flex {
        justify-content: center;
    }

    .gbp-topbar-right {
        /*display:none;*/
    }

    .gbp-topbar-link {
        font-size: 11px;
    }

    .gbp-navbar-area {

        top: 34px;

        padding: 0 15px;
    }

    .gbp-navbar-inner {
        min-height: 62px;
    }

    .gbp-logo-area img {
        width: 90px;
    }

    .gbp-mobile-menu-area {

        top: 96px;

        width: 100%;

        height:
            calc(100vh - 96px);
    }

    .gbp-site-wrapper {
        padding-top: 96px;
    }
}

/* ===================================================
   LOGO
=================================================== */
.gbp-logo-area img {
    width: 150px;
}

/* ===================================================
   DESKTOP MENU
=================================================== */
.gbp-desktop-menu {
    margin-left: auto;
}

.gbp-nav-list {

    display: flex;
    align-items: center;
    gap: 10px;
}

.gbp-nav-list li a {

    position: relative;

    padding: 10px 14px;

    color: var(--gbp-primary-color);

    font-size: 15px;
    font-weight: 600;
}

.gbp-nav-list li a::after {

    content: '';

    position: absolute;

    left: 14px;
    bottom: 2px;

    width: 0;
    height: 2px;

    background:
        var(--gbp-secondary-color);

    transition: 0.3s ease;
}

.gbp-nav-list li a:hover,
.gbp-nav-list li a.active {
    color: var(--gbp-secondary-color);
}

.gbp-nav-list li a:hover::after,
.gbp-nav-list li a.active::after {
    width: calc(100% - 28px);
}

/* ===================================================
   BUTTONS
=================================================== */
.gbp-navbar-buttons {

    display: flex;
    align-items: center;
    gap: 12px;
}

.gbp-btn-primary,
.gbp-btn-whatsapp {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 22px;

    border-radius: 6px;

    font-size: 13px;
    font-weight: 600;

    transition: var(--gbp-transition);
}

.gbp-btn-primary {

    background:
        var(--gbp-primary-color);

    color: var(--gbp-white-color);
}

.gbp-btn-primary:hover {

    background: var(--gbp-hover-color);

    color: var(--gbp-light-white-color);
}

.gbp-btn-whatsapp {

    background: #fff;
    border: 2px solid #020066;
    color: #020066;
}

.gbp-btn-whatsapp:hover {

    background: #020066;
    color: #fff;
}

/* ===================================================
   MOBILE TOGGLE
=================================================== */
.gbp-mobile-toggle {

    width: 40px;
    height: 40px;

    padding: 0;

    border: none !important;
    outline: none !important;

    background: transparent !important;

    box-shadow: none !important;

    display: none;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    position: relative;
}

/* Remove focus border */
.gbp-mobile-toggle:focus,
.gbp-mobile-toggle:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* ===================================================
   MOBILE MENU
=================================================== */
.gbp-mobile-menu-area {

    position: fixed;

    top: 108px;
    left: -100%;

    width: 100%;
    height: calc(100vh - 108px);

    background:
        var(--gbp-primary-color);

    z-index: 9997;

    overflow-y: auto;

    transition: 0.4s ease;
}

.gbp-mobile-menu-area.active {
    left: 0;

}

.gbp-mobile-menu-area.active .gbp-btn-primary {
    border: 1px solid var(--gbp-white-color);
}

.gbp-mobile-menu-inner {
    padding: 30px 20px;
}

.gbp-mobile-nav-list li {
    margin-bottom: 18px;
}

.gbp-mobile-nav-list li a {

    color: var(--gbp-white-color);

    font-size: 16px;
    font-weight: 500;
}

.gbp-mobile-btns {

    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (min-width:991px) {

    .gbp-mobile-menu-area {
        display: none;
    }

}

@media(max-width:991px) {

    .gbp-site-wrapper {
        padding-top: 110px;
    }

    .gbp-navbar-area {

        top: 40px;

        padding: 0 20px;
    }

    .gbp-navbar-inner {
        min-height: 70px;
    }

    .gbp-topbar-link {
        font-size: 10px;
    }

    .gbp-desktop-menu,
    .gbp-navbar-buttons {
        display: none;
    }

    .gbp-mobile-toggle {
        display: flex;
    }

    .gbp-mobile-menu-area {

        top: 110px;
        width: 40%;
        height:
            calc(100vh - 110px);
    }
}

@media(max-width:767px) {

    .gbp-topbar-area {
        padding: 8px 15px;
    }

    .gbp-topbar-flex {
        justify-content: center;
        text-align: center;
    }

    .gbp-topbar-right {
        display: none;
    }

    .gbp-topbar-link {
        font-size: 10px;
    }

    .gbp-navbar-area {

        top: 32px;

        padding: 0 15px;
    }

    .gbp-navbar-inner {
        min-height: 62px;
    }

    .gbp-logo-area img {
        width: 90px;
    }

    .gbp-mobile-menu-area {

        top: 95px;
        width: 70%;
        height:
            calc(100vh - 96px);
    }

    .gbp-site-wrapper {
        padding-top: 94px;
    }
}

@media(max-width:480px) {

    .gbp-topbar-link {
        font-size: 10px;
    }

    .gbp-mobile-menu-area {
        width: 80%;
    }

    .gbp-mobile-toggle {

        width: 42px;
        height: 42px;

        font-size: 18px;
    }
}

/* ===================================================
   HERO SECTION
=================================================== */
.gbp-hero-area {

    position: relative;

    min-height: 70vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 55px 0;

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* LEFT FADE EFFECT */

.gbp-hero-area::before {

    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(90deg,
            rgba(247, 248, 252, 1) 0%,
            rgba(247, 248, 252, 0.95) 25%,
            rgba(247, 248, 252, 0) 55%)
}

/* CONTENT */
.gbp-hero-content {

    position: relative;

    z-index: 5;

    max-width: 860px;

    padding-left: 70px;
}

/* TAG */
.gbp-hero-tag {

    display: inline-block;

    padding: 7px 16px;

    border-radius: 50px;

    background:
        rgba(0, 37, 148, 0.08);

    color:
        var(--gbp-primary-color);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.5px;

    margin-bottom: 10px;
    text-transform: uppercase;
}

/* HEADING */
.gbp-hero-content h1 {

    font-size: 42px;

    line-height: 1.15;

    font-weight: 700;

    color: var(--gbp-primary-color);

    margin-bottom: 18px;

    max-width: 850px;
}

.gbp-hero-content h1 span {
    color: var(--gbp-secondary-color);
}


/* TEXT */
.gbp-hero-content p {

    font-size: 14px;

    line-height: 1.8;

    color: var(--gbp-paragraph-color);

    margin-bottom: 28px;

    max-width: 760px;

    text-align: justify;
}

/* FEATURES */
.gbp-hero-features {

    display: flex;
    align-items: flex-start;

    flex-wrap: wrap;

    gap: 18px;

    margin-bottom: 30px;
}

.gbp-feature-box {
    width: 105px;
}

/* ICON */
.gbp-feature-icon {

    width: 58px;
    height: 58px;

    border-radius: 16px;

    background: #FFFFFF;
    border: 1px solid #E7EAF3;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.07);
}

.gbp-feature-icon:hover {
    border-color: var(--gbp-primary-color);
}

.gbp-feature-icon i {

    font-size: 20px;

    color:
        var(--gbp-primary-color);
}

.gbp-feature-icon span i {


    color:
        var(--gbp-secondary-color);
}

/* FEATURE TEXT */
.gbp-feature-box h6 {

    font-size: 14px;

    line-height: 1.6;

    font-weight: 600;

    color: var(--gbp-paragraph-color);

    margin: 0;
}

/* BUTTONS */
.gbp-hero-btns {

    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

/* BUTTONS */
.gbp-hero-call-btn,
.gbp-hero-whatsapp-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 24px;

    border-radius: 10px;

    color: #fff;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.gbp-hero-call-btn {
    background: var(--gbp-primary-color);
}

.gbp-hero-whatsapp-btn {
    background: var(--gbp-white-color);
    border: var(--gbp-primary-color);
    border-width: 1px;
    border-style: solid;
    color: var(--gbp-primary-color);
}

/* HOVER */
.gbp-hero-call-btn:hover {

    transform: translateY(-2px);
    background: var(--gbp-secondary-color);

    color: #fff;
}

.gbp-hero-whatsapp-btn:hover {

    transform: translateY(-2px);
    background: var(--gbp-primary-color);

    color: var(--gbp-white-color);
}

/* ===================================================
   TABLET
=================================================== */

@media(max-width:767px) {

    .gbp-hero-area {

        padding: 20px 0 20px;

        background: #f8fafc !important;
    }

    .gbp-hero-content {

        padding-left: 20px;
        padding-right: 20px;
    }

    .gbp-hero-tag {

        font-size: 8px;

        padding: 6px 12px;

        margin-bottom: 14px;

        letter-spacing: .5px;
    }

    .gbp-hero-content h1 {

        font-size: 24px;

        line-height: 1.25;

        margin-bottom: 15px;

        max-width: 100%;
    }

    .gbp-hero-content p {

        font-size: 14px;

        line-height: 1.8;

        margin-bottom: 22px;

        text-align: left;
    }

}

@media(max-width:991px) {


    /*.gbp-hero-area{

        min-height:auto;

        padding:20px 0 20px;

        background-position:center right;
    }*/

    /* LESS WHITE FADE */
    /*.gbp-hero-area::before{

        background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.94) 0%,
            rgba(255,255,255,0.88) 28%,
            rgba(255,255,255,0.60) 55%,
            rgba(255,255,255,0.20) 75%,
            rgba(255,255,255,0) 100%
        );
    }

    .gbp-hero-content{

        max-width:100%;

        padding-left:25px;
        padding-right:20px;
    }
*/
    /*.gbp-hero-content h1{

        font-size:38px;

        line-height:1.18;

        margin-bottom:16px;
    }

    .gbp-hero-content p{

        font-size:14px;

        line-height:1.5;

        margin-bottom:20px;

        max-width:100%;

        text-align: justify;
    }*/

    .gbp-hero-features {

        gap: 12px;

        margin-bottom: 20px;
    }

    .gbp-feature-box {
        width: 90px;
    }

    .gbp-feature-icon {

        width: 54px;
        height: 54px;
    }

    .gbp-feature-box h6 {

        font-size: 13px;

        line-height: 1.5;
    }
}

/* ===================================================
   MOBILE
=================================================== */
@media(max-width:767px) {

    .gbp-hero-area {

        min-height: auto;

        padding: 15px 0 15px;

    }

    /* CLEARER IMAGE ON MOBILE */
    .gbp-hero-area {

        background-size: cover;

        background-position: 85% center;

    }

    .gbp-hero-area {

        background-image: none !important;

        background:
            linear-gradient(180deg,
                #ffffff 0%,
                #f8fafc 100%);
    }

    .gbp-hero-content {

        padding-left: 15px;
        padding-right: 15px;
    }

    .gbp-hero-tag {

        font-size: 9px;

        padding: 6px 14px;

        margin-bottom: 14px;
    }

    .gbp-hero-content h1 {

        font-size: 28px;

        line-height: 1.22;

        margin-bottom: 15px;
    }

    .gbp-hero-content p {

        font-size: 13px;

        line-height: 1.7;

        margin-bottom: 24px;
    }

    .gbp-hero-features {

        gap: 14px;

        margin-bottom: 25px;
    }

    .gbp-feature-box {

        width: 100%;

        display: flex;
        align-items: center;

        gap: 14px;

        padding: 16px;

        border-radius: 18px;

        background: #ffffff;

        border:
            1px solid rgba(0, 0, 0, 0.04);

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.06);

        backdrop-filter: none;
    }

    .gbp-feature-icon {

        width: 50px;
        height: 50px;

        border-radius: 14px;
    }

    .gbp-feature-icon i {
        font-size: 18px;
    }

    .gbp-feature-box h6 {

        font-size: 12px;

        line-height: 1.5;
    }

    .gbp-hero-btns {

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }

    .gbp-hero-call-btn,
    .gbp-hero-whatsapp-btn {

        width: 100%;

        justify-content: center;

        padding: 14px 18px;

        font-size: 13px;

        border-radius: 8px;
    }
}

/* ===================================================
   SMALL MOBILE
=================================================== */
/* ===================================================
   MOBILE
=================================================== */
@media(max-width:767px) {

    .gbp-hero-area {

        min-height: auto;

        padding: var(--gbp-mobile-section-padding);

        background-position: 72% center;
    }

    /* REDUCED FADE */
    .gbp-hero-area::before {

        background:
            linear-gradient(90deg,
                rgba(255, 255, 255, 0.92) 0%,
                rgba(255, 255, 255, 0.82) 32%,
                rgba(255, 255, 255, 0.42) 60%,
                rgba(255, 255, 255, 0.08) 82%,
                rgba(255, 255, 255, 0) 100%);
    }

    .gbp-hero-content {

        padding-left: 15px;
        padding-right: 15px;
    }

    .gbp-hero-tag {

        font-size: 9px;

        padding: 6px 12px;

        margin-bottom: 10px;
    }

    .gbp-hero-content h1 {

        font-size: 28px;

        line-height: 1.22;

        margin-bottom: 15px;
    }

    .gbp-hero-content p {

        font-size: 12px;

        line-height: 1.7;

        margin-bottom: 12px;

        text-align: justify;
    }

    /* BETTER FEATURE UI */
    .gbp-hero-features {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

        margin-bottom: 20px;
    }

    .gbp-feature-box {

        width: 100%;

        display: flex;

        align-items: center;

        gap: 10px;

        padding: 10px 12px;

        min-height: 60px;

        border-radius: 14px;

        background: #fff;

        border: 1px solid var(gbp-border-color);

        box-shadow: 0 6px 18px rgba(2, 0, 102, .04);
    }

    .gbp-feature-icon {

        width: 35px;
        height: 35px;

        border-radius: 12px;

        margin-bottom: 0;
    }

    .gbp-feature-icon i {

        font-size: 13px;
    }

    .gbp-feature-box h6 {

        font-size: 13px;

        line-height: 1.4;

        margin: 0;
    }

    .gbp-feature-box h6 br {
        display: none;
    }


    .gbp-hero-btns {

        display: flex;

        flex-direction: row;

        align-items: center;

        gap: 5px;
    }

    .gbp-hero-call-btn,
    .gbp-hero-whatsapp-btn {

        flex: 1;

        white-space: nowrap;

        padding: 12px 8px;

        font-size: 11px;
    }
}

/* ===================================================
   SMALL MOBILE
=================================================== */
@media(max-width:480px) {

    .gbp-hero-area {

        background-position: 75% center;
    }

    .gbp-hero-content h1 {

        font-size: 24px;
    }


}

.mr-10 {
    margin-right: 10px;
}

/* =========================
CLIENTS AREA START
========================= */

/* ===================================
CLIENTS SECTION
=================================== */

.gbp-clients-section {

    padding: var(--gbp-section-padding);

    background: linear-gradient(180deg,
            #f8faff 0%,
            #f3f6ff 100%);
}

.gbp-clients-heading {

    text-align: center;

    max-width: 900px;

    margin: auto auto 40px;
}

.gbp-clients-subtitle {

    display: inline-block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    color: var(--gbp-secondary-color);

    text-transform: uppercase;

    margin-bottom: 12px;
}

.gbp-clients-heading h2 {

    font-size: 42px;

    line-height: 1.2;

    color: var(--gbp-primary-color);

    margin-bottom: 15px;

    font-family: var(--gbp-heading-font);
}

.gbp-clients-heading p {

    font-size: 17px;

    line-height: 1.8;

    color: var(--gbp-paragraph-color);
}

/* MARQUEE */
.gbp-clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.gbp-clients-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: clientMarquee 25s linear infinite;
    will-change: transform;
}

.gbp-clients-marquee:hover .gbp-clients-track {
    animation-play-state: paused;
}

.gbp-client-logo {
    width: 180px;
    height: 90px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.gbp-client-logo img {
    width: 100%;
    max-height: 55px;
    object-fit: contain;
}

@keyframes clientMarquee {

    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }

}

/* MOBILE */

@media(max-width:767px) {

    .gbp-clients-track {
        gap: 12px;
        animation: clientMarquee 25s linear infinite;
    }

    .gbp-client-logo {
        width: 140px;
        height: 75px;
        padding: 10px;
    }

    .gbp-client-logo img {
        max-height: 40px;
    }

}

/* =========================
CLIENTS AREA END
========================= */
/*SERVICE SECTION*/
.gbp-services-area {

    padding: var(--gbp-section-padding);

    background: var(--gbp-white-color);

}

.gbp-services-heading {

    text-align: center;

    margin-bottom: 20px;

}

.gbp-services-subtitle {

    display: inline-block;

    margin-bottom: 10px;

    color: var(--gbp-paragraph-color);

    font-size: 12px;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-family: var(--gbp-body-font);

}

.gbp-services-heading h2 {

    /*max-width:800px;*/

    margin: auto;

    color: var(--gbp-primary-color);

    font-size: 32px;

    line-height: 1.2;

    font-family: var(--gbp-heading-font);

    font-weight: 600;

}

.gbp-services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}

.gbp-service-card {

    background:
        linear-gradient(135deg,
            rgba(192, 0, 99, 0.02) 0%,
            rgba(2, 0, 102, 0.03) 100%);


    border-radius: 22px;

    padding: 20px;

    border: 1px solid rgba(2, 0, 102, 0.08);

    box-shadow: 0 10px 30px rgba(2, 0, 102, .04);

    transition: all .35s ease;

    height: 100%;
}

.gbp-service-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px rgba(2, 0, 102, .08);
}

.gbp-service-header {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 15px;
}

.gbp-service-icon {

    width: 60px;

    height: 60px;

    flex-shrink: 0;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(135deg,
            rgba(192, 0, 99, .18),
            rgba(255, 255, 255, .15));
}

.gbp-service-icon i {

    font-size: 28px;

    color: var(--gbp-secondary-color);
}

.gbp-service-card h3 {

    margin: 0;

    color: var(--gbp-primary-color);

    font-size: 20px;

    line-height: 1.3;

    font-weight: 600;
}


.gbp-service-content {
    color: var(--gbp-paragraph-color);
    font-size: 15px;
    line-height: 1.8;
}

.gbp-service-card p {

    margin: 0;

    color: var(--gbp-paragraph-color);

    font-family: var(--gbp-body-font);

    line-height: 1.7;

    font-size: 15px;

    text-align: justify;
}

.gbp-service-card.featured p {

    color: rgba(255, 255, 255, .90);
}


/* Featured Card */

.gbp-service-card.featured {

    background: linear-gradient(135deg,
            var(--gbp-primary-color),
            #0818A8);

    border: none;

    color: #fff;
}

.gbp-service-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 15px;

    box-shadow:
        0 15px 40px rgba(2, 0, 102, .20);
}

.gbp-service-tags span {

    background: rgba(255, 255, 255, .12);

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: #fff;

    padding: 6px 12px;

    border-radius: 40px;

    font-size: 12px;

    font-weight: 600;
}

.gbp-service-card.featured h3 {
    color: #fff;
}

.gbp-service-card.featured {
    grid-column: span 1;
}

.gbp-service-card.featured .gbp-service-content {
    color: rgba(255, 255, 255, .88);
}

.gbp-service-card.featured .gbp-service-icon {
    background: rgba(255, 255, 255, .12);
}

.gbp-service-card.featured .gbp-service-icon i {
    color: #fff;
}



.gbp-service-card.featured:hover {

    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(2, 0, 102, .20);

    background:
        linear-gradient(135deg,
            #020066,
            #0818A8);

    border-top: none;
}

.gbp-service-card.featured.active {

    background:
        linear-gradient(135deg,
            #020066,
            #0818A8);
}

.gbp-service-badge {

    display: inline-flex;

    align-items: center;

    padding: 7px 14px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .12);

    color: #fff;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 22px;
}

@media(max-width:991px) {

    .gbp-services-grid {

        grid-template-columns: repeat(2, 1fr);
    }


}

@media(max-width:767px) {

    .gbp-services-grid {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .gbp-service-header {

        align-items: flex-start;
    }

    .gbp-service-icon {

        width: 45px;
        height: 45px;
    }

    .gbp-service-icon i {

        font-size: 16px;
    }

    .gbp-service-card h3 {

        font-size: 16px;
    }

    .gbp-service-card p {

        font-size: 12px;
    }

    .gbp-service-tags span {
        font-size: 11px;
        padding: 4px 8px;
    }

    .gbp-service-header {
        margin-bottom: 6px;
    }

    .gbp-services-heading h2 {
        /*display: none;*/
        font-size: 18px;
        font-weight: 500px;
        line-height: 1.5;
    }

    .gbp-service-area .gbp-hero-tag {
        margin-bottom: 4px;
    }

    .gbp-services-subtitle {
        font-size: 10px;
    }

    .gbp-service-card {
        padding: 15px;
    }

    .gbp-clients-area,
    .gbp-services-area {
        padding: var(--gbp-mobile-section-padding);
    }
}








/*client area media query*/
@media(max-width:767px) {

    .gbp-clients-section {

        padding: var(--gbp-mobile-section-padding);
    }

    .gbp-clients-heading {

        margin-bottom: 25px;
    }

    .gbp-clients-heading h2 {

        font-size: 26px;

        line-height: 1.3;
    }

    .gbp-clients-heading p {

        font-size: 14px;

        line-height: 1.7;
    }

    .gbp-clients-track {

        gap: 9px;

        padding: 0 12px;

        overflow-x: auto;

        animation: none;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;
    }

    .gbp-clients-track::-webkit-scrollbar {

        display: none;
    }

    .gbp-client-logo {

        width: 140px;

        height: 70px;

        scroll-snap-align: center;
    }

    .gbp-client-logo img {

        max-height: 35px;
    }

}


/*counter section*/

/* ===================================
COUNTER SECTION
=================================== */
/*=========================================
STATS + CTA SECTION
=========================================*/

.gbp-stats-cta-section {
    margin-top: 20px;
    /*padding:var(--gbp-section-padding);*/
}

.gbp-stats-cta-wrap {

    display: flex;

    align-items: center;

    background:
        linear-gradient(135deg,
            var(--gbp-primary-color),
            #0816a7);

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(2, 0, 102, .12);
}

/*==================
COUNTERS
==================*/

.gbp-stats-grid {

    flex: 1;

    display: grid;

    grid-template-columns: repeat(5, 1fr);
}

.gbp-stat-item {

    text-align: center;

    padding: 30px 15px;

    position: relative;

    transition: var(--gbp-transition);
}

.gbp-stat-item:hover {

    background:
        rgba(255, 255, 255, .04);

    transform:
        translateY(-4px);
}

.gbp-stat-item:not(:last-child)::after {

    content: "";

    position: absolute;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 1px;

    height: 60px;

    background:
        rgba(255, 255, 255, .15);
}

.gbp-stat-icon {

    width: 58px;
    height: 58px;

    margin: 0 auto 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .08);

    color: #fff;

    font-size: 22px;

    transition: var(--gbp-transition);
}

.gbp-stat-item:hover .gbp-stat-icon {

    transform: scale(1.08);

    background:
        rgba(255, 255, 255, .14);
}

.gbp-stat-item h3 {

    margin: 0;

    font-size: 32px;

    line-height: 1;

    color: #fff;

    font-weight: 700;

    font-family: var(--gbp-heading-font);
}

.gbp-stat-item span {

    display: block;

    margin-top: 8px;

    font-size: 12px;

    color:
        rgba(255, 255, 255, .82);
}

/*==================
CTA SIDE
==================*/

.gbp-stats-cta {

    width: 360px;

    padding: 30px;

    border-left:
        1px solid rgba(255, 255, 255, .15);
}

.gbp-stats-cta h3 {

    color: #fff;

    margin: 0 0 5px;

    font-size: 28px;

    line-height: 1.2;

    font-family: var(--gbp-heading-font);
}

.gbp-stats-cta p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 1.5;
}

.gbp-stats-cta-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 12px 16px;

    border-radius: 12px;

    color: #fff;

    font-weight: 700;

    background:
        linear-gradient(135deg,
            var(--gbp-secondary-color),
            #ff2d8e);

    position: relative;

    overflow: hidden;

    transition: var(--gbp-transition);
}

/* Shine Animation */

.gbp-stats-cta-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);

    animation:
        gbpCtaShine 3s infinite;
}

@keyframes gbpCtaShine {

    100% {

        left: 150%;
    }
}

.gbp-stats-cta-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 25px rgba(192, 0, 99, .35);
}

.gbp-stats-cta-btn i {

    transition: .3s;
}

.gbp-stats-cta-btn:hover i {

    transform:
        translateX(5px);
}

/*==================
POINTS
==================*/

.gbp-stats-points {

    margin-top: 16px;

    display: flex;

    flex-wrap: wrap;

    gap: 12px;
    text-align: center;
    align-items: center;
}

.gbp-stats-points span {

    font-size: 10px;

    color:
        rgba(255, 255, 255, .85);
}

.gbp-stats-points i {

    color:
        #7dffb2;

    margin-right: 5px;
}

/*tablet*/
@media(min-width:768px) and (max-width:991px) {

    .gbp-stats-cta-wrap {

        flex-direction: column;
    }

    .gbp-stats-grid {

        width: 100%;

        grid-template-columns: repeat(5, 1fr);
    }

    .gbp-stat-item {

        padding: 25px 10px;
    }

    .gbp-stat-item h3 {

        font-size: 28px;
    }

    .gbp-stat-item span {

        font-size: 12px;
    }

    .gbp-stats-cta {

        width: 100%;

        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, .15);

        text-align: center;

        padding: 25px;
    }

    .gbp-stats-cta h3 {

        font-size: 24px;
    }

    .gbp-stats-points {

        justify-content: center;
    }

}

/*mobile*/

@media(max-width:767px) {

    .gbp-stats-cta-section {
        padding: 15px 0;
    }

    .gbp-stats-cta-wrap {

        flex-direction: column;

        border-radius: 18px;

        overflow: hidden;
    }

    /* ALL 5 COUNTERS IN SINGLE ROW */

    .gbp-stats-grid {

        width: 100%;

        display: grid;

        grid-template-columns: repeat(5, 1fr);
    }

    .gbp-stat-item {

        padding: 18px 8px;
    }

    .gbp-stat-item::after {

        display: none;
    }

    .gbp-stat-icon {

        width: 40px;
        height: 40px;

        font-size: 15px;

        margin-bottom: 8px;
    }

    .gbp-stat-item h3 {

        font-size: 20px;

        margin-bottom: 4px;
    }

    .gbp-stat-item span {

        font-size: 10px;

        line-height: 1.3;

        display: block;
    }

    /* CTA ROW */

    .gbp-stats-cta {

        width: 100%;

        padding: 20px 15px;

        border-left: none;

        border-top: 1px solid rgba(255, 255, 255, .12);

        text-align: center;
    }

    .gbp-stats-cta h3 {

        font-size: 20px;

        margin-bottom: 14px;

        line-height: 1.2;
    }

    .gbp-stats-cta-btn {

        width: 100%;

        padding: 14px 16px;

        font-size: 15px;
    }

    .gbp-stats-points {

        justify-content: center;

        margin-top: 12px;

        gap: 12px;
    }

    .gbp-stats-points span {

        font-size: 11px;
    }

}

/*counter section end*/


/*business challanges start*/
.gbp-business-section {

    padding: var(--gbp-section-padding);

    background: var(--gbp-body-color);
}

.gbp-business-grid {

    display: grid;

    grid-template-columns: 1fr 1fr 360px;

    gap: 24px;

    margin-top: 20px;
}

.gbp-business-card,
.gbp-lead-card {

    background: #fff;

    border-radius: 22px;

    border: 1px solid rgba(2, 0, 102, .08);

    box-shadow: 0 10px 30px rgba(2, 0, 102, .05);
}

.gbp-business-card {

    padding: 22px 24px;
}


.gbp-card-heading {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 10px 18px;

    border-radius: 50px;

    margin-bottom: 22px;
}

.gbp-card-heading i {

    font-size: 18px;

    color: var(--gbp-secondary-color);
}

.gbp-challenges-card .gbp-card-heading {

    background: #fff4f6;

    border: 1px solid #ffd6e7;

    width: 100%;
}



.gbp-challenges-card {
    background: #fff7fa;
}

.gbp-solutions-card .gbp-card-heading {

    background: #eef7ff;

    border: 1px solid #d8ebff;

    width: 100%;
}


.gbp-solutions-card {
    background: #f8fbff;
}

.gbp-card-heading h3 {

    margin: 0;

    color: var(--gbp-primary-color);

    font-size: 20px;

    font-family: var(gbp-heading-font);
}

.gbp-business-list {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.gbp-business-item {

    display: flex;

    gap: 6px;

    padding-bottom: 6px;

    margin-bottom: 6px;

    border-bottom: 1px solid #eef2f7;
}

.gbp-business-item:last-child {

    border: none;

    padding-bottom: 0;
}

.gbp-business-item i {

    width: 40px;
    height: 40px;
    font-size: 15px;


    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        rgba(192, 0, 99, .08);

    color: var(--gbp-secondary-color);

    flex-shrink: 0;
}


.gbp-business-item h4 {

    color: var(--gbp-primary-color);

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 2px;

    font-family: var(--gbp-heading-font);
}

.gbp-business-item p {

    margin: 0;

    font-size: 13px;

    color: var(--gbp-paragraph-color);

    font-family: var(--gbp-body-font);

    line-height: 1.6;
}

/* FORM */

.gbp-lead-card {

    padding: 24px;

    background:
        linear-gradient(135deg,
            #020066,
            #0816a7);

    color: #fff;
}

.gbp-lead-badge {

    display: inline-block;

    padding: 6px 12px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .12);

    font-size: 11px;

    letter-spacing: 1px;

    margin-bottom: 18px;
}


.gbp-lead-card h2 {

    font-size: 22px;

    line-height: 1.4;

    margin-bottom: 10px;

    font-weight: 700;

    font-family: var(--gbp-heading-font);

    color: var(--gbp-white-color);
}

.gbp-lead-card p {

    color: rgba(255, 255, 255, .85);

    margin-bottom: 16px;

    font-family: var(--gbp-body-font);

    font-size: 13px;

    line-height: 1.7;
}

.gbp-lead-card form {

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.gbp-lead-card input {
    border: none;

    border-radius: 12px;

    font-size: 14px;

    height: 46px;

    padding: 0 14px;

}

.gbp-lead-card button {

    border: none;

    border-radius: 12px;

    background: var(--gbp-secondary-color);

    color: #fff;

    cursor: pointer;

    transition: .3s;

    height: 48px;

    font-size: 15px;

    font-weight: 600;
}

.gbp-lead-card button:hover {

    transform: translateY(-2px);
}

/* GALLERY */

.gbp-office-gallery {

    margin-top: 35px;
}

.gbp-office-gallery h3 {

    text-align: center;

    color: var(--gbp-primary-color);

    margin-bottom: 20px;
}

.gbp-gallery-slider {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.gbp-gallery-slider img {

    height: 220px;

    width: 100%;

    object-fit: cover;

    border-radius: 18px;
}

@media(max-width:767px) {

    .gbp-business-section {

        padding: 20px 0;
    }

    .gbp-business-card {

        padding: 0;

        overflow: hidden;
    }

    .gbp-card-heading {

        padding: 18px;

        margin: 0;

        cursor: pointer;

        border-bottom: 1px solid #eef2f7;
    }

    .gbp-business-list {

        padding: 18px;
    }

    .gbp-challenges-card .gbp-business-list,
    .gbp-solutions-card .gbp-business-list {

        display: none;
    }

    .gbp-business-card.active .gbp-business-list {

        display: flex;
    }

    .gbp-lead-card {

        padding: 22px;
    }

    .gbp-lead-card h2 {

        font-size: 22px;
    }

    .gbp-gallery-slider {

        display: flex;

        overflow-x: auto;

        gap: 12px;

        scroll-snap-type: x mandatory;
    }

    .gbp-gallery-slider img {

        min-width: 260px;

        height: 180px;

        scroll-snap-align: start;
    }
}

.gbp-mobile-business-section {
    display: none;
}

.gbp-mobile-gallery-slider {
    display: none;
}


@media (max-width: 768px) {

    .gbp-business-grid {
        display: none;
    }

    .gbp-mobile-business-section {
        display: block;
    }




}




@media(max-width:768px) {

    .gbp-mobile-gallery-slider {
        display: block;
    }


    .gbp-mobile-business-section {
        display: block;
        margin-top: 25px;
    }

    .gbp-mobile-accordion {
        margin-bottom: 12px;
    }

    .gbp-accordion-btn {
        width: 100%;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 18px;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
    }

    .gbp-challenge-btn {
        background: #fff4f7;
        color: #06157c;
        border: 1px solid #ffd1e0;
    }

    .gbp-solution-btn {
        background: #06157c;
        color: #fff;
    }

    .gbp-accordion-content {
        display: none;
        background: #fff;
        padding: 15px;
        border-radius: 0 0 14px 14px;
    }

    .gbp-accordion-content.active {
        display: block;
    }


    .gbp-business-list {

        gap: 6px;
    }

    .gbp-business-item {

        gap: 2px;

        padding-bottom: 2px;

        margin-bottom: 2px;

    }


}


.gbp-services-heading p {

    font-size: 14px;

    font-family: var(--gbp-body-font);

    line-height: 1.8;

    color: var(--gbp-paragraph-color);


}

.gbp-mobile-gallery-scroll,
.gbp-mobile-enquiry {
    display: none;
}

@media(max-width:767px) {
    .gbp-gallery-slider {
        display: none;
    }

    .gbp-mobile-gallery-scroll {
        display: block;
    }

    .gbp-mobile-enquiry {
        display: block;
    }

    .gbp-mobile-gallery-scroll {
        display: flex;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .gbp-mobile-gallery-scroll::-webkit-scrollbar {
        display: none;
    }

    .gbp-gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .gbp-gallery-item img {

        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 12px;
        display: block;

    }

}


/*industries we serve*/
/* ===================================
INDUSTRIES WE SERVE
=================================== */

.gbp-industries-section {
    padding: var(--gbp-section-padding);
    background: #fff;
}

.gbp-industries-section .gbp-services-heading {
    margin-bottom: 30px;
}

.gbp-industries-grid {

    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.gbp-industry-card {

    background: #fff;

    border: 1px solid rgba(2, 0, 102, 0.08);

    border-radius: 20px;

    padding: 20px 10px;

    text-align: center;

    transition: .3s ease;

    box-shadow: 0 10px 30px rgba(2, 0, 102, .04);
}

.gbp-industry-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(2, 0, 102, .08);
}

.gbp-industry-card i {

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 15px;

    border-radius: 50%;

    font-size: 22px;

    color: var(--gbp-secondary-color);

    background:
        linear-gradient(135deg,
            rgba(192, 0, 99, .12),
            rgba(2, 0, 102, .06));
}

.gbp-industry-card h3 {

    font-size: 15px;
    line-height: 1.5;

    color: var(--gbp-primary-color);

    margin: 0;

    font-weight: 600;
}

.gbp-industries-mobile {
    display: none;
}


.gbp-industry-card p {

    margin: 10px 0 0;

    font-size: 14px;

    line-height: 1.8;

    color: var(--gbp-paragraph-color);

    font-family: var(--gbp-body-font);

    max-width: 240px;
}

@media(max-width:991px) {
    .gbp-industries-section {
        padding: var(--gbp-mobile-section-padding);
    }

    .gbp-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:767px) {

    .gbp-industries-section {
        padding: var(--gbp-mobile-section-padding);
    }

    .gbp-industries-grid {
        display: none;
    }

    .gbp-industries-mobile {
        display: block;
    }

    .gbp-industries-scroll {

        display: flex;

        gap: 10px;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        -webkit-overflow-scrolling: touch;

        padding-bottom: 5px;
    }

    .gbp-industries-scroll::-webkit-scrollbar {
        display: none;
    }

    .gbp-industries-scroll .gbp-industry-card {

        min-width: 180px;

        scroll-snap-align: center;

        flex-shrink: 0;

        padding: 15px 10px;
    }

    .gbp-industry-card i {

        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .gbp-industry-card h3 {

        font-size: 13px;
    }
}

@media(max-width:767px) {

    .gbp-industries-scroll .gbp-industry-card {

        min-width: 220px;
    }

    .gbp-industry-card p {

        font-size: 12px;

        line-height: 1.8;
    }
}

/*work portfolio*/

/* ==========================
PORTFOLIO SECTION
========================== */

.gbp-portfolio-section {
    padding: var(--gbp-section-padding);
    background: #fff;
}

.gbp-portfolio-tabs {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    flex-wrap: wrap;

    margin: 30px 0;
}

.gbp-portfolio-tabs button {

    border: none;

    background: #fff;

    border: 1px solid #e7eaf3;

    padding: 12px 22px;

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    color: var(--gbp-primary-color);

    transition: .3s;
}

.gbp-portfolio-tabs button.active,
.gbp-portfolio-tabs button:hover {

    background: var(--gbp-primary-color);

    color: #fff;
}

.gbp-portfolio-grid {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 15px;
}

.gbp-portfolio-card {

    position: relative;

    overflow: hidden;
    outline: none;
    border: none;
    border-radius: 18px;

    height: 240px;

    cursor: pointer;
}

.gbp-portfolio-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .5s;
}

.gbp-portfolio-overlay {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    text-align: left;
    padding: 20px;

    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(2, 0, 102, .95) 100%);

    color: #fff;

    transform: translateY(100%);

    transition: .4s;
}

.gbp-portfolio-overlay h3 {

    font-size: 18px;
    margin-bottom: 8px;
}

.gbp-portfolio-overlay p {

    font-size: 13px;
    line-height: 1.6;
    color: #fff;
}

.gbp-portfolio-card:hover img {

    transform: scale(1.08);
}

.gbp-portfolio-card:hover .gbp-portfolio-overlay {

    transform: translateY(0);
}

@media(max-width:767px) {

    .gbp-portfolio-section {
        padding: var(--gbp-mobile-section-padding);
    }

    .gbp-portfolio-tabs {

        overflow-x: auto;

        justify-content: flex-start;

        flex-wrap: nowrap;

        padding-bottom: 10px;

        scrollbar-width: none;
    }

    .gbp-portfolio-tabs::-webkit-scrollbar {
        display: none;
    }

    .gbp-portfolio-tabs button {

        flex-shrink: 0;

        padding: 10px 18px;

        font-size: 12px;
    }

    .gbp-portfolio-grid {

        display: flex;

        overflow-x: auto;

        gap: 12px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .gbp-portfolio-grid::-webkit-scrollbar {
        display: none;
    }

    .gbp-portfolio-card {

        min-width: 260px;

        height: 180px;

        scroll-snap-align: center;
    }

    .gbp-portfolio-overlay {

        transform: none;

        padding: 15px;
    }

    .gbp-portfolio-overlay h3 {
        font-size: 15px;
    }

    .gbp-portfolio-overlay p {
        font-size: 11px;
    }

}



.gbp-testimonials-section {
    padding: var(--gbp-section-padding);
    background: var(--gbp-body-color);
}

.gbp-testimonial-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gbp-testimonial-tag {
    display: block;
    color: #0a2f7a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.gbp-testimonial-title {
    font-size: 40px;
    font-weight: 700;
    color: #0a2f7a;
    max-width: 850px;
    margin: 0 auto;
}

.gbp-testimonial-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 25px;
    height: 280px;
    display: flex;
    flex-direction: column;
}

.gbp-rating {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 15px;
}

.gbp-testimonial-content {
    flex: 1;
}

.gbp-testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gbp-paragraph-color);
    text-align: justify;

    max-height: 120px;
    overflow: hidden;

    opacity: 0.9;

    transition:
        max-height 0.5s ease,
        opacity 0.3s ease;
}

.gbp-testimonial-card {
    transition:
        height 0.5s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gbp-testimonial-card.expanded {
    height: auto;
    min-height: 280px;

    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.gbp-testimonial-card.expanded .gbp-testimonial-text {
    max-height: 1000px;
    opacity: 1;
}

.gbp-read-more-btn {
    border: none;
    background: none;
    padding: 0;

    color: var(--gbp-primary-color);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;

    margin-top: 10px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.gbp-read-more-btn:hover {
    transform: translateX(3px);
}

.gbp-testimonial-footer {
    margin-top: auto;
}

.gbp-testimonial-footer {
    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding-top: 15px;
}

.gbp-testimonial-footer img {
    max-width: 140px;
    max-height: 50px;

    width: auto;
    height: auto;

    object-fit: contain;

    filter: grayscale(0%);
    transition: 0.3s ease;
}

.gbp-testimonial-card:hover .gbp-testimonial-footer img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gbp-testimonial-title {
        font-size: 28px;
    }
}

.gbp-testimonial-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gbp-testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: testimonialScroll 60s linear infinite;
}

.gbp-testimonial-slider:hover .gbp-testimonial-track {
    animation-play-state: paused;
}

.gbp-testimonial-card {
    width: 360px;
    min-width: 280px;

    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;

    padding: 20px;
}

@keyframes testimonialScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.gbp-faq-section {
    padding: var(--gbp-section-padding);

}

.gbp-faq-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.gbp-faq-tabs button {
    border: 1px solid #e7eaf3;
    background: #fff;
    color: var(--gbp-primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.gbp-faq-tabs button.active,
.gbp-faq-tabs button:hover {
    background: var(--gbp-primary-color);
    color: #fff;
}

.gbp-faq-content {
    display: none;

    margin: auto;
}

.gbp-faq-content.active {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gbp-faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 5px;
    overflow: hidden;
}

.gbp-faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 10px 15px;
    text-align: left;

    cursor: pointer;
    color: var(--gbp-primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 500;

}

.gbp-faq-answer {
    max-height: 0;
    overflow: hidden;

    padding: 0 20px;

    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
}

.gbp-faq-item.active .gbp-faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.gbp-faq-question span {
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.gbp-faq-item.active .gbp-faq-question span {
    transform: rotate(45deg);
}

.gbp-faq-answer p {
    margin: 0;
    line-height: 1.8;
    font-size: 14px;
    text-align: left;
}

@media (max-width: 767px) {
    .gbp-faq-tabs {
        overflow-x: auto;

        justify-content: flex-start;

        flex-wrap: nowrap;

        padding-bottom: 10px;

        scrollbar-width: none;
    }

    .gbp-faq-tabs button {
        flex-shrink: 0;
    }

    .gbp-faq-question {
        padding: 15px;
        font-size: 13px;
        font-weight: 500;
    }

    .gbp-faq-item {
        margin-bottom: 0px;
    }
}

@media (max-width: 991px) {
    .gbp-faq-content.active {
        grid-template-columns: 1fr;
    }
}

.gbp-footer {
    background: var(--gbp-primary-color);
    color: #fff;
    padding: 60px 50px 0px 50px;
}

.gbp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr 1.1fr 250px;

    gap: 30px;


}

.gbp-footer-grid>div {
    position: relative;
    padding: 0px 15px;
}

.gbp-footer-grid>div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
}

.gbp-footer-brand img {
    width: 180px;
    max-width: 220px;
    margin-bottom: 20px;
}

.gbp-footer-brand p {
    line-height: 1.9;
    font-size: 14px;
    text-align: justify;

    color: rgba(255, 255, 255, 0.85);
}

.gbp-footer-links h4,
.gbp-footer-contact h4 {
    margin-bottom: 20px;
    color: #fff;
}

.gbp-footer-links ul,
.gbp-footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gbp-footer-links li,
.gbp-footer-contact li {
    margin-bottom: 15px;
}

.gbp-footer-grid div ul li a {
    line-height: 1.5;
}
.gbp-footer-grid div ul li a:hover{
    color: var(--gbp-hover-color);
}

.gbp-footer-grid div ul li span {
    line-height: 2;
}

.gbp-footer-links a,
.gbp-footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.gbp-footer-map img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.gbp-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.gbp-footer-social a {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
}

.gbp-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    padding: 25px 0;
    margin-top: 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;
}

.gbp-footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.gbp-footer-bottom>div:nth-of-type(2) {
    display: flex;
    gap: 30px;
}

@media (max-width: 1200px) {
    .gbp-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gbp-footer-grid {
        grid-template-columns: 1fr;
    }

    .gbp-footer-grid>div::after {
        display: none;
    }

    .gbp-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .gbp-footer {
        padding: 50px 20px 0;
    }

    .gbp-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gbp-footer-grid>div {
        padding: 0;

    }

    .gbp-footer-grid>div::after {
        display: none;
    }

    .gbp-footer-brand img {
        margin: 0 auto 20px;
        display: block;
    }

    .gbp-footer-brand p {
        text-align: center;
    }

    .gbp-footer-links h4,
    .gbp-footer-contact h4 {
        margin-bottom: 15px;
    }

    .gbp-footer-social {
        justify-content: center;
    }

    .gbp-footer-map {
        height: 220px;
    }

    .gbp-footer-map iframe {
        height: 220px;
    }

    .gbp-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 20px 0;
    }

    .gbp-footer-bottom>div:nth-of-type(2) {

        gap: 10px;
    }
}


.gbp-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* .hide-card {
    display: none;
} */

.gbp-show-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.gbp-show-more-btn {

    border: none;

    background: var(--gbp-primary-color);

    color: #fff;

    padding: 14px 35px;

    border-radius: 50px;

    font-weight: 600;

    cursor: pointer;
}

@media (max-width: 767px) {

    .gbp-portfolio-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
    }

    .gbp-portfolio-card {
        flex: 0 0 auto;
        width: 260px;
        scroll-snap-align: start;
    }
}



#heroSection {
    scroll-margin-top: 125px;
}

#clientSection,
#serviceSection,
#industrySection,
#portfolioSection,
#testimonialSection {
    scroll-margin-top: 110px;
}

@media(max-width:767px) {
    #heroSection {
        scroll-margin-top: 85px;
    }

    #clientSection,
    #serviceSection,
    #industrySection,
    #portfolioSection,
    #testimonialSection {
        scroll-margin-top: 100px;
    }
}



.gbp-region-heading {
    text-align: center;
    margin-bottom: 20px;
}

.gbp-region-heading span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gbp-primary-color);
    text-transform: uppercase;
}

.gbp-region-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    background: #fff;

    border: 1px solid #e7e7e7;
    border-radius: 12px;

    padding: 18px 20px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .05);
}

.gbp-region-item {
    flex: 1;

    display: flex;
    align-items: flex-start;
    gap: 10px;

    text-decoration: none;
    color: #222;
    color: var(--gbp-primary-color);
    position: relative;

    transition: .3s ease;
}

.gbp-region-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 40px;

    background: #ececec;
}

.gbp-region-item i {
    font-size: 24px;
    color: var(--gbp-primary-color);
    margin-top: 2px;
}

.gbp-region-item span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.gbp-region-item:hover {
    transform: translateY(-2px);
}

.gbp-region-item.active::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;

    width: 40px;
    height: 3px;

    background: var(--gbp-primary-color);
    border-radius: 30px;
}

@media(max-width:991px) {

    .gbp-region-wrap {
        overflow-x: auto;
        justify-content: flex-start;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }


    .gbp-region-item {
        min-width: 180px;
        flex: none;
    }
}

@media(max-width:767px) {

    .gbp-region-section {
        padding: 30px 0;
    }

    .gbp-region-wrap {
        padding: 15px;
    }

    .gbp-region-item {
        min-width: 170px;
    }

    .gbp-region-item i {
        font-size: 20px;
    }

    .gbp-region-item span {
        font-size: 12px;
    }
}


/* ==========================
   MODAL OVERLAY
========================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 35, 0.65);

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

/* ==========================
   MODAL CARD
========================== */

.contact-modal {
    width: 100%;
    max-width: 355px;
    position: relative;

    animation: popupScale .35s ease;
}

/* ==========================
   LOGO
========================== */

.modal-logo {
    text-align: center;
    margin-bottom: 18px;
    display: none;
}

.modal-logo img {
    max-width: 150px;
    height: auto;
}

/* ==========================
   CLOSE BUTTON
========================== */

.modal-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    font-size: 16px;
    color: #111827;
    cursor: pointer;
    transition: .3s;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: #f5f5f5;
}

/* ==========================
   HEADING
========================== */

.contact-modal h2 {

    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--gbp-primary-color);
}

.contact-modal h2 span {
    color: var(--gbp-secondary-color);
}

.modal-subtitle {

    color: #6b7280;
    font-size: 14px;
    line-height: 1.3;
    max-width: 300px;
    margin-bottom: 30px;
    margin-top: 8px;
}

/* ==========================
   INPUTS
========================== */

.input-group {
    position: relative;
    margin-bottom: 18px;
}

.input-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b90a7;
    font-size: 14px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    border: 1px solid #dbe1f0;
    background: #fff;
    border-radius: 14px;
    padding-left: 52px;
    padding-right: 18px;
    font-size: 14px;
    transition: .3s;
}

.input-group input {
    height: 46px;
}

.input-group textarea {
    resize: none;
    padding-top: 18px;
    min-height: 100px;
}

.textarea-group i {
    top: 22px;
    transform: none;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--gbp-secondary-color);

    box-shadow:
        0 0 0 4px rgba(229, 0, 126, 0.08);
}

/* ==========================
   BUTTON
========================== */

.submit-btn {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 14px;

    background: var(--gbp-primary-color);

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: .35s;
    margin-top: 10px;

    box-shadow:
        0 10px 25px rgba(2, 0, 102, 0.25);
}

.submit-btn:hover {
    transform: translateY(-3px);

    background: var(--gbp-secondary-color);
    box-shadow:
        0 16px 35px rgba(2, 0, 102, 0.35);
}

/* ==========================
   FOOTER NOTE
========================== */

.modal-footer-note {
    text-align: center;
    margin-top: 20px;
    color: #7a7a7a;
    font-size: 13px;
}

.modal-footer-note i {
    color: var(--gbp-primary-color);
    margin-right: 6px;
}

.modal-footer-note strong {
    color: var(--gbp-secondary-color);
}

/* ==========================
   ANIMATION
========================== */

@keyframes popupScale {
    from {
        opacity: 0;
        transform: scale(.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 576px) {

    .contact-modal {

        border-radius: 20px;
    }

    .contact-modal h2 {
        font-size: 35px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .submit-btn {
        height: 50px;
        font-size: 14px;
    }

    .modal-close {
        width: 24px;
        height: 24px;
        font-size: 18px;
    }

}

.button-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    flex-direction: column;
}

.button-container button,
.button-container a {

    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    padding: 25px;
    border: none;
    border-radius: 50%;
    background: var(--gbp-primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        opacity 0.25s ease;

    cursor: pointer;
}

.button-container button:hover,
.button-container a:hover {
    background: var(--gbp-secondary-color);
    transform: translateY(-2px);
}

.button-container button:active,
.button-container a:active {
    transform: scale(0.97);
}

.button-container button:focus-visible,
.button-container a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.button-container i {
    font-size: 16px;
}

/* Mobile */
@media (max-width: 480px) {


    .button-container button,
    .button-container a {
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
        padding: 8px 4px;
    }

    .button-container a span,
    .button-container button span {
        display: none;
    }
}



.toast-success {
    background-color: var(--gbp-primary-color) !important;
}

.toast-error {
    background-color: var(--gbp-secondary-color) !important;
}

.toast-title,
.toast-message {
    color: #fff !important;
}

#toast-container.toast-bottom-right {
    bottom: 60px !important;
    right: 12px;
}

#toast-container.toast-bottom-left {
    bottom: 60px !important;
    left: 12px;
}

#toast-container.toast-bottom-center {
    bottom: 60px !important;
}

.trust-section {
    padding: var(--gbp-section-padding);
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.trust-section .gbp-services-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.trust-section .gbp-services-heading p {
    margin-top: 15px;
    color: #6b7280;
    line-height: 1.8;
}

.trust-certificates {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.trust-card {
    margin-top: 20px;
    padding: 3px;
}



.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.trust-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .trust-section {
        padding: 20px 0;
    }

    .trust-certificates {
                grid-template-columns: repeat(6, 1fr);
        gap: 5px;
        /* increase spacing */
    }

    .trust-card {
        padding: 6px;
        border-radius: 10px;
    }

    .trust-card img {

        width: 100%;
        height: auto;
    }

}



/* FAQ */
.gbp-faq-right {
    background: #fff;
    border: 1px solid #e7eaf3;
    border-radius: 24px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
    position: relative;
    overflow: hidden;
}



.gbp-cert-card {
    background: #fff;
    border: 1px solid #e7eaf3;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: .3s;
}

.gbp-cert-card:hover {
    transform: translateY(-5px);
}

.gbp-cert-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

/* FAQ content */
.gbp-faq-content.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Tablet & Mobile */
@media (max-width: 991px) {



    .gbp-faq-content.active {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 576px) {


    .gbp-faq-content.active {
        grid-template-columns: 1fr;
    }
}

.modal-overlay {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    position: fixed;
    inset: 0;

    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.gbp-about-section {
    background: #fff;
    padding: var(--gbp-section-padding);
}

.gbp-about-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.55fr;
    gap: 28px;
    align-items: stretch;
}

.gbp-about-image-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 520px;
    background: #f5f7ff;
    box-shadow: 0 18px 45px rgba(2, 0, 102, .08);
}

.gbp-about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Experience Badge */
.gbp-about-exp {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: var(--gbp-primary-color);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    min-width: 160px;
    box-shadow: 0 14px 30px rgba(2, 0, 102, .25);
}

.gbp-about-exp strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.gbp-about-exp span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
}

/* Content */
.gbp-about-content {
    border: 1px solid rgba(2, 0, 102, .08);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(2, 0, 102, .05);
}

.gbp-about-content .gbp-services-heading {
    text-align: left;
    margin-bottom: 12px;
}



.gbp-about-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gbp-paragraph-color);
    margin-bottom: 18px;
    text-align: justify;
}

/* Why Grid */
.gbp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gbp-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #e7eaf3;
    border-radius: 16px;
    padding: 14px;
    transition: .3s ease;
}

.gbp-why-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 0, 102, .08);
}

.gbp-why-item i {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gbp-primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.gbp-why-item h4 {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--gbp-primary-color);
}

.gbp-why-item p {
    font-size: 12.5px;
    line-height: 1.55;
    margin: 0;
    color: var(--gbp-text-color);
}

/* Responsive */
@media (max-width: 991px) {
    .gbp-about-wrapper {
        grid-template-columns: 1fr;
    }

    .gbp-about-image-box {
        min-height: 420px;
    }
}

@media (max-width: 575px) {
    .gbp-about-section {
        padding: 40px 5px;
    }

    .gbp-about-content {
        padding: 18px;
    }

    .gbp-why-grid {
        grid-template-columns: 1fr;
    }

    .gbp-about-image-box {
        min-height: 360px;
        border-radius: 20px;
    }
}

.rc-anchor-logo-img-portrait {
    background-size: 27px !important;
}

.rc-anchor-logo-text {
    font-size: 9px !important;
    margin-top: 0px !important;
}

.rc-anchor-logo-portrait {
    margin: 2px 0 0 26px !important;
}

.gbp-region-section {
    padding: var(--gbp-section-padding);
    padding-top: 20px;
    background: #fff;
}

.gbp-region-wrap {
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;

    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    padding: 18px 20px 22px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);

    white-space: nowrap;
    scroll-behavior: smooth;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: var(--gbp-primary-color) #f1f3f6;
}

.gbp-region-wrap:active {
    cursor: grabbing;
}

.gbp-region-wrap::-webkit-scrollbar {
    display: none;
    height: 10px;
}




.gbp-region-item {
    flex: 0 0 auto;
    min-width: 190px;

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    color: var(--gbp-primary-color);
    position: relative;

    padding: 8px 18px 8px 0;
    transition: 0.3s ease;
}

.gbp-region-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 38px;
    background: #e8e8e8;
}

.gbp-region-item i {
    font-size: 22px;
    color: var(--gbp-primary-color);
    flex-shrink: 0;
}

.gbp-region-item span {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    white-space: normal;
}

.gbp-region-item:hover {
    transform: translateY(-2px);
}

.gbp-region-item.active::before {
    content: "";
    position: absolute;
    left: 35px;
    bottom: -10px;

    width: 38px;
    height: 3px;

    background: var(--gbp-primary-color);
    border-radius: 30px;
}

.gbp-region-wrap.dragging .gbp-region-item {
    pointer-events: none;
}

@media (max-width: 767px) {
    .gbp-region-section {
        padding: 30px 0;
    }

    .gbp-region-wrap {
        padding: 14px 14px 20px;
        gap: 10px;
    }

    .gbp-region-item {
        min-width: 165px;
    }

    .gbp-region-item i {
        font-size: 20px;
    }

    .gbp-region-item span {
        font-size: 12px;
    }
}

.gbp-view-portfolio-img-section {
    padding: 60px;
}

.gbp-view-portfolio-img img {
    border-radius: 20px;
}

.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    position: relative;
    display: inline-block;
}
.image-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    padding: 25px;
    border-radius: 0 0 10px 10px;
    color: #fff;
    text-align: left;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0)
    );

    box-sizing: border-box;
}

.image-info h2 {
    margin: 0 0 8px;
    color: #fff;
}

.image-info p {
    margin: 0;
    color: #fff;
}

/* Optional dark gradient behind text */
.image-info::before {
    content: "";
    position: absolute;
    
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8),
        rgba(0,0,0,0)
    );
    z-index: -1;
    border-radius: 8px;
}

.image-modal-content img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
   
}

.image-modal-content h2 {
    margin-top: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    border: none;
    border-radius: 50%;
    background: var(--gbp-secondary-color);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: var(--gbp-primary-color);
}

@media (max-width: 768px) {
    .image-modal-content h2 {
        font-size: 20px;
    }


}

.gbp-review-widgets {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.review-widget {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 10px;
}

.gbp-nav-list>li {
    position: relative;
}

.gbp-has-submenu>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gbp-has-submenu>a i {
    font-size: 11px;
    transition: .3s;
}

.gbp-has-submenu:hover>a i {
    transform: rotate(180deg);
}

.gbp-submenu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    padding: 10px 0;
    list-style: none;

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition: .3s;
    z-index: 999;
}

.gbp-has-submenu:hover .gbp-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gbp-submenu li {
    width: 100%;
}

.gbp-submenu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: .25s;
    font-size: 14px;
}

.gbp-submenu li a:hover {
    background: rgba(0, 37, 148, .06);
    color: var(--gbp-primary-color);
    padding-left: 28px;
}

.gbp-mobile-submenu ul {
    display: none;
}

.gbp-mobile-submenu ul.active {
    display: block;
}

.gbp-mobile-submenu>a i.rotate {
    transform: rotate(180deg);
}

@media (max-width: 991px) {

    .gbp-mobile-submenu {
        position: relative;
    }

    .gbp-mobile-submenu>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .gbp-mobile-submenu ul {
        display: none;
        list-style: none;
        margin: 12px 0px;
        padding: 10px 0;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
        border: 1px solid rgba(0, 37, 148, .08);

        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: translateY(10px);
        transition: .35s ease;
    }

    .gbp-mobile-submenu ul.active {
        opacity: 1;
        visibility: visible;
        max-height: 400px;
        transform: translateY(0);
    }

    .gbp-mobile-submenu ul li {
        margin-bottom: 0px;
    }

    .gbp-mobile-submenu ul li a {
        display: block;
        padding: 11px 18px;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        transition: .25s;
    }

    .gbp-mobile-submenu ul li a:hover {
        background: rgba(0, 37, 148, .06);
        color: var(--gbp-primary-color);
        padding-left: 25px;
    }

    .gbp-mobile-submenu>a i {
        transition: .3s;
    }

    .gbp-mobile-submenu>a i.rotate {
        transform: rotate(180deg);
    }
}
