@import url(https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}


/* Navigation Styles */

nav {
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
    position: absolute;
    z-index: 999;
    width: 100%;
    transition: background 0.3s ease, position 0.3s ease;
}

nav.fixed-nav {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: background 0.3s ease;
}

nav .mainlogo {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
}

nav .mainlogo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    z-index: 1000;
    flex-wrap: nowrap;
    gap: 0;
}

nav ul li {
    position: relative;
    margin: 0 10px;
    flex-shrink: 0;
}

nav ul li:last-child {
    margin-left: 5px;
    margin-right: 0;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
    background: #00000085;
}

nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 3px solid rgb(88, 180, 250);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    background: #000000d7;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

nav ul ul li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

nav ul ul li a {
    line-height: 50px;
    padding: 0 20px;
    color: #ffffff;
}

nav ul ul li a:hover {
    background: #011021;
    color: #ffffff;
}

nav ul li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

nav ul li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.icon {
    display: none;
    font-size: 25px;
    cursor: pointer;
    color: white;
}

.logo {
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    margin-left: 5px;
}

.fa {
    color: white;
}

.bell-icon-link {
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem !important;
    transition: all 0.3s ease;
    min-width: 40px;
    width: auto;
    height: auto;
    line-height: 1;
}

.bell-icon-link:hover {
    background: #00000085 !important;
    transform: scale(1.1);
}

.bell-icon-link i {
    color: white;
    display: inline-block;
    vertical-align: middle;
}

nav ul li:last-child {
    margin-left: 5px;
    margin-right: 0;
    flex-shrink: 0;
}

.mobile-adv-link {
    display: none !important;
}

.desktop-adv-link {
    display: block !important;
}

/* Navigation Media Queries */

@media (max-width: 1300px) and (min-width: 1160px) {
    nav {
        padding: 0 6px;
    }

    nav ul li a {
        font-size: 17px;
        padding: 8px 9px;
    }

    .bell-icon-link {
        padding: 8px 10px !important;
        font-size: 1.2rem !important;
    }
}

@media (max-width: 1160px) {
    nav {
        padding: 0 40px;
        background: transparent;
    }

    nav.fixed-nav {
        background: rgb(0, 0, 0);
    }

    nav .mainlogo img {
        height: 50px;
    }

    .icon {
        display: block;
    }

    nav ul {
        display: none !important;
        position: fixed;
        top: 70px;
        right: 0;
        width: 50%;
        background: #000000d7;
        flex-direction: column;
        height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 1000;
    }

    nav ul.show {
        display: flex !important;
    }

    nav ul li {
        width: 100%;
        margin: 0;
    }

    nav ul li a {
        padding: 15px 20px;
    }

    nav ul ul {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none !important;
        background: #000000;
        box-shadow: none;
        padding: 0;
        height: auto;
        /* Ensure the container shrinks to fit content */
        min-height: 0;
        /* Prevent any minimum height from adding space */
    }

    nav ul ul.show {
        display: block !important;
    }

    nav ul li:hover>ul {
        display: block;
    }

    nav ul ul li {
        border-bottom: none;
        margin: 0;
    }

    nav ul ul li:last-child {
        margin-bottom: 0;
        /* Ensure no extra margin on the last item */
    }

    nav ul ul li a {
        padding: 12px 40px;
        line-height: normal;
        margin: 0;
        /* Ensure no margins on the link itself */
    }

    nav ul li a:hover {
        background: #011021;
        color: #ffffff;
    }

    .mobile-adv-link {
        display: block !important;
    }

    .desktop-adv-link {
        display: none !important;
    }
}

@media (max-width: 660px) {
    nav {
        padding: 0 10px;
    }

    nav ul {
        width: 80%;
    }

    .logo {
        font-size: 1em;
        font-weight: 700;
        text-decoration: none;
        text-transform: uppercase;
        color: #fff;
        margin-left: 5px;
    }
}


/* Footer Styles */

a {
    text-decoration: none;
}

.footer {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding: 3rem 1rem 1rem !important;
}

.footer .second-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

.footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0rem !important;
    margin-bottom: 2rem !important;
}

@media (min-width: 1024px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 2fr !important;
    }
}

.footer .footer-brand {
    text-align: center;
    margin-left: 20px;
}

@media (min-width: 640px) {
    .footer .footer-brand {
        text-align: left !important;
    }
}

.footer .footer-logo {
    display: inline-flex !important;
    margin-bottom: 1rem !important;
    align-items: center !important;
}

.footer .footer-logo img {
    height: 1.8rem !important;
    width: auto !important;
    margin-right: 0.3rem !important;
}

.footer .footer-brand-name {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
    display: block !important;
}

.footer .footer-brand-name span {
    display: block !important;
}

.footer-description {
    color: #a0a0a0 !important;
    max-width: 18rem !important;
    margin: 0 auto 1.5rem;
    line-height: 1.5 !important;
    font-size: 0.875rem !important;
    text-align: justify !important;
}

@media (min-width: 640px) {
    .footer .footer-description {
        margin: 0 0 1.5rem !important;
    }
}

.footer .social-links {
    display: flex !important;
    gap: 1rem !important;
    list-style: none !important;
    align-items: center !important;
    margin-left: -30px !important;
    justify-content: center;
}

@media (min-width: 640px) {
    .footer .social-links {
        justify-content: flex-start !important;
    }
}

.footer .social-links a {
    color: #fff !important;
    transition: transform 0.3s ease, color 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 1.8rem !important;
    height: 1.8rem !important;
    border-radius: 50% !important;
    background-color: transparent !important;
}

.footer .social-links a:hover {
    transform: scale(1.1) !important;
    color: #4a90e2 !important;
}

.footer .social-links svg {
    width: 1.25rem !important;
    height: 1.25rem !important;
    display: block !important;
}

.footer .footer-columns {
    display: grid !important;
    grid-template-columns: 2fr !important;
    gap: 1.4rem !important;
    align-items: start !important;
}

@media (min-width: 640px) {
    .footer .footer-columns {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) {
    .footer .footer-columns {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.footer .footer-column {
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer .footer-title {
    position: relative !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    margin-bottom: 1rem !important;
    color: #fff !important;
    text-align: left !important;
    padding: 0 !important;
    display: inline-block !important;
    width: 100% !important;
}

.footer .footer-title:after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -4px !important;
    width: 30px !important;
    height: 2px !important;
    background: linear-gradient(90deg, #4a90e2, transparent) !important;
}

.footer .footer-links {
    list-style: none !important;
    margin-top: 1rem !important;
    text-align: left !important;
    padding: 0 !important;
}

.footer .footer-links li {
    margin: 0 0 0.75rem 0 !important;
    padding: 0 !important;
}

.footer .footer-links a {
    position: relative !important;
    color: #fff !important;
    transition: color 0.3s ease !important;
    display: block !important;
    text-align: left !important;
    font-size: 0.875rem !important;
}

.footer .footer-links a:after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 0.5px !important;
    bottom: -2px !important;
    left: 0 !important;
    background-color: #4a90e2 !important;
    transition: width 0.3s ease !important;
}

.footer .footer-links a:hover:after {
    width: 20% !important;
}

.footer .footer-links a:hover {
    color: #4a90e2 !important;
}

.footer .contact-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    color: #fff !important;
    text-decoration: none !important;
    margin-bottom: 0.75rem !important;
    padding: 0 !important;
    margin-left: -30px !important;
    font-size: 0.875rem !important;
}

.footer .contact-item svg {
    width: 1rem !important;
    height: 1rem !important;
    stroke: #fff !important;
    flex-shrink: 0 !important;
    margin-right: 0.2rem !important;
    display: block !important;
}

.footer .contact-item:hover {
    color: #4a90e2 !important;
}

.footer .contact-item address,
.footer .contact-item span {
    color: #fff !important;
    margin: 0 !important;
    text-align: left !important;
    display: inline-block !important;
    line-height: 1.25rem !important;
}

.footer .contact-item:hover address,
.footer .contact-item:hover span {
    color: #4a90e2 !important;
}

.footer .footer-bottom {
    border-top: 1px solid #333 !important;
    padding-top: 1rem !important;
    text-align: center !important;
}

@media (min-width: 640px) {
    .footer .footer-bottom {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

.footer .footer-bottom p {
    color: #a0a0a0 !important;
    font-size: 0.75rem !important;
}

.footer .footer-bottom a {
    color: #4a90e2 !important;
    transition: color 0.3s ease !important;
}

.footer .footer-bottom a:hover {
    color: #357abd !important;
}




/* ╔══════════════════════════════════════════════════════╗
   ║              CHATBOT — PREMIUM AVATAR UI             ║
   ╚══════════════════════════════════════════════════════╝ */

/* ── Container ──────────────────────────────────────────── */
.chatbot-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
}

/* ── Floating Avatar Launcher ───────────────────────────── */
.chatbot-icon {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    background: transparent;
    outline: none;
}

.chatbot-avatar-launcher {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0095ff; /* Match screenshot blue */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 149, 255, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.chatbot-icon:hover .chatbot-avatar-launcher {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 149, 255, 0.6);
}

/* ── Chat Window ─────────────────────────────────────────── */
.chatbot-window {
    width: 360px;
    height: min(520px, 80vh);
    max-height: calc(100vh - 120px);
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: windowOpen 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.chatbot-window.hidden {
    display: none;
}

.chatbot-window.closing {
    animation: windowClose 0.3s ease-in forwards;
}

@keyframes windowOpen {
    from {
        opacity: 0;
        transform: scale(0.1) translate(30px, 30px);
    }

    to {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }
}

@keyframes windowClose {
    from {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate(30px, 30px);
    }
}

/* ── Header ──────────────────────────────────────────────── */
.chatbot-header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chatbot-header-left {
    display: flex;
    align-items: center;
    gap: 11px;
}

.chatbot-header-avatar {
    position: relative;
    width: 46px;
    height: 46px;
    flex-shrink: 0;
}

.header-avatar-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255, 255, 255, 0.5);
}

.header-avatar-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.header-avatar-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.header-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #1a73e8;
}

.chatbot-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chatbot-agent-name {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.chatbot-agent-status {
    color: rgba(255, 255, 255, 0.78);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.chatbot-header-actions {
    display: flex;
    gap: 6px;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: background 0.2s, transform 0.15s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* ── Messages Area ───────────────────────────────────────── */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px 12px;
    background: #f4f7fc;
    display: flex;
    flex-direction: column;
    gap: 8px;
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
    width: 4px;
}

.chatbot-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: #c0d0e8;
    border-radius: 4px;
}

/* ── Message Bubbles ─────────────────────────────────────── */
.message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    animation: msgIn 0.22s ease-out both;
}

@keyframes msgIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Bot: avatar left, bubble right of it */
.message.bot {
    justify-content: flex-start;
}

/* User: everything anchored to the right wall; avatar after bubble via order */
.message.user {
    flex-direction: row;
    justify-content: flex-end;
}

.message.user .msg-avatar-wrap {
    order: 2;
    /* avatar appears AFTER (right of) the text bubble */
    margin-left: 8px;
    margin-right: 0;
}

.message.user .text {
    order: 1;
    /* text bubble appears BEFORE (left of) the avatar */
}


.msg-avatar-wrap {
    flex-shrink: 0;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.bot-avatar-icon {
    background: #1a73e8; /* Matches header blue */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bot-avatar-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff !important;
}

.avatar-fallback {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid #fff;
}

.text {
    max-width: 72%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 13.5px;
    line-height: 1.55;
    word-wrap: break-word;
}

.message.bot .text {
    background: linear-gradient(135deg, #1a73e8 0%, #1565c0 100%);
    color: #fff;
    border-bottom-left-radius: 4px;
    box-shadow: 0 3px 10px rgba(26, 115, 232, 0.25);
}

.message.user .text {
    background: #fff;
    color: #1a1a2e;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
}

.message.bot .text a {
    color: #ffe082;
    text-decoration: underline;
}

/* Clickable page links auto-injected by linkifyPages() */
.chat-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #ffd740;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 215, 64, 0.5);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
    cursor: pointer;
}

.chat-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.message.bot .text strong {
    color: #ffd54f;
}

/* ── Quick-Action Chips ──────────────────────────────────── */
.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 2px 0 4px 40px;
    animation: msgIn 0.25s ease-out both;
}

.chip {
    padding: 6px 14px;
    border: none;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
    font-family: inherit;
}

.chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chip:active {
    transform: scale(0.95);
}

.main-chip {
    background: linear-gradient(135deg, #e8f0fe, #d2e3fc);
    color: #1a73e8;
    border: 1.5px solid #a8c7fa;
}

.main-chip:hover {
    background: linear-gradient(135deg, #d2e3fc, #b6d0f7);
}

.sub-chip {
    background: linear-gradient(135deg, #e6f4ea, #ceead6);
    color: #1e7e34;
    border: 1.5px solid #a8d5b5;
}

.sub-chip:hover {
    background: linear-gradient(135deg, #ceead6, #b2d9be);
}

.contact-yes-btn {
    background: linear-gradient(135deg, #e6f4ea, #ceead6);
    color: #1e7e34;
    border: 1.5px solid #a8d5b5;
}

.contact-yes-btn:hover {
    background: linear-gradient(135deg, #ceead6, #a8d5b5);
}

.contact-no-btn {
    background: linear-gradient(135deg, #fce8e6, #f5c6c3);
    color: #c62828;
    border: 1.5px solid #f5c6c3;
}

.contact-no-btn:hover {
    background: linear-gradient(135deg, #f5c6c3, #eeaaaa);
}

/* ── Typing Indicator ────────────────────────────────────── */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #1a73e8, #1565c0);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    margin-left: 40px;
    box-shadow: 0 3px 10px rgba(26, 115, 232, 0.25);
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    animation: typingBounce 0.9s ease-in-out infinite alternate;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    from {
        transform: translateY(0);
        opacity: 0.5;
    }

    to {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* ── Input Bar ───────────────────────────────────────────── */
.chatbot-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: #ffffff;
    border-top: 1px solid #e8edf4;
    flex-shrink: 0;
}

.chatbot-input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid #dce4f0;
    border-radius: 24px;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    background: #f4f7fc;
    color: #1a1a2e;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.chatbot-input:focus {
    border-color: #1a73e8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
}

.chatbot-input::placeholder {
    color: #8fa3bf;
}

.chatbot-send {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(26, 115, 232, 0.4);
    transition: transform 0.15s, box-shadow 0.15s;
}

.chatbot-send:hover {
    transform: scale(1.08);
    box-shadow: 0 5px 16px rgba(26, 115, 232, 0.55);
}

.chatbot-send:active {
    transform: scale(0.94);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
    .chatbot-container {
        bottom: 16px;
        right: 16px;
    }

    .chatbot-window {
        width: calc(100vw - 32px);
        height: 72vh;
        border-radius: 18px;
    }
}

/* Utility */
.hidden {
    display: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

.orange-container {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.orange-container .heading {
    font-weight: bold;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.orange-container .heading .big-e {
    position: relative;
    /* bottom: -5px; */
    /* left: 5px; */
    font-size: 200px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    line-height: 1;
    margin-right: -5px;
    transform: translateZ(40px);
    transition: transform 0.5s ease;
}

.content-container {
    width: 95%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    margin: 0 auto 10px;
    opacity: 0;
    transform: translateY(50px) rotateX(30deg);
    box-sizing: border-box;
    transform-style: preserve-3d;
    color: white;
}

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

.tab {
    padding: 8px 20px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: transform 0.3s ease, background 0.3s ease;
    transform-style: preserve-3d;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateZ(20px) rotateX(10deg);
}

.tab.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateZ(30px);
}

.orange-container .description {
    font-size: clamp(14px, 2vw, 24px);
    color: white;
    opacity: 0;
    max-width: 550px;
    font-weight: 600;
    border-left: 8px solid white;
    padding-left: 20px;
    text-align: left;
    line-height: 1.4;
}

.content-description {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-top: 0;
    transform: translateY(20px) translateZ(10px);
    line-height: 1.6;
    color: white;
    opacity: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.services-heading {
    font-size: 20px;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
}

.stats-container {
    display: grid;
    margin-bottom: 20px;
    justify-items: center;
    justify-content: center;
}

.stat-box {
    text-align: center;
    padding: 5px;
    border: 2px solid white;
    border-radius: 8px;
    width: 100%;
    max-width: 180px;
    position: relative;
    opacity: 0;
    transform: translateY(20px) rotateX(-15deg);
    transform-style: preserve-3d;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    overflow: visible;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box:hover {
    transform: translateY(0) scale(1.05);
}

.stat-box i {
    position: absolute;
    top: 6px;
    right: 6px;
    background: green;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transform: translateZ(10px);
}

.stat-name {
    font-size: 0.8rem;
    color: white;
    line-height: 1.1;
    font-weight: 500;
}

.back-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 1.3rem;
}

.back-button:hover {
    background: #0056b3;
}
/* Hero Section */

.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 70px 0px 20px;
    perspective: 1000px;
    z-index: 2;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/assets/staffing-page-bg.png) no-repeat center center/cover;
    z-index: -1;
    transform: scale(1.1);
    animation: parallaxShift 15s infinite ease-in-out;
}

@keyframes parallaxShift {

    0%,
    100% {
        transform: scale(1.1) translate(0, 0);
    }

    50% {
        transform: scale(1.15) translate(-2%, -2%);
    }
}

.orange-container {
    background: rgba(0, 91, 14, 0.47);
    padding: 0px 30px;
    transform: translateY(-50px) rotateX(-30deg);
    gap: 40px;
    margin: 20px auto 40px;
    min-height: 200px;
}

.orange-container .heading {
    font-weight: bold;
    color: white;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.orange-container .heading .big-e {
    font-size: clamp(50px, 10vw, 150px);
    color: rgba(255, 255, 255, 0.56);
    font-weight: 400;
    line-height: 1;
    transform: translateZ(40px);
    transition: transform 0.5s ease;
    margin: 0 10px;
}

.orange-container .heading span {
    font-size: clamp(24px, 5vw, 90px);
    color: white;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.orange-container .description {
    font-size: 20px;
}



.content-description {
    font-size: 1.2rem;
    text-align: center;
    width: 80%;
}


/* Quote Section */

.quote {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    padding: 20px 20px;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.9), rgba(255, 255, 255, 0.95));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.quote p {
    color: #1a2b49;
    font-size: clamp(1em, 2.1vw, 1.1em);
    font-weight: 500;
    width: 80%;
    margin: 0 auto 20px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}

.quote hr {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #0d6efd, #1e90ff);
    border: none;
    margin: 0 auto;
    opacity: 0;
    transform: scaleX(0);
}


/* Technical Profiles Section */

.container2 {
    width: 100%;
    background: url(/assets/staffing-sec2-bg.webp) no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    margin: 0;
}

.container2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

.profiles-row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    padding: 20px 0;
    animation: scroll 30s linear infinite;
}

.profiles-row.paused {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.arrows-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding: 10px 0;
}

.middle-section {
    width: 100%;
    background: linear-gradient(135deg, rgba(29, 118, 43, 0.8), rgba(0, 91, 14, 0.6));
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    margin-bottom: 20px;
}

.middle-border {
    border-left: 3px solid white;
    border-right: 3px solid white;
    padding: 10px 30px;
    display: inline-block;
    width: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.middle-border h2 {
    color: white;
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    min-width: 120px;
    background: rgba(0, 0, 0, 0.384);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 8px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.profile img {
    width: auto;
    height: clamp(30px, 4vw, 50px);
    margin-bottom: 8px;
}

.profile p {
    margin: 0;
    font-size: clamp(8px, 1.2vw, 12px);
    color: #ffffff;
    font-weight: 500;
}

.profile:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Key Offerings Section */

.key-offerings {
    background-color: #f3f4f6;
    padding: 70px 20px;
    width: 100%;
}

.key-offerings .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(28px, 4vw, 2.5rem);
    font-weight: bold;
    margin-bottom: 40px;
    color: #1a2b49;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.offering-card {
    background-color: white;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-top: 50px;
    margin-top: 50px;
    position: relative;
}

.offering-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5e9;
    border-radius: 50%;
    transition: all 0.4s ease;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.offering-icon i {
    font-size: 35px;
    color: #28a745;
    transition: transform 0.4s ease;
}

.offering-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.offering-card:hover .offering-icon {
    transform: translateX(-50%) scale(1.1);
    background: #d4edda;
}

.offering-card:hover .offering-icon i {
    transform: scale(1.1) rotate(5deg);
}

.offering-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 20px 10px;
    color: #1a2b49;
    text-align: center;
}

.offering-card p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 20px 20px;
    text-align: justify;
}


/* Scroll Arrows */

.scroll-arrow {
    background: linear-gradient(135deg, rgba(0, 91, 14, 0.9), rgba(29, 118, 43, 0.9));
    color: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.scroll-arrow:hover {
    background: linear-gradient(135deg, rgba(0, 91, 14, 1), rgba(29, 118, 43, 1));
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.scroll-arrow:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}


/* Responsive Adjustments */

@media (max-width: 768px) {
    .profiles-row {
        padding: 15px 0;
    }

    .profile {
        min-width: 100px;
        padding: 10px;
        margin: 0 6px;
    }

    .profile img {
        height: clamp(25px, 3.5vw, 40px);
    }

    .profile p {
        font-size: clamp(7px, 1vw, 10px);
    }

    .middle-border {
        width: 90%;
        padding: 8px 20px;
    }

    .middle-border h2 {
        font-size: clamp(18px, 4vw, 24px);
    }

    .hero-section {
        padding: 50px 0px 15px;
    }

    .orange-container {
        flex-direction: column;
        gap: 15px;
        min-height: 220px;
        padding: 20px;
        align-items: center;
        justify-content: center;
    }

    .orange-container .description {
        font-size: 16px;
        border-left: none;
        border-top: 4px solid white;
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
        max-width: 100%;
    }

    .content-description {
        font-size: 0.9rem;
    }

    .content-container {
        width: 95%;
        padding: 10px;
    }

    .orange-container .heading {
        flex-direction: column;
        gap: 10px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    }

    .arrows-container {
        gap: 20px;
        margin-top: 20px;
        padding: 8px 0;
    }
}

@media (max-width: 480px) {
    .profiles-row {
        padding: 10px 0;
    }

    .profile {
        min-width: 80px;
        padding: 8px;
        margin: 0 4px;
    }

    .profile img {
        height: clamp(20px, 3vw, 30px);
    }

    .profile p {
        font-size: clamp(6px, 0.8vw, 9px);
    }

    .middle-border {
        width: 95%;
        padding: 6px 15px;
    }

    .middle-border h2 {
        font-size: clamp(16px, 3.5vw, 20px);
    }

    .hero-section {
        padding: 40px 0px 10px;
    }

    .orange-container {
        padding: 15px;
        margin-top: 50px;
    }

    .scroll-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .arrows-container {
        gap: 15px;
        margin-top: 15px;
        padding: 6px 0;
    }
}

.footer .footer-brand {
    text-align: left !important;
    margin-left: 0px;
}

@media (max-width: 640px) {
    .footer-description {
        color: #a0a0a0 !important;
        max-width: 18rem !important;
        margin: 0px 0px 1.5rem !important;
        line-height: 1.5 !important;
        font-size: 0.875rem !important;
        text-align: justify !important;
    }

    .footer .social-links {
        display: flex !important;
        gap: 1rem !important;
        list-style: none !important;
        align-items: center !important;
        margin-left: -30px !important;
        justify-content: flex-start !important;
    }
}
