/* ======= Banner Section Start ============== */

/* Header spacer */
.banner-spacer {
    height: 80px;
}

/* Banner section */
.desktop-banner-section {
    position: relative;
    width: 100%;
}

/* Banner image */
.banner-img {
    width: 100%;
    height: auto;
    display: block;
}



/* Carousel arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

/* Mobile */
@media (max-width:768px) {}


/* ======= Features Section ============== */

.gov-section {
    background: #f5f7f8;
}

.gov-title {
    font-size: 28px;
    font-weight: 700;
    color: #0b3c5d;
}

.gov-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 800px;
    margin: auto;
}

.gov-tabs .nav-link {
    background: #e1e5e8;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    padding: 8px 16px;
    margin: 4px;
}

.gov-tabs .nav-link.active {
    background: #26b6cc;
    color: #fff;
}

.gov-box {
    background: #fff;
    border: 1px solid #dcdcdc;
    padding: 20px;
    border-radius: 4px;
}

.gov-heading {
    font-size: 20px;
    font-weight: 700;
    color: #0b3c5d;
    margin-bottom: 10px;
}

.gov-table th {
    background: #eef2f4;
    font-weight: 700;
    font-size: 14.5px;
}

.gov-table td {
    font-size: 14.5px;
    vertical-align: middle;
}

.gov-table th,
.gov-table td {
    padding: 10px;
}



/* =============================
   TRUSTED BY SECTION – CLEAN & LIGHT
   ============================= */

.trusted-section {
    background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
    padding: 45px 0;
    /* height reduced */
    border-top: 1px solid #e6ebf2;
    border-bottom: 1px solid #e6ebf2;
}

/* Title */
.trusted-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 28px;
    /* reduced */
    color: #1d2b42;
}

.trusted-title span {
    color: #26b6cc;
    /* brand color */
}

/* Slider Container */
.logo-slider {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 6px 0;
}

/* Track */
.logo-track {
    display: inline-flex;
    gap: 26px;
    /* tighter spacing */
    animation: scroll 28s linear infinite;
}

/* Logo Card */
.logo-item {
    width: 190px;
    height: 95px;
    /* reduced height */
    background: #ffffff;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #e5e9f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.logo-item img {
    height: 42px;
    object-fit: contain;
    filter: grayscale(10%);
}

/* Infinite Scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .trusted-title {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .logo-item {
        width: 150px;
        height: 85px;
    }

    .logo-item img {
        height: 34px;
    }
}



/* === Start Uses Report ====== */
.world-section {
    background: #f5f7f8;
}

.world-counter {
    background: #fff;
    border: 1px solid #dcdcdc;
    padding: 20px;
    border-radius: 4px;
}

.world-counter h3 {
    font-size: 28px;
    color: #0b3c5d;
    margin-bottom: 5px;
}

.world-counter p {
    font-size: 14px;
    margin: 0;
}

.world-counter.highlight {
    background: #26b6cc;
    color: #fff;
}

.world-counter.highlight h3 {
    color: #fff;
}

.country-card {
    background: #fff;
    border: 1px solid #dcdcdc;
    padding: 20px;
    border-radius: 4px;
    height: 100%;
}

.country-highlight {
    border: 2px solid #26b6cc;
    background: #f0fbfd;
}

.country-flag {
    width: 40px;
    height: 40px;
}

.country-desc {
    font-size: 14.5px;
    color: #444;
    margin-bottom: 10px;
}

.country-list {
    padding-left: 18px;
    margin: 0;
}

.country-list li {
    font-size: 14.5px;
    margin-bottom: 6px;
    line-height: 1.5;
}



/*  =========================
     FAQ CSS
========================= */

.faq-section {
    background: #f5f9fc;
    padding: 60px 0;
}

.faq-title {
    font-size: 30px;
    font-weight: 700;
    color: #0b3c5d;
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 15px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* FAQ Card */
.faq-card {
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Header */
.faq-header {
    padding: 0;
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #0b3c5d;
    position: relative;
    cursor: pointer;
}

.faq-btn:focus {
    outline: none;
}

/* Icon */
.faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #26b6cc;
}

/* Body */
.faq-body {
    padding: 0 20px 18px;
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
}

/* Mobile */
@media(max-width:768px) {
    .faq-title {
        font-size: 24px;
    }

    .faq-btn {
        font-size: 15px;
    }
}



/* ===============================
     CLOUDHRM AI CHAT – FINAL UI
=============================== */


/* ===============================
   FLOATING BUTTON
   =============================== */
.cloud-chat-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #26b6cc, #1aa3b8);
    color: #fff;
    padding: 14px 26px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(38, 182, 204, .45);
    z-index: 2147483647;
    /* TOP MOST */
}

/* ===============================
   CHAT BOX
   =============================== */
.cloud-chat-box {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 360px;
    max-height: 520px;
    background: #ffffff;
    border-radius: 16px;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    z-index: 2147483647;
    /* TOP MOST */
    overflow: hidden;
}

/* ===============================
   HEADER
   =============================== */
.cloud-chat-header {
    background: linear-gradient(135deg, #0b3c5d, #145d8c);
    color: #fff;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===============================
   BODY (LIGHT BACKGROUND)
   =============================== */
.cloud-chat-body {
    padding: 14px;
    height: 320px;
    overflow-y: auto;
    background: linear-gradient(180deg, #f7fbfd, #eef6fa);
}

/* ===============================
   MESSAGES
   =============================== */
.msg {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
}

.msg.user {
    justify-content: flex-end;
}

.msg.bot {
    justify-content: flex-start;
}

.msg span {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 82%;
    word-wrap: break-word;
}

/* USER MESSAGE */
.msg.user span {
    background: linear-gradient(135deg, #26b6cc, #1aa3b8);
    color: #fff;
    border-radius: 16px 16px 0 16px;
    box-shadow: 0 6px 14px rgba(38, 182, 204, .35);
}

/* BOT MESSAGE */
.msg.bot span {
    background: #ffffff;
    color: #1f2d3d;
    border-left: 4px solid #26b6cc;
    border-radius: 16px 16px 16px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}




/* ===============================
   FOOTER
   =============================== */
.cloud-chat-footer {
    display: flex;
    border-top: 1px solid #e6edf3;
    background: #ffffff;
}

.cloud-chat-footer input {
    flex: 1;
    border: none;
    padding: 14px;
    font-size: 14px;
    outline: none;
}

.cloud-chat-footer button {
    background: #26b6cc;
    border: none;
    color: #fff;
    padding: 0 20px;
    cursor: pointer;
    font-size: 18px;
}