:root {
    --primary-color: #003840;
    --header-bg: #004a54;
    --accent-color: #fdbe33;
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased;
}


.announcement-bar {
    background-color: var(--primary-color) !important;
    position: relative;
    z-index: 1021;
    font-size: 0.875rem;
}

.announcement-bar a:hover {
    color: var(--accent-color) !important;
}

.announcement-bar a {
    transition: color 0.3s var(--ease-smooth);
    letter-spacing: 0.01em; 
}

.social-circle {
    width: 32px;
    height: 32px;
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth), transform 0.2s;
}

.social-circle:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}
/*Navigation Bar*/
.custom-navbar {
    background-color: var(--header-bg) !important;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1020;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: padding 0.3s ease;
}

.custom-navbar .navbar-brand {
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2rem); 
    letter-spacing: -0.02em;
}

.custom-navbar .navbar-nav .nav-link {
    transition: color 0.3s var(--ease-smooth);
    font-size: 1rem;
    font-weight: 500; 
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0.01em;
}

.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link:focus {
    color: var(--accent-color) !important;
}

.dropdown-menu {
    background-color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    padding: 0.5rem 0;
    border-radius: 0.5rem; 
    margin-top: 0; 
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--primary-color) !important;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #e9ecef;
    color: var(--primary-color) !important;
    padding-left: 24px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--header-bg) !important;
    color: var(--accent-color) !important;
}

@media (min-width: 992px) {
    .custom-navbar .navbar-nav .nav-link {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .custom-navbar .dropdown .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px); 
        transform-origin: top center;
        transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
        pointer-events: none; 
    }

    .custom-navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--header-bg);
        padding: 20px;
        max-height: 85vh;
        overflow-y: auto;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 10px;
        border-radius: 0 0 8px 8px
    }

    .navbar-nav {
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
    }

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

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

    .nav-link {
        padding: 12px 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        display: none;
        width: 100%;
        margin-top: 0px;
        box-shadow: none;
        border-radius: 4px;
        padding: 5px 0;
    }

    .dropdown-menu.show {
        display: block;
        animation: mobileFadeIn 0.3s ease-out forwards;
    }

}

@keyframes mobileFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Search Icon */
.search-icon-custom i { 
    font-size: 1rem;
    color: #fff;
    transition: transform 0.3s var(--ease-smooth), color 0.3s;
}


.search-icon-custom:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    animation-name: tada;
}

/* hero*/
.btn-cta-gold {
    background-color: var(--accent-color);
    color: #003840;
    font-weight: 700;
    border: 2px solid var(--accent-color);
    padding: 12px 30px; 
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s var(--ease-smooth);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-cta-gold:hover {
    background-color: transparent;
    color: var(--accent-color);
}
.hero-section {
    background-color: var(--primary-color);
    min-height: 100vh; 
    position: relative;
    overflow: hidden; 
    padding-top: 80px; 
    padding-bottom: 50px;
    
    display: flex; 
    align-items: center; 
}


/* 
  hero grid
    */
.hero-grid-bg {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('/assets/images/grid.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 60%;

    opacity: 0.2;
    z-index: 1;
    pointer-events: none;

    -webkit-mask-image: radial-gradient(circle at 25% 40%, black 10%, transparent 60%);
    mask-image: radial-gradient(circle at 25% 40%, black 10%, transparent 60%);
}
/* 
   hero waves image
    */
.hero-waves-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 0;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
}

.tech-waves-svg {
    width: 100%;
    height: 100%;
    fill: none;
}

.wave-line {
    stroke-linecap: round;
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    transform-origin: center bottom;
}

.line-1 {
    stroke-width: 0.3px;
    opacity: 0.7;
    animation: move-wave-right 20s linear infinite;
}

.line-2 {
    stroke-width: 0.15px;
    opacity: 0.5;
    transform: scaleX(1.5) scaleY(0.8);
    animation: move-wave-left 15s linear infinite;
}

.line-3 {
    stroke-width: 0.25px;
    opacity: 0.6;
    transform: scaleX(0.7) scaleY(1.2);
    animation: move-wave-right 12s linear infinite;
}

.line-4 {
    stroke-width: 0.1px;
    opacity: 0.4;
    transform: scaleX(1.2);
    animation: move-wave-left 25s linear infinite;
}

.line-5 {
    stroke-width: 0.2px;
    opacity: 0.3;
    transform: scaleY(0.6);
    animation: move-wave-right 8s linear infinite;
}

@keyframes move-wave-right {
    0% {
        transform: translateX(-90px) scaleX(1);
    }

    50% {
        transform: translateX(0) scaleX(1.1);
    }

    100% {
        transform: translateX(85px) scaleX(1);
    }
}

@keyframes move-wave-left {
    0% {
        transform: translateX(85px) scaleX(1.5);
    }

    50% {
        transform: translateX(0) scaleX(1.4);
    }

    100% {
        transform: translateX(-90px) scaleX(1.5);
    }
}

@media (max-width: 991px) {
    .hero-waves-container {
        height: 40%;
    }

}

/* robot */
.hero-robot-img {
    position: absolute;
    left: -5%;
    bottom: -10.4vw;
    width: clamp(260px, 60vw, 1100px);
    transform: scaleX(-1) rotate(-20deg);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.5s ease;
}

/* mic */
.mic-floating-box {
    position: absolute;
    top: 38.9vw;
    left: 45%;
    width: clamp(100px, 43.23vw, 600px);
    height: clamp(100px, 43.23vw, 600px);
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-bg-img {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 1;
    animation: glow-pulse 3s infinite alternate;
}

.mic-icon-img {
    position: relative;
    width: 25%;
    height: auto;
    z-index: 2;
}
@keyframes glow-pulse {
    from { opacity: 0.6; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px; 
}

.hero-title {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem !important;
}

.hero-title .fs-5 {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-top: 1rem !important;
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
    opacity: 0.9;
}

.hero-content h2 {
    font-size: clamp(0.9rem, 1.75vw, 1.25rem); 
    margin-bottom: 1.5rem !important;
}

.hero-desc {
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem !important;
}
/* 
   mobile & tablet responsive 
*/
@media (max-width: 991px) {

    .hero-section {
        min-height: auto;
        padding-top: 550px;
        padding-bottom: 60px;
        text-align: center;
        overflow: hidden;
    }

    .hero-robot-img {
        position: absolute;
        top: 40px;
        left: 70px;
        width: 540px;
        max-width: none;
        transform: translateX(-40%) scaleX(-1) rotate(-20deg);
        z-index: 1;
        margin: 0;
    }

    .mic-floating-box {
        position: absolute;
        top: 240px;
        left: 70%;
        width: 300px;
        height: 300px;
        transform: translateX(-50%);
        z-index: 2;
        margin: 0;
    }

    .mic-icon-img {
        width: 65px;
    }

    .hero-content {
        text-align: center !important;
        padding-left: 0 !important;
        position: relative;
        z-index: 3;
    }

    .hero-grid-bg {
        background-position: center top;
        background-size: 150%;
        opacity: 0.15;
    }

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

    .hero-desc {
        font-size: 0.9rem;
        margin-bottom: 30px !important;
    }
}

/* 
   experience zone section
    */
.experience-section {
    background-color: #fff;
}

.experience-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    max-width: 1200px;
    width: 95%;

    border: 1px solid #eee;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.circuit-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0.7;

    z-index: 0;
    pointer-events: none;
}

.experience-card>*:not(.circuit-bg-img) {
    position: relative;
    z-index: 2;
}

.section-title {
    color: var(--primary-color, #003840);
    font-size: 2rem;
}

.btn-exp-tab {
    background-color: transparent;
    border: 1px solid var(--primary-color, #003840);
    color: var(--primary-color, #003840);
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-exp-tab:hover {
    background-color: rgba(0, 56, 64, 0.05);
    color: var(--primary-color, #003840);
    transform: translateY(-2px);
}

.btn-exp-tab.active {
    background-color: #FFC107;
    border-color: #FFC107;
    color: #003840;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.mic-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFC107;
    border: none;
    color: #003840;
    font-size: 24px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mic-btn:active {
    transform: scale(0.95);
}

.mic-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 193, 7, 0.6);
    background-color: rgba(255, 193, 7, 0.1);
    animation: pulse-ring 2s infinite;
    z-index: 1;
}

.mic-pulse-ring.delay {
    animation-delay: 0.6s;
}

@keyframes pulse-ring {
    0% {
        width: 60px;
        height: 60px;
        opacity: 1;
    }

    100% {
        width: 110px;
        height: 110px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .experience-card {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-exp-tab {
        width: 100%;
        margin-bottom: 5px;
    }
}


/* 
    features section
    */
/* Header */
.section-title {
    color: #003840;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.text-highlight {
    color: #FFC107;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 850px;
    margin: 0 auto;
    color: #555;
}

.feature-row {
    position: relative;
    margin-bottom: 50px;
}

.shrunk-wrapper {
    max-width: 580px;
    position: relative;
    padding: 10px;
}

.visual-wrapper-first.shrunk-wrapper {
    max-width: 540px;
}

.ms-auto {
    margin-left: auto;
    margin-right: -20px;
}

.main-image-box {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 40px;
    overflow: hidden;
}

.main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Connectors */
.connector-s-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border: none;
    border-top: 3px dashed #012F3C;
    border-right: 3px dashed #012F3C;
    opacity: 0.5;
}

.visual-wrapper .connector-s-shape {
    right: -190px;
    bottom: -160px;
    width: 190px;
    height: 240px;
    border-radius: 0 200px 0 0;
}

.visual-wrapper-first .connector-s-shape {
    width: 150px;
    right: -150px;
    border-radius: 0 160px 0 0;
}

.connector-s-shape.connector-type-2 {
    left: -160px;
    bottom: -100px;
    width: 190px;
    height: 300px;
    border-top: none;
    border-bottom: 3px dashed #012F3C;
    border-right: 3px dashed #012F3C;
    border-radius: 0 0 220px 0;
}

.connector-s-shape.connector-type-3 {
    right: -185px;
    bottom: -130px;
    width: 300px;
    height: 180px;
    border-top: 3px dashed #012F3C;
    border-right: 3px dashed #012F3C;
    border-radius: 0 125px 0 0;
}

/* Left Chat */
.chat-float-card {
    position: absolute;
    width: 380px;
    height: auto;
    min-height: auto;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    z-index: 2;
    background: #fff;
    border-radius: 20px;
    padding: 20px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-float-card .msg-bubble {
    font-size: 0.75rem;
    line-height: 1.4;
    max-width: 280px;
    padding: 8px 12px;
}

.dashed-border-deco {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed #FFC107;
    border-radius: 24px;
    z-index: -1;
}

.tags-float-group {
    position: absolute;
    top: 5%;
    right: -110px;
    z-index: 3;
}

/* Right Chat */
.chat-float-card-right {
    position: absolute;
    width: 310px;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    z-index: 2;
    background: #FFF9E6;
    border: 1px solid #FFE082;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.icon-float-badge {
    position: absolute;
    top: 15%;
    left: -30px;
    width: 60px;
    height: 60px;
    background: #003840;
    border-radius: 50%;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 3;
}

/* Chat Internals */
.msg-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.msg-row.bot {
    justify-content: flex-end;
}

.msg-row.user {
    justify-content: flex-start;
}

.msg-bubble {
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #333;
    max-width: 190px;
}

.msg-bubble.bg-orange {
    background-color: #FFE0B2;
    border-bottom-right-radius: 2px;
}

.msg-bubble.bg-blue {
    background-color: #E1F5FE;
    border-bottom-left-radius: 2px;
}

.icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 12px;
}

.bg-yellow {
    background-color: #FFC107;
}

.chat-input-mock {
    margin-top: 10px;
    height: 30px;
    background-color: #E0F7FA;
    border: 1px solid #4DD0E1;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
}

/* Widgets */
.left-widgets-group {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.robot-ui-box {
    background: #D1F2FD;
    width: 110px;
    height: 100px;
    border-radius: 15px;
    padding: 12px;
    position: relative;
    z-index: 1;
}

.ui-dots {
    display: flex;
    gap: 4px;
}

.ui-dots span {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    display: block;
}

.ship-msg-box {
    background: #E0F7FA;
    padding: 12px 15px;
    border-radius: 12px;
    border-top-left-radius: 0;
    max-width: 170px;
    position: relative;
    z-index: 2;
    margin-left: 20px;
    border: 2px solid #fff;
}

.ship-msg-box p {
    font-size: 0.75rem;
    line-height: 1.3;
}

.orders-float-card {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(25%, 25%);
    width: 200px;
    background: #E0F7FA;
    border-radius: 20px;
    padding: 15px;
    z-index: 3;
    border: 2px solid #fff;
}

.status-badge {
    background-color: #FFC107;
    color: #003840;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    padding: 4px 8px;
    font-size: 0.75rem;
}

.order-table {
    background: #fff;
    padding: 8px;
    border-radius: 10px;
}

.hyper-relevant-bubble {
    position: absolute;
    top: 20%;
    right: -90px;
    background-color: #012F3C;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 10px 0;
    width: 200px;
    text-align: center;
    font-size: 0.9rem;
    transform: translateY(-50%);
    z-index: 999;
    border: 2px solid #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Flow & Leads */
.adaptive-flow-box {
    position: absolute;
    top: -25px;
    left: 10%;
    transform: translateX(-50%);
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: 15px;
    padding: 12px;
    z-index: 3;
    width: 210px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qualified-leads-box {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    background: #E0F7FA;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 15px;
    width: 130px;
    z-index: 3;
    text-align: center;
}

.segment-pill {
    background: #B2EBF2;
    color: #006064;
    border-radius: 50px;
    padding: 6px;
    font-size: 0.7rem;
    font-weight: bold;
}

.ava-chat-box {
    position: absolute;
    top: 10%;
    right: -80px;
    width: 230px;
    background: #FFF3E0;
    border-radius: 20px;
    padding: 15px;
    z-index: 2;
    border: 2px solid #fff;
}

.user-avatar-small,
.bot-icon-small {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-icon-small {
    background: #003840;
    color: white;
    font-size: 10px;
}

.small-mock {
    height: 25px;
    margin-top: 5px;
}

.x-small {
    font-size: 0.65rem;
    padding: 6px 10px;
}

.handoff-box {
    position: absolute;
    bottom: 40px;
    right: -80px;
    width: 250px;
    background: #003840;
    border-radius: 20px;
    padding: 20px;
    z-index: 4;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.handoff-img-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #fff;
}

.handoff-img-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.vertical-divider {
    width: 2px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Features 5 & 6 (Pills, Flowchart, Icons) */
.feature-pill {
    position: absolute;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #003840;
    z-index: 3;
    border: 1px solid #E0F7FA;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #003840;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.pill-top-left {
    top: 30px;
    left: -40px;
}

.pill-bottom-left {
    bottom: 30px;
    left: -40px;
}

.pill-bottom-right {
    bottom: 60px;
    right: -60px;
}

.flowchart-wrapper {
    position: absolute;
    top: 10px;
    right: -70px;
    width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 4;
}

.flow-node-start {
    background: #fff;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 0.6rem;
    border: 1px solid #003840;
    color: #333;
    margin-bottom: 0;
}

.flow-line-vertical {
    width: 2px;
    height: 15px;
    background-color: #003840;
}

.flow-logic-box {
    width: 140px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #003840;
    overflow: hidden;
    text-align: center;
    margin-bottom: 0;
}

.logic-header {
    background: #003840;
    color: #fff;
    font-size: 0.65rem;
    padding: 4px;
}

.logic-body {
    padding: 8px;
    font-size: 0.65rem;
    line-height: 1.3;
    font-weight: bold;
}

.flow-branch {
    position: relative;
    width: 80%;
    height: 15px;
}

.flow-branch::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 8px;
    background: #003840;
    transform: translateX(-50%);
}

.flow-branch::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #003840;
}

.branch-line-left,
.branch-line-right {
    position: absolute;
    top: 8px;
    width: 2px;
    height: 7px;
    background: #003840;
}

.branch-line-left {
    left: 10%;
}

.branch-line-right {
    right: 10%;
}

.flow-node-leaf {
    background: #fff;
    border: 1px solid #003840;
    border-radius: 50px;
    padding: 5px 10px;
    font-size: 0.6rem;
    font-weight: bold;
    text-align: center;
    flex: 1;
}

.float-icon-box {
    position: absolute;
    width: 70px;
    height: 70px;
    background-color: #003840;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding: 15px;
}

.pos-top-left {
    top: -20px;
    left: 40px;
}

.pos-top-right {
    top: 30px;
    right: -30px;
}

.pos-bottom-left {
    bottom: 60px;
    left: -30px;
}

.float-dashboard-img {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    right: -120px;
    width: 380px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    z-index: 4;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #003840;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC107;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tag-pill {
    background: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.icon-circle {
    width: 30px;
    height: 30px;
    background: #E0F7FA;
    color: #006064;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.user-avatar,
.bot-icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.bot-icon {
    background: #003840;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


@media (max-width: 991px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .feature-row {
        text-align: center;
        margin-bottom: 80px;
        flex-direction: column-reverse;
    }

    .feature-row .order-lg-1 {
        order: 2;
    }

    .feature-row .order-lg-2 {
        order: 1;
        margin-bottom: 30px;
    }

.feature-item {
        display: flex;              
        align-items: center;        
        justify-content: flex-start; 
        
        text-align: left;           
        max-width: 400px;            
        margin: 0 auto 30px auto;    
        gap: 15px;                  
    }

    .chat-float-card,
    .chat-float-card-right,
    .hyper-relevant-bubble,
    .left-widgets-group,
    .orders-float-card,
    .adaptive-flow-box,
    .qualified-leads-box,
    .ava-chat-box,
    .handoff-box,
    .flowchart-wrapper,
    .float-dashboard-img {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        max-width: 350px;
        margin: 20px auto;
    }

    .chat-float-card {
        margin-top: -30px;
    }

    .orders-float-card {
        margin-top: 50px;
    }

    .shrunk-wrapper,
    .visual-wrapper,
    .visual-wrapper2 {
        max-width: 100%;
        padding: 0 10px;
    }

    .ms-auto {
        margin-left: 0;
    }

    .connector-s-shape {
        display: none;
    }

    .tags-float-group,
    .icon-float-badge {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        display: inline-flex;
        margin: 10px;
    }

    .tags-float-group {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .float-icon-box {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        display: inline-flex;
        margin: 10px;
    }

    .pos-top-left,
    .pos-top-right,
    .pos-bottom-left {
        transform: none;
    }

    .float-dashboard-img {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }

    .pill-top-left,
    .pill-bottom-left,
    .pill-bottom-right {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        display: inline-flex;
        margin: 5px;
    }
}

/* 
   business outcomes section
 
   */

.outcomes-section {
    background-color: #012F3C;
    color: white;
    overflow: visible;
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

.circuit-deco-top {
    position: absolute;
    top: -120px;
    right: 0;
    width: 250px;
    z-index: 10;
    pointer-events: none;
}

.outcome-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.outcome-card h5 {
    font-size: 1.25rem;
    line-height: 1.4;
}

.outcome-card p {
    line-height: 1.6;
    font-size: 0.9rem;
}

.outcome-card:hover {
    border-color: #FFC107;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.bg-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/grid.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100%;
    opacity: 0.05;
    z-index: 0;
}

@media (max-width: 991px) {
    .circuit-deco-top {
        display: none;
    }

    .outcomes-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* 
   CTA section & bridging circuit
    */

.cta-section {
    padding: 60px 0;

    overflow: visible;

    position: relative;
    z-index: 5;
}

.btn-experience {
    background-color: #012F3C;
    color: #fff;
    padding: 15px 45px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #012F3C;
    transition: all 0.3s ease;

    position: relative;
    z-index: 20;
}

.btn-experience:hover {
    background-color: #fff;
    color: #012F3C;
}

.circuit-floating-img {
    position: absolute;

    right: -300px;

    top: -250px;

    height: 500px;

    width: 375px;

    z-index: 10;

    pointer-events: none;
}

.circuit-floating-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: top right;
}

@media (max-width: 991px) {
    .circuit-floating-img {
        display: none;
    }
}

/* 
   advantage section 
    */

.advantage-section {
    overflow: hidden;
    padding-bottom: 100px;
}

.adv-card {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: #FFC107;
}

.adv-icon {
    width: 70px;
    height: 70px;
    background-color: #e0aa36fb;
    border: 2px solid #a58e48;
    color: #003840;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.adv-card h6 {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.robot-decoration {
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 150px;
    z-index: 1;
}

@media (max-width: 991px) {
    .robot-decoration {
        display: none;
    }

    .advantage-section {
        padding-bottom: 50px;
    }
}

/* industry section */
.industry-section {
    background-color: #012F3C;
    padding-top: 100px;
    padding-bottom: 150px;
    overflow: hidden;
    position: relative;
}

.text-dark-blue {
    color: #012F3C;
}

.wireframe-head-deco {
    position: absolute;

    top: 85%;
    transform: translateY(-50%);

    right: -30px;

    width: 250px;
    height: auto;

    opacity: 0.7;
    z-index: 0;
    pointer-events: none;
}

.wireframe-head-deco img {
    width: 100% !important;
    max-width: none !important;
}

.industry-section .container {
    position: relative;
    z-index: 2;
}

.custom-industry-tabs {
    margin-bottom: 0;
    position: relative;
    z-index: 5;
}

.custom-industry-tabs .nav-item {
    flex-grow: 1;
    text-align: center;
}

.custom-industry-tabs .nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 10px;
    border: none;
    background: transparent;
    border-radius: 15px 15px 0 0;
    width: 100%;
    transition: all 0.3s ease;
}

.custom-industry-tabs .nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.custom-industry-tabs .nav-link.active {
    background-color: #fff;
    color: #012F3C;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}

.card-container {
    position: relative;
    z-index: 4;
}

.main-white-card {
    border-radius: 0 0 25px 25px;
    min-height: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.yellow-backdrop {
    position: absolute;
    background-color: #FFC107;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-radius: 0 0 25px 25px;
    z-index: -1;
}

.industry-img-box {
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-img-box img {
    height: 450px;
    object-fit: cover;
}

.icon-bubble {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bubble-shape {
    font-size: 36px;
    color: #fff;
    -webkit-text-stroke: 2px #012F3C;
}

.star-shape {
    position: absolute;
    font-size: 14px;
    color: #FFC107;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 991px) {

    .industry-section {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .wireframe-head-deco {
        width: 200px;
        right: -60px;
        opacity: 0.1;
        bottom: 0;
        top: auto;
        transform: none;
    }

    .custom-industry-tabs {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 25px;
        border: none;
        padding: 0 10px;
    }

    .custom-industry-tabs .nav-item {
        margin: 0;
        width: 100%;
    }

    .custom-industry-tabs .nav-link {
        width: 100% !important;
        font-size: 0.85rem;
        padding: 10px 5px;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 600;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px !important;
        transition: all 0.3s ease;

        white-space: normal;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        line-height: 1.2;
    }

    .custom-industry-tabs .nav-link.active {
        background-color: #fff;
        color: #012F3C;
        font-weight: 800;
        border-color: #fff;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

        transform: none;
    }

    .main-white-card {
        padding: 30px 20px !important;
        min-height: auto;
        border-radius: 20px;
        margin-top: 10px;
    }

    .yellow-backdrop {
        left: 10px;
        top: 10px;
        border-radius: 20px;
    }

    .industry-img-box img {
        height: 250px;
        margin-bottom: 25px;
    }

    .features-list {
        gap: 15px !important;
        padding-left: 0;
    }

    .feature-list-item .fs-5 {
        font-size: 1rem !important;
    }

    .icon-bubble {
        width: 35px;
        height: 35px;
    }

    .bubble-shape {
        font-size: 30px;
    }

    .star-shape {
        font-size: 10px;
    }
}

.footer-section {
    background-color: #002530;
    font-size: 0.95rem;
    overflow: hidden;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #FFC107;
    padding-left: 5px; 
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #002530;
}

.social-icon:hover {
    background-color: #FFC107 !important;
    color: #002530 !important;
    transform: translateY(-3px);
}

.contact-info li {
    margin-bottom: 1rem;
}

.flex-shrink-0 {
    flex-shrink: 0; 
}


.contact-info li i.fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block;
}


.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .footer-section {
        text-align: left;
    }
    
    .col-lg-4, .col-lg-2, .col-lg-3 {
        margin-bottom: 30px;
    }
}