@import url("https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; */
    font-family: "Archivo", sans-serif !important;
    overflow-x: hidden !important;
    /* font-size: 14px; */
    color: #6B7280;
    line-height: 1.5;
    background-color: #FFF;
    overflow-y: auto;

}

h2 {
    font-size: 42px !important;
}

/* .container {
    padding: 0 10px;
} */

/* Circle Cursor */
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear;
    z-index: 9999;
}

.hide-cursor {
    opacity: 0 !important;
    transform: scale(0.5);
}

/*==============================
         Navbar Styles
========================*/

.navbar {
    padding: 0 !important;
    background: #fff;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Brand */
.navbar-brand {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: auto;
    object-fit: contain;
}

/* Nav Links */
.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #0A6FE8 !important;
}

/* Button */
.btn-demo {
    background: #fff;
    color: #0A6FE8;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    border: 2px solid #0A6FE8;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: #0A6FE8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 194, 247, 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 10px;
    padding: 0.7rem 0;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    font-weight: 500;
}

.dropdown-item:hover {
    background: #0A6FE8;
    color: #fff;
}

/* ======================================
   Mega Menu (Desktop)
====================================== */

.megamenu .dropdown-menu {
    width: 750px;
    padding: 20px 30px;
    border-radius: 15px;
    border: none;
    left: 340% !important;
    transform: translateX(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mega Menu Items */
.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    cursor: pointer;
}

.menu-item h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #222;
}

.menu-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #777;
}

.menu-item:hover h6 {
    color: #0A6FE8;
}

.dropdown-menu a {
    text-decoration: none;
}

/* Icons */
.menu-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

/* Icon Colors */
.menu-icon.blue {
    background: #6EC1E4;
}

.menu-icon.green {
    background: #92D36E;
}

.menu-icon.purple {
    background: #B49EE5;
}

.menu-icon.sky {
    background: #7CD4F0;
}

.menu-icon.pink {
    background: #F79CC4;
}

.menu-icon.yellow {
    background: #FBD45A;
}

.menu-icon.orange {
    background: #F6A46A;
}

.menu-icon.cyan {
    background: #5CC9D6;
}

.menu-icon.shield {
    background: #66C0E7;
}

/* ======================================
   Desktop Hover Dropdown
====================================== */

@media (min-width: 992px) {

    .navbar-nav {
        align-items: center;
    }

    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .navbar .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(10px);
        transition: all 0.2s ease-in-out;
        margin-top: 0;
        left: 60px;
    }
}

/* ======================================
   Tablet & Mobile
====================================== */

@media (max-width: 991px) {

    .navbar-collapse {
        padding: 1rem 0;
    }

    .navbar-nav {
        align-items: flex-start !important;
        padding: 0 10px;
    }

    .nav-link {
        margin: 0.4rem 0;
    }

    /* Dropdowns become stacked */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .megamenu .dropdown-menu {
        width: 100% !important;
        padding: 1rem;
        border-radius: 12px;
    }

    .menu-item {
        padding: 10px 0;
    }

    .menu-item h6 {
        font-size: 16px;
    }

    .menu-item p {
        font-size: 14px;
    }

    .btn-demo {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* ======================================
   Small Mobile
====================================== */

@media (max-width: 576px) {

    .megamenu .dropdown-menu {
        padding: 15px;
    }

    .menu-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .menu-item {
        gap: 10px;
    }
}

/* =================
   Footer
========================== */

.site-footer {
    background: linear-gradient(135deg, #e3efff 0%, #f9fcff 100%);
    padding: 30px 20px 0;
    width: 100%;
    overflow-x: hidden;
}

/* =================
   Main Grid
========================== */

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

/* =================
   Brand Column
========================== */

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #2f3a4a;
    margin-bottom: 20px;
}

/* =================
   Social Icons
========================== */

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

.social-icons a {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f3a4a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #0A6FE8;
    color: #fff;
}

/* =================
   Footer Columns
========================== */

.footer-col {
    align-self: flex-start;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a2e;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #2f3a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #0A6FE8;
}

/* =================
   Bottom Bar
========================== */

.footer-bottom {
    margin-top: 50px;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    display: flex;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 2;
}


.footer-bottom>* {
    max-width: 1200px;
}

.footer-bottom p {
    font-size: 14px;
    color: #1a1a2e;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    text-decoration: underline;
}

/* =================
   Tablet View
========================== */

@media (max-width: 992px) {

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

    .footer-col:not(.brand-col) {
        margin-top: 10px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* =================
   Mobile View
========================== */

@media (max-width: 576px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

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

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* ==========================
   Mobile: 2 ULs in one row
========================== */

@media (max-width: 576px) {

    .footer-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        text-align: left;
    }

    .footer-col.brand-col {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

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

    .footer-col ul {
        padding-left: 0;
    }

    .footer-col h4 {
        font-size: 15px;
    }
}



@media (max-width: 576px) {

    .site-footer {
        overflow: visible;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-top: 30px;
    }

    .footer-bottom p {
        display: block;
        width: 100%;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
}



/* ===========================
        Hero Section
   ========================= */
.hero-section {
    background: linear-gradient(135deg, #eaf3ff 0%, #ffffff 100%);
    padding: 4rem 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #002654;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 90%;
}

/* CTA Button */
.cta-button {
    background: #f28903;
    color: #fff;
    padding: 10px 10px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(119, 186, 237, 0.3);
    cursor: pointer;
}



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

.cta-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.cta-modal-content {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    animation: fadeScale 0.3s ease;
}

.cta-modal-content h3 {
    color: #002654;
    margin-bottom: 10px;
}

.cta-modal-subtext {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Close Button */
.cta-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: none;
    font-size: 26px;
    cursor: pointer;
    color: #555;
}

.cta-modal-close:hover {
    color: #002654;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-form {
    text-align: left;
}

.form-section {
    margin-bottom: 22px;
}

.form-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #002654;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 4px;
}

.form-control {
    height: 44px;
    border-radius: 10px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.form-note {
    margin-top: 12px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}


.dashboard-preview {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    position: relative;
    max-width: 100%;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.mockup-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Tablet (≤ 991px) */

@media (max-width: 991px) {

    .hero-title {
        font-size: 2.5rem;
    }

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

    .dashboard-mockup,
    .dashboard-mockup:hover {
        transform: none;
        margin-top: 3rem;
    }
}

/* Small Tablet (≤ 768px) */

@media (max-width: 768px) {

    .hero-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

/* Mobile (≤ 576px) */

@media (max-width: 576px) {

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-content {
        text-align: center;
    }

    .cta-button {
        justify-content: center;
    }
}



/* ================================
   Staffioo Features Section
================================ */

.staffioo-feature-section {
    background: #ffffff;
    width: 100%;
    overflow: hidden;
}

/* Titles */

.staffioo-section-title {
    font-size: 32px;
    font-weight: 800;
    color: #0A2E5C;
}

.staffioo-section-subtitle {
    color: #666;
    max-width: 700px;
    margin: auto;
    font-size: 15px;
}

/* Feature Boxes */

.staffioo-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: #0A6FE8;
}

/* .staffioo-feature-section p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 14px;
    margin-inline-end: 14px;
    unicode-bidi: isolate;
} */

.staffioo-icon-circle i {
    font-size: 22px;
}

.staffioo-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #0A2E5C;
    margin-bottom: 5px;
}

.staffioo-feature-text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Center Image */

.staffioo-feature-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.staffioo-main-img {
    width: 100%;
    max-width: 580px;
    height: auto;
}

/* Responsive Fixes */

@media (max-width: 992px) {
    .staffioo-feature-box {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .staffioo-section-title {
        font-size: 26px;
    }

    .staffioo-section-subtitle {
        font-size: 14px;
    }

    .staffioo-feature-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .staffioo-section-title {
        font-size: 24px;
    }

    .staffioo-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .staffioo-feature-title {
        font-size: 18px;
    }
}

/* Animations */

.staffioo-animate-left,
.staffioo-animate-right,
.staffioo-animate-bottom {
    opacity: 0;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
}

.staffioo-animate-left {
    animation-name: staffioo-slide-left;
}

.staffioo-animate-right {
    animation-name: staffioo-slide-right;
}

.staffioo-animate-bottom {
    animation-name: staffioo-slide-bottom;
}

/* Keyframes */

@keyframes staffioo-slide-left {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

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

@keyframes staffioo-slide-right {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

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

@keyframes staffioo-slide-bottom {
    from {
        opacity: 0;
        transform: translateY(200px);
    }

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

/* ================================
   Core Features Section
================================ */

.core-features-section {
    position: relative;
    padding: 40px 0;
    color: #fff;
    width: 100%;
    overflow: hidden;
}

/* Top Gradient + Map */
.core-features-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 70%;
    background:
        url('/frontend/imgs/map.png') center/cover no-repeat,
        linear-gradient(135deg, #0254ab 0%, #FFFFFF 100%);
    z-index: -1;
}

/* Bottom White Area */
.core-features-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 30%;
    background: #ffffff;
    z-index: -1;
}

.core-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
}

.core-subtitle {
    max-width: 750px;
    margin: 0 auto 30px;
    color: #fff;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.7;
}

/* Feature Tabs */

.feature-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.tab-item {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 25px;
    padding: 10px 22px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-item.active {
    background: #fff;
    color: #ff6f43;
    box-shadow: none;
}

.tab-item:hover {
    background: #fff;
    color: #ff6f43;
    box-shadow: 0 4px 12px rgba(242, 137, 3, 0.6);
}

/* Dashboard Image */

.dashboard-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.dashboard-img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Fade animation */
.fade-animate {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.fade-hide {
    opacity: 0;
}

.fade-show {
    opacity: 1;
}

/* Tablet (≤ 992px) */

@media (max-width: 992px) {

    .core-title {
        font-size: 28px;
    }

    .core-subtitle {
        font-size: 15px;
    }

    .dashboard-img {
        max-width: 900px;
    }
}

/* Small Tablet (≤ 768px) */

@media (max-width: 768px) {

    .feature-tabs {
        gap: 8px;
        margin-bottom: 30px;
    }

    .tab-item {
        padding: 8px 16px;
        font-size: 13px;
    }

    .dashboard-img {
        max-width: 100%;
    }
}

/* Mobile (≤ 576px) */

@media (max-width: 576px) {

    .core-features-section {
        padding: 30px 0;
    }

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

    .core-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .feature-tabs {
        gap: 6px;
    }

    .tab-item {
        padding: 7px 14px;
        font-size: 12.5px;
    }

    .dashboard-img {
        border-radius: 12px;
    }
}

/* ====================
  Card Section
======================*/
.features-section {
    background: #fff;
}

.section-title {
    font-weight: 800;
    font-size: 34px;
    color: #111;
}

.features-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.features-card h5 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.features-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.learn-more {
    font-weight: 600;
    color: #0A6FE8;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

.learn-more:hover {
    text-decoration: underline;
}

.features-section .row {
    display: flex;
    flex-wrap: wrap;
}

.features-section .row>div {
    display: flex;
}

.features-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Icons */
.icon {
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}

/* Colors */
.icon.blue {
    background: #9DD5FF;
}

.icon.green {
    background: #9EE8A0;
}

.icon.pink {
    background: #f7b2c6;
}

.icon.yellow {
    background: #FFDF7E;
}

.icon.orange {
    background: #FFC48C;
}

.icon.purple {
    background: #C3B5FF;
}

.icon.cyan {
    background: #89E0F5;
}

.icon.sky {
    background: #87C8FF;
}

@media (max-width: 576px) {
    .features-section .row>div {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* =================
   Testimonial Section
=================== */

.testimonial-section {
    width: 100%;
    overflow: hidden;
}

/* =================
   Left Content
=================== */

.testimonial-left h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 1.3;
    color: #101010;
}

.testimonial-left .highlight {
    color: #F0624D;
    font-weight: 700;
}

/* Smile Icon */
.smile-icon span {
    font-size: 55px;
    display: inline-block;
    margin-bottom: 10px;
}

/* =================
   Navigation Buttons
=================== */

.testimonial-nav .nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    margin-right: 10px;
    font-size: 18px;
    color: #333;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.testimonial-nav .next {
    background: #0A6E63;
    color: #fff;
}

.testimonial-nav .nav-btn:hover {
    transform: translateY(-3px);
}

/* =================
   Slider
=================== */

.testimonial-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
    /* 🔥 IMPORTANT */
}

/* Hide scrollbar */
.testimonial-slider::-webkit-scrollbar {
    height: 0;
}


/* =================
   Testimonial Card
=================== */

.testimonial-card {
    width: 320px;
    flex: 0 0 320px;
    height: 100%;
    min-height: 310px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(179, 179, 179, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    color: #000000;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 70px;
    color: #6cabdc;
    opacity: 0.5;
    transform: scaleX(-1);
}

/* Company Logo */
.company-logo {
    width: 80px;
    max-width: 100%;
    margin-bottom: 20px;
}

/* Text */
.testimonial-text {
    color: #000;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 25px;
    flex-grow: 1;
}

/* Profile */
.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-profile h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.testimonial-profile span {
    font-size: 13px;
    color: #5a788f;
}

/* Stars */
.stars {
    margin-top: 15px;
    color: #f4c542;
    font-size: 18px;
}

/* Tablet (≤ 992px)*/

@media (max-width: 992px) {

    .testimonial-left {
        text-align: center;
        margin-bottom: 30px;
    }

    .testimonial-nav {
        justify-content: center;
        display: flex;
    }

    .testimonial-slider {
        padding-left: 5px;
    }
}

/* Small Tablet (≤ 768px)*/

@media (max-width: 768px) {

    .testimonial-left h2 {
        font-size: 28px;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 25px;
    }
}

/* Mobile (≤ 576px)*/

@media (max-width: 576px) {

    .testimonial-left h2 {
        font-size: 24px;
    }

    .smile-icon span {
        font-size: 45px;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 22px;
    }

    .company-logo {
        width: 70px;
    }
}


/* ==============
   HR Mobile App Section
============== */

.hr-app-section {
    padding: 25px 0;
    background: #f9fcff;
    width: 100%;
    overflow: hidden;
}

/* .hr-app-section .row {
    --bs-gutter-y: 4.5rem;
    --bs-gutter-x: 3rem;
} */

/* Heading */
.section-heading {
    font-size: 34px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 10px;
}

.section-heading span {
    font-weight: 800;
}

/* Mobile mockup */
.app-mockup {
    max-width: 260px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}



/* Icon wrapper */
.feature-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

/* Icon colors */
.bg-blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.bg-green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.bg-purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.bg-orange {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.bg-sky {
    background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.bg-red {
    background: linear-gradient(135deg, #dc2626, #f87171);
}

/* Mobile optimization */
@media (max-width: 576px) {
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

.feature-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

/* Heading with icon */
.feature-item h5 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    color: #111;
}

/* Paragraph aligns with heading text (not icon) */
.feature-item p {
    padding-left: 46px;
    color: #999999;
}

/* Tablet (≤ 991px)*/

@media (max-width: 991px) {

    .section-heading {
        font-size: 28px;
        text-align: center;
    }

    .app-mockup {
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }

    /* .hr-app-section .row {
        --bs-gutter-y: 3rem;
        --bs-gutter-x: 2rem;
    } */
}

/* Small Tablet (≤ 768px) */

@media (max-width: 768px) {

    .feature-item h5 {
        font-size: 17px;
    }

    .feature-item p {
        font-size: 16px;
    }
}

/* Mobile (≤ 576px)*/

@media (max-width: 576px) {

    .hr-app-section {
        padding: 60px 0;
    }

    .section-heading {
        font-size: 24px;
    }

    .app-mockup {
        max-width: 240px;
        margin-bottom: 20px;
    }

    .feature-item h5 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .hr-app-section .row {
        --bs-gutter-y: 10px;
        --bs-gutter-x: 10px;
    }
}

/* Image fade animation */
.app-mockup {
    transition: opacity 0.6s ease-in-out;
}

@media (max-width: 576px) {
    .feature-item p {
        padding-left: 42px;
    }
}

.app-mockup.fade-out {
    opacity: 0;
}

/* =============
Pricing Page
================ */

.awesome-section {
    padding: 0 20px;
    background: #fff;
}

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

/* Illustration */
.awesome-illustration img {
    max-width: 320px;
    width: 100%;
    margin-top: 15px;
    border-radius: 16px;
}

/* Content */
.awesome-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.awesome-points li {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
    position: relative;
    padding-left: 22px;
}

.awesome-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #777;
    font-size: 22px;
    line-height: 1;
}

/* Tablet */
@media (max-width: 992px) {
    .awesome-container {
        gap: 40px;
    }

    .awesome-content h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .awesome-container {
        flex-direction: column;
        text-align: center;
    }

    .awesome-points li {
        padding-left: 0;
    }

    .awesome-points li::before {
        display: none;
    }

    .awesome-content h2 {
        font-size: 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .awesome-content h2 {
        font-size: 24px;
    }

    .awesome-points li {
        font-size: 16px;
    }
}



.pricing-section {
    padding: 60px 20px;
    background: url("https://pngimage.net/wp-content/uploads/2018/06/flat-design-background-png-3.png") center/cover no-repeat;
}

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

/* CARD */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    padding-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* POPULAR */
.popular {
    position: absolute;
    top: 0;
    right: 10%;
    background: #eb3b5a;
    color: #fff;
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 0 0 20px 20px;
}

/* HEADER */
.pricing-header {
    height: 150px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.plan-title {
    position: relative;
    top: 30px;
    font-size: 22px;
    font-weight: 600;
    color: white;
}

/* PRICE CIRCLE */
.price-circle {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 70px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.price-title small {
    font-size: 16px;
}

.info {
    font-size: 12px;
    /* color: gray; */
    font-weight: bold;
}

/* BADGE */
.badge-box {
    margin-top: 80px;
}

.badge-box span {
    display: inline-block;
    border: 1px solid currentColor;
    padding: 4px 14px;
    border-radius: 20px;
}

/* LIST */
.pricing-card ul {
    padding: 20px;
    margin: 15px 0;
}

.pricing-card ul li {
    list-style: none;
    padding: 14px;
    border-bottom: 1px solid #f2f2f2;
}

.pricing-card ul li strong {
    color: #000;
    font-weight: 600;
}

/* BUTTON */
.buy-button-box {
    margin-top: 25px;
}

.buy-now {
    text-decoration: none;
    padding: 10px 32px;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(to left, #a55eea, #45aaf2);
    display: inline-block;
}

/* THEMES */
.basic .pricing-header {
    background: #4b7bec;
}

.echo .pricing-header {
    background: #f7b731;
}

.pro .pricing-header {
    background: #26de81;
}

.business .pricing-header {
    background: #a55eea;
}

.basic .price-circle {
    border: 10px solid #4b7bec;
}

.echo .price-circle {
    border: 10px solid #f7b731;
}

.pro .price-circle {
    border: 10px solid #26de81;
}

.business .price-circle {
    border: 10px solid #a55eea;
}

.pricing-card:hover .price-circle {
    border-width: 5px;
}



.compare-section {
    padding: 0 20px;
    background: #fff;
}

.compare-header {
    text-align: center;
    margin-bottom: 30px;
}

.compare-btn {
    background: #0A6FE8;
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 10px 40px;
    font-weight: 600;
    border-radius: 6px;
}

/* Wrapper for responsiveness */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid #0A6FE8;
    border-radius: 8px;
}

/* Table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.compare-table th {
    background: #0A6FE8;
    color: #fff;
    font-size: 14px;
    padding: 14px;
    text-align: left;
}

.compare-table td {
    padding: 12px 14px;
    width: 200px !important;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.compare-table tr:nth-child(even) {
    background: #fafafa;
}

/* Yes / No */
.yes {
    color: #22c55e;
    font-weight: bold;
}

.no {
    color: #ef4444;
    font-weight: bold;
}

/* Sticky first column (Desktop) */
@media (min-width: 992px) {

    .compare-table th:first-child,
    .compare-table td:first-child {
        position: sticky;
        left: 0;
        background: #fff;
        font-weight: 600;
        z-index: 1;
    }

    .compare-table th:first-child {
        background: #0A6FE8;
        color: #fff;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .compare-section {
        padding: 60px 10px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .compare-btn {
        width: 100%;
    }
}



.faq-section {
    padding: 30px 30px;
    background: #fff;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 500;
    color: #111;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Arrow */
.faq-icon {
    font-size: 26px;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-bottom: 20px;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

/* Tablet */
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .faq-title {
        font-size: 24px;
    }
}



/* ======================================
                    Contact Us
======================================= */

.cu-hero-wrapper {
    background: linear-gradient(135deg, #eaf3ff 0%, #ffffff 100%);
    padding: 50px 0;
    overflow: hidden;
}

.cu-hero-wrapper a {
    text-decoration: none;
}


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

/* Left Content */
.cu-hero-content {
    max-width: 520px;
}

.cu-hero-subtitle {
    color: #f15a29;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cu-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 15px;
}

.cu-hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button */
.cu-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #014737;
    color: #ffffff;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cu-hero-btn-icon {
    background-color: #ffffff;
    color: #014737;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cu-hero-btn:hover {
    background-color: #022e25;
}

/* Right Image */
.cu-hero-image-wrapper {
    position: relative;
    max-width: 560px;
    /* clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%); */
}

.cu-hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .cu-hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .cu-hero-image-wrapper {
        clip-path: none;
    }

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



/* ===============================
   Contact Section Layout
================================ */


.cu-contact-section {
    padding: 40px 0;
    background: #ffffff;
}

.cu-form-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* Form */
.cu-quote-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.cu-quote-form input,
.cu-quote-form select {
    width: 100%;
    padding: 14px;
    border: 1px solid #aaa;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
}

.cu-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.cu-submit-btn {
    width: 100%;
    padding: 16px;
    background: #f28903;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 6px;
}

/* Right Info */
.cu-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding-left: 40px;
}

.cu-info-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cu-info-item a {
    font-size: 16px;
    margin-bottom: 6px;
    color: #333;
    text-decoration: none;
}

.cu-social-icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 991px) {
    .cu-info-grid {
        padding-left: 0;
        margin-top: 50px;
        grid-template-columns: 1fr;
    }

    .cu-form-title {
        font-size: 32px;
    }
}




/* ==================
About
========================*/
/* ===============================
   HRM Stats Section
================================ */

.hrm-stats-section {
    /* padding: 120px 0; */
    background: #ffffff;
    position: relative;
}

.stats-wrapper {
    position: relative;
}

/* IMAGE */
.stats-image-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stats-center-img {
    max-width: 420px;
    width: 100%;
}

/* STAT ROWS */
.stats-row {
    position: relative;
    z-index: 2;
}

/* Overlap effect */
.top-stats {
    margin-bottom: -90px;
}

.bottom-stats {
    margin-top: -90px;
}

/* CARD */
.hrm-stat-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hrm-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ICON */
.stat-icon {
    font-size: 36px;
    color: #0A6FE8;
    margin-bottom: 15px;
}

/* TEXT */
.hrm-stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
}

.hrm-stat-label {
    font-size: 16px;
    color: #333;
}

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

    .top-stats,
    .bottom-stats {
        margin: 0;
    }

    .stats-center-img {
        margin: 40px 0;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hrm-stat-number {
        font-size: 42px;
    }
}

/* ===============================
   Why Choose Staffioo HRMS
================================ */

.why-zfour-section {
    padding: 80px 0;
    background-color: #f1f1f1;
    width: 100%;
    overflow: hidden;
}

/* Title */
.why-zfour-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111;
}

/* Card */
.why-zfour-section .card {
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Image */
.why-zfour-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-zfour-image img {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

/* Content */
.why-zfour-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
}

.why-zfour-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* ===============================
   Tablet (≤ 991px)
================================ */

@media (max-width: 991px) {

    .why-zfour-title {
        font-size: 32px;
    }

    .why-zfour-section .card>div {
        flex-direction: column;
        text-align: center;
    }

    .why-zfour-image {
        margin-bottom: 15px;
    }
}

/* ===============================
   Mobile (≤ 576px)
================================ */

@media (max-width: 576px) {

    .why-zfour-section {
        padding: 50px 0;
    }

    .why-zfour-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .why-zfour-section h3 {
        font-size: 22px;
    }

    .why-zfour-section p {
        font-size: 15px;
    }

    .why-zfour-image img {
        width: 70px;
        height: 70px;
    }
}


/* ===============================
   Our Journey Section
================================ */

.hrm-journey-section {
    padding: 45px 0;
    background-color: #ffffff;
}

.hrm-journey-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Grid */
.hrm-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
}


/* Cards */
.hrm-journey-card {
    width: 300px;
    min-height: 420px;
    border-radius: 16px;
    padding: 30px;
    font-size: 16px;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}


/* Dark Card */
.hrm-journey-card--dark {
    background-color: #005b9a;
    color: #ffffff;
}

/* Light Card */
.hrm-journey-card--light {
    background-color: #dff5ff;
    color: #000000;
}

/* Image Card */
.hrm-journey-card--image {
    padding: 0;
    overflow: hidden;
    display: flex;
}

.hrm-journey-card--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}


/* Quote */
.hrm-journey-quote {
    background-color: #f5f5f5;
    padding: 35px 40px;
    border-radius: 14px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hrm-journey-quote p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
}

/* ===============================
   Responsive
================================ */

@media (max-width: 991px) {
    .hrm-journey-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hrm-journey-card {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hrm-journey-title {
        font-size: 28px;
    }

    .hrm-journey-card {
        font-size: 15px;
        padding: 24px;
    }

    .hrm-journey-quote p {
        font-size: 16px;
    }
}





/* Wrapper */
.policy-wrapper {
    padding: 60px 20px;
}

/* Container */
.policy-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header */
.policy-header {
    text-align: center;
    margin-bottom: 30px;
}

.policy-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1f2d3d;
}

.updated-date {
    font-size: 14px;
    color: #6c757d;
    margin-top: 5px;
}

/* Content */
.policy-content p {
    margin-bottom: 15px;
    color: #555;
}

.policy-content h2 {
    font-size: 20px;
    margin: 25px 0 10px;
    color: #1f2d3d;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-content ul li {
    margin-bottom: 8px;
    color: #555;
}

/* Links */
.policy-content a {
    color: #0d6efd;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Contact Box */
.contact-box {
    background: #f1f5ff;
    padding: 15px 20px;
    border-left: 4px solid #0d6efd;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-container {
        padding: 25px;
    }

    .policy-header h1 {
        font-size: 26px;
    }
}







/* ==============================
          Client Page Section
          ========================= */
.clients-section {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
}

.clients-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.clients-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

/* GRID */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

/* Logo Card */
.client-logo {
    background: #e6e6e3;
    padding: 28px;
    height: 120px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Hover */
.client-logo:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Logo Image */
.client-logo img {
    max-width: 160px;
    max-height: 100px;
    object-fit: contain;
    filter: none;
    /* opacity: 1; */
}

.client-logo:hover img {
    /* filter: grayscale(0); */
    opacity: 1;
}


/* MOBILE */
@media (max-width: 576px) {
    .clients-title {
        font-size: 26px;
    }
}







.payroll-step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.payroll-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}





.section-label {
    font-size: 13px;
    font-weight: 600;
    color: #ff5a5f;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0a2540;
    margin: 12px 0 30px;
}

.payroll-feature-list .list-group-item {
    border: none;
    padding: 16px 18px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.payroll-feature-list h6 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e293b;
}

.payroll-feature-list p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.payroll-feature-list .list-group-item.active {
    background: linear-gradient(-90deg,
            #ffffff 0%,
            #f8fafc 20%);
    border-left: 3px solid #2563eb;
}

.payroll-feature-list .list-group-item.active h6 {
    color: #2563eb;
}



/* Right image container */
.payroll-image-wrapper {
    width: 100%;
    max-width: 840px !important;
    /* ⬆️ bigger on desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* Image styling */
.feature-img {
    /* width: 100% !important; */
    height: auto !important;
    max-height: 660px !important;
    object-fit: contain;
    border-radius: 18px;
}

/* Image frame */
.payroll-preview-box {
    /* background: #f8fafc; */
    padding: 36px;
    /* ⬆️ more breathing space */
    border-radius: 28px;
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08); */
    /* subtle premium shadow */
}

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

@media (max-width: 992px) {
    .section-title {
        font-size: 30px;
    }

    .payroll-image-wrapper {
        max-width: 520px;
        /* balanced tablet size */
    }

    .feature-img {
        max-height: 620px;
    }

    .payroll-preview-box {
        padding: 28px;
        border-radius: 24px;
    }
}

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

    .payroll-ecosystem-section .row {
        flex-direction: column;
    }

    .payroll-image-wrapper {
        max-width: 100%;
        margin-top: 36px;
    }

    .payroll-preview-box {
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    }

    .feature-img {
        max-height: 460px;
    }

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

    .payroll-feature-list .list-group-item {
        padding: 14px 12px;
    }
}


/* .payroll-preview-box .img-fluid{
    max-width: 100%;
    height: auto;
    max-height: 800px;
} */



.integration-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    color: #ffffff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.why-card {
    padding: 32px 28px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #2563eb;
}

/* Gradients */
.gradient-green {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.gradient-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.gradient-purple {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

.gradient-orange {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
}


.scalable-card {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: left;
}

.scalable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

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


.cta-section {
    max-width: 1220px;
    margin: 40px auto;
    /* ✅ CENTER horizontally */
    background: linear-gradient(90deg, #2563eb, #4f46e5);
    border-radius: 20px;
    /* optional but recommended */
    padding: 60px 20px;
    /* space inside gradient */
}

/* Inner container to control content width */
.cta-inner {
    max-width: 820px;
    margin: 0 auto;
    /* ✅ CENTER inner content */
    text-align: center;
}

/* Title refinement */
.cta-title {
    font-size: 36px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        margin: 24px 16px;
        /* better mobile spacing */
        padding: 40px 16px;
    }

    .cta-title {
        font-size: 28px;
    }
}


.eyebrow_counter {
    color: #E44C7D;
    font-weight: 700;
    font-size: 14px;
}



/* ===== ESS SECTION ===== */
.ess-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ff4d6d;
    display: inline-block;
    margin-bottom: 12px;
}

.ess-title {
    font-size: 40px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 20px;
}

.ess-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 28px;
}

/* ===== DEVICE AREA ===== */
.device-wrapper {
    position: relative;
    display: inline-block;
}

/* Desktop mockup */
.device-desktop {
    max-width: 785px;
    border-radius: 18px;
}

/* Mobile mockup */
.device-mobile {
    position: absolute;
    left: 30px;
    bottom: 33px;
    max-width: 363px;
    border-radius: 26px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); */
    /* background: #fff;*/
}


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

    .ess-title {
        font-size: 32px;
    }

    .device-desktop {
        max-width: 520px;
    }

    .device-mobile {
        left: 20px;
        bottom: 20px;
        max-width: 220px;
    }
}

@media (max-width: 768px) {

    .device-wrapper {
        transform: scale(0.9);
        /* 🔥 shrink both together */
    }

    .device-desktop {
        max-width: 100%;
    }

    .device-mobile {
        position: absolute;
        /* 🔥 keep overlap */
        left: 15px;
        bottom: 15px;
        max-width: 180px;
    }
}

@media (max-width: 576px) {

    .device-wrapper {
        transform: scale(0.85);
    }

    .device-mobile {
        left: 10px;
        bottom: 10px;
        max-width: 150px;
    }
}

/* Section */
.feature-spotlight-section {
    background: #ffffff;
}

/* Labels */
.feature-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.feature-label.pink {
    color: #ec4899;
}

.feature-label.blue {
    color: #2563eb;
}

.feature-label.orange {
    color: #f97316;
}

/* Content */
.feature-title {
    font-size: 28px;
    font-weight: 800;
    color: #0a2540;
    margin-bottom: 14px;
}

.feature-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Image Card */
.feature-image-card {
    /* background: #f8fafc; */
    /* padding: 24px; */
    border-radius: 20px;
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06); */
}

.feature-image-card img {
    width: 100%;
    border-radius: 14px;
}

/* Spacing */
/* .feature-row {
    padding: 40px 0;
} */

/* Responsive */
@media (max-width: 768px) {
    .feature-title {
        font-size: 24px;
    }

    .feature-row {
        padding: 24px 0;
    }
}

/* ===== IMAGE STACK ===== */
.image-stack {
    position: relative;
    /* padding: 30px; */
}

/* Main image */
.image-stack .main-img {
    width: 100%;
    max-width: 460px;
    border-radius: 16px;
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08); */
}

/* Secondary image */
.image-stack .sub-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 45%;
    border-radius: 14px;
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12); */
    /* background: #fff; */
}

/* Tablet */
@media (max-width: 992px) {
    .image-stack .sub-img {
        width: 50%;
        right: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .image-stack {
        padding: 20px;
    }

    .image-stack .sub-img {
        position: static;
        width: 100%;
        margin-top: 16px;
    }
}




.attendance-app-section {
    background: #ffffff;
}

/* Heading */
.section-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 8px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #1f2937;
}

/* Cards */
.attendance-card {
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.attendance-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.attendance-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.attendance-card:hover {
    transform: translateY(-6px);
}

/* Color variants */
.card-peach {
    background: #fff1eb;
}

.card-green {
    background: #e6f7f1;
}

.card-yellow {
    background: #fff7e6;
}

.card-pink {
    background: #fdf0f7;
}

.card-cream {
    background: #fffaf0;
}

.card-mint {
    background: #f0fdf4;
}

/* Tablet */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }

    .attendance-card {
        padding: 24px 20px;
    }
}

/* Icon wrapper */
/* Icon wrapper */
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

/* Peach Card */
.icon-peach {
    background: #ffd6c9;
    /* deeper peach */
    color: #ea580c;
}

/* Green Card */
.icon-green {
    background: #c7f0df;
    /* soft mint green */
    color: #047857;
}

/* Yellow Card */
.icon-yellow {
    background: #ffe2b8;
    /* warm yellow */
    color: #b45309;
}

/* Pink Card */
.icon-pink {
    background: #fbcfe8;
    /* rose pink */
    color: #be185d;
}

/* Cream Card */
.icon-cream {
    background: #fde68a;
    color: #92400e;
}

/* Mint Card */
.icon-mint {
    background: #bbf7d0;
    color: #166534;
}

/* Section */
.middle-management-section {
    background: #ffffff;
}

/* Heading */
.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ec4899;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-description {
    font-size: 17px;
    color: #64748b;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Cards */
.management-card {
    padding: 24px 20px;
}

/* Icon circle */
.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 26px;
}

/* Icon colors */
.icon-blue {
    background: #e0f2fe;
    color: #0284c7;
}

.icon-pink {
    background: #fce7f3;
    color: #db2777;
}

.icon-green {
    background: #dcfce7;
    color: #16a34a;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 15px;
    }
}


.btn-outline-primary {
    font-size: 14px;
    font-weight: 400;
}




/* =====================
       Blog Page
======================*/

/* =========================
   Article List Base
========================= */

.article-list {
    color: #313437;
    background-color: #fff;
}

.article-list p {
    color: #7d8285;
}

.article-list h2 {
    font-weight: 800;
    margin-bottom: 12px;
    color: inherit;
}

/* =========================
   Article Intro (Background Header)
========================= */
/* linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.5)), */
.article-intro {
    background: url("/frontend/imgs/blogheading.jpg") center / cover no-repeat;
    padding: 90px 20px;
    margin-bottom: 60px;
}

.article-list .intro {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.article-intro h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
}

.article-intro p {
    color: #e5e5e5;
    margin-bottom: 0;
    font-size: 16px;
}

/* Responsive Heading */

@media (max-width: 767px) {
    .article-intro {
        padding: 60px 15px;
        border-radius: 12px;
    }

    .article-intro h2 {
        font-size: 26px;
    }
}

/* =========================
   Articles Grid
========================= */

/* .article-list .articles {
    padding-bottom: 40px;
} */

.article-list .item {
    /* padding-top: 50px; */
    min-height: 425px;
    text-align: center;
}

.article-list .item a {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.article-list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 👈 magic line */
    display: block;
}

.article-list .item .name {
    font-weight: bold;
    font-size: 16px;
    margin-top: 20px;
    color: inherit;
}

.article-list .item .description {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0;
}

.article-list .item .action {
    font-size: 24px;
    width: 24px;
    margin: 22px auto 0;
    line-height: 1;
    display: block;
    color: #4f86c3;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.article-list .item .action:hover {
    opacity: 1;
}

/* =========================
   Sidebar
========================= */

.sidebar-box {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 12px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #313437;
    border-bottom: 2px solid #4f86c3;
    padding-bottom: 8px;
}

/* =========================
   Recent Posts
========================= */

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

.recent-posts li {
    margin-bottom: 14px;
}

.recent-posts li a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #313437;
    text-decoration: none;
}

.recent-posts li a:hover {
    color: #4f86c3;
}

.recent-posts li span {
    font-size: 12px;
    color: #7d8285;
}

/* =========================
   Categories
========================= */

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

.categories li {
    margin-bottom: 10px;
}

.categories li a {
    text-decoration: none;
    font-size: 15px;
    color: #313437;
    padding-left: 14px;
    position: relative;
}

.categories li a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #4f86c3;
    font-weight: bold;
}

.categories li a:hover {
    color: #4f86c3;
}

/* =========================
   Mobile Fix: Blog Spacing
========================= */

@media (max-width: 767px) {

    .article-list .item {
        padding-top: 25px;
        /* reduce top gap */
        min-height: auto;
        /* remove forced height */
    }

    .article-list .item a {
        height: 180px;
        /* slightly smaller image */
    }

    .article-list .item .name {
        margin-top: 14px;
        font-size: 15px;
    }

    .article-list .item .description {
        margin-top: 10px;
        font-size: 13px;
    }

    .article-list .articles {
        row-gap: 20px;
        /* clean consistent spacing */
    }
}

/* =========================
   Fix extra spacing on mobile
========================= */

@media (max-width: 767px) {

    .article-list .item a {
        height: auto;
    }

    .article-list .item {
        padding-top: 20px;
        min-height: auto;
    }
}

/* =========================
   Blog Filter Tabs
========================= */

.blog-tabs-wrapper {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.blog-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-tabs li {
    cursor: pointer;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.blog-tabs li.active,
.blog-tabs li:hover {
    background: #4f86c3;
    color: #fff;
}

/* Mobile */
@media (max-width: 767px) {
    .blog-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* =========================
   Blog Meta (Date + Reading Time)
========================= */

.blog-meta {
    margin-top: 6px;
    font-size: 13px;
    color: #7d8285;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.blog-meta .dot {
    font-weight: bold;
}

@media (max-width: 767px) {
    .blog-meta {
        font-size: 12px;
    }
}







/* =================
   Blog Detail Page
   ==================== */
.blog-detail-header {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-detail-header .overlay {
    background: rgba(0, 0, 0, 0.65);
    height: 100%;
    display: flex;
    align-items: center;
}

.blog-detail-header h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
}

.blog-content p {
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   Blog Detail Back Button
========================= */

.blog-back-btn {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.blog-back-btn:hover {
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
}

.blog-back-btn i {
    font-size: 16px;
}

/* =========================
   Related Blogs
========================= */

.related-blogs {
    position: relative;
}

.related-blogs a {
    text-decoration: none;
}

.related-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
    border-bottom: 2px solid #4f86c3;
    padding-bottom: 6px;
}

.related-blog-item {
    cursor: pointer;
    margin-bottom: 16px;
}

.related-blog-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 6px;
}

.related-blog-item h6 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #313437;
}

.related-blog-item span {
    font-size: 11px;
    color: #7d8285;
}

.related-blog-item:hover h6 {
    color: #4f86c3;
}

/* =========================
   Blog Callout Boxes
========================= */

.blog-callout {
    padding: 18px 20px;
    margin: 24px 0;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.blog-callout strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
}

/* Variants */
.callout-info {
    background: #eef5ff;
    border-left: 4px solid #4f86c3;
}

.callout-success {
    background: #ecfdf3;
    border-left: 4px solid #22c55e;
}

.callout-warning {
    background: #fff7ed;
    border-left: 4px solid #f97316;
}

.callout-note {
    background: #f8fafc;
    border-left: 4px solid #64748b;
}



/* ====================
Customer Stories
======================= */
.customer-stories {
    padding: 20px 20px;
    /* background: #f8faff; */
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0a2540;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.story-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.clients-logo {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
}

.story-text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #5a6c7d;
}

.story-link {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.story-card {
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #2563eb, #22c55e) border-box;
}

.client-logo {
    /* filter: grayscale(100%); */
    transition: 0.3s ease;
}

.story-card:hover .client-logo {
    filter: grayscale(0%);
}

.story-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.story-modal-content {
    position: relative;
    background: #ffffff;
    max-width: 600px;
    width: 90%;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    animation: scaleIn 0.3s ease;
}

.story-modal-content h3 {
    color: #002654;
    margin-bottom: 15px;
    font-size: 22px;
}

.story-modal-content p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 15px;
}

/* ✅ CLOSE BUTTON */
.story-modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #555;
    transition: 0.2s ease;
}

.story-modal-close:hover {
    color: #002654;
    transform: scale(1.1);
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.story-card {
    cursor: pointer;
}



/* =================
Customer Story Detail
================== */
/* HERO */
.cs-hero {
    background: #1676d2;
    padding: 90px 20px;
    color: #fff;
}

.cs-badge {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .5);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 18px;
}

.cs-title {
    max-width: 900px;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.3;
}

/* BODY */
.cs-body {
    padding: 80px 20px;
    background: #f8fafc;
}

.cs-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
}

/* LEFT CONTENT */
.cs-content p {
    font-size: 16px;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 22px;
}

/* QUOTE */
.cs-quote {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.quote-mark {
    font-size: 70px;
    color: #1676d2;
    position: absolute;
    top: -20px;
    right: 30px;
}

.quote-author {
    margin-top: 20px;
    font-size: 14px;
    color: #64748b;
}

/* IMPACT */
.cs-impact-title {
    margin-top: 40px;
    font-size: 26px;
    color: #0f172a;
}

.cs-impact-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #0f172a;
}

/* SIDEBAR */
.cs-sidebar {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    height: fit-content;
}

.cs-company-logo {
    max-width: 160px;
    margin-bottom: 25px;
}

.cs-info h6 {
    font-size: 13px;
    color: #64748b;
    margin-top: 18px;
}

.cs-info p {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

/* BACK LINK */
.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

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

    .cs-title {
        font-size: 32px;
    }
}


/* ================
  Help Centre page
  =================*/
/* Help Center */
.help-center-section {
    padding: 40px 0;
    /* background: #f9fcff; */
}

.hc-title {
    font-size: 26px;
    font-weight: 700;
    color: #002654;
    margin-bottom: 25px;
}

/* FAQ */
.hc-faq .faq-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-size: 20px;
    color: #2563eb;
}

.faq-answer {
    display: none;
    padding: 0 20px 18px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Form */
.hc-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.hc-form label {
    font-weight: 600;
    margin-bottom: 6px;
}

.hc-form .form-control {
    border-radius: 10px;
    padding: 12px;
}

.hc-submit {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
}


.app-download-section {
    /* background: linear-gradient(135deg, #1e3c72, #2a5298); */
    background: url(/frontend/imgs/map.png) center / cover no-repeat,
        linear-gradient(135deg, #0254ab 0%, #FFFFFF 100%);
    ;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    border-radius: 55px;
    -webkit-border-radius: 55px;
    -moz-border-radius: 55px;
    -ms-border-radius: 55px;
    -o-border-radius: 55px;
}

.app-download-container {
    max-width: 900px;
    margin: auto;
}

.app-download-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.app-download-section p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 40px;
    color: #000;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    background: #fff;
}

.store-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.store-btn small {
    display: block;
    font-size: 12px;
}

.store-btn span {
    font-size: 16px;
    font-weight: 600;
}

.store-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}