/* =====================================================
   CLEAN HEADER / MEGA MENU / MOBILE MENU CSS
===================================================== */

/* Header */
:root {
    --headingclr: #000;
    --colorwhite: #fff;
    --orangecolor: #FF6600;
    --bluecolor: #10316B;
    --greencolor: #108a43;
    --Redcolor: #BE0100;
    --lightgrey: #F5F5F5;
    --yellowcolor: #FFDD00;
    --black: #000;
    --flex: flex;
    --w-full: 100%;
    --H-full: 100%;
    --Radius-full: 100%;
    --familyDM: "DM Sans", sans-serif;
    --fontsizze: 1.6rem;
    --headingcolor: #161616;
}


html, body {
    padding: 0;
    margin: 0;
    color: #2D2D2D;
}
h2{
font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700; }

.mgb-1_5 {
    margin-bottom: 1.5rem;
}
.mgt-1_5 {
    margin-top: 1.5rem;
}
    
.mgb-2_5 {
    margin-bottom: 2.5rem;
}
.mgt-2_5 {
    margin-top: 2.5rem;
}

ol, ul {
    margin-left: 0.5rem;
    padding-left:0rem;
}

.site-header {
    background: #ffffff;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.main-navbar {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.logo-text {
    font-size: 38px;
    letter-spacing: -1px;
}

.logo-text span {
    color: #ff8c2f;
}

.logo-text strong {
    color: #0875ad;
}

.site-logo small {
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    margin-top: 4px;
}

/* Desktop Menu */
.main-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a,
.search-btn {
    color: #20242a;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 25px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.main-menu > li > a:hover,
.main-menu > li > a.active {
    color: #2758ff;
}

.main-menu > li > a.active {
    border-bottom: 3px solid #2758ff;
}

.search-btn {
    font-size: 22px;
    cursor: pointer;
}

/* Mega Menu */
.has-mega-menu {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #ffffff;
    border-top: 2px solid #2758ff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
    z-index: 9999;
}

.has-mega-menu:hover .mega-menu {
    display: flex;
}

/* Two Level Menu - Services */
.two-level-menu {
    min-width: 460px;
    max-width: 450px;
}

.two-level-menu .mega-left {
    width: 240px;
    background: #ffffff;
    border-right: 1px solid #eeeeee;
}

.two-level-menu .mega-right {
    width: 240px;
    background: #ffffff;
}

.two-level-menu .mega-right-panel {
    display: none;
    min-height: 52px;
}

.two-level-menu .mega-right-panel.active {
    display: block;
}

.two-level-menu .mega-right-panel a {
    display: block;
    padding: 14px 18px;
    color: #3d4148;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.two-level-menu .mega-right-panel a:hover {
    background: #f28c28;
    color: #ffffff;
}

/* Three Level Menu - Solutions */
.three-level-menu {
    min-width: 720px;
    align-items: stretch;
}

.three-level-menu .mega-left,
.three-level-menu .mega-middle {
    width: 360px;
    background: #ffffff;
}

.three-level-menu .mega-left {
    border-right: 1px solid #eeeeee;
}

.three-level-menu .mega-middle {
    position: relative;
}

.three-level-menu .mega-middle-panel {
    display: none;
}

.three-level-menu .mega-middle-panel.active {
    display: block;
}

.three-level-menu .mega-middle-item {
    position: relative;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.2s ease;
}

.three-level-menu .mega-middle-item > a {
    display: block;
    flex: 1;
    padding: 14px 16px;
    color: #3d4148;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.three-level-menu .mega-middle-item > i {
    padding-right: 14px;
    color: #3d4148;
    font-size: 13px;
}

.three-level-menu .mega-middle-item:hover,
.three-level-menu .mega-middle-item.active {
    background: linear-gradient(90deg, #17446e, #f28c28);
}

.three-level-menu .mega-middle-item:hover > a,
.three-level-menu .mega-middle-item:hover > i,
.three-level-menu .mega-middle-item.active > a,
.three-level-menu .mega-middle-item.active > i {
    color: #ffffff;
}

/* Child panel starts exactly beside hovered subcategory row */
.three-level-menu .mega-child-panel {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 360px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-top: 2px solid #2758ff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
    z-index: 10000;
}

.three-level-menu .mega-middle-item:hover > .mega-child-panel {
    display: block;
}

.three-level-menu .mega-child-panel a {
    display: block;
    padding: 14px 18px;
    color: #3d4148;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: #ffffff;
}

.three-level-menu .mega-child-panel a:hover {
    background: #f28c28;
    color: #ffffff;
}

/* Common left items */
.mega-left-item {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.2s ease;
}

.mega-left-item > a {
    display: block;
    flex: 1;
    padding: 14px 16px;
    color: #3d4148;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.mega-left-item i {
    padding-right: 14px;
    color: #3d4148;
    font-size: 13px;
}

.mega-left-item:hover,
.mega-left-item.active {
    background: linear-gradient(90deg, #17446e, #f28c28);
}

.mega-left-item:hover > a,
.mega-left-item:hover i,
.mega-left-item.active > a,
.mega-left-item.active i {
    color: #ffffff;
}

/* Old mega-right fallback */
.mega-right-panel {
    display: none;
    min-height: 52px;
}

.mega-right-panel.active {
    display: block;
}

/* Prevent dropdown from going outside screen */
@media (min-width: 992px) {
    .main-menu > li:nth-last-child(-n+3) .mega-menu {
        right: 0;
        left: auto;
    }
}

/* Mobile Button */
.mobile-menu-btn {
    display: none;
    border: 0;
    background: transparent;
    color: #214cff;
    font-size: 28px;
}

/* Mobile Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1090;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: min(760px, 92vw);
    height: 100vh;
    background: #ffffff;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-menu-header {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #eeeeee;
}

.mobile-menu-close {
    border: 0;
    background: transparent;
    color: #2758ff;
    font-size: 34px;
}

.mobile-menu-body {
    padding-bottom: 30px;
}

.mobile-link,
.mobile-accordion-btn,
.mobile-sub-btn,
.mobile-inner-link {
    width: 100%;
    min-height: 60px;
    padding: 0 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111111;
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
}

.mobile-link:hover,
.mobile-inner-link:hover,
.mobile-sub-content a:hover {
    color: #2758ff;
}

.mobile-accordion-content,
.mobile-sub-content {
    display: none;
    background: #fafafa;
}

.mobile-accordion-content.active,
.mobile-sub-content.active {
    display: block;
}

.mobile-sub-btn {
    padding-left: 64px;
    color: #3d4148;
    font-weight: 500;
    font-size: 18px;
}

.mobile-inner-link,
.mobile-sub-content a {
    min-height: 48px;
    padding: 0 84px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    color: #3d4148;
    text-decoration: none;
    font-size: 17px;
}

.mobile-accordion-btn.active i,
.mobile-sub-btn.active i {
    transform: rotate(180deg);
}

body.menu-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
    .main-navbar {
        min-height: 82px;
    }

    .main-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .logo-text {
        font-size: 34px;
    }

    .mega-menu,
    .three-level-menu,
    .two-level-menu {
        position: static;
        min-width: 100%;
        max-width: 100%;
        box-shadow: none;
        border-top: 0;
        display: none;
        flex-direction: column;
    }

    .three-level-menu .mega-left,
    .three-level-menu .mega-middle,
    .two-level-menu .mega-left,
    .two-level-menu .mega-right {
        width: 100%;
        border-right: 0;
    }

    .three-level-menu .mega-child-panel {
        position: static;
        min-width: 100%;
        border: 0;
        border-top: 0;
        box-shadow: none;
    }
}

@media (max-width: 575px) {
    .mobile-menu-panel {
        width: 100vw;
    }

    .mobile-link,
    .mobile-accordion-btn {
        padding: 0 24px;
        font-size: 18px;
    }

    .mobile-sub-btn {
        padding-left: 42px;
        font-size: 17px;
    }

    .mobile-inner-link,
    .mobile-sub-content a {
        padding: 0 58px;
        font-size: 16px;
    }
}

/* =====================================================
   TOP BREADCRUMB BAR
===================================================== */
.cd-3{margin-bottom: 10px !important;}

.cd-10{margin:10px 0px;}
.cd-20{margin:20px 0px;}
.cd-30{margin:30px 0px;}
.cd-40{margin:40px 0px;}
.cd-50{margin:50px 0px;}

.top-breadcrumb-bar {
    background: linear-gradient(58deg, #ff9933 0, #086aa1 100%);
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 0px;
}

.top-breadcrumb-inner {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.top-breadcrumb-bar .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
}

.top-breadcrumb-bar .breadcrumb-item {
    color: #fff;
}

.top-breadcrumb-bar .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-breadcrumb-bar .breadcrumb-item a:hover {
    color: #fff;
}

.top-breadcrumb-bar .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.top-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #fff;
    padding: 0 10px;
}

.top-breadcrumb-bar .breadcrumb-item i {
    color: #fff;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 991px) {
    .top-breadcrumb-bar {
        padding: 10px 0;
    }
    
    .top-breadcrumb-inner {
    min-height: 18px;
}

    .top-breadcrumb-bar .breadcrumb {
        font-size: 12px;
    }

    .top-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 6px;
    }
    .back-to-top-btn{
        width: 30px;
    height: 30px;
    }
    
}








/* =====================================================
   PROFESSIONAL SERVICE / SOLUTION DETAIL POLISH
===================================================== */
.solution-cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 35px;
        }
        .solution-cta-text span{
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 1rem;
        }

        .solution-cta-text h2 {
            color: #ffffff;
            font-size: 42px;
            line-height: 1.18;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .solution-cta-text .solution-text,
        .solution-cta-text .solution-text p,
        .solution-cta-text p {
            color: rgba(255, 255, 255, 0.82);
            font-size: 21px;
            line-height: 1.5;
            margin: 0;
        }

        .solution-cta-action {
            flex-shrink: 0;
        }

        
        .solution-image-card {
            display: block;
            border-radius: 6px;
            overflow: hidden;
            text-decoration: none;
            background: #ffffff;
            height: 100%;
            transition: all 0.3s ease;
        }

        .solution-image-card:hover {
            text-decoration: none;
            transform: translateY(-3px);
        }

        .solution-image-card-img {
            width: 100%;
            overflow: hidden;
        }

        .solution-image-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: all 0.3s ease;
        }

        .solution-image-card:hover .solution-image-card-img img {
            transform: scale(1.05);
        }

        
        .solution-image-card:hover .solution-image-card-title {
            background: #ff9933;
            color: #ffffff;
        }

        @media (max-width: 1199px) {
            .solution-image-card-img {
                height: 240px;
            }
        }

        @media (max-width: 991px) {
            .solution-cta-section {
                padding: 45px 35px;
            }

            .solution-cta-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 25px;
            }

            .solution-cta-text h2 {
                font-size: 34px;
            }

            .solution-cta-text .solution-text,
            .solution-cta-text .solution-text p,
            .solution-cta-text p {
                font-size: 18px;
            }

            .solution-image-card-img {
                height: 220px;
            }
        }

        @media (max-width: 575px) {
            .solution-cta-section {
                padding: 35px 22px;
                border-radius: 20px;
            }

            .solution-cta-text h2 {
                font-size: 28px;
            }

            .solution-cta-text .solution-text,
            .solution-cta-text .solution-text p,
            .solution-cta-text p {
                font-size: 16px;
            }

            .solution-cta-btn {
                width: 100%;
                min-width: auto;
                padding: 14px 24px;
                font-size: 16px;
            }

            .solution-image-card-img {
                height: 230px;
            }

            .solution-image-card-title {
                font-size: 20px;
            }
        }



.solution-cta-section {
            margin-top:20px;
            background: linear-gradient(135deg, #1f78ff 0%, #1681df 45%, #27ad67 100%);
            border-radius: 20px;
            padding: 20px 20px;
            box-shadow: 0 18px 40px rgba(31, 120, 255, 0.16);
        }

        .solution-cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 35px;
        }

        .solution-cta-text .solution-text,
        .solution-cta-text .solution-text p,
        .solution-cta-text p {
            color: rgba(255, 255, 255, 0.82);
            font-size: 1rem;
            line-height: 1.5;
            margin: 0;
        }

        .solution-cta-action {
            flex-shrink: 0;
        }

        
        .solution-image-card {
            display: block;
            border-radius: 6px;
            overflow: hidden;
            text-decoration: none;
            background: #ffffff;
            height: 100%;
            transition: all 0.3s ease;
        }

        .solution-image-card:hover {
            text-decoration: none;
            transform: translateY(-3px);
        }

        .solution-image-card-img {
            width: 100%;
            overflow: hidden;
        }

        .solution-image-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: all 0.3s ease;
        }

        .solution-image-card:hover .solution-image-card-img img {
            transform: scale(1.05);
        }

        .solution-image-card-title {
            background: #086aa1;
            color: #ffffff;
            font-size: 22px;
            text-align: center;
            padding: 10px 12px;
            line-height: 1.25;
            transition: background 0.3s ease;
        }

        .solution-image-card:hover .solution-image-card-title {
            background: #ff9933;
            color: #ffffff;
        }

        @media (max-width: 1199px) {
            .solution-image-card-img {
                height: 240px;
            }
        }

        @media (max-width: 991px) {
            .solution-cta-section {
                padding: 45px 35px;
            }

            .solution-cta-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 25px;
            }

            .solution-cta-text h2 {
                font-size: 34px;
            }

            .solution-cta-text .solution-text,
            .solution-cta-text .solution-text p,
            .solution-cta-text p {
                font-size: 18px;
            }

            .solution-image-card-img {
                height: 220px;
            }
        }

        @media (max-width: 575px) {
            .solution-cta-section {
                padding: 35px 22px;
                border-radius: 20px;
            }

            .solution-cta-text h2 {
                font-size: 28px;
            }

            .solution-cta-text .solution-text,
            .solution-cta-text .solution-text p,
            .solution-cta-text p {
                font-size: 16px;
            }

            .solution-cta-btn {
                width: 100%;
                min-width: auto;
                padding: 14px 24px;
                font-size: 16px;
            }

            .solution-image-card-img {
                height: 230px;
            }

            .solution-image-card-title {
                font-size: 20px;
            }
        }





.solution-image-card {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    background: #ffffff;
    height: 100%;
    border: 1px solid #0068a11f;
}

.solution-image-card:hover {
    text-decoration: none;
    transform: translateY(-3px);
    transition: 0.3s ease;
    border: 1px solid #ff99336b;
    
}

.solution-image-card-img {
    width: 100%;
    overflow: hidden;
}

.solution-image-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solution-image-card-title {
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    padding: 10px 12px;
    line-height: 1.25;
}

.solution-image-card .solution-image-card-title {
    background: #086aa1;
    transition: background 0.3s ease;
}

.solution-image-card:hover .solution-image-card-title {
    background: #ff9933;
}

@media (max-width: 1199px) {
    .solution-image-card-img {
        height: 240px;
    }
}

@media (max-width: 991px) {
    .solution-image-card-img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .solution-image-card-img {
        height: 230px;
    }

    .solution-image-card-title {
        font-size: 20px;
    }
}




.solution-page {
    background: #ffffff;
}

.solution-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.solution-section-overlay {
    padding: 50px 0;
}

.solution-banner-image img{
    float: right;
    width: 40%;
    margin:1.2rem;
    border-radius: 20px;
}

.main-header .solution-text{
    color:#2D2D2D;
}

.main-header h1{
    color: #fff;
    font-size:32px;
}

.main-header .solution-text h1{
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #0068a1;
    padding: 10px 15px;
    border-radius: 40px 40px 40px 40px;
    text-align: start;
}


.main-header .solution-text strong{
 color:#fff;   
}

.main-header p{
    
}

.hero-btn-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.hero-btn {
    min-width: 190px;
    height: 40px;
    padding: 0 14px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    text-decoration: none;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* White Button */
.hero-btn-white {
    background: #285785;
    color: #ffffff;
    
}

.hero-btn-white:hover {
    background: #ff9933;
    color: #fff;
    
}

/* Outline Button */
.hero-btn-outline {
    background: #ff9933;
    color: #fff;
   
}

.hero-btn-outline:hover {
    background: #285785;
    color: #fff;
   
}

/* Scroll target spacing */
#our-services {
    scroll-margin-top: 90px;
}

/* Mobile */
@media (max-width: 576px) {
    .hero-btn-wrap {
        gap: 14px;
        margin-top: 22px;
    }

    .hero-btn {
        min-width: 100%;
        height: 52px;
        font-size: 16px;
    }
}



.solution-main-title,
.solution-text {
    color: #fff;
}

/* Left content spacing */

.solution-section-sm:last-child {
    padding-bottom: 0;
}

/* Banner */
.service-banner {
    width: 100%;
    max-height: 330px;
    object-fit: cover;
    border-radius: 18px !important;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

/* Typography */
.solution-main-title {
    font-size: 42px;
    line-height: 1.18;
    
    color: #07111f;
    letter-spacing: -0.8px;
    margin-bottom: 22px;
}

.solution-section-title {
    color: #07111f;
    margin-bottom: 24px;
}

.solution-text {
    font-size: 15px;
    line-height: 1.78;
    color: #273449;
}

.solution-text p {
    font-size:15px;
    margin-bottom: 12px;
    text-align: justify;
}

.solution-text strong {
    
    color: #07111f;
}

/* Sub service cards */
.solution-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.solution-card {
    background: #ffffff;
    border: 1px solid #dff0fb;
    border-radius: 20px;
    padding: 30px;
    min-height: 250px;
    box-shadow: 0 16px 45px rgba(2, 132, 199, 0.06);
    transition: all 0.25s ease;
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(2, 132, 199, 0.15);
    border-color: #b8e2fb;
}

.solution-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #eef9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0877b6;
    font-size: 25px;
    margin-bottom: 22px;
}

.solution-card h3 {
    font-size: 22px;
    
    color: #142033;
    margin-bottom: 13px;
}

.solution-card p {
    font-size: 16px;
    line-height: 1.62;
    color: #4b5563;
    margin-bottom: 22px;
}

.solution-card-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f5fbff;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0877b6;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.25s ease;
}

.solution-card-link:hover {
    background: #0877b6;
    color: #ffffff;
}

/* Sidebar */
.solution-sidebar {
    background-color: #0068a1;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #ebebeb;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    border-radius: 10px;
    padding: 15px;
    position: sticky;
    top: 20px;
}


.solution-enquiry-box h3{
    font-size: 20px;
    color:#fff;
    font-weight: 600;
    margin-bottom: 15px;
}
.solution-enquiry-box .enquiry-form .input-group {
    border: 1px solid #e5e5e5;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.solution-enquiry-box .enquiry-form .input-group-text {
    width: 45px;
    justify-content: center;
    background: #fff;
    border: none;
    color: #20a84a;
    font-size: 15px;
}

.solution-enquiry-box .enquiry-form .input-group-text i {
    font-size: 15px;
    line-height: 1;
}

.solution-enquiry-box .enquiry-form .form-control:focus {
    box-shadow: none;
    border: none;
}

.solution-enquiry-box .enquiry-form .form-control::placeholder {
    color: #777;
    font-size: 14px;
}

.solution-enquiry-box .enquiry-form .whatsapp-check {
    background: transparent;
    border: none;
    border-radius: 0;
    min-height: auto;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-enquiry-box .enquiry-form .whatsapp-check .form-check-input {
    margin: 0;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border-radius: 2px;
}

.solution-enquiry-box .enquiry-form .whatsapp-check .form-check-label {
    margin: 0;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.solution-enquiry-box .enquiry-form .whatsapp-check .form-check-label i {
    color: #25D366;
    font-size: 16px;
    margin: 0;
}

.solution-enquiry-box .enquiry-form .enquiry-submit-btn {
    height: 42px;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
}

/* Sidebar CTA card */
.solution-sidebar-card {
    border-radius: 24px;
    padding: 34px 28px;
    color: #ffffff;
    margin-bottom: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.solution-sidebar-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.solution-sidebar-card.green {
    background: linear-gradient(135deg, #0079b8, #46c28c);
}

.solution-sidebar-card.blue {
    background: linear-gradient(135deg, #0068a8, #43c08a);
}

.solution-sidebar-card h3 {
    position: relative;
    z-index: 2;
    font-size: 28px;
    line-height: 1.16;
    
    color: #ffffff;
    margin-bottom: 16px;
}

.solution-sidebar-card p {
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 22px;
}

.solution-sidebar-card .btn {
    position: relative;
    z-index: 2;
    background: #ffffff;
    color: #0068a8;
    border-radius: 999px;
    padding: 12px 22px;
    
    border: 0;
}

.solution-sidebar-card .btn:hover {
    background: #ff6b00;
    color: #ffffff;
}

/* Testimonials */
.solution-blue-band {
    background: linear-gradient(135deg, #0074b8, #0797ca);
    border-radius: 24px;
    padding: 48px;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 116, 184, 0.18);
}

.solution-blue-band h2 {
    font-size: 34px;
    
    color: #ffffff;
    margin-bottom: 26px;
}

.solution-process-card {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 24px;
    color: #ffffff;
    min-height: 185px;
}

.solution-process-card p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.55;
}

.solution-process-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin-top: 15px;
}

/* FAQ */
.faq-section {
    background-color: #f4fafd;
    padding: 10px;
}


.faq-image-card,
.question-card,
.faq-content-card {
    border-radius: 24px;
}

.faq-image-card {
    padding: 24px;
    margin-bottom: 30px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-image-card img {
    width: 100%;
    max-height: 330px;
    object-fit: contain;
}

.question-card {
    padding: 24px 20px;
}

.question-card h3 {
    font-size: 30px;
    font-weight: 800;
    color: #001b4c;
    margin-bottom: 22px;
}

.question-card p {
    font-size: 23px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 32px;
}

.expert-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 50px;
    background: linear-gradient(90deg, #1687f2, #27b36a);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.expert-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}


.faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7651ff;
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 17px;
    margin-bottom: 30px;
}

.custom-faq-accordion .accordion-item {
    border: 1px solid #dfe5ee;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #ffffff;
}

.custom-faq-accordion .accordion-button {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #0868a0;
    box-shadow: none;
    padding: 12px;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    color: #fff;
    background: #ff9a33;
    box-shadow: none;
}

.custom-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-faq-accordion .accordion-body {
    padding: 12px;
    font-size: 23px;
    line-height: 1.75;
    color: #14213d;
    background: #eef5ff;
    border-top: 1px solid #e8edf5;
}

.custom-faq-accordion .accordion-button::after {
    background-image: none;
    content: "\f282";
    font-family: bootstrap-icons;
    font-size: 22px;
    width: auto;
    height: auto;
    color: #001b4c;
    transform: rotate(0deg);
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\f286";
    transform: rotate(0deg);
}

    .custom-faq-accordion .accordion-body p {
        font-size: 18px;
        margin-bottom: 0px;
    }

@media (max-width: 991px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-content-card,
    .question-card {
        padding: 28px;
    }

    .question-card h3 {
        font-size: 26px;
    }

    .question-card p,
    .custom-faq-accordion .accordion-body {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .custom-faq-accordion .accordion-button {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .faq-image-card {
        min-height: auto;
    }

    .question-card h3 {
        font-size: 24px;
    }

    .expert-btn {
        font-size: 17px;
        padding: 14px 24px;
    }
}
.solution-faq-wrap {
    background: #f1f9ff;
    border-radius: 24px;
    padding: 42px;
}

.solution-faq-wrap h2 {
    font-size: 34px;
    line-height: 1.2;
    
    color: #07111f;
    margin-bottom: 28px;
}

.solution-faq-wrap .accordion-item {
    border: 0;
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: #ffffff;
}

.solution-faq-wrap .accordion-button {
    font-size: 17px;
    
    color: #07111f;
    background: #ffffff;
    box-shadow: none;
    padding: 20px 24px;
}

.custom-faq-accordion .accordion-button::after {
    content: "+";
    background-image: none !important;
    transform: none !important;
    font-size: 24px;
    font-weight: 600;
    color: #0057ff;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    content: "-";
    background-image: none !important;
    transform: none !important;
}



.solution-faq-wrap .accordion-button:not(.collapsed) {
    color: #07111f;
    background: #ffffff;
}

.solution-faq-wrap .accordion-button::after {
    filter: invert(31%) sepia(94%) saturate(1182%) hue-rotate(176deg) brightness(91%) contrast(92%);
}

.solution-faq-wrap .accordion-body {
    background: #ffffff;
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.68;
    color: #273449;
}

.custom-faq-accordion .accordion-button::after {
    display: none !important;
}

.custom-faq-accordion .accordion-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-section .custom-faq-accordion .accordion-item,
.faq-section .custom-faq-accordion .accordion-button,
.faq-section .custom-faq-accordion .accordion-button:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}
.faq-plus-minus::before {
    content: "+";
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.accordion-button:not(.collapsed) .faq-plus-minus::before {
    content: "-";
}

/* Related blogs */


.solution-related-blog-card {
    border: 1px solid #dff0fb;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    height: 100%;
    box-shadow: 0 14px 35px rgba(2, 132, 199, 0.05);
    transition: all 0.25s ease;
}

.solution-related-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(2, 132, 199, 0.14);
}

.solution-related-blog-card img {
    width: 100%;
    object-fit: cover;
}

.solution-related-blog-card .card-body {
    padding: 22px;
}

.solution-related-blog-card h3,
.solution-related-blog-card h3 a {
    color: #142033;
    font-size: 18px;
    text-decoration: none;
}

.solution-related-blog-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #4b5563;
}

/* Nationwide presence */
.solution-presence-list {
    columns: 3;
    list-style-position: outside;
    padding-left: 22px;
    margin: 0;
}

.solution-presence-list li {
    font-size: 16px;
    margin-bottom: 14px;
    color: #273449;
    break-inside: avoid;
}

.solution-presence-list a {
    color: #2d2d2d;
    text-decoration: none;
    
}

.solution-presence-list a:hover {
    color: #2758ff;
}



/* Main spacing fix after breadcrumb */
.top-breadcrumb-bar + main {
    padding-top: 0 !important;
}
.solution-description-box {
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(2, 132, 199, 0.06);
}

.solution-description-box h2 {
color:#161616;}

.solution-description-box p{
}
.why-choose-section {
    margin:10px 0px;
    
}

.why-choose-section h2,
.solution-cta-section h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    
}

.why-choose-image,
.solution-cta-image {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}


.solution-cta-btn {
    background: #ff6b00;
    border: 0;
    color: #fff;
    font-weight: 500;
    border-radius: 999px;
    padding: 13px 28px;
    margin-top: 15px;
    padding: 0.60rem 0.80rem;
    font-size: 0.85rem;
    text-decoration: none;
}

.solution-cta-btn:hover {
    background: #e85f00;
    color: #fff;
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 60px 0;
}

.solution-blue-band {
    background: linear-gradient(135deg, #0b82bd 0%, #11a0d5 100%);
    border-radius: 28px;
    padding: 55px 35px;
    overflow: hidden;
}

.solution-blue-band h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.wh-po{
    background: #0068a1;
    border-radius: 28px;
    padding: 1.6rem;
    color:#fff;
    margin-bottom: 2.5rem;
}

.wh-po strong {color:#fff;}

.wh-po h2 {
    color: #fff;
    font-size: 1.65rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.wh-po ul {margin-bottom: 0.4rem;}
.wh-po ul li::before {
    background: url(https://www.nexisworx.com/wp-content/uploads/slist-icon.png) no-repeat;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    top: 15px;
    width: 22px;
    z-index: 1;
}

.wh-po ul li {
    list-style: none;
margin: 0.2rem 0;
    width: 100%;
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 0.90rem;
    border-top: 1px solid #1a77ab;
    align-items: flex-start;}

/* Card wrapper */
.testimonial-card-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
    transition: all 0.3s ease;
}

.testimonial-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

/* Main card */
.testimonial-card {
    position: relative;
    min-height: 470px;
    padding: 28px 24px 24px;
    overflow: hidden;
}

/* Same color before + after */
.theme-blue .testimonial-card::before,
.theme-blue .testimonial-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    background: linear-gradient(135deg, #0b77b7 0%, #075f93 100%);
}

.theme-orange .testimonial-card::before,
.theme-orange .testimonial-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 0;
    background: linear-gradient(135deg, #ff9828 0%, #f27616 100%);
}

.testimonial-card::before {
    top: 0;
    height: 58%;
}

.testimonial-card::after {
    bottom: 0;
    height: 100%;
}

/* Inner border */
.testimonial-border {
    position: absolute;
    left: 28px;
    right: 28px;
    top: 32px;
    bottom: 28px;
    border: 5px solid rgba(255, 255, 255, 0.92);
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 1;
    pointer-events: none;
}

/* Feedback watermark */
.testimonial-bg-text {
    position: absolute;
    top: 72px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.13);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

/* Quotes */
.testimonial-quote {
    position: absolute;
    z-index: 3;
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
}

.quote-top {
    top: 50px;
    left: 58px;
}

.quote-bottom {
    right: 48px;
    bottom: 32px;
    transform: rotate(180deg);
}

/* Image */
.testimonial-image {
    position: absolute;
    top: 112px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Content */
.testimonial-content {
    position: relative;
    z-index: 3;
    padding: 220px 24px 38px;
    text-align: center;
}

/* Message */
.testimonial-message {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Small quotes around message */
.small-quote {
    color: #ffc107;
    font-size: 20px;
    font-weight: 800;
    margin: 0 3px;
}

/* Name */
.testimonial-name {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.4px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Designation / company */
.testimonial-meta {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
    font-weight: 500;
}

.theme-blue .testimonial-meta {
    color: #ffe0b3;
}

.theme-orange .testimonial-meta {
    color: #eaf8ff;
}

/* Rating */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}

.testimonial-rating .star {
    font-size: 23px;
    line-height: 1;
}

.testimonial-rating .star.filled {
    color: #ffc107;
}

.testimonial-rating .star.empty {
    color: rgba(255, 255, 255, 0.38);
}

/* Responsive */
@media (max-width: 1199px) {
    .testimonial-card {
        min-height: 455px;
    }

    .testimonial-bg-text {
        font-size: 48px;
    }

    .testimonial-name {
        font-size: 24px;
    }

    .testimonial-message {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .solution-blue-band {
        padding: 45px 24px;
    }

    .solution-blue-band h2 {
        font-size: 34px;
    }

    .testimonial-card {
        min-height: 450px;
    }
}

@media (max-width: 575px) {
    .testimonial-section {
        padding: 40px 0;
    }

    .solution-blue-band {
        padding: 35px 16px;
        border-radius: 22px;
    }

    .solution-blue-band h2 {
        font-size: 28px;
    }

    .testimonial-card {
        min-height: 430px;
        padding: 22px 16px;
    }

    .testimonial-border {
        left: 20px;
        right: 20px;
        top: 26px;
        bottom: 22px;
        border-width: 4px;
        border-top-right-radius: 48px;
        border-bottom-left-radius: 48px;
    }

    .testimonial-bg-text {
        top: 78px;
        font-size: 38px;
    }

    .testimonial-quote {
        font-size: 58px;
    }

    .quote-top {
        top: 46px;
        left: 42px;
    }

    .quote-bottom {
        right: 36px;
        bottom: 28px;
    }

    .testimonial-image {
        top: 110px;
        width: 108px;
        height: 108px;
    }

    .testimonial-content {
        padding: 205px 16px 30px;
    }

    .testimonial-message {
        font-size: 15px;
    }

    .testimonial-name {
        font-size: 22px;
    }

    .testimonial-meta {
        font-size: 14px;
    }

    .testimonial-rating .star {
        font-size: 21px;
    }
}


.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffd43b;
    font-size: 16px;
    margin-top: 8px;
}

.testimonial-stars .fa-regular {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 767px) {
    .solution-description-box,
    .why-choose-section,
    .solution-cta-section {
        padding: 28px 22px;
    }

    .why-choose-section h2,
    .solution-cta-section h2 {
        font-size: 26px;
    }
}




/* Responsive */
@media (max-width: 1199px) {
    .solution-card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .solution-sidebar {
        position: static;
        margin-top: 20px;
    }

    .solution-main-title {
        font-size: 34px;
    }

    .solution-section-title,
    .solution-faq-wrap h2,
    .solution-blue-band h2 {
        font-size: 30px;
    }

    .solution-section {
        padding: 0px 0 70px;
    }
}

@media (max-width: 767px) {
    .solution-card-grid {
        grid-template-columns: 1fr;
    }

    .solution-main-title {
        font-size: 30px;
    }

    .solution-section-title,
    .solution-faq-wrap h2,
    .solution-blue-band h2 {
        font-size: 26px;
    }

    .solution-text {
        font-size: 16px;
    }

    .solution-blue-band,
    .solution-faq-wrap {
        padding: 30px 22px;
    }

    .solution-presence-list {
        columns: 1;
    }

    .solution-enquiry-box {
        padding: 24px;
    }
}



/*-- sidebar form */


.solution-enquiry-box .enquiry-form .input-group {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.solution-enquiry-box .enquiry-form .input-group-text {
    width: 48px;
    justify-content: center;
    background: #ff9933;
    border: none;
    color: #fff;
    font-size: 16px;
}

.solution-enquiry-box .enquiry-form .input-group-text i {
    font-size: 16px;
    line-height: 1;
}

.solution-enquiry-box .enquiry-form .form-control {
    border: none;
    box-shadow: none;
    height: 32px;
    font-size: 15px;
    color: #222;
    background: #fff;
}

.solution-enquiry-box .enquiry-form .form-control:focus {
    box-shadow: none;
    border: none;
}

.solution-enquiry-box .enquiry-form .form-control::placeholder {
    color: #777;
    font-size: 14px;
}

.solution-enquiry-box .enquiry-form .message-group .input-group-text {
    align-items: flex-start;
    padding-top: 15px;
}

.solution-enquiry-box .enquiry-form textarea.form-control {
    height: auto;
    min-height: 110px;
    resize: none;
    padding-top: 12px;
}

.solution-enquiry-box .enquiry-form .whatsapp-check {
    border-radius: 8px;
    
}

.solution-enquiry-box .enquiry-form .whatsapp-check .form-check-label {
    font-size: 14px;
    color: #fff;
}

.solution-enquiry-box .enquiry-form .whatsapp-check .form-check-label i {
    color: #25D366;
    margin-right: 5px;
    font-size: 16px;
}

.solution-enquiry-box .enquiry-form .form-check-input {
    margin-top: 4px;
}

.solution-enquiry-box .enquiry-form .enquiry-submit-btn {
    height: 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    background-color: #ff9933;
}


.sidebar-list{
    border: .1rem solid #CBE5FF;
    border-radius: 1.5rem;
    box-shadow: 0 .4rem 1.1rem #F3F3F3;
    position: relative;
    height: 100%;
    transition: 0.3s;
    padding: 1.5rem;
}

/*--- sidebar form -- */









/* =====================================================
   FOOTER
===================================================== */

.site-footer-pro {
    position: relative;
    background:
        linear-gradient(rgba(2, 10, 28, 0.88), rgb(2 10 28 / 77%)), url(/assets/img/footer_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 80px 0 25px;
    overflow: hidden;
}

    .site-footer-pro .container {
        position: relative;
        z-index: 2;
    }

    .footer-overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(0, 153, 255, 0.12), transparent 35%);
        z-index: 1;
        pointer-events: none;
    }

    .footer-main-logo {
        max-height: 62px;
        width: auto;
        display: block;
    }

    .footer-logo-text {
        font-size: 34px;
        
        color: #ffffff;
        line-height: 1;
    }

    .footer-logo-text span {
        color: #ffffff;
    }

    .footer-logo-text strong {
        color: #ff2d75;
    }

    .footer-about-text {
        max-width: 760px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 17px;
        line-height: 1.8;
        margin: 0;
    }

    .footer-links-row {
        margin-top: 35px !important;
    }

    .footer-title {
        color: #ffffff;
        font-size: 24px;
        margin-bottom: 22px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 14px;
    }

    .footer-links li a {
        color: rgba(255, 255, 255, 0.82);
        text-decoration: none;
        font-size: 16px;
        line-height: 1.6;
        transition: all 0.25s ease;
    }

    .footer-links li a:hover {
        color: #ff9933;
        padding-left: 4px;
    }

    .footer-right-box {
        padding-left: 20px;
    }

    .footer-social {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 18px;
    }

    .footer-social a {
        color: #ffffff;
        font-size: 28px;
        text-decoration: none;
        transition: all 0.25s ease;
    }

    .footer-social a:hover {
        color: #fff;
        transform: translateY(-2px);
    }

    .footer-newsletter-box h3 {
        font-size: 18px;
        
        color: #ffffff;
        margin-bottom: 10px;
    }

    .footer-newsletter-box p {
        color: rgba(255, 255, 255, 0.76);
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .footer-newsletter-form input {
        width: 100%;
        height: 45px;
        border: 0;
        border-radius: 12px;
        padding: 0 18px;
        font-size: 16px;
        margin-bottom: 16px;
        outline: none;
        background: #ffffff;
        color: #101828;
    }

    .footer-newsletter-form button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-width: 180px;
        height: 45px;
        border: 0;
        border-radius: 999px;
        padding: 0 28px;
        background: linear-gradient(90deg, #ff1461 0%, #ef7d3b 100%);
        color: #ffffff;
        font-size: 18px;
        font-weight: 700;
        transition: all 0.25s ease;
    }

    .footer-newsletter-form button:hover {
        opacity: 0.92;
        transform: translateY(-1px);
    }

    .footer-contact-list {
        display: grid;
        gap: 12px;
    }

    .footer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 15px;
        line-height: 1.7;
    }

    .footer-contact-item i {
        color: #fff;
        font-size: 16px;
        margin-top: 4px;
    }

    .footer-bottom-pro {
        margin-top: 45px;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-bottom-pro p {
        margin: 0;
        color: rgba(255, 255, 255, 0.68);
        font-size: 14px;
        line-height: 1.6;
    }
    
    .footer-bottom-pro p a {
        color:#fff;
        text-decoration: blink;
    }
    
    
    .footer-bottom-pro p a:hover {
        color:#ff9933;
        
    }

    .back-to-top-btn {
        position: fixed;
        right: 24px;
        bottom: 24px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff1461, #ef7d3b);
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        z-index: 99;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    }

    .back-to-top-btn:hover {
        color: #ffffff;
    }

    @media (max-width: 991px) {
        .site-footer-pro {
            padding: 60px 0 25px;
        }

        .footer-right-box {
            padding-left: 0;
        }

        .footer-title {
            font-size: 22px;
        }
    }

    @media (max-width: 575px) {
        .footer-about-text {
            font-size: 15px;
        }

        .footer-title {
            font-size: 20px;
        }

        .footer-social a {
            font-size: 22px;
        }

        

        .footer-main-logo {
            max-height: 50px;
        }
    }