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


*{
    padding: 0; margin: 0;
    box-sizing: border-box; text-transform: capitalize;
    transition: .4s linear;
    outline: none; border: none; text-decoration: none;
    text-transform: unset!important;
    font-family: 'poppins', sans-serif;

}

:root{
    --main-color: rgb(33, 102, 255);
    --black-color: #1268FB;
    --dark-black-color: #010F1C;
    --white-color: #fff;
    --gray-color: #737887;
    --light-gray: #e5e5e5;
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    --lighBlue-color: #d9f1ff;
    --paragrapg-color: #4D4D4D;
    --heading: "Bricolage Grotesque", sans-serif;;
    --primary-blue: #3a86ff;
    --secondary-blue: #8338ec;
    --light-blue: #bde0fe;
    --dark-blue: #1a1a2e;
}


#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--main-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index: 800;
    transition: all 0.3s ease;

}
#return-to-top i {
    color: #fff;
    margin: 0;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: #121212;
}
#return-to-top:hover i {
    color: #fff;
}

.hide {
  transform: scale(0, 0);
}


html{
    font-size: 65.5%;
    scroll-behavior: smooth;
    transition: .10s all;
}

body{
    overflow-x: hidden;
    background: var(--white-color);
}

a{
    text-decoration: none!important;
}

::-webkit-scrollbar{
    width: .6rem;
}

::-webkit-scrollbar-track{
    background: var(--white-color);
}

::-webkit-scrollbar-thumb{
    background: #F4F5F6;
}


/* ============================================================
   MEGA MENU STYLES - Global (Works on all pages)
   ============================================================ */

/* Mega Menu Container */
.job-away-nav__dropdown--mega {
    position: static;
}

.job-away-nav__mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 2px solid #4f46e5;
    z-index: 9999;
    flex-direction: row;
    gap: 0;
}

/* Show on hover for desktop */
.job-away-nav__dropdown--mega:hover .job-away-nav__mega-menu {
    display: flex !important;
}

/* Hide all panels by default */
.mega-menu__panel {
    display: none;
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 480px;
}

/* Show active panel */
.mega-menu__panel.active {
    display: flex !important;
    gap: 20px;
}

/* Sidebar Styles */
.mega-menu__sidebar {
    min-width: 240px;
    background: #f8f8ff;
    border-right: 1px solid #e5e7eb;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
}

.mega-menu__category {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.mega-menu__category i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #6b7280;
}

.mega-menu__category:hover {
    background: #eef2ff;
    color: #4f46e5;
}

.mega-menu__category.active {
    background: #eef2ff;
    color: #4f46e5;
    border-left-color: #4f46e5;
}

.mega-menu__category.active i {
    color: #4f46e5;
}

/* Content Columns */
.mega-menu__content {
    flex: 1;
    background: white;
    display: flex;
    gap: 0;
    padding: 20px;
    overflow-y: auto;
    max-height: 480px;
}

.mega-menu__col {
    flex: 1;
    min-width: 220px;
    padding: 0 16px;
    border-right: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-menu__col:last-child {
    border-right: none;
}

.mega-menu__col-title {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 0 12px;
    display: block;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 8px;
}

.mega-menu__item {
    display: block;
    padding: 8px 0;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.mega-menu__item:hover {
    color: #4f46e5;
}

/* Animation */
.mega-menu__panel {
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
/* ============================================================
   MOBILE RESPONSIVE (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
    .job-away-nav__mega-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: block !important;
        background: white;
        z-index: 9999;
        box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }
    
    .job-away-nav__mega-menu.show {
        transform: translateX(0);
    }
    
    /* Mobile sidebar - horizontal scroll */
    .mega-menu__sidebar {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        min-width: auto;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 8px 12px;
        gap: 6px;
        background: #f8f8ff;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .mega-menu__category {
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
        padding: 8px 14px;
        flex-shrink: 0;
        font-size: 13px;
    }
    
    .mega-menu__category.active {
        border-left-color: transparent;
        border-bottom-color: #4f46e5;
        background: #eef2ff;
    }
    
    /* Mobile content - CRITICAL FIX: Stack vertically */
    .mega-menu__content {
        display: block !important;
        padding: 16px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }
    
    /* Panels should stack vertically on mobile */
    .mega-menu__panel {
        display: none !important;
        flex-direction: column !important;
        padding: 0;
    }
    
    .mega-menu__panel.active {
        display: block !important;
    }
    
    /* Columns should stack vertically, not side by side */
    .mega-menu__col {
        display: block !important;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f3f4f6;
        padding: 16px 0;
        min-width: auto;
    }
    
    .mega-menu__col:last-child {
        border-bottom: none;
    }
    
    .mega-menu__col-title {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }
    
    .mega-menu__item {
        padding: 10px 0;
        font-size: 14px;
    }
}

/* ============================================================
   MODERN API MARKETPLACE MEGA MENU STYLES
   ============================================================ */

/* Desktop Button */
.vrc-api-btn {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: #4361ee;
    background: #eef1fd;
    border: 1.5px solid #c5cef9;
    border-radius: 0.8rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
    outline: none;
    position: relative;
    z-index: 9999;
}

.vrc-api-btn:hover, .vrc-api-btn.vrc-api-btn--active {
    background: #4361ee;
    color: #fff;
    border-color: #4361ee;
    box-shadow: 0 4px 18px rgba(67,97,238,0.22);
}

.vrc-api-btn__chevron {
    font-size: 1.1rem;
    transition: transform 0.25s;
}

.vrc-api-btn--active .vrc-api-btn__chevron {
    transform: rotate(180deg);
}

/* Overlay */
.vrc-mega-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,24,50,0.22);
    z-index: 8888;
    backdrop-filter: blur(2px);
}

.vrc-mega-overlay--visible {
    display: block;
}

/* Mega Menu Container */
.vrc-mega {
    position: fixed;
    top: 9rem;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 0 5%;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-1.4rem);
    transition: opacity 0.28s cubic-bezier(.4,0,.2,1), transform 0.28s cubic-bezier(.4,0,.2,1);
}

.vrc-mega--open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.vrc-mega__inner {
    background: #fff;
    border-radius: 1.6rem;
    box-shadow: 0 20px 60px rgba(30,60,120,0.16), 0 4px 16px rgba(30,60,120,0.08);
    display: flex;
    overflow: hidden;
    min-height: 42rem;
    max-height: 70vh;
    border: 1px solid #e4e9f5;
}

/* Left Sidebar */
.vrc-mega__sidebar {
    width: 24rem;
    flex-shrink: 0;
    background: #f7f9fe;
    border-right: 1px solid #e4e9f5;
    padding: 2rem 0;
    overflow-y: auto;
}

.vrc-mega__sidebar::-webkit-scrollbar {
    width: 4px;
}
.vrc-mega__sidebar::-webkit-scrollbar-thumb {
    background: #c5cef9;
    border-radius: 4px;
}

.vrc-mega__sidebar-heading {
    font-family: var(--heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #9ba4c0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 2rem 1rem;
}

.vrc-mega__nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #3a4060;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    text-decoration: none;
}

.vrc-mega__nav-item i {
    font-size: 1.5rem;
    width: 2rem;
    text-align: center;
    color: #8a93b8;
    transition: color 0.18s;
}

.vrc-mega__nav-item:hover {
    background: #eef1fd;
    color: #4361ee;
}
.vrc-mega__nav-item:hover i {
    color: #4361ee;
}

.vrc-mega__nav-item--active {
    background: #eef1fd;
    color: #4361ee;
    border-left-color: #4361ee;
    font-weight: 600;
}
.vrc-mega__nav-item--active i {
    color: #4361ee;
}

/* Right Panel */
.vrc-mega__content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 2.5rem;
}

.vrc-mega__content::-webkit-scrollbar {
    width: 4px;
}
.vrc-mega__content::-webkit-scrollbar-thumb {
    background: #c5cef9;
    border-radius: 4px;
}

.vrc-mega__panel {
    display: none;
}

.vrc-mega__panel--active {
    display: block;
}

.vrc-mega__panel-title {
    font-family: var(--heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 1.5px solid #edf0fa;
}
.vrc-mega__panel-title i {
    color: #4361ee;
    font-size: 1.5rem;
}

/* API Links */
.vrc-mega__api-link {
    display: block;
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: #3a4060;
    text-decoration: none;
    padding: 1rem ;
    border-radius: 0.8rem;
    transition: background 0.16s, color 0.16s, transform 0.16s;
    border: 1px solid transparent;
}

.vrc-mega__api-link:hover {
    background: #f0f3fe;
    color: #4361ee;
    border-color: #dde3f9;
   
}

/* Mobile Sidebar */
@media (max-width: 991.98px) {
    .vrc-mega {
        display: none !important;
    }
    .vrc-mega-overlay {
        display: none !important;
    }
    #vrcApiBtn {
        display: inline-flex !important;
    }
}

@media (min-width: 992px) {
    #vrcMobileApiBtn {
        display: none !important;
    }
}

.vrc-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,24,50,0.45);
    z-index: 9998;
    backdrop-filter: blur(3px);
}

.vrc-sidebar-overlay--visible {
    display: block;
}

.vrc-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 36rem);
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(30,60,120,0.14);
}

.vrc-sidebar--open {
    transform: translateX(0);
}

.vrc-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1.5px solid #edf0fa;
    flex-shrink: 0;
}

.vrc-sidebar__title {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 700;
    color: #1a1d2e;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vrc-sidebar__title i {
    color: #4361ee;
}

.vrc-sidebar__close {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 0.8rem;
    background: #f4f6fb;
    border: none;
    color: #3a4060;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, color 0.18s;
}

.vrc-sidebar__close:hover {
    background: #ffe0e0;
    color: #c0392b;
}

.vrc-sidebar__body {
    overflow-y: auto;
    flex: 1;
}

.vrc-sidebar__accordion-item {
  padding: 5px;
    border-bottom: 1px solid #edf0fa;
}

.vrc-sidebar__accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: #3A4060;
    text-align: left;
    transition: background 0.16s;
}

.vrc-sidebar__accordion-trigger:hover {
    background: #f7f9fe;
    color: #4361ee;
}

.vrc-sidebar__accordion-trigger--active {
    color: #4361ee;
    background: #f0f3fe;
}

.vrc-sidebar__accordion-icon {
    font-size: 1.1rem;
    color: #8a93b8;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.vrc-sidebar__accordion-trigger--active .vrc-sidebar__accordion-icon {
    transform: rotate(180deg);
    color: #4361ee;
}

.vrc-sidebar__accordion-trigger-left {
    display: flex;
    font-family: var(--heading);
    align-items: center;
    gap: 1.4rem;
}
.vrc-sidebar__accordion-trigger-left i {
    font-size: 1.5rem;
    color: #4361ee;
    width: 2rem;
}

.vrc-sidebar__accordion-content {
    display: none;
    padding: 0.5rem 0;
    background: #f7f9fe;
}

.vrc-sidebar__accordion-content--open {
    display: block;
}

.vrc-sidebar__acc-link {
    display: block;
    font-family: var(--heading);
    padding: 1.4rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #3a4060;
    text-decoration: none;
    transition: color 0.16s;
}

.vrc-sidebar__acc-link:hover {
    color: #4361ee;
    background: #eef1fd;
}

/* Make sure parent nav is positioned */
.job-away-nav__container {
    position: relative;
}

/*Start header*/
.job-away-nav {
    padding: 6rem 5%;
    position: absolute !important;
}

.demo-heading-line02 {
    padding: 8px 40px;
    position: absolute;
    background: #393F5C;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    color: var(--white-color);
    font-size: 1.2rem;
}

/* Navigation Container */
.job-away-nav__container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: white;
    box-shadow: 0 0.5rem 1.5rem rgb(0 55 255 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Scrolled State */
.job-away-nav__container.scrolled {
    width: 100%;
    top: 0;
    border-radius: 0;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

/* Logo */
.job-away-nav__logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo img{
    height: 4.2rem;
}

.job-away-nav__logo:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.job-away-nav__links {
    display: flex;
    align-items: center;
    gap: 3rem;
}


/* ============================================
   MODERN HEADER STYLES
============================================ */

/* Brand Logo Styles */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1EAAE7;
    letter-spacing: -0.5px;
}

.brand-admin {
    font-weight: 400;
    color: #64748b;
    font-size: 1.4rem;
    margin-left: 0.2rem;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    width: 100%;
}

.dashboard-title h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.dashboard-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    display: block;
    margin-top: 0.2rem;
}

/* User Profile Styles */
.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: all 0.2s;
    cursor: pointer;
}

.user-profile:hover {
    background: #f8fafc;
}

.user-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.user-avatar img,
.avatar-initial {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-initial {
    background: linear-gradient(135deg, #1EAAE7, #0f8bc2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
}

.user-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
}

.user-status.online {
    background: #10b981;
}

.user-info {
    text-align: left;
}

.user-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

.user-role {
    display: block;
    font-size: 1.1rem;
    color: #64748b;
}

.dropdown-icon {
    font-size: 1.2rem;
    color: #94a3b8;
}

/* Notification Dropdown */
.notification-dropdown .dropdown-menu {
    width: 320px;
    padding: 0;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.notification-header h6 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.notification-header a {
    font-size: 1.1rem;
    color: #1EAAE7;
    text-decoration: none;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.notification-item:hover {
    background: #f8fafc;
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.notification-icon.bg-primary { background: #1EAAE7; }
.notification-icon.bg-success { background: #10b981; }
.notification-icon.bg-warning { background: #f59e0b; }

.notification-content {
    flex: 1;
}

.notification-content p {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.notification-content span {
    font-size: 1.1rem;
    color: #94a3b8;
}

.notification-footer {
    padding: 1rem 1.5rem;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.notification-footer a {
    color: #1EAAE7;
    text-decoration: none;
    font-size: 1.2rem;
}

.badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
}

/* ============================================
   MODERN SIDEBAR STYLES
============================================ */

.deznav {
    background: white;
    width: 260px;
    position: fixed;
    left: 0;
    top: 70px;
    height: calc(100vh - 70px);
    border-right: 1px solid #e2e8f0;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.deznav-scroll {
    padding: 2rem 1rem;
}

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

.menu-item {
    margin-bottom: 0.5rem;
}

.menu-item .sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.menu-item .sidebar-link:hover {
    background: #f1f5f9;
    color: #1EAAE7;
}

.menu-item.active .sidebar-link {
    background: linear-gradient(135deg, #1EAAE7, #0f8bc2);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 170, 231, 0.3);
}

.menu-item.active .sidebar-link .menu-icon svg,
.menu-item.active .sidebar-link .menu-icon i {
    color: white;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon svg,
.menu-icon i {
    width: 20px;
    height: 20px;
    color: #64748b;
    transition: color 0.2s;
}

.menu-item.active .menu-icon svg,
.menu-item.active .menu-icon i {
    color: white;
}

.menu-section {
    margin: 2rem 0 1rem;
}

.menu-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 1rem;
}

.menu-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0;
}

.logout-item {
    margin-top: 2rem;
}

.logout-item .sidebar-link {
    color: #ef4444;
}

.logout-item .sidebar-link:hover {
    background: #fef2f2;
    color: #ef4444;
}

/* Collapsed Sidebar */
.deznav.collapsed {
    width: 80px;
}

.deznav.collapsed .menu-text {
    display: none;
}

.deznav.collapsed .menu-section-title {
    display: none;
}

.deznav.collapsed .sidebar-link {
    justify-content: center;
    padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .deznav {
        transform: translateX(-100%);
        z-index: 200;
    }
    
    .deznav.show {
        transform: translateX(0);
    }
    
    .header {
        padding: 0 1rem;
    }
    
    .user-info {
        display: none;
    }
    
    .dropdown-icon {
        display: none;
    }
    
    .dashboard-title h4 {
        font-size: 1.4rem;
    }
    
    .dashboard-subtitle {
        font-size: 1rem;
    }
}
.job-away-nav__link {
    position: relative;
    font-size: 1.7rem;
    color: var(--paragrapg-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    font-family: var(--heading);
}

.job-away-nav__link:hover {
    color: #4e6bff;
}

.job-away-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: #4e6bff;
    transition: width 0.3s ease;
}

.job-away-nav__link:hover::after {
    width: 100%;
}

/* Dropdown Indicator */
.job-away-nav__dropdown-indicator {
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dropdown Menu */
.job-away-nav__dropdown {
    position: relative;
}

.job-away-nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 0.8rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    min-width: 22rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1.5rem);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.job-away-nav__dropdown:hover .job-away-nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0.5rem);
}

.job-away-nav__dropdown:hover .job-away-nav__dropdown-indicator {
    transform: rotate(180deg);
    color: #4e6bff;
}

.job-away-nav__dropdown-item {
    display: block;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-away-nav__dropdown-item:hover {
    background-color: #f8f9ff;
    color: #4e6bff;
    padding-left: 2.5rem;
}

/* Search and Login */
.job-away-nav__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.job-away-nav__search {
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1100;
    position: relative;
    background: none;
    border: none;
    outline: none;
}

.job-away-nav__search:hover {
    color: #4e6bff;
    transform: scale(1.1);
}

.job-away-nav__login {
    font-size: 1.6rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.job-away-nav__login:hover {
    color: #4e6bff;
    transform: translateY(-0.1rem);
}

.job-away-nav__button {
    background: var(--main-color);
    color: white;
    border: none;
    border-radius: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0.4rem 1rem rgba(78, 107, 255, 0.2);
}

.job-away-nav__button:hover {
    background-color: #3a56e8;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.5rem rgba(78, 107, 255, 0.3);
}

/* Search Bar */
.job-away-nav__search-container {
    position: fixed;
    top: -10rem;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    opacity: 0;
}

.job-away-nav__search-container.active {
    top: 0;
    opacity: 1;
}

.job-away-nav__search-input {
    width: 60%;
    padding: 1.5rem 2rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

.job-away-nav__search-input:focus {
    border-color: #4e6bff;
    box-shadow: 0 0 0 0.3rem rgba(78, 107, 255, 0.2);
}

.job-away-nav__search-close {
    margin-left: 1.5rem;
    font-size: 2.2rem;
    color: #777;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(0deg);
    background: none;
    border: none;
    outline: none;
}

.job-away-nav__search-close:hover {
    color: #ff4e4e;
    transform: rotate(90deg) scale(1.1);
}

/* Mobile Menu Toggle - Modern Styling */
.job-away-nav__menu-toggle {
    display: none;
    cursor: pointer;
    position: relative;
    width: 3.2rem;
    height: 2.4rem;
    z-index: 1100;
    background: none;
    border: none;
    outline: none;
    padding: 0;
}

.job-away-nav__menu-toggle .bar {
    position: absolute;
    width: 100%;
    height: 0.3rem;
    background-color: #333;
    border-radius: 0.3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
}

.job-away-nav__menu-toggle .bar:nth-child(1) {
    top: 0;
    transform-origin: left center;
}

.job-away-nav__menu-toggle .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.job-away-nav__menu-toggle .bar:nth-child(3) {
    bottom: 0;
    transform-origin: left center;
}

.job-away-nav__menu-toggle.active .bar:nth-child(1) {
    transform: translateX(0.5rem) rotate(45deg) scaleX(0.8);
    background-color: #4e6bff;
}

.job-away-nav__menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-1rem);
}

.job-away-nav__menu-toggle.active .bar:nth-child(3) {
    transform: translateX(0.5rem) rotate(-45deg) scaleX(0.8);
    background-color: #4e6bff;
}


/* Mobile Menu */
.job-away-nav__mobile-actions {
    display: none;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    margin-right: 2rem;
}
/*End header*/
.section-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 2rem; margin-bottom: 5rem;
}

.section-header__left {

}

.section-heading {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  margin-bottom: 4rem;
}

.section-heading .container {
  max-width: 900px;
  margin: 0 auto;
}

/* ========= Subheading ========= */
.section-heading .subheading {
  position: relative;
  display: inline-block;
  color: #467bff;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  overflow: hidden;
  padding-bottom: 5px;
}

/* ======= New Line Animation ======= */
.section-heading .subheading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #467bff, #9b8bff, #467bff);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineSlide 2.2s ease-out infinite alternate;
  border-radius: 3px;
}

@keyframes lineSlide {
  0% {
    transform: scaleX(0);
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ========= Main Heading ========= */
.section-heading .main-heading {
  font-size: 5rem;
  color: #0a215c;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  font-family: var(--heading);
}

/* ========= Description ========= */
.section-heading .desc {
  color: #7a7a8c;
    font-size: 1.7rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: .3px;
}

.section-header__badge {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a73e8;
  border: 1px solid #1a73e8;
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  background-color: #eaf3ff;
}

.section-header__title {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #111;
  margin: 0;
}

.section-header__btn {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to right, #1e68f1, #001f75);
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-header2{
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.section-header2 h2{
    color: var(--white-color);
}

.section-header2 .discover-badge{
    background: #010e37;
    color: var(--white-color);
    border-color: rgb(18 104 251);
}

.section-header2 p{
    font-size: 1.8rem;
    color: rgb(255 255 255 / 70%); margin: 0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

/*Start home section*/
.hero-section {
  background: url(../img/home-bg.jpg);
  background-size: cover!important; background-position: center!important;
  width: 100%;
  color: #fff;
  padding: 6rem 5%; padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center;
/*  background: linear-gradient(45deg, #090f65, #0535a3);*/
}

.hero-slider {
  position: relative;
}

.floot-img{
    width: 80px;
    position: absolute;
    top: 150px;
    right: 50px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
  pointer-events: none;
}

.slide .row{
    margin-top: 6rem;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

/* Content */
.content{margin-bottom: 2rem}
.content h1 {
  font-size: 6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: #2B3674;
  font-family: var(--heading);
}

.content img{
    height: 50px;
    margin-bottom: 1.5rem;
}

.content h1 span{
    font-size: 6rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: #2f5bff;
  font-family: var(--heading);
}

.content p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.8;
  color: #5C6369;
}

.usp-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.usp-points span {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.4rem;
}

.home-buttons{
    display: inline-flex!important;
    align-items: center;
    gap: 2rem;
    background: #ffffff5c;
    padding: 1rem 1rem;
    border-radius: 100px;
    border: 1px solid white;
    backdrop-filter: blur(31px);
}

.home-buttons .btn {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 1rem;height: 55px;
  border-radius: 33px;
  display: inline-flex;
  position: relative;
  align-items: center;
  padding-left: 2rem;
  border: none;
  gap: 0.6rem;
  font-family: var(--heading);
  transition: all 0.3s ease;

  &:hover{
    color: var(--white-color);
  }
}

.btn::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 height: 100%;
 width: 0;
 border-radius: 33px;
 background-color: rgb(2 62 197);
 z-index: -1;
 transition: all 250ms
}

.btn:hover {
 color: #fff;
}

.btn:hover::before {
 width: 100%;
}


.btn .btn-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    height: 43px; width: 43px;
    border-radius: 50%;
    color: rgb(33, 102, 255);
    margin-left: 1.2rem;
}

.btn .btn-icon2{
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 43px; width: 43px;
    border-radius: 50%;
    margin-left: 1.2rem;
    background: rgb(33, 102, 255);
}

.btn-quote {
  background: rgb(33, 102, 255);
  color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(33, 108, 236, 0.3);
}

.btn-quote:hover {
  transform: translateY(-0.2rem);
  color: var(--white-color)!important;
  background: linear-gradient(to right, #3066dd, #1a2ca0);
}

.btn-explore {
  background: #0a215c;
  color: #fff;
}

.btn-explore:hover {
  transform: translateY(-0.2rem);
  background: #fff;
  color: #0a215c;
}

.cta-btn {
  display: inline-block;
  background: #ffdf00;
  color: #111;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.2rem 2.5rem;
  border-radius: 3rem;
  text-decoration: none;
  transition: 0.3s;
}
.cta-btn:hover { background: #ffe84d; }

.small-text {
  font-size: 1.4rem;
  margin-top: 1rem;
  opacity: 0.9;
}

.trust-badges {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  margin-top: 3rem;
  flex-wrap: wrap;

}
.trust-badges img {
  height: 5rem;
  background: var(--white-color);
  padding: 1.2rem;
  border-radius: 6px;
}

/* Image */
.hero-image {
  text-align: center;
  position: relative;
}
.hero-image img {
  width: 100%;
}

.floating-icon {
  position: absolute;
  width: 5rem;
  height: 5rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: float 4s ease-in-out infinite;
}
.floating-icon img { width: 60%; }
.icon1 { top: 10%; left: 15%; }
.icon2 { bottom: 15%; right: 20%; animation-delay: 2s; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.qr-box {
  background: linear-gradient(0deg,rgb(0,0,0),rgba(0,0,0,.8)),linear-gradient(0deg,#DCDCDC,#DCDCDC);
  border-radius: 1.2rem;
  padding: 1.2rem;
  width: 180px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: fixed; bottom: 2%; right: 2%;
  z-index: 1000;
}

.qr-box:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.qr-image {
  width: 100%;
  border-radius: 0.8rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.download-text {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem; margin-top: 1rem;
}

.download-text a i {
    color: var(--white-color);
  font-size: 1.4rem;
}

/* Particle canvas full screen */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.whatsapp-btn {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 2rem;
    text-decoration: none;
    z-index: 1;
    overflow: visible;

    &:hover{
        color: var(--white-color);
    }
  }

  .whatsapp-btn::before,
  .whatsapp-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    z-index: -1;
    animation: wave 2s infinite ease-out;
  }

  .whatsapp-btn::after {
    animation-delay: 1s;
  }

  @keyframes wave {
    0% {
      transform: scale(1);
      opacity: 0.6;
    }
    70% {
      transform: scale(1.8);
      opacity: 0;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }
/*End home section*/

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  right: 2rem; /* change to left: 2rem; if you want it on the left */
  bottom: 00%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #0b2042; /* dark navy */
  animation: fadeIn 1.5s ease;
  z-index: 100;
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.4rem;
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: 0.2rem;
}

/* Mouse shape */
.mouse {
  width: 2.2rem;
  height: 4rem;
  border: 2px solid #0b2042;
  border-radius: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Wheel animation */
.wheel {
  width: 0.4rem;
  height: 0.8rem;
  background: #0b2042;
  border-radius: 1rem;
  position: absolute;
  top: 0.7rem;
  animation: scrollji 1.5s infinite;
}

/* Scrollji animation */
@keyframes scrollji {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  60% {
    transform: translateY(1.2rem);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(1.8rem);
  }
}

/* Fade-in effect on load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

/*Start counting section*/
.counting-section {
  padding: 6rem 5%;
  background: url(../img/CTA.jpg);
  background-size: cover; background-position: center;
  width: 100%;
  text-align: center;
}

.counting-section__brand {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.counting-section__logo img {
  width: 90%;
  display: block;
  height: auto;
}

.counting-section__title {
  font-size: 2.6rem;
  font-weight: 700;
  margin: 0;
}

.counting-section__sub {
  font-size: 1.4rem;
  opacity: 0.9;
  margin-top: 0.8rem;
  color: var(--white-color);
}

.counting-section__stat {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--white-color);
}

.counting-section__label {
  font-size: 1.6rem;
  opacity: 0.85;
  margin-bottom: 0.6rem;
  color: var(--white-color);
}

.counting-section__value {
  font-size: 5rem;
  font-weight: 800;
  font-family: var(--heading);
  margin-bottom: 0.4rem;
  color: var(--white-color);
}

.counting-section__note {
  font-size: 1.2rem;
  opacity: 0.9;
}
/*End counting section*/

/*Start taxhome section*/
.taxhome-section-outer{
    padding: 1rem;
    border-radius: 12rem;
}

.taxhome-section{
    padding: 6rem 5%;
    padding-bottom: 0;
    width: 100%;
    border-radius: 18px;
    min-height: 100vh;
    background: url(https://cgpe-docs.s3.ap-south-1.amazonaws.com/new_cgpey/cgpey-ads-bg0.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.img-section img{
    width: 100%;
    height: auto;
}

.taxhome-content{
    max-width: 700px;
    margin: auto;
    text-align: center;
    margin-top: 8rem;
}

.taxhome-content img{
    width: 100%;
    max-width: 500px;
    margin-top: 1.4rem;
}

.taxhome-content h1{
    font-size: 6rem;
    font-weight: 700;
    color: var(--dark-black-color);
    font-family: var(--heading);
    margin: 0;
}

.taxhome-content h5{
    font-size: 1.4rem;
    font-weight: 400;
    color: #121212;
    background: transparent;
    display: inline-flex;
    padding: 1rem 2rem;
    border: 1px solid #1663ef24;
    backdrop-filter: blur(14px);
    margin: 0 auto;
    border-radius: 33px;
    margin-bottom: 1rem;
}

.taxhome-content h1 span{
    font-size: 6rem;
    font-weight: 700;
    color: #004ba5;
    font-family: var(--heading);
}

.taxhome-content p{
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--gray-color);
    margin: 0;
    padding: 1rem 0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.taxhome-btns{
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border-radius: 100px;
    height: 78px;
    background: #ffffff5c;
    padding: 0 1rem;
    width: 100%;
    backdrop-filter: blur(31px);
    max-width: 580px;
    border: 1px solid #fff;
}

.taxhome-btns a{
    width: 100%;
    height: 60px;
    background: var(--white-color);
    border-radius: 33px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #121212;
    padding: 0 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    white-space: nowrap;
    font-family: var(--heading);
}

.taxhome-btns a:nth-child(1){
    background: var(--main-color);
    color: var(--white-color);
}

.taxhome-btns a img{
    height: 22px;
}

/*float ICONS HOME*/
.openPositions-avatar {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: floatRandom 6s ease-in-out infinite alternate;
  z-index: 1;
}

.openPositions-avatar img {
  width: 8rem;
  height: 8rem;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 0.3rem 1rem rgba(0,0,0,0.2);
  border: 3px solid #fff;
}

.openPositions-role {
  margin-top: 0.6rem;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  display: inline-block;
}

.role-green { background: #7ee787; color: #000; }
.role-yellow { background: #f2d974; color: #000; }
.role-blue { background: #3fd4ff; color: #000; }
.role-orange { background: #ff9850; color: #000; }
.role-purple { background: #c98eff; color: #000; }
.role-white { background: #fff; color: #000; }

.avatar-1 { top: 15%; left: 5%; }
.avatar-2 { top: 15%; right: 5%; }
.avatar-3 { top: 45%; left: 2%; }
.avatar-4 { top: 45%; right: 2%; }
.avatar-5 { bottom: 10%; left: 20%; }
.avatar-6 { bottom: 10%; right: 20%; }

@keyframes floatRandom {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px) scale(1.05); }
  100% { transform: translateY(0); }
}

@media (max-width: 991px) {
  .tax-process-section .tax-process-section__svg-overlay {
    display: none;
  }

  .tax-process-section .tax-process-section__step {
    margin-bottom: 4rem;
  }

  .trust-section__hero {
      min-height: 26rem;
      justify-content: flex-end;
    }
    .trust-section__hero-stat { font-size: 5.8rem; }

    .trust-section__card--accuracy {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.6rem;
    }
    .trust-section__accuracy-right {
      border-left: none;
      border-top: 1px solid #e2e8f0;
      padding-left: 0;
      padding-top: 1.6rem;
      width: 100%;
    }

    .faq-section__contact-card {
        position: static;
        margin-top: 3.2rem;
      }
}

@media (max-width: 768px) {
  .openPositions-avatar {
    display: none;
  }

  .openPositions-section {
    min-height: auto;
    display: block;
  }

  .tax-heading-bar { margin-bottom: 3.5rem; }
  .tax-heading-bar__title { font-size: 2.8rem; }
  .tax-service-card__body { padding: 2.4rem 2.2rem 2.2rem; }
  .tax-service-card__divider { margin: 2rem -2.2rem; }

  .tax-service-card__btn img{display: none;}

  .tax-service-card__btn{font-size: 1.7rem!important;}
}



@media (max-width: 575.98px) {
  .tax-heading-bar__title { font-size: 2.4rem; }
  .tax-service-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
  .tax-service-card__btn {
    width: 100%;
    justify-content: center;
  }
  .tax-service-card__stats { gap: 1.6rem; }

  .tax-process-section {
    padding: 4rem 5%;
  }

  .tax-process-section .tax-process-section__header h2 {
    font-size: 2.6rem;
  }

  .tax-process-section .tax-process-section__icon-circle {
    width: 8rem;
    height: 8rem;
  }

  .tax-process-section .tax-process-section__icon-circle i {
    font-size: 2.6rem;
  }

  .faq-section__heading {
    font-size: 2.4rem;
  }

  .faq-section__accordion .accordion-button {
    padding: 1.8rem 2rem;
    font-size: 1.5rem;
  }

  .faq-section__accordion .accordion-body {
    padding: 0 2rem 2rem 2rem;
  }

  .cgpey-hero__heading,
    .cgpey-hero__heading-brand {
        font-size: 2.8rem;
    }

    .cgpey-hero__cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .cgpey-hero__btn-primary,
    .cgpey-hero__btn-secondary {
        text-align: center;
        width: 100%;
        max-width: 28rem;
        margin: 0 auto;
    }

    .cgpey-hero__wrapper {
        padding: 5rem 1.6rem;
        border-radius: 1.2rem;
    }

    .cgpey-hero__heading{
        font-size: 3rem!important;
    }

    .cgpey-hero__heading span{
        font-size: 3rem!important;
    }

    }


/*End taxhome section*/

.tax-service-section {
  padding: 6rem 8%;
  background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
}

.tax-service-section::before {
  content: '';
  position: absolute;
  width: 60rem;
  height: 60rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,102,255,0.07) 0%, transparent 70%);
  top: -20rem;
  right: -10rem;
  pointer-events: none;
}

/* ── HEADING BAR ──────────────────────────── */
.tax-heading-bar {
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.tax-heading-bar__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.tax-heading-bar__eyebrow-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #2166ff;
  display: inline-block;
}

.tax-heading-bar__eyebrow-line {
  width: 3rem;
  height: 0.2rem;
  background: #2166ff;
  border-radius: 1rem;
  display: inline-block;
}

.tax-heading-bar__eyebrow-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2166ff;
}

.tax-heading-bar__title {
  font-size: 5rem;
  font-weight: 700;
  color: #0a215c;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  font-family: var(--heading);
}

.tax-heading-bar__title span {
  position: relative;
  display: inline-block;
  font-family: var(--heading);
}

.tax-heading-bar__title span::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  right: 0;
  height: 0.4rem;
  background: #2166ff;
  border-radius: 10rem;
  opacity: 0.25;
}

.tax-heading-bar__subtitle {
  font-size: 1.55rem;
  color: #6b7a99;
  font-weight: 400;
  max-width: 50rem;
}

/* ── CARD ─────────────────────────────────── */
.tax-service-section__grid {
  row-gap: 2.4rem;
  position: relative;
  z-index: 1;
}

.tax-service-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(33,102,255,0.1);
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 20px rgba(33,102,255,0.06);
  box-shadow: inset 0px 4px 0px 0px #c4ccdd;
    border: 1px solid #6398f5;
    border-top: none;
}

.tax-service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 20px 50px rgba(33,102,255,0.14);
}

.tax-service-card--featured {
  border-color: rgba(33,102,255,0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(33,102,255,0.12);
  box-shadow: inset 0px 4px 0px 0px #c4ccdd;
    border: 1px solid #6398f5;
    border-top: none;
}

/* ── Card top stripe ── */
.tax-service-card__stripe {
  height: 0.4rem;
  background: #e8eeff;
  transition: background 0.3s ease;
}

.tax-service-card--featured .tax-service-card__stripe {
  background: #2166ff;
}

.tax-service-card:hover .tax-service-card__stripe {
  background: #2166ff;
}

/* ── Card body ── */
.tax-service-card__body {
  padding: 0 2.8rem 2.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Badge ── */
.tax-service-card__badge-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2.2rem;
}

.tax-service-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 10rem;
  letter-spacing: 0.03em;
}

.tax-service-card__badge--popular {
  background: #eef3ff;
  color: #2166ff;
  border: 1px solid #c8d9ff;
}

.tax-service-card__badge--popular::before {
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #2166ff;
  display: inline-block;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.tax-service-card__badge--recommended {
  background: #fff8ed;
  color: #c97a00;
  border: 1px solid #ffd98a;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── Icon ── */
.tax-service-card__icon-wrap {
  width: 7rem;
  height: 7rem;
  border-radius: 1.4rem;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
  background: radial-gradient(118.77% 118.77% at 50% 0%, #FFFFFF 0%, #ECE9FE 100%);
    border: 1px solid #C8C4DD;
}

.tax-service-card__icon-wrap img{
    width: 50px;
}

.tax-service-card__icon-wrap::before {
  content: '';
  position: absolute;
  inset: -0.4rem;
  border-radius: 1.8rem;
  border: 1.5px dashed rgba(33,102,255,0.2);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tax-service-card:hover .tax-service-card__icon-wrap::before {
  opacity: 1;
}

.tax-service-card:hover .tax-service-card__icon-wrap {
  background: #dde8ff;
  transform: rotate(-4deg) scale(1.05);
}

.tax-service-card__icon-wrap i {
  font-size: 2.2rem;
  color: #2166ff;
}

/* ── Text ── */
.tax-service-card__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-family: var(--heading);
}

.tax-service-card__desc {
  font-size: 1.35rem;
  color: #6b7a99;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 0;
}

/* ── Divider ── */
.tax-service-card__divider {
  height: 1px;
  background: #f0f4ff;
  margin: 2.4rem -2.8rem;
}

/* ── Footer ── */
.tax-service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

/* ── Price ── */
.tax-service-card__price-block { line-height: 1; }

.tax-service-card__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0a1628;
  letter-spacing: -0.03em;
  display: block;
  font-family: var(--heading);
}

.tax-service-card__price em {
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  color: #2166ff;
}

.tax-service-card__price-label {
  font-size: 1.1rem;
  color: #aab2c8;
  font-weight: 400;
  display: block;
  margin-top: 0.3rem;
}

/* ── Button ── */
.tax-service-card__btn{
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: #2166ff;
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 600;
    padding: 1.1rem 1.8rem;
    border-radius: 10rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, gap 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
    border: 1px solid #2166ff;
}

.tax-service-card__btn1 {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #0a1628;
  color: #ffffff!important;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1.1rem 1.8rem;
  border-radius: 10rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, gap 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}
.tax-service-card__btn img {
  width: 18px; transition: .4s all;
}

.tax-service-card__btn:hover {
  background: #2166ff;
  color: #ffffff;
  gap: 1.2rem;
}

.tax-service-card__btn:hover img {
  transform: translateX(2px);
  filter: brightness(100);
}

.tax-service-card--featured .tax-service-card__btn {
  background: #2166ff; color: var(--white-color);
}

.tax-service-card--featured .tax-service-card__btn:hover {
  background: #1550e0;
}

/* ── Stats row (bottom of featured card) ── */
.tax-service-card__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #f0f4ff;
}

.tax-service-card__stat { }

.tax-service-card__stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0a1628;
  display: block;
  line-height: 1.2;
}

.tax-service-card__stat-label {
  font-size: 1.05rem;
  color: #aab2c8;
  display: block;
}
/*Process section*/
.tax-process-section {
  padding: 6rem 8%;
  background-color: #ffffff;
}

.tax-process-section .tax-process-section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.tax-process-section .tax-process-section__header h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.tax-process-section .tax-process-section__header p {
  font-size: 1.6rem;
  color: #7a7a8c;
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.7;
}

.tax-process-section .tax-process-section__wrapper {
  position: relative;
  align-items: flex-start;
}

/* Full-width SVG overlay canvas for connectors */
.tax-process-section .tax-process-section__svg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.tax-process-section .tax-process-section__step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.tax-process-section .tax-process-section__circle-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2.8rem;
}

.tax-process-section .tax-process-section__step-number {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f4f4f4;
  color: #1a1a2e;
  font-size: 1.2rem;
  font-weight: 700;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.2rem solid #e0e0e0;
  z-index: 2;
}

.tax-process-section .tax-process-section__icon-circle {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
      background-color: #f9f9fb;
    border: 0.2rem dashed #c5c6e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.tax-process-section .tax-process-section__step--active .tax-process-section__icon-circle {
  border: none;
  background-color: #2166ff;
    border: none;
    box-shadow: 0 0.4rem 2.4rem rgb(29 71 158 / 14%), 0 0.2rem 0.8rem rgb(29 38 158 / 10%);
}

.tax-process-section .tax-process-section__icon-circle:hover {
  box-shadow: 0 0.6rem 2.8rem rgba(29, 158, 117, 0.18);
  border-color: #1d9e75;
}

.tax-process-section .tax-process-section__icon-circle img {
  width: 50px;
}

.tax-process-section .tax-process-section__step-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-family: var(--heading);
}

.tax-process-section .tax-process-section__step-desc {
  font-size: 1.4rem;
  color: #7a7a8c;
  line-height: 1.8;
  max-width: 26rem;
  margin: 0 auto;
}

/* ── TRUST SECTION ── */
  .trust-section {
    padding: 6rem 8%;
    background: #f7f9fc;
  }

  /* Override Bootstrap gutter */
  .trust-section .row {
    --bs-gutter-x: 1.8rem;
    --bs-gutter-y: 1.8rem;
  }

  /* ── HERO CARD ── */
  .trust-section__hero {
    background: linear-gradient(150deg, #0d1117 0%, #131d2e 55%, #091525 100%);
    background: url(../img/signup-bg.jpg); background-size: cover; background-position: center;
    width: 100%;
    border-radius: 2.4rem;
    padding: 4.4rem 3.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    height: 100%;
  }

  .trust-section__hero::before {
    content: '';
    position: absolute;
    bottom: -5rem;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .trust-section__hero::after {
    content: '';
    position: absolute;
    top: -4rem;
    left: -4rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(99,102,241,0.13) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .trust-section__hero-stat {
    font-size: 6rem;
    font-weight: 800;
    color: #fff; font-family: var(--heading);
    line-height: 1;
    letter-spacing: -0.25rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
  }

  .trust-section__hero-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.4rem;
    position: relative;
    z-index: 1;
    line-height: 1.3;
  }

  .trust-section__hero-desc {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
  }

  /* ── FEATURE CARDS ── */
  .trust-section__card {
    background: #fff;
    border-radius: 28px;
    padding: 3rem 2.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    border: 1px solid #e4e9f0;
    transition: box-shadow 0.28s ease, transform 0.28s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
  }

  .trust-section__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: transparent;
    border-radius: 2rem 2rem 0 0;
    transition: background 0.3s ease;
  }

  .trust-section__card:hover {
    box-shadow: 0 1.2rem 4rem rgba(0,0,0,0.1);
    transform: translateY(-0.4rem);
  }

  .trust-section__card--turnaround:hover::before { background: green; }
  .trust-section__card--security:hover::before   { background: blueviolet; }
  .trust-section__card--support:hover::before    { background: orangered; }

  .trust-section__card-icon-wrap {
    width: 5.4rem;
    height: 5.4rem;
    border-radius: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    flex-shrink: 0;
  }

  .trust-section__card-icon-wrap img{
    width: 40px;
  }

  .trust-section__card-icon-wrap--turnaround { background: #edfff7; color: #f97316; }
  .trust-section__card-icon-wrap--security   { background: #fbf3ff; color: #ca8a04; }
  .trust-section__card-icon-wrap--support    { background: #fffdf3; color: #7c3aed; }

  .trust-section__card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    font-family: var(--heading);
    line-height: 1.25;
    margin-bottom: 0;
  }

  .trust-section__card-desc {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.78;
    font-weight: 400;
    margin-bottom: 0;
  }

  /* ── ACCURACY CARD (bottom row) ── */
  .trust-section__card--accuracy {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 2.8rem 3.2rem;
  }

  .trust-section__accuracy-left { flex-shrink: 0; }

  .trust-section__accuracy-stat {
    font-size: 5.8rem;
    font-weight: 800;
    font-family: var(--heading);
    color: var(--main-color);
    line-height: 1;
    letter-spacing: -0.15rem;
  }

  .trust-section__accuracy-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    font-family: var(--heading);
    margin-top: 0.6rem;
  }

  .trust-section__accuracy-right {
    flex: 1;
    border-left: 1px solid #e2e8f0;
    padding-left: 3rem;
  }

  .trust-section__col-hero { display: flex; flex-direction: column; }
  .trust-section__col-hero .trust-section__hero { flex: 1; }

  /* ===== FAQ SECTION ===== */
    .faq-section {
      padding: 6rem 5%;
      background-color: #f4f6fb;
    }

    .faq-section__badge {
      display: inline-block;
      background: #e8f0fe;
      color: #1a56db;
      font-size: 1.2rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.5rem 1.4rem;
      border-radius: 10rem;
      margin-bottom: 1.4rem;
    }

    .faq-section__heading {
      font-size: 5rem;
    font-weight: 700;
    color: #0a215c;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    font-family: var(--heading);

    }

    .faq-section__heading span {
      color: var(--main-color);
      font-family: var(--heading);
    }

    .faq-section__subtext {
      font-size: 1.6rem;
      color: #5a6a85;
      max-width: 55rem;
      line-height: 1.7;
      margin-bottom: 4.8rem;
    }

    /* ===== BOOTSTRAP ACCORDION OVERRIDES ===== */
    .faq-section__accordion .accordion-item {
      background: #ffffff;
      border-radius: 1.4rem !important;
      border: 1.5px solid #e4e9f2;
      margin-bottom: 1.6rem;
      overflow: hidden;
      transition: box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .faq-section__accordion .accordion-item:hover {
      box-shadow: 0 4px 24px rgba(26, 86, 219, 0.08);
      border-color: #b8ccf8;
    }

    .faq-section__accordion .accordion-item:has(.accordion-collapse.show) {
      border-color: #1a56db;
      box-shadow: 0 6px 32px rgba(26, 86, 219, 0.12);
    }

    .faq-section__accordion .accordion-button {
      font-family: var(--heading);
      font-size: 1.8rem;
      font-weight: 600;
      color: #0f1b4c;
      background: #ffffff;
      padding: 1rem 1.2rem;
      gap: 2rem;
      box-shadow: none;
      border-radius: 1.4rem !important;
    }

    .faq-section__accordion .accordion-button:not(.collapsed) {
      color: #0f1b4c;
      background: #ffffff;
      box-shadow: none;
    }

    .faq-section__accordion .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
      outline: none;
    }

    /* Hide default Bootstrap arrow */
    .faq-section__accordion .accordion-button::after {
      display: none;
    }

    /* Custom icon */
    .faq-section__accordion .accordion-button .faq-section__icon-wrap {
      width: 3.8rem;
      height: 3.8rem;
      min-width: 3.8rem;
      border-radius: 50%;
      background: #edf1fb;
      color: #1a56db;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: background 0.25s ease, transform 0.35s ease;
      margin-left: auto;
    }

    .faq-section__accordion .accordion-button:not(.collapsed) .faq-section__icon-wrap {
      background: #1a56db;
      color: #ffffff;
      transform: rotate(45deg);
    }

    .faq-section__accordion .accordion-body {
      font-size: 1.5rem;
      color: #5a6a85;
      line-height: 1.8;
      padding: 2rem 1.2rem;
      border-top: 1px solid #edf0f7;
    }

    /* ===== SIDE CARD ===== */
    .faq-section__contact-card {
      background: linear-gradient(135deg, #1a56db 0%, #0e3ab5 100%);
      background: url(../img/signup-bg.jpg); background-size: cover; background-position: center;
      width: 100%;
      border-radius: 1.6rem;
      padding: 4rem 2.8rem;
      color: #fff;
/*      height: 100%;*/
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1.6rem;
      position: sticky;
      top: 2rem;
    }

    .faq-section__contact-icon {
      width: 5.6rem;
      height: 5.6rem;
      background: rgba(255, 255, 255, 0.15);
      border-radius: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.4rem;
      color: #fff;
      margin-bottom: 0.4rem;
    }

    .faq-section__contact-card h4 {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      font-family: var(--heading);
      line-height: 1.3;
    }

    .faq-section__contact-card p {
      font-size: 1.4rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.7;
    }

    .faq-section__contact-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem; font-family: var(--heading);
      background: #fff;
      color: #001f58;
      font-size: 1.4rem;
      font-weight: 600;
      padding: 1.1rem 2.2rem;
      border-radius: 10rem;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      width: fit-content;
    }

    .faq-section__contact-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
      color: #1a56db;
    }

    .faq-section__divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.15);
    }

    .faq-section__contact-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 1.35rem;
      color: rgba(255, 255, 255, 0.85);
    }

    .faq-section__contact-meta i {
      font-size: 1.6rem;
    }

     /* ===== CGPEY HERO SECTION ===== */
        .cgpey-hero {
            padding: 6rem 5%;
        }
 
        .cgpey-hero__wrapper {
            background: radial-gradient(ellipse at 50% 60%, #1a2a4a 0%, #0c1526 55%, #070d1a 100%);
            border-radius: 2rem;
            padding: 8rem 3rem;
            position: relative;
            overflow: hidden;
        }
 
        .cgpey-hero__stars {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }
 
        .cgpey-hero__star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, 0.45);
            border-radius: 50%;
        }
 
        .cgpey-hero__star:nth-child(1)  { top: 8%;  left: 12%; }
        .cgpey-hero__star:nth-child(2)  { top: 15%; left: 35%; }
        .cgpey-hero__star:nth-child(3)  { top: 22%; left: 68%; }
        .cgpey-hero__star:nth-child(4)  { top: 10%; left: 80%; }
        .cgpey-hero__star:nth-child(5)  { top: 35%; left: 5%;  }
        .cgpey-hero__star:nth-child(6)  { top: 40%; left: 92%; }
        .cgpey-hero__star:nth-child(7)  { top: 55%; left: 18%; }
        .cgpey-hero__star:nth-child(8)  { top: 60%; left: 55%; }
        .cgpey-hero__star:nth-child(9)  { top: 70%; left: 78%; }
        .cgpey-hero__star:nth-child(10) { top: 80%; left: 40%; }
        .cgpey-hero__star:nth-child(11) { top: 90%; left: 8%;  }
        .cgpey-hero__star:nth-child(12) { top: 88%; left: 88%; }
        .cgpey-hero__star:nth-child(13) { top: 5%;  left: 55%; }
        .cgpey-hero__star:nth-child(14) { top: 48%; left: 30%; width: 1px; height: 1px; }
        .cgpey-hero__star:nth-child(15) { top: 28%; left: 50%; width: 1px; height: 1px; }
 
        .cgpey-hero__glow {
            position: absolute;
            bottom: -10%;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 35%;
            background: radial-gradient(ellipse, rgba(100, 140, 255, 0.18) 0%, transparent 70%);
            pointer-events: none;
        }
 
        .cgpey-hero__content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 74rem;
            margin: 0 auto;
        }
 
        .cgpey-hero__heading {
            font-size: 5rem;
            font-weight: 700;
            font-family: var(--heading);
            line-height: 1.15;
            color: #ffffff;
            letter-spacing: -0.02em;
            margin-bottom: 0.4rem;
        }
 
        .cgpey-hero__heading-brand {
            font-size: 5.2rem;
            font-weight: 700;
            font-style: italic;
            color: #7ca8e8;
            display: block;
            letter-spacing: -0.01em;
        }
 
        .cgpey-hero__description {
            font-size: 1.55rem;
            font-weight: 400;
            line-height: 1.75;
            color: rgba(200, 215, 235, 0.75);
            margin-top: 2.4rem;
            margin-bottom: 4rem;
            max-width: 58rem;
            margin-left: auto;
            margin-right: auto;
        }
 
        .cgpey-hero__cta-group {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.6rem;
            flex-wrap: wrap;
        }
 
        .cgpey-hero__btn-primary {
            font-size: 1.6rem;
            font-weight: 700;
            color: #0c1526;
            background-color: #ffffff;
            border: none; font-family: var(--heading);
            border-radius: 5rem;
            padding: 1.4rem 3.2rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.2s ease, transform 0.15s ease;
            white-space: nowrap;
        }
 
        .cgpey-hero__btn-primary:hover {
            background-color: #e8edf5;
            transform: translateY(-1px);
            color: #0c1526;
            text-decoration: none;
        }
 
        .cgpey-hero__btn-primary:active {
            transform: translateY(0);
        }
 
        .cgpey-hero__btn-secondary {
            font-size: 1.5rem;
            font-weight: 600;
            color: #d0ddef;
            background-color: transparent;
            border: 1.5px solid rgba(160, 190, 230, 0.45);
            border-radius: 5rem;
            padding: 1.4rem 3.2rem;
            cursor: pointer; font-family: var(--heading);
            text-decoration: none;
            display: inline-block;
            transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
            white-space: nowrap;
        }
 
        .cgpey-hero__btn-secondary:hover {
            border-color: rgba(160, 190, 230, 0.8);
            color: #ffffff;
            transform: translateY(-1px);
            text-decoration: none;
        }
 
        .cgpey-hero__btn-secondary:active {
            transform: translateY(0);
        }

         /* ================= FIXED WRAPPER ================= */
.download-fix{
  position:fixed;
  left:50%;
  display: flex;align-items: center; justify-content: center;
  width: 100%;
  bottom:-120px;
  transform:translateX(-50%);
  z-index:999;
  transition:bottom 0.8s ease;
}

.download-fix.show{
  bottom:30px;
}

/* ================= BUTTON ================= */
.download-fix-btn{
  position:relative;
  padding:16px 38px;
  border-radius:60px;
  background:#1e90ff;
  color:#fff;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  border:none;
  display:flex;
  align-items:center;
  gap:12px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(30,144,255,0.35);
}

/* ================= ROTATING BORDER ================= */
.download-fix-btn::before{
  content:"";
  position:absolute;
  inset:-3px;
  border-radius:60px;
  background:conic-gradient(
    #1e90ff,
    #ffffff,
    #1e90ff,
    #ffffff,
    #1e90ff
  );
  animation:download-fix-spin 3s linear infinite;
}

.download-fix-btn::after{
  content:"";
  position:absolute;
  inset:3px;
  background: var(--main-color);
  border-radius:60px;
  z-index:1;
}

/* ================= CONTENT ================= */
.download-fix-btn span{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:10px;
}

/* ================= ANIMATION ================= */
@keyframes download-fix-spin{
  0%{transform:rotate(0deg);}
  100%{transform:rotate(360deg);}
}

/* ================= HOVER ================= */
.download-fix-btn:hover{
  transform:scale(1.05);
}

/*END TAX PAGE UI*/




/*Start success section*/
.success-section{
    padding: 2rem 5%;
    display: grid;
    grid-row-gap: 1.5rem;
    border-radius: 0;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    width: 100%; margin: auto;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    background: rgba(255, 255, 255, 0.04);
    background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0.5rem 1.5rem rgb(0 55 255 / 10%);
    backdrop-filter: blur(8px);
}

.success-section .success-section-card{
    display: flex; align-items: center;
    gap: 1.5rem;
}

.success-section-card-img img{
    width: 70px;
}

.success-section-card-text h4{
    margin: 0;
    font-size: 2.8rem;
    color: #2b3674;
    font-weight: 800;
    font-family: var(--heading);
}

.success-section-card-text p{
    margin: 0;
    font-size: 1.6rem;
    color: var(--gray-color);
}
/*End success section*/

/*Start slider service section*/
.cg-slider-section {
  width: 100%;
  padding: 60px 5%;
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* Slider Row */
.slider-row {
  display: flex;
  width: max-content;
  gap: 20px;
  margin: 25px 0;
  animation: scroll-left 25s linear infinite;
}
.slider-row.reverse {
  animation: scroll-right 25s linear infinite;
}

/* Cards */
.slide-card {
  background: linear-gradient(45deg, #f0f2ff, transparent);
    border: 1px solid #cbdaff;
  border-radius: 40px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 24px;
  gap: 16px;
  min-width: 260px;
/*  box-shadow: 0 2px 6px rgba(0,0,0,0.05);*/
}

.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #fff;
    color: #2b3674;
}

.slide-card span {
  font-size: 2rem;
    font-weight: 600;
    color: #2b3674;
    font-family: var(--heading);
}

/* Decorative inline shapes */
.shape-inline {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.shape-inline .circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #cbbcf6;
}
.shape-inline .semi {
  width: 35px;
  height: 35px;
  border-radius: 0 50% 50% 0;
  background: #a9affc;
}

/* Animations */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
/*End slider service section*/

/*Start how work section*/
.secure-pay-section{
    padding: 4rem 3%;
    background: #f4f7fc;
    background: url(../img/grow-section-bg.png);
    width: 100%; background-size: cover!important;
    background-position: center; 
}

.secure-pay-section .sps-row { row-gap: 2.4rem; }

.secure-pay-section .sps-card {
  position: relative;
  background: #ffffff;
  border-radius: 2.4rem;
  box-shadow: 0 0.5rem 1.5rem rgb(0 55 255 / 10%);
  padding: 3.2rem 3rem 5.6rem;
  height: 100%;
/*  display: flex;*/
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.secure-pay-section .sps-card:hover .qr-code-icon{
    opacity: .3;
}

.sps-active .qr-code-icon{
    opacity: .1;
}

.qr-code-icon{
    position: absolute;
    top: 19px;
    left: 0;
    width: 65px;
}

/* Background animation layer */
.secure-pay-section .sps-card::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: top ;
  transition: transform 0.6s ease;
}

/* Text + icon above */
.secure-pay-section .sps-icon,
.secure-pay-section .sps-title,
.secure-pay-section .sps-desc,
.secure-pay-section .sps-cta {
  position: relative;
  z-index: 1;
}

.sps-card:hover .sps-icon img{
    transform: scale(.7);
}

.service-item .sps-card img{
    width: 180px;
    border-radius: 22px;
    margin: auto;
}

/* Card hover/active lift */
.secure-pay-section .sps-card:hover,
.secure-pay-section .sps-card.sps-active {
  box-shadow: 0 1.2rem 3.2rem rgba(15,23,42,0.15);
}
.secure-pay-section .sps-card:hover::before,
.secure-pay-section .sps-card.sps-active::before {
  transform: scaleX(1);
}

/* Icon badge */
.secure-pay-section .sps-icon {
  margin: auto;
  margin-bottom: 2rem;
  transition: background 0.5s ease, transform 0.5s ease;
}
.secure-pay-section .sps-icon i,
.secure-pay-section .sps-icon img {
  font-size: 2.6rem;
  color:#1e293b;
  transition: color 0.5s ease, transform 0.5s ease;
}

/* Icon hover/active */

.secure-pay-section .sps-card:hover .sps-icon i,
.secure-pay-section .sps-card.sps-active .sps-icon i {
  color:#fff;
  transform: scale(1.1);
}

/* Title + desc */
.secure-pay-section .sps-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: var(--heading);
  transition: color 0.5s ease;
}
.secure-pay-section .sps-desc {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #334155;
  transition: color 0.5s ease;
}

.secure-pay-section .sps-card:hover .sps-title,
.secure-pay-section .sps-card.sps-active .sps-title,
.secure-pay-section .sps-card:hover .sps-desc,
.secure-pay-section .sps-card.sps-active .sps-desc {
  color:#fff;
}

/* Bottom arrow button */
.secure-pay-section .sps-cta {
  position: absolute;
  bottom: 1.6rem; left:50%;
  transform: translateX(-50%);
  width: 4.6rem; height: 4.6rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #e9f0ff;
  color:#1d4ed8;
  transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease;
}
.secure-pay-section .sps-cta i { font-size: 1.6rem; transition: transform 0.5s ease; }

.secure-pay-section .sps-card:hover .sps-cta,
.secure-pay-section .sps-card.sps-active .sps-cta {
  background: rgba(255,255,255,0.2);
  color:#fff;
  transform: translateX(-50%) translateY(-0.2rem);
}
.secure-pay-section .sps-card:hover .sps-cta i,
.secure-pay-section .sps-card.sps-active .sps-cta i {
  transform: translateX(0.2rem);
}

.client-logo-section{
    padding: 4rem 3%;
}

.client-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.client-slider-track {
  display: flex;
  width: calc(200px * 10); /* adjust based on logos */
  animation: scrollSlider 25s linear infinite;
}

.client-slider-item {
  flex: 0 0 auto;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.client-slider-item img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.client-slider-item img:hover {
  transform: scale(1.1);
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Duplicate track for seamless loop */
.client-slider-inner {
  display: flex;
}

/*End how work section*/

/*Start payment solution section*/
.payment-solutions-section {
    padding: 6rem 5%;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.payment-solutions-section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.payment-solutions-section-title h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.payment-solutions-section-title p {
    font-size: 1.6rem;
    color: #666;
}

.payment-solutions-section-row {
    position: relative;
    z-index: 2;
}

.payment-solutions-section-card-col {
    margin-bottom: 3rem;
    position: relative;
}

.payment-solutions-section-card {
    border-radius: 2rem;
    padding: 4rem 4rem;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ps-card-right-icon{
    width: 22px;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.ps-card-left-icon{
    width: 22px;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.payment-solutions-section-card:hover {
    transform: translateY(-1rem);
}

.payment-solutions-section-card-col:nth-child(1) .payment-solutions-section-card {
    background: linear-gradient(135deg, #e8f0fe 0%, #dbe6fc 100%);
}

.payment-solutions-section-card-col:nth-child(1) .payment-solutions-section-mask-shape-left {
    display: block;
}

.payment-solutions-section-card-col:nth-child(2) .payment-solutions-section-card {
    background: linear-gradient(135deg, #d9e9ff 0%, #c8dfff 100%);
}

.payment-solutions-section-card-col:nth-child(2) .payment-solutions-section-mask-shape-right {
    display: block;
}

.payment-solutions-section-card-col:nth-child(3) .payment-solutions-section-card {
    background: linear-gradient(135deg, #eff2f7 0%, #e3e6eb 100%);
}

.payment-solutions-section-card-col:nth-child(3) .payment-solutions-section-mask-shape-left {
    display: block;
}

.payment-solutions-section-card-number {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-family: var(--heading);
    position: relative;
    z-index: 2; border: 4px solid white;
}

.payment-solutions-section-card-col:nth-child(1) .payment-solutions-section-card-number {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
}

.payment-solutions-section-card-col:nth-child(2) .payment-solutions-section-card-number {
    background: linear-gradient(135deg, #0066ff 0%, #3d8eff 100%);
}

.payment-solutions-section-card-col:nth-child(3) .payment-solutions-section-card-number {
    background: linear-gradient(135deg, #1a1a2e 0%, #3d3d5c 100%);
}

.payment-solutions-section-card-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a2e;
    font-family: var(--heading);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.payment-solutions-section-card-description {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
    letter-spacing: .3px;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.payment-solutions-section-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: #0066ff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--heading);
    margin-top: auto;
}

.payment-solutions-section-learn-more:hover {
    gap: 1.5rem;
    color: #0052cc;
}

.payment-solutions-section-learn-more i {
    transition: transform 0.3s ease;
}

.payment-solutions-section-learn-more:hover i {
    transform: translateX(0.5rem);
}

.payment-solutions-section-arrow-wrapper {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*2*/
.api-section {
padding: 4rem 3%;
background: linear-gradient(135deg, #0b143d 0%, #1b2c69 50%, #0b0d3d 100%);

display: flex; width: 90%; margin: auto;
align-items: center; border-radius: 22px;
position: relative;
overflow: hidden;
}

.api-section::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 80%;
height: 150%;
background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
border-radius: 50%;
}

.api-section-container {
position: relative;
z-index: 2;
}

.api-section-content {
padding-right: 3rem;
}

.api-section-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--heading);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.api-section-title span{
    background: var(--main-color);
    color: #231353;
    padding: 2px 10px;

}

.api-section-subtitle {
    font-size: 1.8rem;
    color: #e0e7ff;
    line-height: 1.7;
    margin-bottom: 4rem;
    font-weight: 400;
}

.api-section-languages-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.8rem;
    font-weight: 600;
    opacity: .7;
    font-family: var(--heading);
    letter-spacing: 0.05rem;
}

.api-section-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.api-section-language-item {
    transition: transform 0.3s ease;
    background: linear-gradient(45deg, #3236b22b, transparent);
    padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    border: 1px solid #098eeb38;
}

.api-section-language-item:hover {
    transform: translateY(-0.5rem);
}

.api-section-language-img {
    height: 3rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.api-section-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.api-section-main-image {
    width: 100%;
    height: auto;
    transform: perspective(100rem) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.api-section-main-image:hover {
    transform: perspective(100rem) rotateY(0deg) scale(1.02);
}

.api-section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    filter: blur(4rem);
    z-index: -1;
    animation: api-pulse 3s ease-in-out infinite;
}

@keyframes api-pulse {
0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
}
50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
}
}
/*End payment solution section*/

/*Start merchant2 benefit section*/
.merchant-benefits2-section {
  padding: 6rem 5%;
  background: url(../img/merchant-section-bg.jpg);
  background-size: cover; background-position: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* LEFT LIST */
.merchant-benefits2-section .merchant-benefits2-section-listwrap {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.merchant-benefits2-section .merchant-benefits2-section-listitem {
  border-radius: 33px;
  padding: 1.8rem 3rem;
  display: flex;
  align-items: center;
  max-width: 400px;
  justify-content: space-between;
  transition: background .3s ease, box-shadow .3s ease;
  cursor: pointer;
  border: 1px solid transparent;
  user-select: none;
  position: relative;
}
.merchant-benefits2-section .merchant-benefits2-section-listitem span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111827;
}

.merchant-benefits2-section .merchant-benefits2-section-listitem.is-active .merchant-icon{
    color: var(--white-color)!important;
}

.merchant-benefits2-section .merchant-benefits2-section-listitem svg {
  color: transparent;
}

.merchant-benefits2-section .merchant-benefits2-section-listitem:hover svg{
    color: var(--white-color); display: block;
}

.merchant-icon{
    color: var(--dark-black-color)!important;
    display: block!important;
}
.merchant-benefits2-section .merchant-benefits2-section-listitem:hover {
  background: rgba(49, 93, 255, 0.06);
  border-color: rgba(49, 93, 255, 0.12);
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.merchant-benefits2-section .merchant-benefits2-section-listitem.is-active {
  background: #2f5bff;
  color: #fff;
  box-shadow: 0 8px 22px rgba(47, 91, 255, .35);
}

.merchant-benefits2-section .merchant-benefits2-section-listitem.is-active svg{color: var(--white-color);}
.merchant-benefits2-section .merchant-benefits2-section-listitem.is-active span {
  color: #fff;
}

/* IMAGE WRAP */
.merchant-benefits2-section .merchant-benefits2-section-imagewrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
  height: 500px;
}

.merchant-benefits2-section-title{
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark-black-color);
    margin: 0; margin-bottom: 2rem;
}

.merchant-benefits2-section-desc{
    font-size: 1.6rem;
    line-height: 1.7;
    margin: 0; color: #6e7982;
    letter-spacing: .3px;
}

.merchant-benefits2-section .merchant-benefits2-section-imagewrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 1s ease-in-out;
}
.merchant-benefits2-section .merchant-benefits2-section-imagewrap img.active {
  left: 0;
  opacity: 1;
}
.merchant-benefits2-section .merchant-benefits2-section-imagewrap img.prev {
  left: -100%;
  opacity: 0;
}

/* CONTENT */
.merchant-benefits2-section .merchant-benefits2-section-content {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
}


.merchant-benefits2-section .merchant-benefits2-section-content-inner {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s ease-in-out;
}
.merchant-benefits2-section .merchant-benefits2-section-content-inner.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* MOBILE CARDS */
.benefits2-card {
  margin-bottom: 2rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
  background: #fff;
}
.benefits2-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.benefits2-card-body {
  padding: 1.5rem;
}
.benefits2-card-body h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: .7rem;
}
.benefits2-card-body p {
  color: #3b3b53;
  font-size: 1.6rem;
  letter-spacing: .3px;
  line-height: 1.6;
}
/*End merchant2 benfit section*/


/*Start blog section*/
.article-section {
  padding: 6rem 5%;
  background: #f4f4fd; 
}

.article-section .article-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
}

.article-section .article-image {
  flex: 0 0 35%;
}

.article-section .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}

.article-section .article-content {
  flex: 1;
}

.article-section .article-meta {
  display: inline-block;
    font-size: 1.4rem;
    background: #fff;
    border-radius: 5rem;
    padding: 0.8rem 1.5rem;
    color: #0073ff;
    font-weight: 500;
}

.article-section .article-meta span {
    font-size: 1.4rem;
    color: #777;
    font-weight: 500;
    margin-left: .5rem;
}

.article-section .article-title {
  font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.6;
    margin-top: 1.5rem;
}

.article-section .article-readmore {
  font-size: 1.5rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #000;
  padding-bottom: .4rem;
}

.article-image{
    height: 200px;
}

.article-section .article-readmore i {
  background: #2f65f5;
  color: #fff;
  font-size: 1.3rem;
  padding: 1rem;
  border-radius: 50%;
}
/*End blog section*/

/*Start qr code solution*/
.secure-pay-section { padding: 6rem 5%; background: url(../img/grow-section-bg.png)!important; position:relative; background-size: cover!important; background-position:center; }

.qr-assests1{
    width: 100px;
    position: absolute;
    top: 100px;
    left: 100px;
    animation: floatUpDown 3s ease-in-out infinite;
}

.qr-assests2{
    width: 150px;
    position: absolute;
    top: 100px;
    right: 100px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}   

.secure-pay-section .sps-row { row-gap: 2.4rem; }

.secure-pay-section .sps-card {
  position: relative;
  background: linear-gradient(#ffffff1f, white), url(../img/bg3.jpg);
  background-size: cover; background-position: bottom;
  border-radius: 2.4rem;
  box-shadow: 0 0.6rem 2.4rem rgba(15, 23, 42, 0.06);
  padding: 3.2rem 3rem 5.6rem;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.secure-pay-section .sps-card:hover .qr-code-icon{
    opacity: .3;
}

.sps-active .qr-code-icon{
    opacity: .1;
}

.qr-code-icon{
    position: absolute;
    top: 19px;
    left: 0;
    width: 65px;
}
/* Background animation layer */
.secure-pay-section .sps-card::before {
  content:"";
  position:absolute;
  inset:0;
  background: var(--white-color);
  z-index:0;
  border-radius: 2.4rem;
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.6s ease;
}

/* Text + icon above */
.secure-pay-section .sps-icon,
.secure-pay-section .sps-title,
.secure-pay-section .sps-desc,
.secure-pay-section .sps-cta {
  position: relative;
  z-index: 1;
}

/* Card hover/active lift */
.secure-pay-section .sps-card:hover,
.secure-pay-section .sps-card.sps-active {
  box-shadow: 0 1.2rem 3.2rem rgba(15,23,42,0.15);
}
.secure-pay-section .sps-card:hover::before,
.secure-pay-section .sps-card.sps-active::before {
  transform: scale(1);
}

/* Icon badge */
.secure-pay-section .sps-icon img{
  width: 200px;
}

.sps-card2 .sps-icon img{
  width: 100px;
}

.secure-pay-section .sps-icon i,
.secure-pay-section .sps-icon img {
  font-size: 2.6rem;
  color:#1e293b;
  transition: color 0.5s ease, transform 0.5s ease;
}

/* Icon hover/active */
.secure-pay-section .sps-card:hover .sps-icon,
.secure-pay-section .sps-card.sps-active .sps-icon {
  transform: scale(2);
}
.secure-pay-section .sps-card:hover .sps-icon i,
.secure-pay-section .sps-card.sps-active .sps-icon i {
  color:#fff;
  transform: scale(1.1);
}

/* Title + desc */
.secure-pay-section .sps-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  transition: color 0.5s ease;
}
.secure-pay-section .sps-desc {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #334155;
  transition: color 0.5s ease;
}

.secure-pay-section .sps-card:hover .sps-title,
.secure-pay-section .sps-card.sps-active .sps-title,
.secure-pay-section .sps-card:hover .sps-desc,
.secure-pay-section .sps-card.sps-active .sps-desc {
  color:#121212;
}

/* Bottom arrow button */
.secure-pay-section .sps-cta {
  position: absolute;
  bottom: 1.6rem; left:50%;
  transform: translateX(-50%);
  width: 4.6rem; height: 4.6rem;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #e9f0ff;
  color:#1d4ed8;
  transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease;
}
.secure-pay-section .sps-cta i { font-size: 1.6rem; transition: transform 0.5s ease; }

.secure-pay-section .sps-card:hover .sps-cta,
.secure-pay-section .sps-card.sps-active .sps-cta {
  background: rgba(255,255,255,0.2);
  color:#fff;
  transform: translateX(-50%) translateY(-0.2rem);
}
.secure-pay-section .sps-card:hover .sps-cta i,
.secure-pay-section .sps-card.sps-active .sps-cta i {
  transform: translateX(0.2rem);
}
/*End qr code solution*/

/* FAQ Section Styling */
.faq-section {
  padding: 6rem 5%;
  background: #fff;
  background: linear-gradient(#ffffff70, #ffffff78), url(../img/faq-bg.jpg);
  background-size: cover; background-position: center;
  width: 100%;
}

.faq-section .faq-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 3rem;
  text-align: center;
  color: #222;
}

/* Marquee Section */
.marquee-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 3rem 0;
}

/* Scrolling Text */
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeMove 15s linear infinite;
}

.marquee-text {
  font-size: 9rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  margin: 0 3rem;
  flex-shrink: 0;
}

/* Absolute Positioned Icons */
.marquee-icon {
  position: absolute;
  font-size: 3rem;
}

.marquee-icon.smile {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.marquee-icon.thumb {
  bottom: -10px;
  right: 20%;
}

@keyframes marqueeMove {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

/* Accordion Styling */
.faq-section .accordion-item {
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 0.8rem;
  padding: 1rem;
  border: 1px solid #d6e2fe;
}

.faq-section .accordion-button {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  background: #fff;
  border-radius: 0.8rem !important;
  padding: 1.7rem 2rem;
  box-shadow: none;
}

.faq-section .accordion-button:focus {
  box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
  color: #000;
  background: #f5f8ff80;
  box-shadow: none;
}

/* Accordion Body */
.faq-section .accordion-body {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.6;
  padding: 1.5rem 2rem 2rem 2rem;
}

/* Custom Icon Styling */
.faq-section .accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f067"; /* Plus icon */
  background-image: none !important;
  font-size: 1.6rem;
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
  content: "\f068"; /* Minus icon */
}
/*end faq section*/

/*Start hero contact section*/
.hero-contact-section {
    padding: 6rem 5%;
    background: url(../img/grow-section-bg.png) !important;
    position: relative;
    background-size: cover !important;
    background-position: center;
    width: 100%;
}

.hero-contact-container {
    width: 100%;
    max-width: 140rem;
    margin: 0 auto;
}

.hero-contact-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-contact-left {
    flex: 1;
}

.hero-contact-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 0.2rem solid white;
    color: white;
    border-radius: 5rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 2rem;
}

.hero-contact-title {
    font-size: 4.5rem;
    font-weight: 700;
    font-family: var(--heading);
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.hero-contact-description {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    line-height: 1.6;
}

.hero-contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-contact-form-row {
    display: flex;
    gap: 1rem;
}

.hero-contact-form-group {
    flex: 1;
}

.hero-contact-input,
.hero-contact-select,
.hero-contact-textarea {
    width: 100%;
    padding: 1.6rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 0.2rem solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1.6rem;
    font-family: var(--heading);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-contact-input::placeholder,
.hero-contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.hero-contact-input:focus,
.hero-contact-select:focus,
.hero-contact-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-contact-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2rem center;
    background-size: 1.6rem;
    padding-right: 5rem;
}

.hero-contact-select option {
    background: #1d4ed8;
    color: #ffffff;
}

.hero-contact-textarea {
    resize: vertical;
    min-height: 15rem;
    font-family: inherit;
}

.hero-contact-submit-btn {
    padding: 1.8rem 4rem;
    background: #ffffff;
    color: #121212;
    border: none;
    border-radius: 33px;
    font-size: 1.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s 
ease;
    align-self: flex-start;
    font-family: var(--heading);
    box-shadow: 0 0.4rem 1.5rem rgb(68 124 239 / 40%);
}

.hero-contact-submit-btn:hover {
    transform: translateY(-0.3rem);
}

.hero-contact-right {
    flex: 1;
    position: relative;
}

.hero-contact-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 60rem;
}

.hero-contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.hero-contact-stats-card {
    position: absolute;
    top: 3rem;
    right: 0;
    background: #ffffff;
    padding: 2rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
    animation: hero-contact-float 3s ease-in-out infinite;
}

@keyframes hero-contact-float {
    0%, 100% {
        transform: rotate(-5deg) translateY(0);
    }
    50% {
        transform: rotate(-5deg) translateY(-1rem);
    }
}

.hero-contact-stats-icon {
    font-size: 3rem;
    color: green;
    margin-bottom: 0.5rem;
}

.hero-contact-stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-contact-stats-text {
    font-size: 1.4rem;
    color: #64748b;
    font-weight: 500;
}
/*End hero contact section*/

/*SERVICES PAGE ui*/
.pay-in-section{
    background: url(../img/home-bg3.jpg);
    background-size: cover!important; background-position: center;
    width: 100%; min-height: auto!important;
    padding: 6rem 5%;
}

.pay-in-section .content{
    text-align: center;
    margin: auto;
    margin-top: 8rem;
}

.back-home-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #9cd3fe;
  border-radius: 5rem;
  padding: 1.4rem 2.2rem;
  background-color: #fff;
  margin-bottom: 1.6rem;
}

.back-home-wrapper a {
  color: var(--main-color);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.3s ease;
  font-family: var(--heading);
}

.back-home-wrapper a:hover {
  color: #1749db;
}

.divider {
  height: 2rem;
  width: 1px;
  background-color: #c5cce2;
  margin: 0 1.5rem;
}

.back-home-wrapper h4 {
  color: #7f8aa5;
  font-size: 1.6rem;
  font-family: var(--heading);
  font-weight: 500;
  margin: 0;
}

.pay-in-section-home-button{
    background: var(--white-color);
}

.collection-feature-section {
    padding: 6rem 3%;
    position: relative;
}

.collection-feature-section-container {
    background: #f6fcff;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 22px;
}

.collection-feature-section-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.collection-feature-section-main-image {
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: contain;
}

.collection-feature-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.collection-feature-section-heading {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--heading);
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.collection-feature-section-description {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
    letter-spacing: .3px;
}

.collection-feature-section-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.collection-feature-section-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.collection-feature-section-check-icon {
    min-width: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.collection-feature-section-check-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.collection-feature-section-feature-content {
    flex: 1;
}

.collection-feature-section-feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: .3px;
    margin-bottom: 0.8rem;
    font-family: var(--heading);
}

.collection-feature-section-feature-description {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.7;
    letter-spacing: .3px;
}

.service-assest1 {
    position: absolute;
    right: 50px;
    top: 50px;
    width: 60px;
}

/*Start counting section*/
.counting-section {
  padding: 6rem 5%;
  text-align: center;
  background: url(../img/steps-bg.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  position: relative;
}

.counting-section .step-wrapper {
  flex: 1 1 18%;
  min-width: 220px;
  max-width: 250px;
  position: relative;
  z-index: 2;
}

.counting-section .step-circle {
  width: 12rem;
  height: 12rem;
  border: 1px solid #2e7aff9e;
  border-radius: 22px;
  background: url(../img/steps-card-bg.jpg);
  background-size: cover; background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  z-index: 2;
  position: relative;
  transition: 0.3s ease;
}


.counting-section .step-wrapper:hover img {
  transform: rotate(25deg);
}

.counting-section .step-circle img {
  width: 55px;
  transition: 0.4s transform;
}

.counting-section .step-number {
  position: absolute;
  top: -28px;
  left: 50%; transform: translate(-50%,50%);
  background: var(--main-color);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  font-family: "Bricolage Grotesque", sans-serif;
  align-items: center;
  justify-content: center;
}

.counting-section h3 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.6;
}

.counting-section p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #555;
}

/* Step line connector */
.steps-container::before {
  content: "";
  position: absolute;
  top: 6rem;
  left: 5%;
  right: 5%;
  height: 0.8px;
  background: #2e7aff9e;
  z-index: 1;
}

.counting-section .step-wrapper:last-child::after {
  display: none;
}
/*End counting section*/

.feature-collection-section {
    padding: 6rem 5%;
    display: flex;
    background: url(../img/service-bg.png);
    background-size: cover; background-position: center;
    align-items: center;
}

.feature-collection-card {
    background: #ffffff;
    border-radius: 2.4rem;
    padding: 4rem 3.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.feature-collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover!important;
    background-position: center!important;
    opacity: 1;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.feature-collection-card:hover::before {
    opacity: 0.7;
}

.large1::before {
    background: url('../img/feature-collection-card-large1.jpg');
}

.large2::before {
    background: url('../img/feature-collection-card-large2.jpg')!important;
}

.one::before {
    background: url('../img/feature-collection-card-3.jpg');
}

.two::before {
    background: url('../img/feature-collection-card-2.jpg');
}

.three::before {
    background: url('../img/feature-collection-card-1.jpg');
}

.feature-collection-card:hover {
    transform: translateY(-0.8rem);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.15);
}

.feature-collection-content {
    position: relative;
    z-index: 2;
}

.feature-collection-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 1.6rem;
    font-family: var(--heading);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.feature-collection-description {
    font-size: 1.6rem;
    color: #5f6c7b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-collection-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.feature-collection-icon-wrapper-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
}

.feature-collection-icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.feature-collection-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0.8rem 2rem rgba(0, 0, 0, 0.15));
}

.feature-collection-row:last-child {
    margin-bottom: 0;
}

.feature-collection-col {
    margin-bottom: 2rem;
}

.feature-collection-card-large {
    display: flex;
    flex-direction: column;
}

.feature-collection-card-small {
    min-height: 38rem;
    display: flex;
    flex-direction: column;
}

/*Lets talk section*/
.lets-talk-service-section {
    padding: 2rem 5% 0 5%!important;
    background: url(../img/have-quetion-bg.jpg);
    background-size: cover!important; background-position: center!important;
    position: relative; border-radius: 30px; 
    overflow: hidden; max-width: 90%; margin: auto; margin-bottom: 4rem;
}
.lets-talk-service-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lets-talk-service-row {
    display: flex;
    align-items: center;
}

.lets-talk-service-content {
    padding-right: 3rem;
    position: relative;
    z-index: 2;
    height: 100%;
}

.lets-talk-service-heading {
    font-size: 4.5rem;
    font-weight: 700;
    font-family: var(--heading);
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.lets-talk-service-description {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.lets-talk-service-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.lets-talk-service-btn {
    padding: 1.4rem 3rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.lets-talk-service-btn-primary {
    background: #ffffff;
    color: #4318ff;
}

.lets-talk-service-btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.lets-talk-service-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 0.2rem solid rgba(255, 255, 255, 0.3);
}

.lets-talk-service-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-0.2rem);
}

.lets-talk-service-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.lets-talk-service-image-container {
    width: 100%;
    position: relative;
}

.lets-talk-service-person-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 45rem;
    margin-left: auto;
}

.lets-talk-service-phone-card {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    animation: lets-talk-service-float 3s ease-in-out infinite;
    z-index: 3;
}

.lets-talk-service-phone-text {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.lets-talk-service-question-word {
    font-size: 1.5rem;
    color: #4318ff;
    font-weight: 700;
}

.lets-talk-service-question-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    box-shadow: 0 0.5rem 1.5rem rgba(255, 107, 53, 0.3);
}

.lets-talk-service-question-mark {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
}

@keyframes lets-talk-service-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1rem);
    }
}

.lets-talk-service-wave-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.lets-talk-service-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 25%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.05) 75%, 
        transparent 100%);
    animation: lets-talk-service-wave-move 8s linear infinite;
}

@keyframes lets-talk-service-wave-move {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
/*End lets talk section*/

/*Start efforts section*/
.efforts-section {
    padding: 6rem 5%;
}

.efforts-section-title {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
}

.efforts-card {
    background: #ebf2ff;
/*    border: 1px solid #d0dce2;*/
/*    background: linear-gradient(45deg, #ffffff, #F3FEFF);*/
    border-radius: 22px;
    padding: 4rem 2rem;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .4s ease;
}

.efforts-card::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: top ;
  transition: transform 0.6s ease;
}

.efforts-card:hover::before,
.efforts-card::before {
  transform: scaleX(1);
}

.efforts-card:hover{
    background: var(--main-color)!important;
}

.efforts-card:hover .efforts-card-title{
    color: var(--white-color);
}

.efforts-card:hover .efforts-card-description{
    color: var(--white-color);
    opacity: .8;
}

.efforts-card:hover .payout-item p{
    color: var(--white-color);
    opacity: .8;
}

.efforts-card:hover .payout-item p{
    color: var(--white-color);
    opacity:1;
}

.efforts-card:hover .check-icon{
    filter: brightness(100);
}

.ef-card-right-icon{
    width: 70px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.efforts-card-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.efforts-card-inner2{
    position: relative;
}

.efforts-card-inner2 .efforts-content .efforts-card-title{
    font-size: 2.7rem; margin-bottom: 2rem;
}

.payout-item p b{
    font-size: 2rem;
    letter-spacing: .4px;
    margin-bottom: 10px;
    font-family: var(--heading);
}

.efforts-card2{
    padding: 3rem;
}

.efforts-image-wrapper2{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 7rem!important;
    height: 7rem!important;
}

.efforts-image-wrapper2 .efforts-image{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s ease;
    transform-style: preserve-3d;
    border-radius: 22px;
}

.efforts-image-wrapper {
    flex-shrink: 0;
    width: 15rem;  /* reduced from 18rem */
    height: 15rem; /* reduced from 18rem */
    perspective: 100rem;
}

.efforts-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s ease;
    transform-style: preserve-3d;
    border-radius: 22px;
}

.efforts-card:hover .efforts-image {
    transform: rotateY(15deg) rotateX(10deg) scale(1.03);
}

.efforts-content {
    flex: 1;
}

.efforts-card-title {
    font-size: 2.4rem;
    font-weight: 700;
    font-family: var(--heading);
    color: #1a202c;
    margin-bottom: 1rem;
}

.efforts-card-description {
    font-size: 1.6rem;
    color: #718096;
    line-height: 1.7;
}
/*End efforts section*/
/*Service slider*/
.service-page-service-slider {
  padding: 1.4rem 5%;
  background-color: var(--main-color);
  overflow: hidden;
  box-sizing: border-box;
}

.service-page-service-slider__track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: scroll 22s linear infinite;
}

/* Pause animation on hover */
.service-page-service-slider:hover .service-page-service-slider__track {
  animation-play-state: paused;
}

.service-page-service-slider__item {
  display: inline-flex;
  align-items: center;
  color: #fff; font-family: var(--heading);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  margin-right: 2.4rem;
  transition: transform 0.2s ease, background 0.2s ease;
  border-radius: 0.6rem;
  padding: 0.6rem 1rem;
}

.service-page-service-slider__item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}

.service-page-service-slider__dot {
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-block;
  margin: 0 1rem;
  flex-shrink: 0;
}

/* ==============================
   ANIMATION
=============================== */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.payout-serv-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.1rem; margin-top: 1.5rem;
}

.payout-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem; 
}

.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.payout-item p {
  color: #2B3674;
  font-size: 1.6rem;
  line-height: 1.5;
}
/*End SERVICES PAGE ui*/

/*Start review section*/
.review-section {
    padding: 6rem 3%;
    background: url(../img/testimonial-bg.png);
    background-size: cover; background-position: center;
    width: 100%;
}

.rating-stars { display:inline-flex; gap:0.4rem; align-items:center; margin-bottom:1.5rem }
.rating-stars i { font-size:1.2rem; color:#FFB703; /* golden */ }

.review-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.review-section-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    max-width: 65rem;
    font-family: "Bricolage Grotesque", sans-serif;
}

.review-section-navigation {
    display: flex;
    gap: 1rem;
}

.review-section-nav-btn {
    width: 4.5rem;
    height: 4.5rem;
    border: 1.5px solid #d0d0d0;
    background-color: white;
    border-radius:  12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    color: #000;
}

.review-section-nav-btn:hover {
    background-color: var(--main-color);
    border-color: #fff;
    color: #ffffff;
}

.review-section-carousel-wrapper {
    position: relative;
}

.review-section-carousel {
    overflow: visible !important;
}

.review-section-carousel .owl-item {
    display: flex;
}

.review-section-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 22px;
    margin: 0 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    transition: all 0.4s ease;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
}

.review-section-card:hover {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
    transform: translateY(-0.8rem);
}

.review-section-quote-icon {
    font-size: 10rem;
    color: #007dcb;
    margin-bottom: 1.4rem;
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1;
    font-style: italic;
    position: absolute;
    right: 20px;
    bottom: 0;
    opacity: .1;
}

.review-section-text {
    font-size: 1.5rem;
    line-height: 1.75;
    color: #4a4a4a;
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

.review-section-author {
    display: flex;
    align-items: center;
    gap: 1.8rem; margin-bottom: 2rem;
}

.review-section-author-image {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-section-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.review-section-card:hover .review-section-author-image img {
    transform: scale(1.15);
}

.review-section-author-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.review-section-author-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    font-family: "Bricolage Grotesque", sans-serif;
}

.review-section-author-title {
    font-size: 1.5rem;
    color: #777777;
}

.owl-dots {
    text-align: center;
    margin-top: 4rem;
}

.owl-dot {
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    background-color: #d0d0d0;
    border-radius: 50%;
    margin: 0 0.6rem;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background-color: #000000;
    width: 0.8rem;
    height: 0.8rem;
}

.owl-stage-outer {
    overflow: visible !important;
}
/*End review section*/


/*Start circle animation*/
.orbit-container {
  position: relative;
  width: 90vw; margin: auto;
  max-width: 500px;
  aspect-ratio: 1/1;
}

/* Center Logo with ripple wrapper */
.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  z-index: 10;
  overflow: visible;
}

.center-logo img {
  width: 50%;
  height: auto;
  z-index: 3;
  position: relative;
}

/* Ripple Waves */
.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgb(77 115 255 / 40%);
  transform: translate(-50%, -50%) scale(0.8);
  animation: rippleWave 3s infinite ease-out;
  z-index: 1;
}

.ripple:nth-child(1) { animation-delay: 0s; }
.ripple:nth-child(2) { animation-delay: 1s; }
.ripple:nth-child(3) { animation-delay: 2s; }

@keyframes rippleWave {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Orbits */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(124, 77, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.orbit1 { width: 250px; height: 250px; }
.orbit2 { width: 350px; height: 350px; }
.orbit3 { width: 450px; height: 450px; }

/* Orbit Items */
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
}

/* Round Logo Boxes */
.orbit-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  line-height: 1.2;
  padding: 6px;
}


.orbit-item a img{
    width: 50px;
}

/* Colored Dots */
.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.dot.teal { background: #2dd4bf; }
/*.dot.orange { background: #f97316; }*/
.dot.yellow { background: #eab308; }

/* Rotation Animation */
@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Pause animation on hover */
.orbit-container:hover .orbit {
  animation-play-state: paused;
}

/* Text Below */
.orbit-text {
  margin-top: 2rem;
}
.orbit-text h2 {
  font-size: 2rem;
  margin: 0.5rem 0;
}
.orbit-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #e63970;
  margin: 0.3rem 0;
}
.orbit-text p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Responsive Fix */
@media (max-width: 600px) {
  .center-logo {
    width: 70px;
    height: 70px;
  }
  .orbit1 { width: 180px; height: 180px; }
  .orbit2 { width: 250px; height: 250px; }
  .orbit3 { width: 320px; height: 320px; }

  .orbit-item a {
    width: 55px;
    height: 55px;
    font-size: 10px;
  }
  .dot { width: 14px; height: 14px; }

  .orbit1 .orbit-item:nth-child(1) { transform: rotate(45deg) translateX(90px); }
  .orbit1 .orbit-item:nth-child(2) { transform: rotate(200deg) translateX(90px); }

  .orbit2 .orbit-item:nth-child(1) { transform: rotate(90deg) translateX(125px); }
  .orbit2 .orbit-item:nth-child(2) { transform: rotate(260deg) translateX(125px); }

  .orbit3 .orbit-item:nth-child(1) { transform: rotate(310deg) translateX(160px); }
  .orbit3 .orbit-item:nth-child(2) { transform: rotate(150deg) translateX(160px); }
}
/*End circle animation*/

/* Machine Section */
.machine-section {
  padding: 6rem 5%;
}

.machine-section .machine-card {
  background: linear-gradient(#D3F5FF, #FFFFFF);
  border-radius: 1.2rem;
  padding: 2.4rem;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column-reverse;
}

/* wave circles */
.wave-circle {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 500px;   /* fixed equal size */
  height: 500px;  /* same as width => perfect circle */
  border: 2px solid #0077ff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  animation: waveExpand 6s linear infinite;
  opacity: 0.3;
  z-index: 0;
}

.wave-circle:nth-child(2) {
  animation-delay: 2s;
}

.wave-circle:nth-child(3) {
  animation-delay: 4s;
}

@keyframes waveExpand {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.4;
  }
  70% {
    opacity: 0.15;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2); /* thoda hi bada ho, bahar na nikle */
    opacity: 0;
  }
}


.machine-section .machine-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1rem 2.4rem rgba(0,0,0,0.12);
}

.machine-section .machine-icon {
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
  color: #0071e3;
}

.machine-section .machine-title {
  font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: #111;
    line-height: 1.6;
    letter-spacing: .3px;
}

.machine-section .machine-highlight {
  color: #265a8e;
}

.machine-section .machine-text {
  font-size: 1.4rem;
  color: #444;
  margin-bottom: 1.6rem;
  line-height: 1.6;
}

.machine-section .machine-image {
  width: 100%;
  object-fit: contain;
  border-radius: 0.8rem;
}

/*footer start*/
.footer-section {
  padding: 4rem 5%;
  background: url(../img/footer-section-bg.jpg);
  background-size: cover; background-position: center;
  width: 100%;
  color: #333;
}

.footer-section .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 4rem;
}

.footer-section h4 {
    font-size: 2.4rem;
    font-family: var(--heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.footer-section p, 
.footer-section li,
.footer-section a {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  text-decoration: none;
}

.footer-services ul li{
    margin-bottom: 1rem;
}

.footer-services ul li a:hover{
    color: var(--main-color);
}

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

.footer-section .footer-about p {
  margin-bottom: 2rem;
}

.footer-section .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-section .social-icons a {
  background: #172a42;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  transition: 0.3s ease;
}

.footer-section .social-icons a:hover {
  background: var(--main-color);
}

.footer-section .partner-btn {
  display: inline-block;
  background-color: #ff5a00;
  color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 0.6rem;
  font-weight: bold;
  font-size: 1.4rem;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.footer-section .partner-btn:hover {
  background-color: #e65200;
}

.footer-section .contact-info p {
  margin: 2rem 0;
}

.footer-section .bottom-bar {
  border-top: 1px solid #ddd;
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-section .bottom-bar p {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 600;
}

.footer-section .bottom-bar a {
  color: #fff;
  margin: 0 1rem;
  font-size: 1.6rem;
}

.footer-section .bottom-bar img {
  margin-top: 0.5rem;
  height: 2.8rem;
}
/*End footer*/

/*Start contact page ui*/
.contact-page-section {
  padding: 4rem 5%;
}

.contact-wrapper {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* LEFT FORM AREA */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 2.4rem;
  flex: 1 1 58%;
  padding: 3rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.contact-title {
  font-size: 3.2rem;
  font-family: var(--heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.contact-subtitle {
  font-size: 1.6rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* FORM INPUTS */
.form-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.8rem;
  display: block;
  letter-spacing: 0.02em;
}

.form-control,
.form-select {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 1.4rem;
  padding: 1.4rem 2rem;
  font-size: 1.4rem;
  color: #1e293b;
  transition: all 0.2s ease;
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:hover,
.form-select:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.form-control:focus,
.form-select:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.form-select option {
  background: #ffffff;
  color: #1e293b;
}

textarea.form-control {
  min-height: 12rem;
  resize: vertical;
}

.input-group .form-select {
  border-radius: 1.4rem 0 0 1.4rem;
  max-width: 10rem;
  border-right: none;
}

.input-group .form-control {
  border-radius: 0 1.4rem 1.4rem 0;
}

/* SEND BUTTON */
.btn-send {
  background: var(--main-color);
  border: none;
  color: #fff;
  border-radius: 1.4rem;
  padding: 1.6rem 4rem;
  font-weight: 600;
  font-size: 1.8rem;
  font-family: var(--heading);
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-send:hover {
  color: var(--white-color);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.btn-send:active {
  transform: scale(0.98);
}

/* RIGHT INFO CARD */
.contact-info-card {
  flex: 1 1 32%;
  background: url(../img/signup-bg.jpg);
  background-size: cover; background-position: center;
  color: #ffffff;
  border-radius: 2.4rem;
  padding: 3.5rem;
  box-shadow: 0 10px 25px rgba(30, 41, 59, 0.2);
}

.contact-info-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #ffffff;
  font-family: var(--heading);
}

.contact-info-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.6rem;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--white-color);
  &:hover{
    color: var(--white-color);
  }
}

.contact-info-box i {
  font-size: 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.2rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  &:hover{
    background: var(--white-color);
    color: var(--main-color);
  }
}

.contact-info-text {
  font-size: 1.3rem;
  line-height: 1.5;
}

.contact-info-text strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--heading);
  color: #ffffff;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.contact-info-text span {
  color: #e2e8f0;
  font-size: 1.4rem;
  letter-spacing: .3px;
}

.socials-heading {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f1f5f9;
}

.socials {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.socials a {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.2s ease;
}

.socials a:hover {
  background: #3b82f6;
  border-color: #3b82f6;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: #ffffff;
  border: 2px solid #10b981;
  padding: 2rem 3rem;
  border-radius: 1.4rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
  z-index: 1000;
  display: none;
}

.success-message.show {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.success-message i {
  font-size: 2.5rem;
  color: #10b981;
}

.success-message-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #0f172a;
}

.success-message-text p {
  font-size: 1.3rem;
  color: #64748b;
  margin: 0;
}

.contact-page-map {
  width: 100%;
  padding: 4rem 5%;
}

.contact-page-map .map-container {
  position: relative;
  width: 100%;
  padding-bottom: 45%; /* Adjust height ratio (45% = good for full width) */
  overflow: hidden;
  border-radius: 2.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-page-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 2.4rem;
}
/*End contact page ui*/

/*Start about us page ui*/
.about-paragraph-section {
    padding: 4rem 5%;
}

.about-paragraph-section p {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/*Start vision section*/
.vision-section {
  padding: 6rem 5%;
  background: #F3F4F6;
}

.vision-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.vision-card {
  background: #fff;
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 4rem;
  box-shadow: 0 10px 30px rgba(71, 0, 150, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.vision-card-ov-text{
    font-size: 6rem;
    font-weight: 900;
    font-family: var(--heading);
    position: absolute;
    right: 39px;
    font-style: italic;
    color: #edeef2;
    top: 13px;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(71, 0, 150, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
  z-index: -1;
}

.vision-card:hover {
  transform: translateY(-10px);
/*  box-shadow: 0 20px 40px rgba(71, 0, 150, 0.15);*/
}

.vision-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  color: white;
  background: var(--main-color);
/*  box-shadow: 0 10px 20px rgba(71, 0, 150, 0.2);*/
  transition: all 0.3s ease;
}

.vision-card:hover .vision-icon {
  transform: rotate(10deg) scale(1.1);
/*  box-shadow: 0 15px 30px rgba(71, 0, 150, 0.3);*/
}

.vision-card h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1e293b;
  position: relative;
  font-family: var(--heading);
}

.vision-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--main-color);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.vision-card:hover h3::after {
  width: 80px;
}

.vision-card p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.vision-card ul {
  margin: 1.5rem 0 0 1.5rem;
  padding-left: 1rem;
  list-style: none;
}

.vision-card li {
  font-size: 1.6rem;
  color: #475569;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.vision-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1268fb;
}

.vision-quote {
  margin-top: 2.5rem;
  font-style: italic;
  font-weight: 500;
  color: #470096;
  font-size: 1.8rem;
  border-left: 3px solid #470096;
  padding-left: 1.5rem;
  position: relative;
}
/*End vision section*/
.gallery-section {
  padding: 6rem 5%;
  background: url(../img/gallery-section-bg.jpg);
  background-size: cover; background-position: center;
}

.gallery-section .gallery-section-heading {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
  color: #333;
}

.gallery-section .gallery-section-image {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 0.8rem;
  transition: transform 0.3s ease;
}

.gallery-section .gallery-section-image:hover {
  transform: scale(1.05);
}

/*Start it service section*/
.it-service-section {
  padding: 6rem 5%;
  position: relative;
}

.it-service-section .it-service-img {
  width: 100%;
}

.it-service-section .it-service-badge {
  display: inline-block;
  background: #e6f0ff;
  color: #0066ff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.it-service-section h2 {
  font-size: 4rem;
    font-weight: 700;
    color: #0c0c0c;
    margin-bottom: 2rem;
    font-family: var(--heading);
    line-height: 1.3;
}

.it-service-section p {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.8;
  letter-spacing: .3px;
}

.benefits-list {

}

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

.benefits-list li {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  line-height: 1.6;
}

.benefits-list li i {
  color: #1268fb;
  font-size: 1.8rem;
  margin-top: 0.4rem;
}

.it-service-section .it-service-divider {
  border-top: 1px solid #ddd;
  margin: 3rem 0;
}

.it-service-section .it-service-card {
  padding: 2rem;
}

.it-service-section .it-service-icon img{
  width: 80px; margin-bottom: 2rem;
}

.it-service-section .it-service-card h5 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.it-service-section .it-service-card p {
  font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.owl-carousel .owl-item {
  padding: 1rem;
}

.smile{
    position: absolute;
    right: 50px; top: 100px;
    width: 100px;
    animation: bannerAnimationTwo 8s infinite linear;
}

.smile2{
    position: absolute;
    left: 50px; top: 100px;
    width: 70px;
    animation: bannerAnimationTwo 15s infinite linear;
}

@keyframes bannerAnimationTwo{
    0% {
    transform: translate(0px, 0px);
    }
    20% {
        transform: translate(20px, -5px);
    }
    40% {
        transform: translate(50px, 20px);
    }
    60% {
        transform: translate(20px, 50px);
    }
    80% {
        transform: translate(-20px, 30px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}

.career-img{
    max-width: 95%;
    border-radius: 22px;
    width: 100%;
}
/*End it service section*/

/* ===== OUR CORE SECTION ===== */
.our-core-section {
  padding: 6rem 5%;
}

.our-core-section .our-core-card {
  background: #F3F4F6;
  border-radius: 26px;
  padding:3rem;
/*  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);*/
  text-align: left; 
  height: 100%;
  display: flex;border: 1px solid #E4E9F3;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-core-section .our-core-card:hover {
  transform: translateY(-0.5rem);
}

.our-core-section .our-core-title {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: var(--heading);
  color: #2B3674;
  margin-bottom: 1rem;
}

.our-core-section .our-core-description {
  font-size: 1.6rem;
  color: #4b5563;
  line-height: 1.8;
  flex-grow: 1;
}

.our-core-section .our-core-icon {
  text-align: center;
  margin-top: 2rem;
  perspective: 800px;
}

.our-core-section .our-core-icon img {
  width: 100px;
}

.our-core-section .our-core-card:hover .our-core-icon img {
  transform: rotateY(360deg);
}
/*End about us page ui*/

.blogs-section{
    background: #eff8ff;
    padding: 4rem 5%;
}

.blogs-section .row h1{
   text-align: center;
   padding-top: 2rem;
}

.blogs-section .row h5{
    font-size: 1.6rem;
    color: var(--light-gray);
    padding: 1rem 0;
    margin: 0 1rem;
    text-align: center;
    line-height: 1.7;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.blogs-box{
    padding: 0;
/*    background-color: var(--dark-black-color);*/
    border-radius: 22px;
    margin: 1.2rem auto;
    background: url(../img/blogcard-bg.jpg);
    width: 100%; background: var(--white-color);
    transition: .6s all;
}

.blogs-box-inner{
    padding: 2rem;
}

.blogs-box:hover{
   background-position: center;
   background-size: inherit;
}

.blogs-box img{
    height: auto;
    border-radius: 22px 22px 0 0;
    width: 100%;
}

.blogs-blog-date{
    justify-content: space-between;
    align-items: center;
    display: flex; 
}

.blogs-blog-date p{
    font-size: 1.4rem;
    font-family: var(--heading);
    color: var(--gray-color);
    padding: 1rem 0; font-weight: 500;
    border-bottom: 1px solid var(--light-gray);
}

.blogs-blog-heading img{
    width: 80px;
}

.blogs-blog-heading h3{
    font-size: 2.6rem;
    color: var(--dark-black-color);
    font-weight: 700;
    line-height: 1.5;
    padding: 1rem 0;
    font-family: var(--heading);
}

.blogs-blog-heading{
    margin-bottom: 1.5rem;
}

.blogs-blog-heading p{
    font-size: 1.7rem;
    color: #7a7a8c;
    line-height: 1.7;
    margin: 0; padding: 1rem 0;
}

.share-icon a{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: .5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--white-color);
    background: var(--main-color);
    font-size: 1.4rem;
}

.blogs-card-btn{
    width: 100%;
    background: var(--white-color);
    color: var(--main-color);
    font-size: 2rem;
    border: 1.2px solid var(--main-color);
    font-family: var(--heading);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 33px;
    padding: 1rem 1rem;
    transition: .4s all;
}

.blogs-card-btn:hover{
    background: var(--main-color);
    color: var(--white-color);
}
/*End blog page ui*/



.api-mega-icon {
  width: 35px;
  background: white;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.api-mega-icon img{
  width: 18px;

}


















/*Media quaries*/
@media screen and (max-width: 992px){
html{
    font-size: 55%;
}

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

    .home-buttons {
        justify-content: center;
    }

    .discover-badge {
        justify-content: center;
    }

    .job-away-nav__links {
        gap: 2rem;
    }

    .app-feature-section .mobile-mockup {
        order: -1; /* 📱 Image upar aa jayegi */
        margin-bottom: 3rem;
      }

      .merchant-benefits2-section .merchant-benefits2-section-listcol { display: none; }
      .merchant-benefits2-section .row > div { flex: 0 0 100%; max-width: 100%; }
      #benefits2-desktop { display: none; }
      #benefits2-mobile { display: block; }

      .hero-contact-row {
            flex-direction: column;
        }

        .hero-contact-title {
            font-size: 4rem;
        }

        .hero-contact-image-wrapper {
            min-height: 50rem;
        }

        .content img {
            max-width: 300px;
            height: auto;
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .steps-container {
            gap: 2rem;
          }
          .counting-section .step-wrapper {
            flex: 1 1 45%;
          }
          .steps-container::before {
            display: none;
          }

          .contact-wrapper {
            flex-direction: column;
          }
          .contact-info-card {
            width: 100%;
          }
}

/*min-width*/
@media screen and (min-width: 992px){
    #benefits2-desktop { display: block; }
      #benefits2-mobile { display: none; }

    .efforts-card-inner {
        gap: 2rem;
    }

    .efforts-image-wrapper {
        width: 13rem;
        height: 13rem;
    }

    .efforts-image-wrapper2{
        position: absolute;
        top: 20px;
        right: 20px;
        width: 7rem!important;
        height: 7rem;
    }

    .efforts-image-wrapper2 .efforts-image{
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: all 0.6s ease;
        transform-style: preserve-3d;
        border-radius: 22px;
    }
}


@media screen and (max-width: 768px){ 
    .features-cgpe-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-cgpe-card {
        padding: 2.5rem;
    }
    
    .features-cgpe-icon {
        font-size: 3rem;
        width: 70px;
        height: 70px;
    }

    .article-section .article-card {
        flex-direction: column;
        text-align: center;
      }

      .article-section .article-image {
        width: 100%;
      }

      .efforts-card-inner {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
        }

        .efforts-card-inner2{
            text-align: left;
        }

        .efforts-image-wrapper {
            width: 14rem;
            height: 14rem;
        }
}

@media screen and (max-width: 992px){
   .carousel-item{
        animation-play-state: paused!important;
   }

   .home-text h2{
        font-size: 6rem;
   }

   .job-away-nav__container {
        padding:  2rem;
    }

    .job-away-nav__menu-toggle {
        display: block;
        order: 3;
    }

    .job-away-nav__links {
        position: fixed;
        top: 8rem;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-2rem);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .job-away-nav__links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .job-away-nav__dropdown{
        width: 100%;
    }

    .job-away-nav__dropdown-item{
        font-size: 1.8rem;
        padding: 1.4rem 2rem;
    }

    .hero-section{
        min-height: auto!important;
    }

    .success-section{
        gap: 25px;
    }

    .job-away-nav__dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0;
        margin-top: 1rem;
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        min-width: auto;
        transform: none;
        background-color: #f9f9f9;
        border-radius: 0.8rem;
    }

    .job-away-nav__dropdown.active .job-away-nav__dropdown-menu {
        opacity: 1;
        height: auto;
        visibility: visible;
        transform: none;
        padding: 1rem 0;
    }

    .job-away-nav__dropdown.active .job-away-nav__dropdown-indicator {
        transform: rotate(180deg);
        color: #4e6bff;
    }

    .job-away-nav__container.scrolled {
        top: 0;
    }

    .job-away-nav__container.scrolled + .job-away-nav__links {
        top: 7rem;
    }

    .job-away-nav__actions {
        display: none;
    }

    .job-away-nav__mobile-actions {
        display: none;
    }

    .job-away-nav__search {
        font-size: 2rem;
    }

    .job-away-nav__link {
        width: 100%;
        padding: 1rem 0;
        font-size: 2rem;
    }

    .job-away-nav__link::after {
        display: none;
    }

    .qr-box{
        display: none!important;
    }

    .trust-badges{
        justify-content: center;
    }

    .usp-points{
        justify-content: center;
    }

    .hero-image img{
        width: 100%;
    }

    .qr-assests1 {
        width: 80px;
        position: absolute;
        top: 0;
        left: 30px;
        animation: floatUpDown 3s ease-in-out infinite;
    }

    .qr-assests2 {
        width: 80px;
        position: absolute;
        top: 0;
        right: 30px;
        animation: floatUpDown 3s ease-in-out infinite;
    }
}


 @media (max-width: 991.98px) {
      .vrc-mega { display: none !important; }
      .vrc-mega-overlay { display: none !important; }
      #vrcApiBtn { display: none !important; }
    }
    @media (min-width: 992px) {
      #vrcMobileApiBtn { display: none !important; }
    }
@media screen and (max-width: 650px){ 

    .job-away-nav__mobile-actions {
        gap: 1.5rem;
    }

    .job-away-nav__search-input {
        width: 80%;
    }

    .app-feature-section {
        padding: 4rem 2rem;
      }
      .app-feature-section .feature-card {
        padding: 2rem;
      }
      .app-feature-section .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
      }  

      .content h1 {
        font-size: 5rem;
      }    

      .content h1 span{
        font-size: 5rem;
      }

      .floot-img {
        width: 50px;
        position: absolute;
        top: 100px;
        right: 0;
    }

    .success-section-card-img img{
        width: 55px;
    }

    .home-buttons{
        background: transparent;
        padding: 0; gap: 1rem; border: none;
    }

    .section-heading .main-heading {
        font-size: 4rem;
    }

    .btn .btn-icon2{
        margin-left: .5rem;
        width: 33px; height: 33px;
    }

    .btn .btn-icon{
        margin-left: .5rem;
        width: 33px; height: 33px;
    }

    .qr-assests2{
        display: none;
    }

    .qr-assests1{
        display: none;
    }

    .content{
        text-align: center;
    }

    .success-section {
        padding: 4rem 2%;
        display: grid;
        grid-row-gap: 1.5rem;
        grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
        background: rgba(255, 255, 255, 0.04);
        background: var(--white-color);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 0.5rem 1.5rem rgb(0 55 255 / 10%);
        backdrop-filter: blur(8px);
    }

    .success-section .success-section-card{
        flex-direction: column; text-align: center;
    }

    .success-section-card-text h4{
        font-size: 2.4rem;
    }

    .ps-card-left-icon {
        width: 22px;
        position: absolute;
        left: 50%;
        top: 9px;
        transform: translate(-50%, -50%) rotate(270deg);
    }

    .ps-card-right-icon{
        display: none;
    }

    .collection-feature-section-feature-item {
        gap: 1.5rem;
    }

    .collection-feature-section-check-icon {
        min-width: 2.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .counting-section .step-wrapper {
        flex: 1 1 100%;
      }

    .counting-section .step-circle {
        width: 10rem;
        height: 10rem;
    }

    .efforts-image-wrapper {
        width: 10rem;
        height: 10rem;
    }

    .btn-send {
        width: 100%;
      }
  .success-message {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }
}

/* Overlay for closing menu */
.job-away-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(0.3rem);
}

.job-away-nav__overlay.active {
    opacity: 1;
    visibility: visible;
}
  
}

@media screen and (max-width: 450px){
html{
    font-size: 50%;
}

}



/*START AEPS PAGE UI*/
.aeps-hero-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 40%, #faf0ff 100%);
  background: url(../img/industy-bg.jpg);
  background-size: cover; background-position: center;
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.aeps-fea-section .row{
  margin-top: 4rem;

}


.aeps-hero-section .row{
    align-items: center;
    margin-top: 6rem;
}

/* Decorative blobs */
.aeps-hero-section::before {
  content: '';
  position: absolute;
  top: -12rem;
  left: -10rem;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, rgba(33, 102, 255, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.aeps-hero-section::after {
  content: '';
  position: absolute;
  bottom: -14rem;
  right: -8rem;
  width: 55rem;
  height: 55rem;
  background: radial-gradient(circle, rgba(180, 50, 255, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.aeps-hero-section .aeps-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ---- LEFT CONTENT ---- */

.aeps-hero-section .aeps-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(33, 102, 255, 0.1);
  border: 1px solid rgba(33, 102, 255, 0.22);
  border-radius: 10rem;
  padding: 0.6rem 1.4rem;
  margin-bottom: 2.2rem;
  animation: aeps-fadeUp 0.6s ease both;
}

.aeps-hero-section .aeps-hero-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(33, 102, 255);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.aeps-hero-section .aeps-hero-badge i {
  font-size: 1.2rem;
  color: rgb(33, 102, 255);
}

.aeps-hero-section .aeps-hero-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 2.4rem;
  animation: aeps-fadeUp 0.7s ease 0.1s both;
}

.aeps-hero-section .aeps-hero-heading .aeps-accent-blue {
  color: rgb(33, 102, 255);
}

/*.aeps-hero-section .aeps-hero-heading .aeps-accent-pink {
  color: #e0286a;
}*/

.aeps-hero-section .aeps-hero-subtext {
  font-size: 1.8rem;
  font-weight: 400;
  color: #4b5563;
  line-height: 1.75;
  max-width: 52rem;
  margin-bottom: 3.6rem;
  animation: aeps-fadeUp 0.7s ease 0.2s both;
}

.aeps-hero-section .aeps-hero-subtext strong {
  color: #111827;
  font-weight: 600;
}

/* CTA Buttons */
.aeps-hero-section .aeps-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 4.4rem;
  animation: aeps-fadeUp 0.7s ease 0.3s both;
}

.aeps-hero-section .aeps-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgb(33, 102, 255);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  padding: 1.4rem 3rem;
  border-radius: 1.2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(33, 102, 255, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.aeps-hero-section .aeps-btn-primary:hover {
  background: #1a52e0;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(33, 102, 255, 0.45);
  color: #fff;
}

.aeps-hero-section .aeps-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: #fff;
  color: rgb(33, 102, 255);
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  padding: 1.4rem 3rem;
  border-radius: 1.2rem;
  border: 2px solid rgb(33, 102, 255);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.aeps-hero-section .aeps-btn-secondary:hover {
  background: rgb(33, 102, 255);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(33, 102, 255, 0.25);
}

/* Stats Row */
.aeps-hero-section .aeps-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  animation: aeps-fadeUp 0.7s ease 0.4s both;
}

.aeps-hero-section .aeps-stat-item {
  display: flex;
  flex-direction: column;
}

.aeps-hero-section .aeps-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgb(33, 102, 255);
  line-height: 1.1;
}

.aeps-hero-section .aeps-stat-label {
  font-size: 1.3rem;
  color: #6b7280;
  font-weight: 500;
  margin-top: 0.3rem;
}

.aeps-hero-section .aeps-stat-divider {
  width: 1px;
  background: #d1d5db;
  align-self: stretch;
}

/* ---- RIGHT IMAGE MOCKUP ---- */

.aeps-hero-section .aeps-hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: aeps-fadeUp 0.8s ease 0.25s both;
}

.aeps-hero-section .aeps-hero-image-glow {
  position: absolute;
  inset: -4rem;
  background: radial-gradient(ellipse at center, rgba(33, 102, 255, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.aeps-hero-section .aeps-hero-mockup-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 62rem;
  height: auto;
  border-radius: 2.4rem;
  filter: drop-shadow(0 24px 56px rgba(33, 102, 255, 0.2)) drop-shadow(0 8px 24px rgba(0,0,0,0.12));
  transition: transform 0.4s ease;
}

.aeps-hero-section .aeps-hero-mockup-img:hover {
  transform: translateY(-6px) scale(1.012);
}

/* Floating cards */
.aeps-hero-section .aeps-float-card {
  position: absolute;
  background: #fff;
  border-radius: 1.6rem;
  padding: 1.2rem 1.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  animation: aeps-float 3s ease-in-out infinite;
}

.aeps-hero-section .aeps-float-card.aeps-card-top {
  top: 5%;
  left: -2rem;
  animation-delay: 0s;
}

.aeps-hero-section .aeps-float-card.aeps-card-bottom {
  bottom: 8%;
  right: -1rem;
  animation-delay: 1.5s;
}

.aeps-hero-section .aeps-float-card .aeps-float-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(33, 102, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.aeps-hero-section .aeps-float-card .aeps-float-icon i {
  font-size: 1.8rem;
  color: rgb(33, 102, 255);
}

.aeps-hero-section .aeps-float-card .aeps-float-text strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #111827;
  display: block;
  line-height: 1.2;
}

.aeps-hero-section .aeps-float-card .aeps-float-text span {
  font-size: 1.15rem;
  color: #6b7280;
}

/* ---- TRUST BADGES ---- */
.aeps-hero-section .aeps-hero-trust {
  margin-top: 5rem;
  padding-top: 3.2rem;
  border-top: 1px solid rgba(33, 102, 255, 0.12);
  animation: aeps-fadeUp 0.7s ease 0.5s both;
}

.aeps-hero-section .aeps-trust-label {
  font-size: 1.3rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.8rem;
}

.aeps-hero-section .aeps-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.4rem;
}

.aeps-hero-section .aeps-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.8rem;
  padding: 0.8rem 1.6rem;
  transition: border-color 0.2s;
}

.aeps-hero-section .aeps-trust-badge:hover {
  border-color: rgba(33, 102, 255, 0.4);
}

.aeps-hero-section .aeps-trust-badge i {
  font-size: 1.6rem;
  color: rgb(33, 102, 255);
}

.aeps-hero-section .aeps-trust-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
}

/* ---- ANIMATIONS ---- */
@keyframes aeps-fadeUp {
  from {
    opacity: 0;
    transform: translateY(2.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aeps-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-1rem); }
}

.aeps-fea-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 60%, #eef1ff 100%);
  position: relative;
  overflow: hidden;
}

.aeps-fea-section::before {
  content: '';
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(33, 102, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.aeps-fea-section::after {
  content: '';
  position: absolute;
  bottom: -8rem;
  left: -8rem;
  width: 32rem;
  height: 32rem;
  background: radial-gradient(circle, rgba(33, 102, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== IMAGE BLOCK ===== */
.aeps-fea-section .aeps-fea-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.aeps-fea-section .aeps-fea-phone-img {
  width: 100%;
  /* max-width: 36rem; */
  border-radius: 2.4rem;
  /* box-shadow: 0 2rem 5rem rgba(33, 102, 255, 0.15), 0 0.5rem 1.5rem rgba(0,0,0,0.08); */
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aeps-fea-section .aeps-fea-phone-img:hover {
  transform: translateY(-0.8rem) scale(1.01);
  box-shadow: 0 3rem 6rem rgba(33, 102, 255, 0.2), 0 1rem 2rem rgba(0,0,0,0.1);
}

/* ===== CONTENT BLOCK ===== */
.aeps-fea-section .aeps-fea-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}

.aeps-fea-section .aeps-fea-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.15;
  margin-bottom: 1.6rem;
  letter-spacing: -0.04rem;
}

.aeps-fea-section .aeps-fea-heading .aeps-fea-accent {
  color: rgb(33, 102, 255);
  position: relative;
  display: inline-block;
}

.aeps-fea-section .aeps-fea-heading .aeps-fea-accent::after {
  content: '';
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: linear-gradient(90deg, rgb(33, 102, 255), rgba(33,102,255,0.2));
  border-radius: 999px;
}

.aeps-fea-section .aeps-fea-desc {
  font-size: 1.8rem;
  line-height: 1.75;
  color: #4a5568;
  margin-bottom: 3.2rem;
  font-weight: 400;
  max-width: 52rem;
}

.aeps-fea-section .aeps-fea-desc strong {
  color: rgb(33, 102, 255);
  font-weight: 600;
}

/* ===== FEATURE LIST ===== */
.aeps-fea-section .aeps-fea-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.aeps-fea-section .aeps-fea-item {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(33, 102, 255, 0.1);
  box-shadow: 0 0.4rem 1.6rem rgba(33,102,255,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aeps-fea-section .aeps-fea-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.4rem;
  background: linear-gradient(180deg, rgb(33, 102, 255), rgba(33,102,255,0.3));
  border-radius: 0 0.4rem 0.4rem 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aeps-fea-section .aeps-fea-item:hover {
  transform: translateX(0.4rem);
  box-shadow: 0 0.8rem 2.8rem rgba(33,102,255,0.14);
  border-color: rgba(33, 102, 255, 0.25);
}

.aeps-fea-section .aeps-fea-item:hover::before {
  opacity: 1;
}

.aeps-fea-section .aeps-fea-icon-wrap {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, rgba(33,102,255,0.1), rgba(33,102,255,0.06));
  border-radius: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(33,102,255,0.15);
  transition: all 0.3s ease;
}

.aeps-fea-section .aeps-fea-item:hover .aeps-fea-icon-wrap {
  background: linear-gradient(135deg, rgb(33, 102, 255), #5b8aff);
  border-color: transparent;
  box-shadow: 0 0.4rem 1.2rem rgba(33,102,255,0.35);
}

.aeps-fea-section .aeps-fea-icon-wrap i {
  font-size: 2rem;
  color: rgb(33, 102, 255);
  transition: color 0.3s ease;
}

.aeps-fea-icon-wrap img{
    width: 28px;
}

.aeps-fea-section .aeps-fea-item:hover .aeps-fea-icon-wrap i {
  color: #fff;
}

.aeps-fea-section .aeps-fea-item-text {}

.aeps-fea-section .aeps-fea-item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01rem;
}

.aeps-fea-section .aeps-fea-item-desc {
  font-size: 1.6rem;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}
/*END AEPS PAGE UI*/








/* Force mega menu to work */
.job-away-nav__dropdown--mega {
    position: static;
}

.job-away-nav__mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-top: 2px solid #4f46e5;
    z-index: 9999;
    flex-direction: row;
    gap: 0;
}

.job-away-nav__dropdown--mega:hover .job-away-nav__mega-menu {
    display: flex !important;
}

/* Panel visibility */
.mega-menu__panel {
    display: none !important;
}

.mega-menu__panel.active {
    display: flex !important;
}

/* Content wrapper */
.mega-menu__content {
    flex: 1;
    display: flex;
}