* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    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;
}

/* NAVBAR */
/* HEADER */

.header {
    background: linear-gradient(135deg, #f2f9ff, #b0d3f6);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.join-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    /* important for small screens */
}

.hero-area-btn {
    background: linear-gradient(135deg, #4a90e2, #2d74c4);
    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: #3081ee;
    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;
    }
}

/* 🔽 Small Mobile */
@media (max-width: 480px) {
    .join-wrapper {
        align-items: center;
        text-align: center;
    }

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

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

/* CONTAINER */


/* NAVBAR */

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

/* LOGO */

.logo img {
    height: 40px;
}

/* MENU */

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

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #3c4a5a;
}

.nav-menu a.active {
    color: #2689ec;
}

/* BUTTONS */

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

.btn {
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
}

.login {
    background: #3081ee;
}

.signup {
    background: #3081ee;
}

.demo {
    background: #ff7aa2;
}

/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    width: 280px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
}

.dropdown-menu li {
    padding: 8px 18px;
}

.dropdown-menu li a {
    display: block;
    font-size: 14px;
    color: #333;
}

.dropdown-menu li:hover {
    background: #f3f3f3;
}

/* HOVER */

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

/* DROPDOWN ICON */

.dropdown-icon {
    font-size: 12px;
    margin-left: 5px;
}

/* 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: #1a1a1a;
    margin-bottom: 20px;
}

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

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

.hero-area-curve path {
    fill: none;
    stroke: #2f80ed;
    stroke-width: 6;
    stroke-linecap: round;
}

.hero-area-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.hero-area-btn {
    display: inline-block;
    background: #2f80ed;
    color: #fff;
    padding: 10px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
}

/* RIGHT */

.hero-area-right {
    width: 50%;
    text-align: center;
}

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

/* background shape */

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

}

.hero-area-left,
.hero-area-right {
    position: relative;
    z-index: 2;
}

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

@media (max-width:1024px) {

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

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

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

}

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

@media (max-width:768px) {

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

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

    .hero-area-right {
        width: 100%;
        margin-top: 40px;
    }

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

    .hero-area-line {
        margin: auto;
        margin-bottom: 20px;
    }

    .hero-area-text {
        margin: auto;
        margin-bottom: 30px;
    }

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

}



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

@media (max-width:480px) {

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

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

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

}

/* MOBILE MENU */

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* TABLET */

@media(max-width:992px) {

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slider {
        margin: auto;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
    }

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

    .menu.active {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .nav-buttons {
        display: none;
    }

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

    @media(max-width:768px) {

        .slide {
            min-width: 100%;
        }

    }

}

/* SECTION */

.feature-sec-main {
    padding: 80px 0;
    background: #FAFAFA;
}

/* 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 h2 {
    font-size: 32px;
    font-weight: 600;
}

.feature-sec-heading span {
    color: #2f80ed;
}

.feature-sec-line {
    width: 100px;
    height: 4px;
    background: #2f80ed;
    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, #57A9FB, #0169CE);
    padding: 25px;
    padding-bottom: 10px !important;
    border-radius: 25px;
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 240px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

/* HOVER EFFECT */

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

/* ICON */

.feature-sec-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);

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

    border-radius: 50%;
    color: #fff;
    font-size: 22px;

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

/* TITLE */

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

/* 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: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
}

.icon img {
    width: 28px;
    filter: brightness(0) invert(1);
}

/* TEXT */

.feature-card h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
}

.why-hrms {
    background: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.why-hrms h2 {
    font-size: 42px;
    color: #2689ec;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-hrms p {
    max-width: 1400px;
    margin: auto;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

@media(max-width:992px) {

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

}

@media(max-width:768px) {

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

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

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

}


.workday-section {
    padding: 80px 20px;
    background: #fff;
}

.workday-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT SIDE */
.workday-visual {
    position: relative;
    width: 50%;
}


.workday-visual img {
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 1;
}

/* RIGHT SIDE */
.workday-content {
    width: 50%;
}

.workday-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #222;
    font-weight: 600;
}

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

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.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);
}

.workday-item h4 {
    margin: 0;
    font-size: 18px;
    color: #222;
    font-weight: 600;
}

.workday-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* 🔽 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 {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: clamp(40px, 8vw, 40px);
}

.main-declaration {
    font-size: 42px;
    font-weight: 800;
    color: #000;
}

.blue-accent {
    color: #4a90e2;
}

.decorative-separator {
    width: 140px;
    height: 4px;
    background: #000;
    margin: 10px auto 60px;
    border-radius: 10px;
}

.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-sphere {
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #4a90e2;
    margin-bottom: 20px;
    border: 1px solid rgba(74, 144, 226, 0.2);

    transition: all 0.4s ease;
}

.advantage-module:hover .icon-sphere {
    background: #4a90e2;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.4);
    transform: translateY(-8px);
    border-color: transparent;
}

.advantage-text {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.advantage-module:hover .advantage-text {
    color: #4a90e2;
}

@media (max-width: 768px) {
    .benefit-organizer {
        flex-direction: column;
        align-items: center;
    }
}

.client-process {
    background: #FAFAFA;
    padding: 80px 0;
    text-align: center;
}


.process-text {
    margin: auto;
    margin-bottom: 50px;
    color: #444;
    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 {
    background: #ffffff;


    border: 2px solid #3b9cfc;


    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: 10px;
}

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

.circle-badge {
    width: 85px;
    height: 85px;
    background: linear-gradient(180deg, #57A9FB, #0169CE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 35px;
}

.panel-heading {
    font-size: 22px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 18px;
    line-height: 1.4;
    text-align: start;
}

.panel-info {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
}

@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: #2689ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.arrow {
    font-size: 40px;
    color: #2689ec;
}

/* CARDS */

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

.process-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #f26c21;
}

.process-card h3 {
    color: #000000;
    margin-bottom: 10px;
}

.process-card p {
    color: #555;
    line-height: 1.6;
    font-size: 14px;
}

@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;
    }

}

.change-section {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.title {
    font-size: 42px;
    color: #2689ec;
    margin-bottom: 20px;
}

.desc {
    max-width: 100%;
    margin: auto;
    margin-bottom: 50px;
    color: #444;
    font-size: 14px;
}

.tab-content p {
    font-size: 14px;
}

/* TABS */

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

.tab {
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: #222;
    padding: 25px 30px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    width: 20%;
}

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

.tab.active {
    background: linear-gradient(135deg, rgb(254, 138, 181), rgb(247, 87, 135));
    color: white;
}

/* CONTENT BOX */

.tab-content {
    display: none;
    background: linear-gradient(180deg, #57A9FB, #0169CE);
    color: white;
    padding: 40px;
    text-align: left;
    margin-top: -10px;
}

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

.tab-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

@media (max-width:768px) {

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

    .tab {
        text-align: left;
    }

    .title {
        font-size: 30px;
    }

    .tab-content {
        padding: 30px;
    }

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

    }

    .tab {
        width: 100%;
    }

}

.industries {
    background: #ffffff;
    padding: 80px 0;
}

.container {
    width: 1200px;
    margin: auto;
}

.title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #2689ec;
    margin-bottom: 30px;
}

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

/* Anchor fix */
.industry-grid a {
    text-decoration: none;
    display: block;
}

/* Card */
.industry-card {
    background: #F3F9FF;
    border-radius: 20px;
    padding: 45px 20px;
    text-align: center;
    transition: 0.3s;
}

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

/* Icon Circle Common */
.icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
}


.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);
}

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

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

.industry-card h3 {
    font-size: 16px;
    color: #222;
    font-weight: 600;
}

.cta-banner {
    width: 100%;
    min-height: 240px;
    background-image: url('../img/bgs.jpg');
    background-color: #4a90e2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px;
}

.cta-inner {
    max-width: 900px;
    width: 100%;
}

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

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

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #4a90e2;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cta-banner {
        min-height: 280px;
    }

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

/* ---------------- 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 {
    background: #e8f2ff;
    padding-top: 60px;
    font-family: Arial;
}

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

.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;
}

.contact {
    color: #ff7aa2;
    font-weight: 600;
}

/* SOCIAL */

.social-icons a {
    width: 40px;
    height: 40px;
    background: #3271b9;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
}

/* LINKS */

.footer-links h3,
.footer-industries h3 {
    color: #3271b9;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    cursor: pointer;
}

/* INDUSTRY */

.industry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.industry-list ul {
    list-style: none;
}

.industry-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    font-size: 16px;
}

.industry-list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #ff7aa2;
}

/* BOTTOM */

.footer-bottom {
    background: #3271b9;
    text-align: center;
    padding: 18px;
    margin-top: 50px;
    color: white;
    font-size: 14px;
}

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

.timeline-hero-text {
    text-align: center;
    color: #2689ec;
    font-size: 34px;
    font-weight: 500;
    margin: 60px 0px;
}

.vertical-stem-layout {
    position: relative;
    width: 100%;
}

.vertical-stem-layout::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 100%;
    background: #3a6fb3;
    border-radius: 10px;
}

.node-branch {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 60px;
}

.branch-label {
    width: 44%;
}

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

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

.stem-joint {
    width: 18px;
    height: 18px;
    background-color: #ff7aa2;
    border: 3px solid #3a6fb3;
    border-radius: 50%;
    z-index: 10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.node-title {
    color: #3a6fb3;
    font-size: 20px;
    font-weight: 600;
}

.node-description {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 850px) {
    .vertical-stem-layout::before {
        left: 20px;
    }

    .stem-joint {
        left: 20px;
    }

    .node-branch {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .branch-label {
        width: 100%;
        text-align: left !important;
        padding: 5px 0;
    }
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width:1100px) {

    .footer-container {
        width: 95%;
    }

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

    .footer-industries {
        grid-column: 1 / -1;
    }

}

@media (max-width:768px) {

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

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

    .footer-logo {
        width: 150px;
    }

}

@media (max-width:480px) {

    .footer-bottom {
        font-size: 12px;
        padding: 15px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

}

.about-hero {
    background: #ffffff;
    padding: 20px 0;
}

/* New wrapper instead of container */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    color: #2689ec;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-text p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.hero-image {
    width: 45%;
}

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

/* Responsive */

@media(max-width:900px) {

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        width: 100%;
    }

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

}

.about-story-section {
    background: #e9edf3;
    padding: 60px 0;
}


.about-story-title {
    color: #2689ec;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-story-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
}

/* HRM SECTION */

.about-hrm-section {
    padding: 40px 0;
}

.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: #2689ec;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-hrm-text {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

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

.about-hrm-image img {
    width: 100%;
    border-radius: 10px;
}

/* ENTERPRISE FEATURES */

.about-enterprise-features {

    padding: 40px 0;
}

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

.enterprise-feature-heading {
    color: #2689ec;
    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: #444;
}

.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 #ff7aa2;
    border-radius: 10px;
    background: #fff;
    font-weight: 600;
    color: #2689ec;
}

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

.enterprise-bottom-text {
    font-size: 14px;
    color: #555;
    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;
    }

}

/* SECTION */

.qualities-section {
    background: #F1F8FF;
    padding: 60px 0;
}

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

/* HEADING */

.qualities-title {
    text-align: center;
    color: #ff7aa2;
    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: #333;
}

/* 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: #2689ec;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.qualities-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

/* IMAGE */

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

.qualities-image img {
    width: 100%;
    height: 300px;
    /* height kam kar di */
    object-fit: cover;
    border-radius: 14px;
    display: block;
}


/* 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 {
    background: #ffffff;
    padding: 80px 0;
}

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

/* heading */

.principles-title {
    color: #2689ec;
    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: #333;
    text-align: center;
}

/* grid */

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

/* card */

.principle-card {
    background: #fff;
    padding: 40px 25px;
    border: 1px solid #2f82ef;
    border-radius: 14px;
    text-align: center;
}

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

.principle-card h3 {
    color: #2689ec;
    font-size: 20px;
    margin-bottom: 07px;
    font-weight: 500;
}

.principle-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #333;
}

/* bottom text */

.principles-bottom {

    margin: auto;
    font-size: 14px;
    color: #333;
    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: url("../img/map.jpg") center center no-repeat;
    background-size: cover;
}


.elm-title {
    padding-top: 40px;
    text-align: center;
    color: #2689ec;
    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: #ff7aa2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: #fff;
}

.elm-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #222;
    font-weight: 600;
}

.elm-text p {
    font-size: 14px;
    color: #555;
    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: #ffffff;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}

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

.csw-title {
    text-align: center;
    color: #ff7aa2;
    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: #2689ec;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;

}

.csw-text p {
    font-size: 15px;
    color: #444;
    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: #333;
    position: relative;
    padding-left: 20px;
}

.csw-text ul li:before {
    content: "➜";
    position: absolute;
    left: 0;
    color: #ff7aa2;
}

/* IMAGE */

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

.csw-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 4px;
}

/* TABLET */

@media (max-width:992px) {

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

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

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

}

/* MOBILE */

@media (max-width:600px) {

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

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

}

/* main section */

.emp-track-section {
    padding: 90px 0px;
    background: url("../img/shap.png") center center no-repeat;
    background-size: contain;
}

/* heading */

.emp-track-title {
    text-align: center;
    color: #ff7aa2;
    font-size: 30px;
    margin-bottom: 60px;
    font-weight: 600;
}

/* grid */

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

/* card */

.emp-track-card {
    background: #f6fbfe;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #2689ec;
    text-align: center;
    transition: 0.3s;
}

.emp-track-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.emp-track-card h3 {
    color: #2689ec;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.emp-track-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

/* responsive */

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

@media(max-width:600px) {
    .emp-track-grid {
        grid-template-columns: 1fr;
    }
}

.hrpay-section-wrapper {
    padding: 90px 40px;
    background: url("../img/map.jpg") center center no-repeat;
    background-size: cover;
}

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

.hrpay-heading {
    color: #ff7aa2;
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

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

.hrpay-feature-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.hrpay-icon {
    color: #2689ec;
    font-size: 18px;
}

.hrpay-contact-box {
    background: transparent;
}

.hrpay-form-title {
    color: #ff7aa2;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hrpay-contact-box input {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 15px;
    border-radius: 30px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.hrpay-contact-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: #2689ec;
    color: white;
    font-size: 16px;
    cursor: pointer;
}


@media(max-width:900px) {

    .hrpay-inner {
        grid-template-columns: 1fr;
    }

}

.payroll-features-section {

    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.payroll-title {
    color: #2689ec;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 24px;
}

.payroll-description {
    max-width: 900px;
    margin: auto;
    margin-bottom: 20px;
    color: #333;
}

.payroll-subtitle {
    margin-bottom: 40px;
}

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

.payroll-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 1px solid #2f82ef;
}

.payroll-card-title {
    color: #ff7aa2;
    margin-bottom: 15px;
    font-weight: 500;

}

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

.payroll-card li {
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

/* Responsive */

@media(max-width:900px) {

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

}

@media(max-width:600px) {

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

}

.choose-payroll-section {
    padding: 60px 20px;
    font-family: Arial, sans-serif;
}

.choose-payroll-title {
    text-align: center;
    color: #ff7aa2;
    margin-bottom: 20px;
    font-weight: 600;
}

.choose-payroll-desc {
    text-align: center;
    max-width: 900px;
    margin: 10px auto;
    color: #333;
}

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

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

.choose-payroll-text h3 {
    color: #3a6fb3;
    margin-top: 20px;
    font-weight: 600;
}

.choose-payroll-text p {
    color: #444;
    margin-top: 4px;
    line-height: 1.8;
    font-size: 14px;
}

.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 {
    position: relative;
    padding: 70px 20px;
    background: #ffffff;
    overflow: hidden;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Background Shapes */

.expense-track-section::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 0;
    width: 50%;
    height: 100%;
    background: #f1fcff;
    clip-path: polygon(0 0, 80% 0, 50% 100%, 0 100%);
    z-index: 0;
}

.expense-track-section::after {
    content: "";
    position: absolute;
    right: -120px;
    top: 0;
    width: 50%;
    height: 100%;
    background: #f1fcff;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 50% 100%);
    z-index: 0;
}

.expense-track-title {
    color: #ff7aa2;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* GRID */

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

/* BOX */

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

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

.expense-track-box h3 {
    color: #2689ec;
    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 {
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

/* TABLET */

@media (max-width:992px) {

    .expense-track-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

}

/* MOBILE */

@media (max-width:600px) {

    .expense-track-grid {
        grid-template-columns: 1fr;
    }

    .expense-track-box {
        max-width: 320px;
        margin: auto;
    }

}

.payroll-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.emp-track-card li {
    text-align: start;
    font-size: 14px;
    padding-top: 10px;
    color: #555;
    line-height: 1.8;
}

.choose-payroll-text li {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.expense-track-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.choose-payroll-desc {
    font-size: 14px;
}

.choose-payroll-heading p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;

}

.choose-payroll-heading {
    text-align: center;
}

.feature-sec-heading p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}



/* section */

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

/* container */

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

/* card */

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* gradient hover */

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

/* card glow */

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

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

/* popular card */

.popular-card {
    border: 2px solid #3081ee;
    transform: scale(1.05);
}

/* badge */

.popular-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #2f6bff, #5fa6ff);
    color: white;
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

/* plan name */

.plan-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #333;
}

/* price */

.price {
    font-size: 42px;
    font-weight: 700;
    color: #3081ee;
    margin-bottom: 25px;
}

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

/* features */

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

.features li {
    margin: 12px 0;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 22px;
}

.features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #3081ee;
    font-size: 14px;
}

/* button */

.pricing-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    background: #eaf1ff;
    color: #3081ee;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: linear-gradient(90deg, #2f6bff, #5fa6ff);
    color: white;
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4);
}

.active-btn {
    background: linear-gradient(90deg, #2f6bff, #5fa6ff);
    color: white;
}

/* responsive */

@media(max-width:992px) {

    .pricing-container {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:600px) {

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .popular-card {
        transform: scale(1);
    }

}

.industry-list li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.footer-links li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

.blog-area {
    padding: 80px 0;
    background: #F3F9FF;
}

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

.blog-main-title {
    font-size: 34px;
    font-weight: 700;
}

.blog-main-title span {
    color: #2f80ed;
}

.blog-title-line {
    width: 80px;
    height: 3px;
    background: #000;
    margin: 10px auto;
}

.blog-carousel {
    overflow: hidden;
}

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

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

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

.blog-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-item-title {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}



.blog-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-read-btn {
    background: #2f80ed;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.blog-arrow {
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 4px 8px;
    color: #fff;
    text-decoration: none;
}

.blog-pagination-box {
    text-align: center;
    margin-top: 40px;
}

.blog-prev-btn,
.blog-next-btn {
    background: #2f80ed;
    border: none;
    color: #fff;
    padding: 6px 14px;
    margin: 0 10px;
    border-radius: 4px;
    cursor: pointer;
}

.blog-page-number {
    font-weight: 600;
}

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

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

}

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

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

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

}

@media (max-width: 1024px) {
    .feature-sec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .feature-sec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.blog-detail-section {
    padding: 60px 0;
    background: #f6f8fb;
}

/* Header */

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

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

.blog-back-btn a {
    text-decoration: none;
    color: #2f82ef;
    font-size: 14px;
    font-weight: 500;
}

.blog-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.blog-subtitle {
    color: #6b6b6b;
    font-size: 14px;
    line-height: 1.7;
    max-width: 700px;
    margin: auto;
}

.blog-meta-info {
    margin-top: 18px;
    font-size: 14px;
    color: #888;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

/* Featured Image */

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

.blog-image-box {
    border-radius: 16px;
    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;
}

.blog-section-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 14px;
}

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

.blog-section-list li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

@media(max-width:1024px) {

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

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

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

}

@media(max-width:768px) {

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

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

    .blog-subtitle {
        font-size: 14px;
    }

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

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

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

    .blog-section-text p,
    .blog-section-list li {
        font-size: 14px;
    }

}

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

.principle-icon {
    font-size: 40px;
    color: #ff7aa2;
    margin-bottom: 15px;
}

.principle-card {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

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

/* ROOT WRAPPER */
.cu-contact {
    background: #ffffff;

}

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

/* HEADER */
.cu-header .cu-tag {
    color: #3081ee;
    font-size: 14px;
    font-weight: 500;
}

.cu-title {
    font-size: 32px;
    margin: 10px 0;
    font-weight: 600;
}

.cu-desc {
    color: #6b7280;
    max-width: 550px;
    font-size: 14px;
}

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

/* CARD */
.cu-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 14px;


}

h2.cu-form-title {
    font-weight: 600;
    margin-bottom: 15px;
}

/* FORM */
.cu-input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    outline: none;
}

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

.cu-btn-primary {
    width: 100%;
    padding: 14px;
    background: #3081ee;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

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

.cu-contact-box h3 {
    margin-bottom: 10px;
    font-weight: 500;
}

.cu-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: #4b5563;
    align-items: center;
}

.cu-item i {
    color: #3081ee;
}

/* MAP */
.cu-map-box {
    position: relative;
}

.cu-map {
    height: 390px;
    background: #e5e7eb;
    border-radius: 12px;
    width: 100%;
}

/* OFFICE */
.cu-office {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

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

.cu-location span {
    font-size: 14px;
}

.cu-btn-light {
    padding: 10px 14px;
    background: #f1f7ff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    color: #2f82ef;
    margin-top: 7px;
}

.cu-item span {
    font-size: 14px;
}

.cu-office h4 {
    font-weight: 600;
}

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

}

.hero-area-main {
    position: relative;
    overflow: hidden;

    background: #fff;
}

/* 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(#e6f0ff 1px, transparent 1px),
        linear-gradient(90deg, #e6f0ff 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

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

.b1 {
    width: 250px;
    height: 250px;
    background: #2689EC;
    top: 10%;
    left: -120px;
}

.b2 {
    width: 250px;
    height: 250px;
    background: #FF7AA1;
    bottom: 10%;
    right: -120px;
    animation-delay: 4s;
}

/* ================= PARTICLES ================= */
.dot {
    position: absolute;
    border-radius: 50%;
    background: #2689EC;
    opacity: 0.6;
    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: 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;
}

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

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

/* DEFAULT STATE (HIDDEN) */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

/* WHEN VISIBLE */
.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* STAGGER DELAY (nice effect) */
.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 {
    position: relative;
    overflow: hidden;
}

/* WRAPPER */
.wdx-bubble-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* BUBBLE */
.wdx-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(180deg, #2689EC, #6C5CE7);
    opacity: 0.15;
    filter: blur(10px);
    animation: wdxFloat 10s infinite ease-in-out;
}

/* 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;
}

/* ANIMATION */
@keyframes wdxFloat {
    0% {
        transform: translateY(0px);
    }

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

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

/* SAFE Z-INDEX */
.workday-container {
    position: relative;
    z-index: 2;
}