/* ==========================
   GLOBAL
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family, 'Poppins', sans-serif);
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

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

/* =========================
   HERO AREA RIGHT
========================= */

.hero-area-right {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    padding: 30px;
    z-index: 2;
    overflow: hidden;
    /* important */
}

/* =========================
   BLUE CIRCLE
========================= */

.hero-area-right::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--primary-hover));
    z-index: 1;
}

/* =========================
   DOTTED CIRCLE
========================= */

.hero-area-right::after {
    content: "";
    position: absolute;
    width: 510px;
    height: 510px;
    border: 3px dashed var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

/* =========================
   IMAGE FIX
========================= */

/* =========================
   IMAGE MASK / CLIP
========================= */

.hero-area-right img {
    width: auto;
    max-width: 100% !important;
    max-height: 450px !important;
    height: auto;
    position: relative;
    z-index: 3;
    display: block;
    object-fit: contain;
    border-radius: 0 0 230px 230px;

    /* smooth bottom blend */
    -webkit-mask-image: radial-gradient(circle at center,
            rgba(0, 0, 0, 1) 72%,
            rgba(0, 0, 0, 0.85) 84%,
            transparent 100%);
    mask-image: radial-gradient(circle at center,
            rgba(0, 0, 0, 1) 72%,
            rgba(0, 0, 0, 0.85) 84%,
            transparent 100%);

    overflow: hidden;
}

/* =========================
   FLOATING CARD
========================= */

.hero-card {
    position: absolute;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 14px 18px;
    min-width: 150px;
    z-index: 4;
}

.hero-card p {
    margin: 0 0 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.hero-card h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
}

/* LEFT CARD */
.performance-card {

    left: 20px;
    bottom: 80px;
    border: 1px solid var(--border-color);
}

/* RIGHT CARD */
.leave-card {
    right: 0px;
    top: 130px;
    border: 1px solid var(--border-color);
}

/* =========================
   ICONS
========================= */

.hero-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-color);
    color: var(--button-text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    z-index: 4;
    box-shadow: var(--shadow-card);
}

.icon-check {
    top: 80px;
    left: 60px;
}

.icon-db {
    top: 47px;
    right: 66px;
}

.icon-folder {
    bottom: 65px;
    right: 120px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hero-area-right {
        min-height: 340px;
        padding: 10px;
    }

    .hero-area-right::before {
        width: 250px;
        height: 250px;
    }

    .hero-area-right::after {
        width: 300px;
        height: 300px;
    }

    .hero-area-right img {
        max-height: 240px;
        max-width: 240px;
    }

    .hero-card {
        width: 130px;
        min-width: auto;
        padding: 10px;
    }

    .hero-card h4 {
        font-size: 16px;
    }

    .performance-card {
        left: 0;
        bottom: 20px;
    }

    .leave-card {
        right: 0;
        top: 45px;
    }

    .hero-icon {
        display: none;
    }
}

/* ==========================
   HEADER / NAVBAR
========================== */
/* ==========================
   HEADER
========================== */
/* ==========================
   HEADER
========================== */

.header {
    position: sticky;
    top: 0;
    z-index: 99999;
    width: 100%;
    overflow: visible !important;

    background: color-mix(in srgb,
            var(--appbar-color) 88%,
            transparent);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* ==========================
   NAV
========================== */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    position: relative;
    gap: 20px;
}

/* ==========================
   LOGO
========================== */

.logo {
    flex-shrink: 0;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-main);
}

/* ==========================
   MENU
========================== */

.menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

/* ==========================
   NAV LINKS
========================== */

.nav-menu li a {
    position: relative;
    text-decoration: none;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

/* underline */

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);

    width: 0;
    height: 3px;
    border-radius: 50px;

    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color));

    transition: width 0.3s ease;
}

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

/* ==========================
   DROPDOWN
========================== */

.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 6px;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform .3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 115%;
    left: 0;
    width: 290px;

    background: color-mix(in srgb,
            var(--card-bg) 94%,
            transparent);

    border: 1px solid var(--border-color);
    border-radius: 16px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    list-style: none;
    padding: 10px 0;
    margin: 0;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);

    transition: all .3s ease;
    z-index: 999999;
}

/* show dropdown */

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

/* dropdown item */

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    color: var(--text-main);
    transition: .3s ease;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li:hover {
    background: var(--container-bg);
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
}

/* ==========================
   BUTTONS
========================== */

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: 11px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease;
}

/* login */

.login {
    background: color-mix(in srgb,
            var(--primary-color) 14%,
            transparent);

    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* signup */

.demo {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    color: var(--button-text-color);
}

.btn:hover {
    transform: translateY(-2px);
}

/* ==========================
   MOBILE MENU ICON
========================== */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-main);
}

/* ====================================
   MOBILE + TABLET HEADER FIX
==================================== */

@media (max-width: 991px) {

    .header {
        overflow: visible !important;
    }

    .nav {
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        position: relative;
    }

    /* LOGO FIX */

    .logo {
        flex: 0 0 auto;
        z-index: 1000;
    }

    .app-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-text {
        font-size: 16px;
        white-space: nowrap;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        flex-shrink: 0;
    }

    /* MENU TOGGLE */

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        font-size: 28px;
        cursor: pointer;

        color: var(--text-main);

        flex-shrink: 0;
        margin-left: auto;
        z-index: 100000;
    }

    /* MENU FIX */

    .menu {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        background: var(--card-bg);

        border-radius: 0 0 20px 20px;

        padding: 20px;

        box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

        display: none !important;
        flex-direction: column;

        z-index: 99999;
    }

    .menu.active {
        display: flex !important;
    }

    /* NAV MENU */

    .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 16px 0;
        font-size: 16px;
    }

    .nav-menu li a::after {
        display: none;
    }

    /* MOBILE DROPDOWN */

    .dropdown-menu {
        position: static !important;

        width: 100% !important;

        display: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;

        background: transparent !important;
        border: none !important;
        box-shadow: none !important;

        padding: 0 0 10px 15px !important;
        margin: 0 !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-menu li {
        border: none;
    }

    .dropdown-menu li a {
        padding: 10px 0 !important;
        font-size: 14px !important;
    }

    /* BUTTONS */

    .nav-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* EXTRA SMALL MOBILE */

@media (max-width: 480px) {

    .logo-text {
        font-size: 14px;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .menu {
        padding: 18px;
    }

    .nav-menu li a {
        font-size: 15px;
    }
}

.join-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-area-btn {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    white-space: nowrap;
}

.join-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.join-info p {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 768px) {

    .join-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .hero-area-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    .avatar-group img {
        width: 32px;
        height: 32px;
        margin-left: -8px;
    }

    .join-info p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .join-wrapper {
        align-items: center;
        text-align: center;
    }

    .join-info {
        flex-direction: column;
        gap: 8px;
    }

    .avatar-group {
        justify-content: center;
    }
}

/* ========================= */
/* HEADER & DROPDOWN FIX */
/* ========================= */

.header {
    position: relative !important;
    z-index: 999999 !important;
    overflow: visible !important;

    /* Seeder Theme Background */
    background: color-mix(in srgb,
            var(--appbar-color) 18%,
            transparent) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border-color);
}

/* NAV */

.header .nav,
.menu,
.nav-menu,
.dropdown {
    overflow: visible !important;
    position: relative !important;
}

/* NAV LINKS */

.nav-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    transition: .3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* ========================= */
/* DROPDOWN MENU */
/* ========================= */

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 280px !important;

    background: color-mix(in srgb,
            var(--card-bg) 92%,
            transparent) !important;

    border: 1px solid var(--border-color) !important;

    border-radius: 10px !important;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;

    padding: 10px 0 !important;
    list-style: none !important;

    z-index: 999999 !important;

    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(10px) !important;
    transition: all 0.3s ease !important;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* SHOW DROPDOWN */

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

/* DROPDOWN ITEMS */

.dropdown-menu li {
    padding: 0 !important;
}

.dropdown-menu li a {
    display: block !important;
    padding: 12px 18px !important;

    color: var(--text-main) !important;

    text-decoration: none !important;
    font-size: 14px !important;
    transition: .3s ease;
}

.dropdown-menu li:hover {
    background: var(--container-bg) !important;
}

.dropdown-menu li a:hover {
    color: var(--primary-color) !important;
}

/* ========================= */
/* ADMIN LAYOUT FIX */
/* ========================= */

.wrapper,
.content-wrapper,
.main-content,
.page-wrapper,
.content,
body,
html {
    overflow-x: hidden !important;
    overflow-y: visible !important;

    background: var(--background-color);
    color: var(--text-main);
}

/* ========================= */
/* ICON */
/* ========================= */

.dropdown-icon {
    margin-left: 5px;
    transition: .3s;
    color: var(--icon-color);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero-area-main {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

/* GRID */

.hero-area-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */

.hero-area-left {
    width: 50%;
}

.hero-area-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 20px;
}

/* CURVE */

.hero-area-curve {
    width: 300px;
    margin-bottom: 20px;
}

.hero-area-curve svg {
    width: 100%;
    height: 40px;
}

.hero-area-curve path {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 6;
    stroke-linecap: round;
}

/* TEXT */

.hero-area-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* BUTTON */

.hero-area-btn {
    display: inline-block;

    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    color: var(--button-text-color);

    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    transition: .3s ease;
}

.hero-area-btn:hover {
    transform: translateY(-2px);
}

/* RIGHT */
/* =========================
   HERO AREA
========================= */

.hero-area-main {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-area-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* =========================
   LEFT / RIGHT
========================= */

.hero-area-left,
.hero-area-right {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.hero-area-right {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* IMAGE FIX */

.hero-area-right img {
    width: 100%;
    max-width: 290px !important;
    height: auto;
    object-fit: contain;
    display: block;
}

/* BACKGROUND SHAPE */

.hero-area-main::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
}

/* =========================
   MENU TOGGLE
========================= */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-main);
}

/* =========================
   TABLET
========================= */

@media (max-width:1024px) {

    .hero-area-grid {
        gap: 35px;
    }

    .hero-area-title {
        font-size: 42px;
    }

    .hero-area-line {
        width: 220px;
    }

    .hero-area-right img {
        max-width: 380px;
    }
}

/* =========================
   MOBILE + TABLET
========================= */

@media(max-width:768px) {

    .hero-area-main {
        padding: 60px 0;
    }

    .hero-area-grid {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .hero-area-left,
    .hero-area-right {
        width: 100%;
        min-width: unset;
    }

    .hero-area-right {
        margin-top: 10px;
    }

    .hero-area-right img {
        max-width: 280px;
        width: 100%;
    }

    .hero-area-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-area-line {
        margin: 0 auto 20px;
        width: 180px;
    }

    .hero-area-text {
        margin: auto;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .hero-area-main::before {
        width: 100%;
        clip-path: none;
    }

    /* MOBILE MENU */

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--card-bg);
        display: none;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .menu.active {
        display: block;
    }

    .menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 14px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-buttons {
        display: none;
    }

    /* MOBILE DROPDOWN */

    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding-left: 12px !important;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px) {

    .hero-area-main {
        padding: 50px 0;
    }

    .hero-area-title {
        font-size: 28px;
    }

    .hero-area-right img {
        max-width: 230px;
    }

    .hero-area-btn {
        padding: 12px 26px;
    }
}

/* ========================= */
/* FEATURE SECTION */
/* ========================= */

.feature-sec-main {
    padding: 80px 0;

    /* Seeder Background */
    background: var(--background-color);
}

/* CONTAINER */

.feature-sec-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
}

/* ========================= */
/* HEADING */
/* ========================= */

.feature-sec-heading {
    text-align: center;
    margin-bottom: 50px;
}

.feature-sec-heading {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.feature-sec-heading h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.feature-sec-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    border-radius: 50px;
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
}

.feature-sec-heading span {
    color: var(--primary-color);
}

.feature-sec-heading h2 {
    font-size: 32px;
    font-weight: 600;

    /* Seeder Text */
    color: var(--text-main);
}

.feature-sec-heading span {
    color: var(--primary-color);
}

.feature-sec-line {
    width: 100px;
    height: 4px;

    background: var(--primary-color);

    margin: 12px auto;
    border-radius: 20px;
}

/* ========================= */
/* GRID */
/* ========================= */

.feature-sec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ========================= */
/* CARD */
/* ========================= */

.feature-sec-box {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    padding: 25px;
    padding-bottom: 10px !important;

    border-radius: 25px;
    position: relative;

    color: var(--button-text-color);

    overflow: hidden;
    min-height: 240px;

    box-shadow: var(--shadow-card);
    transition: 0.3s ease;

    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* HOVER EFFECT */

.feature-sec-box:hover {
    transform: translateY(-10px);
}

/* ========================= */
/* ICON */
/* ========================= */

.feature-sec-icon {
    width: 55px;
    height: 55px;

    background: rgba(255, 255, 255, 0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--button-text-color);

    font-size: 22px;

    position: absolute;
    top: 25px;
    left: 25px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ========================= */
/* TITLE */
/* ========================= */

.feature-sec-box h3 {
    font-size: 20px;
    margin-top: 65px;
    margin-bottom: 8px;
    font-weight: 500;

    color: var(--button-text-color);
}

/* ========================= */
/* TEXT */
/* ========================= */

.feature-sec-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

    .feature-sec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .feature-sec-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================= */
/* ICON */
/* ========================= */

.icon {
    width: 60px;
    height: 60px;

    background: var(--card-bg);

    border: 1px solid var(--border-color);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
    margin-bottom: 15px;
}

.icon img {
    width: 28px;

    /* Theme Friendly */
    filter: brightness(0) invert(1);
}

/* ========================= */
/* FEATURE CARD TEXT */
/* ========================= */

.feature-card h3 {
    font-size: 18px;

    color: var(--text-main);

    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;

    color: var(--text-muted);

    line-height: 1.6;
}

/* ========================= */
/* WHY HRMS */
/* ========================= */

.why-hrms {
    background: var(--card-bg);

    padding: 70px 0;
    text-align: center;
}

.why-hrms h2 {
    font-size: 42px;

    color: var(--primary-color);

    font-weight: 700;
    margin-bottom: 10px;
}

.why-hrms p {
    max-width: 1400px;
    margin: auto;

    font-size: 14px;
    line-height: 1.8;

    color: var(--text-muted);
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:992px) {

    .why-hrms h2 {
        font-size: 36px;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px) {

    .why-hrms {
        padding: 60px 0;
    }

    .why-hrms h2 {
        font-size: 28px;
    }

    .why-hrms p {
        font-size: 14px;
    }
}

/* ========================= */
/* WORKDAY SECTION */
/* ========================= */

.workday-section {
    padding: 80px 20px;

    /* Seeder Background */
    background: var(--card-bg);
}

.workday-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 60px;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

/* =========================
   WORKDAY VISUAL
========================= */

.workday-visual {
    position: relative !important;
    display: flex !important;
    justify-content: cente !important;
    align-items: flex-end !important;
    min-height: 700px;
    overflow: hidden;
    z-index: 2;
}

/* =========================
   BLUE SHAPE
========================= */

.workday-bg-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    height: 78%;

    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));

    border-radius: 260px 260px 0 0;
    z-index: 1;
}

/* =========================
   IMAGE
========================= */

.workday-visual img {
    position: relative;
    z-index: 3;

    width: auto;
    max-width: 700px;
    max-height: 720px;
    height: auto;

    object-fit: contain;
    display: block;

    /* niche slight overlap */
    transform: translateY(15px);
}

/* =========================
   GLOW EFFECT
========================= */

.workday-visual::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(120px);
    opacity: 0.12;
    z-index: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .workday-visual {
        min-height: 560px;
    }

    .workday-bg-shape {
        width: 95%;
        height: 72%;
        border-radius: 220px 220px 0 0;
    }

    .workday-visual img {
        max-width: 500px;
        max-height: 540px;
    }
}

/* =========================
   MOBILE
========================= */
/* =========================
   WORKDAY VISUAL SECTION
========================= */

.workday-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 620px;
    overflow: hidden;
    z-index: 2;
    padding: 20px;
}

/* =========================
   THEME GRADIENT SHAPE
========================= */

.workday-bg-shape {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;

    width: 82%;
    height: 72%;

    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--primary-hover) 100%);

    border-radius: 240px 240px 0 0;

    /* premium shadow */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* =========================
   IMAGE
========================= */
/* =========================
   WORKDAY IMAGE FIX
========================= */

.workday-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

/* IMAGE */
.workday-visual img {
    position: relative;
    z-index: 3;
    display: block;

    width: auto;
    max-width: 540px;
    max-height: 620px;
    height: auto;

    object-fit: contain;

    /* image proper niche se start */
    align-self: flex-end;
    transform: translateY(12px);

    /* NO ROUND */

    /* smooth bottom mask */
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 82%,
            rgba(0, 0, 0, 0.95) 92%,
            transparent 100%);

    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 1) 82%,
            rgba(0, 0, 0, 0.95) 92%,
            transparent 100%);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .workday-visual img {
        max-width: 420px;
        max-height: 500px;
        transform: translateY(10px);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .workday-visual img {
        max-width: 260px;
        max-height: 320px;
        transform: translateY(6px);
    }
}

/* ========================= */
/* RIGHT SIDE */
/* ========================= */

.workday-content {
    width: 50%;
}

.workday-content h2 {
    font-size: 32px;
    margin-bottom: 30px;

    color: var(--text-main);

    font-weight: 600;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.workday-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 45px;
    height: 45px;

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--button-text-color);

    font-size: 18px;

    flex-shrink: 0;
}

/* KEEP ORIGINAL GRADIENTS */

.icon-box.pink {
    background: linear-gradient(135deg,
            #FE8AB5,
            #F75787);
}

.icon-box.blue {
    background: linear-gradient(135deg,
            #94E1F5,
            #47C9E6);
}

.icon-box.orange {
    background: linear-gradient(135deg,
            #FCC88B,
            #F89F31);
}

/* TITLE */

.workday-item h4 {
    margin: 0;
    font-size: 18px;

    color: var(--text-main);

    font-weight: 600;
}

/* TEXT */

.workday-item p {
    margin: 5px 0 0;
    font-size: 14px;

    color: var(--text-muted);

    line-height: 1.6;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

    .workday-container {
        flex-direction: column;
        text-align: center;
    }

    .workday-visual,
    .workday-content {
        width: 100%;
    }

    .workday-item {
        justify-content: center;
        text-align: left;
    }

    .workday-bg-shape {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {

    .workday-content h2 {
        font-size: 24px;
    }

    .workday-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ========================= */
/* TRUST SHOWCASE */
/* ========================= */

.trust-showcase {
    width: 100%;
    text-align: center;

    padding: 60px 20px;

    margin-bottom: clamp(40px, 8vw, 40px);

    background: var(--background-color);
}

/* TITLE */

.main-declaration {
    font-size: 42px;
    font-weight: 800;

    color: var(--text-main);
}

/* PRIMARY TEXT */

.blue-accent {
    color: var(--primary-color);
}

/* LINE */

.decorative-separator {
    width: 140px;
    height: 4px;

    background: var(--primary-color);

    margin: 10px auto 60px;
    border-radius: 10px;
}

/* ========================= */
/* BENEFITS */
/* ========================= */

.benefit-organizer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.advantage-module {
    flex: 1;
    min-width: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;

    cursor: pointer;
}

/* ICON */

.icon-sphere {
    width: 110px;
    height: 110px;

    background: var(--card-bg);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;

    color: var(--primary-color);

    margin-bottom: 20px;

    border: 1px solid var(--border-color);

    transition: all 0.4s ease;

    box-shadow: var(--shadow-card);
}

/* HOVER */

.advantage-module:hover .icon-sphere {
    background: var(--primary-color);

    color: var(--button-text-color);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);

    transform: translateY(-8px);

    border-color: transparent;
}

/* TEXT */

.advantage-text {
    font-size: 14px;
    font-weight: 500;

    color: var(--text-main);

    line-height: 1.4;

    transition: color 0.3s ease;
}

.advantage-module:hover .advantage-text {
    color: var(--primary-color);
}

/* MOBILE */

@media (max-width: 768px) {

    .benefit-organizer {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================= */
/* CLIENT PROCESS */
/* ========================= */

.client-process {
    background: var(--background-color);

    padding: 80px 0;
    text-align: center;
}

.process-text {
    margin: auto;
    margin-bottom: 50px;
    color: var(--text-muted);
    line-height: 1.7;
}

.delivery-workflow {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* STEP PANEL */
.step-panel {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    padding: 45px 35px;
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.step-panel:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(148, 188, 247, 0.2);
}

/* ICON CIRCLE */
.circle-badge {
    width: 85px;
    height: 85px;
    background: linear-gradient(180deg,
            var(--primary-color),
            var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--button-text-color);
    font-size: 35px;
}

/* PANEL TEXT */
.panel-heading {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 18px;
    line-height: 1.4;
    text-align: start;
}

.panel-info {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .step-panel {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .flow-container {
        gap: 20px;
    }

    .step-panel {
        min-width: 100%;
        padding: 35px 25px;
    }

    .panel-heading {
        font-size: 21px;
    }
}

/* PROCESS LINE */

.process-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.circle {
    width: 90px;
    height: 90px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-card);
}

.circle img {
    width: 40px;
    filter: brightness(0) invert(1);
}

.arrow {
    font-size: 40px;
    color: var(--primary-color);
}

/* PROCESS CARDS */

.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-card);
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-card h3 {
    color: var(--text-main);
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
}

/* TABLET */
@media (max-width: 992px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .process-line {
        flex-wrap: wrap;
        gap: 15px;
    }

    .circle {
        width: 75px;
        height: 75px;
    }

    .circle img {
        width: 32px;
    }

    .arrow {
        font-size: 28px;
    }

    .process-cards {
        grid-template-columns: 1fr;
    }
}

@media(max-width:992px) {
    .process-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .process-line {
        flex-direction: column;
        gap: 15px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .process-cards {
        grid-template-columns: 1fr;
    }

    .client-process h2 {
        font-size: 30px;
        color: var(--text-main);
    }
}

/* ========================= */
/* CHANGE SECTION */
/* ========================= */

.change-section {
    background: var(--background-color);
    padding: 60px 0;
    text-align: center;
}

.title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.desc {
    max-width: 100%;
    margin: auto;
    margin-bottom: 50px;
    color: var(--text-muted);
    font-size: 14px;
}

.tab-content p {
    font-size: 14px;
    color: var(--button-text-color);
}

/* TABS */

.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.tab {
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    padding: 25px 30px;
    background: var(--card-bg);
    box-shadow: var(--shadow-card);
    width: 20%;
    transition: 0.3s ease;
}

.tab span {
    font-weight: 500;
    margin-left: 8px;
}

.tab:hover {
    transform: translateY(-3px);
}

.tab.active {
    background: linear-gradient(135deg,
            var(--secondary-color),
            var(--primary-color));
    color: var(--button-text-color);
}

/* CONTENT BOX */

.tab-content {
    display: none;
    background: linear-gradient(180deg,
            var(--primary-color),
            var(--primary-hover));
    color: var(--button-text-color);
    padding: 40px;
    text-align: left;
    margin-top: -10px;
    border-radius: var(--radius-md);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--button-text-color);
}

/* RESPONSIVE */

@media (max-width:768px) {

    .tabs {
        flex-direction: column;
        gap: 15px;
    }

    .tab {
        text-align: left;
        width: 100%;
    }

    .title {
        font-size: 30px;
    }

    .tab-content {
        padding: 30px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px;
    }
}

/* ========================= */
/* INDUSTRIES SECTION */
/* ========================= */

.industries {
    background: var(--background-color);
    padding: 80px 0;
}

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

.title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* GRID */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ANCHOR */

.industry-grid a {
    text-decoration: none;
    display: block;
}

/* CARD */

.industry-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 45px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

/* HOVER */

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ICON CIRCLE */

.icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--button-text-color);
    font-size: 36px;
}

/* ICON GRADIENTS */

.industry-grid a:nth-child(1) .icon-circle {
    background: linear-gradient(135deg, #FE8AB5, #F75787);
}

.industry-grid a:nth-child(2) .icon-circle {
    background: linear-gradient(135deg, #94E1F5, #47C9E6);
}

.industry-grid a:nth-child(3) .icon-circle {
    background: linear-gradient(135deg, #AD9CFC, #907BF9);
}

.industry-grid a:nth-child(4) .icon-circle {
    background: linear-gradient(135deg, #FCC88B, #F89F31);
}

.industry-grid a:nth-child(5) .icon-circle {
    background: linear-gradient(135deg, #D57DF6, #A906E7);
}

.industry-grid a:nth-child(6) .icon-circle {
    background: linear-gradient(135deg, #FCAD81, #FF7330);
}

.industry-grid a:nth-child(7) .icon-circle {
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.industry-grid a:nth-child(8) .icon-circle {
    background: linear-gradient(135deg, #4facfe, #00c6ff);
}

.industry-grid a:nth-child(9) .icon-circle {
    background: linear-gradient(135deg, #2F80ED, #56CCF2);
}

.industry-grid a:nth-child(10) .icon-circle {
    background: linear-gradient(135deg, #8fa3ff, #5a67d8);
}

.industry-grid a:nth-child(11) .icon-circle {
    background: linear-gradient(135deg, #2ae2ab, #0ca678);
}

.industry-grid a:nth-child(12) .icon-circle {
    background: linear-gradient(135deg, #6a85f1, #8fd3f4);
}

/* TEXT */

.industry-card h3 {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 600;
}

/* RESPONSIVE */

@media(max-width:992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 30px;
    }
}

/* ========================= */
/* CTA BANNER */
/* ========================= */

.cta-banner {
    width: 100%;
    min-height: 240px;
    background: linear-gradient(135deg,
            var(--primary-color) 0%,
            var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
    position: relative;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.cta-inner {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.cta-message {
    font-size: clamp(24px, 4vw, 36px);
    color: var(--button-text-color);
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.4;
    font-size: 32px;
}

.cta-message strong {
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
}

.cta-button:hover {
    background-color: var(--container-bg);
    color: var(--primary-hover);
    transform: translateY(-3px);
}

/* CTA RESPONSIVE */

@media (max-width: 768px) {

    .cta-banner {
        min-height: 280px;
        padding: 30px 20px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* ========================= */
/* GLOBAL RESPONSIVE */
/* ========================= */

/* Large Laptop */

@media (max-width:1200px) {
    .container {
        width: 95%;
    }
}

/* Laptop */

@media (max-width:992px) {

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .title {
        font-size: 36px;
    }
}

/* Tablet */

@media (max-width:768px) {

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .industry-card {
        padding: 30px 15px;
    }

    .icon-circle {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }
}

/* Mobile */

@media (max-width:480px) {

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .title {
        font-size: 28px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .industry-card h3 {
        font-size: 18px;
    }
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: var(--container-bg);
    padding-top: 60px;
    font-family: var(--font-family);
    border-top: 1px solid var(--border-color);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 50px;
}

/* ABOUT */

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.contact {
    color: var(--secondary-color);
    font-weight: 600;
}

/* SOCIAL */

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--button-text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* LINKS */
/* =========================
   FOOTER MAIN
========================= */

.footer {
    background: var(--container-bg);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

/* =========================
   LEFT CONTENT
========================= */

.footer-logo {
    width: 230px;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 100%;
    display: block;
}

.footer p {
    font-size: var(--font-sm);
    line-height: 1.9;
    color: var(--text-main);
}

/* Contact Us highlight */

.footer p span,
.footer p strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* =========================
   HEADINGS
========================= */

.footer-links h3,
.footer-industries h3 {
    color: var(--primary-color);
    margin-bottom: 28px;
    font-size: var(--font-md);
    font-weight: 700;
}

/* =========================
   LINKS
========================= */

.footer-links ul,
.footer-industries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-industries li {
    margin-bottom: 14px;
}

.footer-links a,
.footer-industries a {
    text-decoration: none;
    color: var(--text-main);
    font-size: var(--font-sm);
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-industries a:hover {
    color: var(--primary-color);
}

/* =========================
   INDUSTRIES SECTION
========================= */

.footer-industries ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-industries li {
    position: relative;
    padding-left: 24px;
    line-height: 1.7;
    color: var(--text-main);
}

/* Theme Arrow */

.footer-industries li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--accent-color);
    font-size: 15px;
}

/* =========================
   APP STORE IMAGE
========================= */

.footer img[src*="app"],
.footer img[src*="store"] {
    width: auto;
    margin-top: 05px;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--button-text-color);
    text-align: center;
    padding: 18px 20px;
    margin-top: 60px;
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
    color: var(--button-text-color);
    margin: 0;
    font-size: var(--font-sm);
    text-decoration: none;
}

.footer-bottom a:hover {
    opacity: 0.85;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-industries {
        grid-column: span 2;
    }
}

@media(max-width:768px) {

    .footer {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-industries ul {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Contact */
.contact {
    color: var(--secondary-color);
}

/* Industry List Arrow */
.industry-list li::before {
    color: var(--secondary-color);
}

/* Timeline */
/* ===========================
   ASSET TIMELINE SECTION
=========================== */

.asset-timeline-hub {
    background: var(--background-color);
    padding: 90px 20px;
}

.master-container {
    max-width: 1200px;
    margin: auto;
}

.timeline-hero-text {
    text-align: center;
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
}

/* MAIN TIMELINE */
.vertical-stem-layout {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

/* CENTER LINE */
.vertical-stem-layout::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
}

/* EACH ROW */
.node-branch {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    align-items: center;
    position: relative;
}

/* LEFT / RIGHT CONTENT */
.branch-label {
    width: 100%;
}

.left-wing {
    text-align: right;
    padding-right: 40px;
}

.right-wing {
    text-align: left;
    padding-left: 40px;
}

/* CENTER DOT */
.stem-joint {
    width: 22px;
    height: 22px;
    background: var(--secondary-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    margin: auto;
    z-index: 2;
    position: relative;
}

/* TITLE */
.node-title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}

/* DESCRIPTION */
.node-description {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 992px) {

    .timeline-hero-text {
        font-size: 34px;
    }

    .node-title {
        font-size: 20px;
    }

    .node-description {
        font-size: 16px;
    }

    .left-wing {
        padding-right: 25px;
    }

    .right-wing {
        padding-left: 25px;
    }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .timeline-hero-text {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .vertical-stem-layout::before {
        left: 18px;
        transform: none;
    }

    .node-branch {
        grid-template-columns: 40px 1fr;
        gap: 15px;
        align-items: flex-start;
    }

    .stem-joint {
        width: 18px;
        height: 18px;
        grid-column: 1;
        margin-top: 6px;
    }

    .branch-label {
        grid-column: 2;
        text-align: left !important;
        padding: 0 !important;
    }

    .left-wing,
    .right-wing {
        text-align: left;
    }

    .node-title {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .node-description {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* About Section */
.about-hero {
    background: var(--background-color);
}

/* HERO WRAPPER */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 20px;
}

/* LEFT TEXT */
.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    color: var(--primary-color);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    display: block;
}

/* TABLET */
@media (max-width: 992px) {

    .hero-wrapper {
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-image img {
        max-width: 420px;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* Common Text */
.footer-about p {
    color: var(--text-main);
}

/* Responsive Footer */
.footer-bottom {
    border-top: 1px solid var(--border-color);
}

.about-story-section {

    padding: 60px 0;
}

/* ABOUT STORY */

.about-story-title {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-story-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 24px;
}

/* HRM SECTION */

.about-hrm-section {
    padding: 40px 0;
    background: var(--background-color);
}

.about-hrm-container {
    width: 80%;
    margin: auto;
}

.about-hrm-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-hrm-content {
    flex: 1;
}

.about-hrm-title {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-hrm-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 15px;
}

.about-hrm-image {
    flex: 1;
}

.about-hrm-image img {
    width: 100%;
    border-radius: var(--radius-md);
}

/* ENTERPRISE FEATURES */

.about-enterprise-features {
    padding: 40px 0;
    background: var(--background-color);
}

.about-enterprise-container {
    width: 80%;
    margin: auto;
    text-align: center;
}

.enterprise-feature-heading {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 500;
}

.enterprise-feature-text {
    max-width: 100%;
    margin: auto;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-muted);
}

.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.enterprise-feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: var(--radius-md);
    background: var(--card-bg);
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow-card);
}

.enterprise-feature-box img {
    width: 40px;
}

.enterprise-bottom-text {
    font-size: 14px;
    color: var(--text-muted);
    margin: auto;
    line-height: 1.7;
}

@media (max-width: 992px) {

    .enterprise-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:576px) {

    .enterprise-features-grid {
        grid-template-columns: 1fr;
    }

}

/* Tablet */

@media (max-width:992px) {

    .about-hrm-row {
        gap: 25px;
    }

    .about-hrm-title {
        font-size: 22px;
    }

}

/* Mobile */

@media (max-width:768px) {

    .about-hrm-row {
        flex-direction: column;
    }

    .about-hrm-content {
        text-align: center;
    }

}

/* QUALITIES SECTION */

.qualities-section {
    background: var(--container-bg);
    padding: 60px 0;
}

.qualities-container {
    width: 75%;
    margin: auto;
}

/* HEADING */

.qualities-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.qualities-desc {
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 60px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-main);
}

/* ROW */

.qualities-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 70px;
}

/* TEXT */

.qualities-text {
    flex: 0 0 45%;
}

.qualities-text h3 {
    color: var(--primary-color);
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.qualities-text p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-main);
}

/* IMAGE */

.qualities-image {
    flex: 0 0 55%;
}

.qualities-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    border: 1px solid var(--border-color);
}

/* TABLET */

@media (max-width:992px) {

    .qualities-container {
        width: 85%;
    }

    .qualities-row {
        gap: 30px;
    }

}

/* MOBILE */

@media (max-width:768px) {

    .qualities-row {
        flex-direction: column;
    }

    .reverse-row {
        flex-direction: column-reverse;
    }

    .qualities-text,
    .qualities-image {
        flex: 100%;
    }

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

    .qualities-image img {
        height: 220px;
    }

}

/* PRINCIPLES SECTION */

.principles-section {
    background: var(--background-color);
    padding: 80px 0;
}

.principles-container {
    width: 80%;
    margin: auto;
    text-align: center;
}

/* heading */

.principles-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.principles-desc {
    max-width: 100%;
    margin: auto;
    margin-bottom: 50px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-main);
    text-align: center;
}

/* grid */

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

/* card */

.principle-card {
    background: var(--card-bg);
    padding: 40px 25px;
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-card);
}

.principle-card img {
    width: 65px;
    margin-bottom: 20px;
}

.principle-card h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 7px;
    font-weight: 500;
}

.principle-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-main);
}

/* bottom text */

.principles-bottom {
    margin: auto;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Tablet */

@media (max-width:992px) {

    .principles-container {
        width: 90%;
    }

    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media (max-width:576px) {

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-card {
        padding: 30px 20px;
    }

    .principles-title {
        font-size: 24px;
    }

}

/* Employee Leave Section */

.elm-leave-section {
    padding-bottom: 40px;
    background-color: var(--card-bg);
    background-size: cover;
}

.elm-title {
    padding-top: 40px;
    text-align: center;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0px;
}

.elm-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.elm-icon {
    min-width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: var(--button-text-color);
}

.elm-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-main);
    font-weight: 600;
}

.elm-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive */

@media(max-width:768px) {

    .elm-feature {
        flex-direction: column;
    }

    .elm-icon {
        margin-bottom: 10px;
    }

    .elm-title {
        font-size: 26px;
    }

}

/* MAIN SECTION */

.csw-section {
    background: var(--background-color);
    padding: 80px 20px;
    font-family: var(--font-family);
}

.csw-container {
    max-width: 1200px;
    margin: auto;
}

.csw-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 32px;
    margin-bottom: 60px;
    font-weight: 600;
}

/* ROW */

.csw-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.csw-reverse {
    flex-direction: row-reverse;
}

/* TEXT */

.csw-text {
    flex: 1;
}

.csw-text h3 {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.csw-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.csw-text ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-main);
    position: relative;
    padding-left: 20px;
}

.csw-text ul li:before {
    content: "➜";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* IMAGE */

.csw-image {
    flex: 1;
    text-align: center;
}

.csw-image img {
    width: 100%;
    max-width: 350px;
    border-radius: var(--radius-sm);
}

/* TABLET */

@media (max-width:992px) {

    .csw-row,
    .csw-reverse {
        flex-direction: column;
        text-align: center;
    }

    .csw-image img {
        max-width: 400px;
    }

}

/* MOBILE */

@media (max-width:600px) {

    .csw-title {
        font-size: 26px;
    }

    .csw-text h3 {
        font-size: 20px;
    }

}

/* EMP TRACK */

.emp-track-section {
    padding: 90px 0px;
    background-color: var(--card-bg);
    background-size: contain;
}

.emp-track-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 30px;
    margin-bottom: 60px;
    font-weight: 600;
}

.emp-track-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.emp-track-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    text-align: center;
    transition: 0.3s;
}

.emp-track-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.emp-track-card h3 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.emp-track-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* HR PAY */

.hrpay-section-wrapper {
    padding: 90px 40px;
    background-size: cover;
}

.hrpay-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

.hrpay-heading,
.hrpay-form-title {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.hrpay-feature-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
}

.hrpay-icon {
    color: var(--primary-color);
    font-size: 18px;
}

.hrpay-contact-box input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: var(--text-flid-bg-color);
    color: var(--text-main);
    font-size: 14px;
    outline: none;
}

.hrpay-contact-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: var(--primary-color);
    color: var(--button-text-color);
    font-size: 16px;
    cursor: pointer;
}

@media(max-width:900px) {
    .hrpay-inner {
        grid-template-columns: 1fr;
    }
}

/* PAYROLL */

.payroll-features-section {
    padding: 40px 20px;
    font-family: var(--font-family);
    text-align: center;
}

.payroll-title {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 24px;
}

/* =========================
   PAYROLL SECTION
========================= */

.payroll-description {
    max-width: 900px;
    margin: auto;
    margin-bottom: var(--space-md);
    color: var(--text-main);
}

.payroll-subtitle {
    margin-bottom: var(--space-lg);
}

.payroll-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.payroll-card {
    background: var(--container-bg);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    text-align: left;
    border: 1px solid var(--primary-color);
}

.payroll-card-title {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
}

.payroll-card ul {
    padding-left: 18px;
}

.payroll-card li {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: var(--font-sm);
}

.payroll-card p {
    font-size: var(--font-sm);
    color: var(--text-muted);
    line-height: 1.8;
}

/* =========================
   CHOOSE PAYROLL SECTION
========================= */

.choose-payroll-section {
    padding: 60px 20px;
}

.choose-payroll-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.choose-payroll-desc {
    text-align: center;
    max-width: 900px;
    margin: 10px auto;
    color: var(--text-muted);
    font-size: var(--font-sm);
}

.choose-payroll-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.choose-payroll-text {
    flex: 1;
    min-width: 300px;
}

.choose-payroll-text h3 {
    color: var(--secondary-color);
    margin-top: 20px;
    font-weight: 600;
}

.choose-payroll-text p,
.choose-payroll-text li {
    color: var(--text-muted);
    font-size: var(--font-sm);
    line-height: 1.8;
}

.choose-payroll-img {
    flex: 1;
    text-align: center;
    min-width: 300px;
}

.choose-payroll-img img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
}

/* =========================
   EXPENSE TRACK SECTION
========================= */

.expense-track-section {
    position: relative;
    padding: 70px 20px;
    background: var(--container-bg);
    overflow: hidden;
    text-align: center;
}

/* background shapes */
.expense-track-section::before,
.expense-track-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: var(--background-color);
    z-index: 0;
}

.expense-track-section::before {
    left: -120px;
    clip-path: polygon(0 0, 80% 0, 50% 100%, 0 100%);
}

.expense-track-section::after {
    right: -120px;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 50% 100%);
}

.expense-track-title {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.expense-track-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.expense-track-box {
    text-align: center;
    padding: 10px;
}

.expense-track-box img {
    width: 60px;
    margin-bottom: 12px;
}

.expense-track-box h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.expense-track-box ul {
    list-style: disc;
    display: inline-block;
    text-align: left;
    padding-left: 18px;
}

.expense-track-box li,
.expense-track-box p {
    font-size: var(--font-sm);
    color: var(--text-muted);
    line-height: 1.8;
}

/* =========================
   PRICING SECTION
========================= */

.pricing-section {
    padding: 90px 20px;
}

.pricing-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.pricing-card {
    background: var(--container-bg);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color), transparent 60%);
    opacity: 0;
    transition: 0.5s;
}

.pricing-card:hover::before {
    opacity: 0.15;
}

.popular-card {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--button-text-color);
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.plan-name {
    font-size: var(--font-lg);
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-main);
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.price span {
    font-size: 18px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.features li {
    margin: 12px 0;
    font-size: var(--font-sm);
    color: var(--text-muted);
    position: relative;
    padding-left: 22px;
}

.features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    background: var(--background-color);
    color: var(--primary-color);
    transition: 0.3s;
}

.pricing-btn:hover {
    background: var(--primary-color);
    color: var(--button-text-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.active-btn {
    background: var(--primary-color);
    color: var(--button-text-color);
}

/* =========================
   BLOG SECTION
========================= */

.blog-area {
    padding: 80px 0;
    background: var(--background-color);
}

.blog-title-box {
    text-align: center;
    margin-bottom: 50px;
}

.blog-main-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.blog-main-title span {
    color: var(--primary-color);
}

.blog-title-line {
    width: 80px;
    height: 3px;
    background: var(--text-main);
    margin: 10px auto;
}

/* =========================
   BLOG CAROUSEL
========================= */

.blog-carousel {
    overflow: hidden;
}

.blog-carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

.blog-item {
    flex: 0 0 calc((100% - 50px) / 3);
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.blog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-item-content {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: var(--button-text-color);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-item-title {
    font-size: var(--font-md);
    line-height: 1.6;
    font-weight: 500;
}

/* =========================
   BLOG BUTTONS
========================= */

.blog-read-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--button-text-color);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: var(--font-sm);
    transition: 0.3s ease;
}

.blog-read-btn:hover {
    background: var(--primary-hover);
}

.blog-arrow {
    border: 1px solid var(--button-text-color);
    border-radius: 50%;
    padding: 4px 8px;
    color: var(--button-text-color);
    text-decoration: none;
}

/* =========================
   PAGINATION
========================= */

.blog-pagination-box {
    text-align: center;
    margin-top: var(--space-lg);
}

.blog-prev-btn,
.blog-next-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--button-text-color);
    padding: 8px 16px;
    margin: 0 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: 0.3s ease;
}

.blog-prev-btn:hover,
.blog-next-btn:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
    transform: translateY(-2px);
}

.blog-page-number {
    font-weight: 600;
    color: var(--text-main);
}

s
/* =========================
   BLOG DETAIL PAGE
========================= */

.blog-detail-section {
    padding: 60px 0;
    background: var(--background-color);
}

.blog-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.blog-back-btn {
    margin-bottom: 20px;
}

.blog-back-btn a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: var(--font-sm);
    font-weight: 500;
}

.blog-subtitle {
    color: var(--text-muted);
    font-size: var(--font-sm);
    line-height: 1.7;
    max-width: 700px;
    margin: auto;
}

.blog-meta-info {
    margin-top: 18px;
    font-size: var(--font-sm);
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* Featured Image */

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

.blog-image-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-image-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* =========================
   BLOG CONTENT
========================= */

.blog-content-wrapper {
    margin-top: 60px;
}

.blog-content-box {
    max-width: 900px;
    margin: auto;
}

.blog-content-section {
    margin-bottom: 40px;
}

.blog-section-title h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-main);
}

.blog-section-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: var(--font-sm);
}

.blog-section-list ul {
    padding-left: 20px;
}

.blog-section-list li {
    margin-bottom: 10px;
    color: var(--text-main);
    line-height: 1.7;
    font-size: var(--font-sm);
}

/* =========================
   LINKS FIX
========================= */

.industry-list li a,
.footer-links li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: var(--font-sm);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {

    .blog-item {
        flex: 0 0 calc((100% - 25px) / 2);
    }

    .blog-main-title {
        font-size: 30px;
    }

    .blog-image-box img {
        height: 420px;
    }

    .blog-section-title h2 {
        font-size: 26px;
    }
}

@media (max-width: 768px) {

    .blog-item {
        flex: 0 0 100%;
    }

    .blog-item img {
        height: 240px;
    }

    .blog-detail-section {
        padding: 50px 0;
    }

    .blog-main-title {
        font-size: 26px;
    }

    .blog-image-box img {
        height: 260px;
    }

    .blog-content-box {
        padding: 0 20px;
    }

    .blog-section-title h2 {
        font-size: 22px;
    }
}

/* =========================
   INDUSTRY LINKS
========================= */

.industry-grid a {
    text-decoration: none;
    color: inherit;
}

/* =========================
   PRINCIPLE CARD
========================= */

.principle-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.principle-card {
    text-align: center;
    padding: 25px;
    border-radius: var(--radius-md);
    background: var(--card-bg);
    box-shadow: var(--shadow-card);
    transition: 0.3s;
}

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

/* =========================
   CONTACT SECTION
========================= */

.cu-contact {
    background: var(--container-bg);
}

.cu-container {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

/* Header */

.cu-header .cu-tag {
    color: var(--primary-color);
    font-size: var(--font-sm);
    font-weight: 500;
}

.cu-title {
    font-size: 32px;
    margin: 10px 0;
    font-weight: 600;
    color: var(--text-main);
}

.cu-desc {
    color: var(--text-muted);
    max-width: 550px;
    font-size: var(--font-sm);
}

/* Grid */

.cu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Card */

.cu-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
}

h2.cu-form-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

/* Responsive */

@media(max-width:768px) {
    .cu-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   CONTACT FORM
========================= */

.cu-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid var(--text-field-border);
    border-radius: var(--radius-md);
    outline: none;
    background: var(--text-flid-bg-color);
    color: var(--text-main);
    font-size: var(--font-sm);
}

.cu-input::placeholder {
    color: var(--text-muted);
}

.cu-input:focus {
    border-color: var(--primary-color);
}

.cu-textarea {
    height: 120px;
    resize: none;
}

.cu-btn-primary {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--button-text-color);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: 0.3s ease;
    font-size: var(--font-sm);
}

.cu-btn-primary:hover {
    background: var(--primary-hover);
}

/* =========================
   CONTACT INFO
========================= */

.cu-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cu-contact-box h3 {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-main);
}

.cu-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-muted);
    align-items: center;
}

.cu-item i {
    color: var(--primary-color);
}

.cu-item span {
    font-size: var(--font-sm);
    color: var(--text-muted);
}

/* =========================
   MAP
========================= */

.cu-map-box {
    position: relative;
}

.cu-map {
    height: 390px;
    background: var(--background-color);
    border-radius: var(--radius-lg);
    width: 100%;
    border: 1px solid var(--border-color);
}

/* =========================
   OFFICE CARD
========================= */

.cu-office {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.cu-office h4 {
    font-weight: 600;
    color: var(--text-main);
}

.cu-location {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
    align-items: center;
}

.cu-location span {
    font-size: var(--font-sm);
    color: var(--text-muted);
}

.cu-btn-light {
    display: inline-block;
    padding: 10px 14px;
    background: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    color: var(--primary-color);
    margin-top: 7px;
    transition: 0.3s ease;
}

.cu-btn-light:hover {
    background: var(--primary-color);
    color: var(--button-text-color);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .cu-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HERO AREA
========================= */

.hero-area-main {
    position: relative;
    overflow: hidden;
    background: var(--container-bg);
}

/* KEEP CONTENT ABOVE */

.hero-area-grid {
    position: relative;
    z-index: 2;
}

/* BACKGROUND WRAPPER */

.hero-bg-premium {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* =========================
   GRID LINES
========================= */

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}

/* =========================
   BLOBS
========================= */

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: blobMove 12s infinite ease-in-out;
}

.b1 {
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    top: 10%;
    left: -120px;
}

.b2 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    bottom: 10%;
    right: -120px;
    animation-delay: 4s;
}

/* =========================
   PARTICLES / DOTS
========================= */

.dot {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.5;
    animation: floatDot 6s infinite ease-in-out;
}

/* SIZE VARIATION */

.d1,
.d5 {
    width: 6px;
    height: 6px;
}

.d2,
.d6 {
    width: 8px;
    height: 8px;
}

.d3,
.d7 {
    width: 5px;
    height: 5px;
}

.d4,
.d8 {
    width: 7px;
    height: 7px;
}

/* POSITION + DELAY */

.d1 {
    left: 10%;
    top: 20%;
}

.d2 {
    left: 50%;
    top: 50%;
    animation-delay: 1s;
}

.d3 {
    left: 90%;
    top: 14%;
    animation-delay: 2s;
}

.d4 {
    left: 40%;
    top: 95%;
    animation-delay: 3s;
}

.d5 {
    left: 75%;
    top: 25%;
    animation-delay: 1.5s;
}

.d6 {
    left: 85%;
    top: 60%;
    animation-delay: 2.5s;
}

.d7 {
    left: 35%;
    top: 12%;
    animation-delay: 3.5s;
}

.d8 {
    left: 30%;
    top: 50%;
    animation-delay: 4s;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes blobMove {

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

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

@keyframes floatDot {

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

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

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
    .hero-bg-premium {
        display: none;
    }
}

/* =========================
   WORKDAY ITEM ANIMATION
========================= */

.workday-item {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.workday-item:nth-child(1) {
    animation-delay: 0.2s;
}

.workday-item:nth-child(2) {
    animation-delay: 0.4s;
}

.workday-item:nth-child(3) {
    animation-delay: 0.6s;
}

/* =========================
   FADE UP
========================= */

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

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

/* =========================
   DEFAULT ANIMATION STATE
========================= */

.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

/* WHEN VISIBLE */

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   STAGGER DELAYS
========================= */

.feature-sec-box:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-sec-box:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-sec-box:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-sec-box:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-sec-box:nth-child(5) {
    transition-delay: 0.5s;
}

.feature-sec-box:nth-child(6) {
    transition-delay: 0.6s;
}

.workday-item:nth-child(1) {
    transition-delay: 0.2s;
}

.workday-item:nth-child(2) {
    transition-delay: 0.4s;
}

.workday-item:nth-child(3) {
    transition-delay: 0.6s;
}

/* =========================
   WORKDAY SECTION
========================= */

.workday-section {
    position: relative;
    overflow: hidden;
}

/* =========================
   BUBBLE WRAPPER
========================= */

.wdx-bubble-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

/* =========================
   BUBBLE
========================= */

.wdx-bubble {
    position: absolute;
    border-radius: 50%;

    /* Seeder Based Gradient */
    background: linear-gradient(180deg,
            var(--primary-color),
            var(--secondary-color));

    opacity: 0.15;
    filter: blur(10px);
    animation: wdxFloat 10s infinite ease-in-out;
}

/* =========================
   BUBBLE VARIATIONS
========================= */

.wdx-bubble.b1 {
    width: 120px;
    height: 120px;
    left: 10%;
    top: 10%;
}

.wdx-bubble.b2 {
    width: 80px;
    height: 80px;
    left: 6%;
    top: 70%;
    animation-delay: 2s;
}

.wdx-bubble.b3 {
    width: 150px;
    height: 150px;
    left: 80%;
    top: 15%;
    animation-delay: 4s;
}

.wdx-bubble.b4 {
    width: 100px;
    height: 100px;
    left: 85%;
    top: 60%;
    animation-delay: 1s;
}

.wdx-bubble.b5 {
    width: 90px;
    height: 90px;
    left: 46%;
    top: 25%;
    animation-delay: 3s;
}

/* =========================
   FLOAT ANIMATION
========================= */

@keyframes wdxFloat {
    0% {
        transform: translateY(0px);
    }

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

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

/* =========================
   SAFE CONTENT LAYER
========================= */

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