﻿/* ============================================================
   Global anchor reset — remove underline/text-decoration from
   ALL <a> tags (default, hover, focus, active, visited).
   Fixes underlines appearing on button-style links on hover.
   ============================================================ */
a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}


/* ============================================================
   Chatbot & HRMS page styles (chatbot.html, hrms.html)
   Global (no body-class scope) â€” class names are unique (.cb-*, .hrms-*)
   so they cannot affect other pages. Palette matches the Mi Soft logo.
   ============================================================ */
.cb-container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 22px; }

:root {
    --cb-dark: #2C5964;
    --cb-navy: #1A3940;
    --cb-orange: #F08830;
    --cb-blue: #4F84C4;
    --cb-bluedk: #00539C;
    --cb-text: #213546;
    --cb-bg: #f7f5f0;
    --cb-muted: #4a5568;
    --cb-grad: linear-gradient(135deg, #2C5964 0%, #1A3940 100%);
    --cb-grad-accent: linear-gradient(135deg, #F08830 0%, #2C5964 100%);
    --cb-grad-soft: linear-gradient(160deg, #ffffff 0%, #eef4f8 100%);
    --cb-shadow-3d: 0 2px 1px rgba(26,57,64,0.10),
                     0 6px 8px rgba(26,57,64,0.12),
                     0 14px 22px rgba(26,57,64,0.16),
                     0 30px 45px rgba(26,57,64,0.12);
    --cb-shadow-3d-hover: 0 4px 2px rgba(26,57,64,0.12),
                          0 10px 14px rgba(26,57,64,0.16),
                          0 22px 34px rgba(26,57,64,0.20),
                          0 44px 70px rgba(26,57,64,0.20);
}

/* Hero */
.cb-hero { position: relative; background: var(--cb-grad); color: #fff; padding: 52px 0 86px; overflow: hidden; }
.cb-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 20%, rgba(240,136,48,0.35), transparent 40%), radial-gradient(circle at 88% 80%, rgba(79,132,196,0.35), transparent 42%); }
.cb-hero .cb-container { position: relative; text-align: center; }
.cb-hero .cb-eyebrow { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); padding: 7px 18px; border-radius: 40px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 22px; }
.cb-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 60px); font-weight: 900; line-height: 1.08; text-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 18px 40px rgba(0,0,0,0.25); }
.cb-hero p { max-width: 720px; margin: 22px auto 0; font-size: 18px; color: rgba(255,255,255,0.88); }
.cb-hero .cb-cta-row { margin-top: 34px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cb-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 18px; }
.cb-btn { display: inline-block; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-family: 'Montserrat', sans-serif; transition: transform .25s ease, box-shadow .25s ease; }
.cb-btn-primary { background: var(--cb-orange); color: #fff; box-shadow: 0 8px 0 #b8631c, 0 16px 30px rgba(184,99,28,0.4); }
.cb-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 11px 0 #b8631c, 0 22px 38px rgba(184,99,28,0.45); }
.cb-btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); box-shadow: var(--cb-shadow-3d); }
.cb-btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

/* Stats Band */
.cb-stats { margin-top: -54px; padding-bottom: 18px; position: relative; z-index: 5; }
.cb-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cb-stat-card { margin-top: 100px; background: #fff; border-radius: 18px; padding: 20px 16px; text-align: center; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; }
.cb-stat-card .cb-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 42px; background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cb-stat-card .cb-label { color: var(--cb-muted); font-weight: 600; font-size: 14px; margin-top: 6px; }

/* Section */
.cb-section { padding: 38px 0; }
.cb-section-head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.cb-section-head .cb-tag { color: var(--cb-orange); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; }
.cb-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 10px; }
.cb-section-head p { color: var(--cb-muted); font-size: 17px; }

/* Category chips */
.cb-chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.cb-chip { background: #fff; border: 1.5px solid #e2e8ec; color: var(--cb-dark); padding: 10px 22px; border-radius: 40px; font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 14px; box-shadow: 0 4px 10px rgba(26,57,64,0.06); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.cb-chip:hover, .cb-chip.active { background: var(--cb-grad-accent); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 22px rgba(44,89,100,0.3); }

/* Cards grid */
.cb-grid { display: grid; gap: 20px; }
.cb-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cb-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cb-card { background: #fff; border-radius: 20px; padding: 24px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.cb-card::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.cb-card:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.cb-card .cb-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: #fff; margin-bottom: 14px; background: var(--cb-grad); box-shadow: 0 10px 18px rgba(44,89,100,0.3); }
.cb-card h3 { font-size: 20px; margin-bottom: 10px; }
.cb-card p { color: var(--cb-muted); font-size: 15px; }
.cb-badge { display: inline-block; background: rgba(240,136,48,0.12); color: var(--cb-orange); font-weight: 700; font-size: 12px; padding: 4px 12px; border-radius: 30px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.cb-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 14px; }
.cb-tag-item { background: #eef4f8; color: var(--cb-dark); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.cb-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cb-orange); font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 14px; transition: gap .2s ease; }
.cb-link:hover { gap: 14px; }
.cb-bg-soft { background: var(--cb-grad-soft); }

/* Research stats */
.cb-research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cb-research { background: var(--cb-grad); color: #fff; border-radius: 20px; padding: 26px 22px; text-align: center; box-shadow: var(--cb-shadow-3d); }
.cb-research .cb-rnum { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 46px; color: #fff; }
.cb-research .cb-rlabel { margin-top: 8px; opacity: .9; font-weight: 600; }

/* CTA */
.cb-cta { position: relative; background: var(--cb-grad-accent); color: #fff; border-radius: 26px; padding: 40px 30px; text-align: center; overflow: hidden; box-shadow: var(--cb-shadow-3d); margin: 18px auto; }
.cb-cta h2 { color: #fff; font-size: 30px; }
.cb-cta p { max-width: 640px; margin: 14px auto 28px; opacity: .95; }

/* Designated Links Space */
.cb-links { background: #fff; border: 2px dashed var(--cb-blue); border-radius: 22px; padding: 28px 24px; box-shadow: var(--cb-shadow-3d); }
.cb-links .cb-links-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.cb-links .cb-links-head i { color: var(--cb-blue); font-size: 22px; }
.cb-links h3 { font-size: 22px; }
.cb-links .cb-hint { color: var(--cb-muted); font-size: 14px; margin-bottom: 16px; }
.cb-links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cb-link-card { display: flex; align-items: center; gap: 12px; background: var(--cb-bg); border-radius: 14px; padding: 16px 18px; border: 1px solid #e6ecef; transition: transform .2s ease, box-shadow .2s ease; }
.cb-link-card:hover { transform: translateY(-4px); box-shadow: var(--cb-shadow-3d); }
.cb-link-card .cb-lc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--cb-grad); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cb-link-card a { color: var(--cb-dark); font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 15px; }
.cb-link-card small { display: block; color: var(--cb-muted); font-weight: 500; font-size: 12px; }
.cb-add-link { display: flex; align-items: center; justify-content: center; gap: 10px; border: 2px dashed #c4d2da; border-radius: 14px; padding: 16px; color: var(--cb-blue); font-weight: 700; font-family: 'Montserrat', sans-serif; background: #fbfdfe; cursor: pointer; }
.cb-add-link:hover { background: #eef4f8; }

/* Footer */
.cb-footer { background: var(--cb-navy); color: rgba(255,255,255,0.8); padding: 22px 0; margin-top: 18px; }
.cb-footer .cb-container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
.cb-footer a { color: rgba(255,255,255,0.8); }
.cb-footer a:hover { color: var(--cb-orange); }
.cb-footer .cb-fbrand { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #fff; font-size: 18px; }

@media (max-width: 900px) {
    .cb-stats-grid, .cb-grid-3, .cb-research-grid, .cb-links-grid { grid-template-columns: 1fr 1fr; }
    .cb-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .cb-stats-grid, .cb-grid-3, .cb-research-grid, .cb-links-grid { grid-template-columns: 1fr; }
    .cb-nav { display: none; }
}

/* Recruitment pipeline (numbered steps) */
.hrms-pipeline { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 14px; }
.hrms-pipeline li {
    display: flex; gap: 16px; align-items: flex-start;
    background: #fff; border: 1px solid #eef2f5; border-radius: 16px; padding: 18px 20px;
    box-shadow: var(--cb-shadow-3d); transition: transform .25s ease, box-shadow .25s ease;
}
.hrms-pipeline li:hover { transform: translateY(-4px); box-shadow: var(--cb-shadow-3d-hover); }
.hrms-step-num {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 900; color: #fff;
    background: var(--cb-grad); box-shadow: 0 8px 16px rgba(44,89,100,0.3);
}
.hrms-pipeline li strong { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 16px; }
.hrms-pipeline li p { color: var(--cb-muted); font-size: 14px; margin-top: 4px; }

/* FAQ accordion (native <details>) */
.hrms-accordion { display: grid; gap: 14px; max-width: 860px; margin: 0 auto; }
.hrms-faq {
    background: #fff; border: 1px solid #eef2f5; border-radius: 16px;
    box-shadow: var(--cb-shadow-3d); overflow: hidden;
}
.hrms-faq summary {
    cursor: pointer; list-style: none; padding: 18px 22px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--cb-navy); font-size: 16px;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.hrms-faq summary::-webkit-details-marker { display: none; }
.hrms-faq summary::after {
    content: "\f078"; font-family: "Font Awesome 5 Free"; font-weight: 900;
    color: var(--cb-orange); transition: transform .25s ease;
}
.hrms-faq[open] summary::after { transform: rotate(180deg); }
.hrms-faq-body { padding: 0 22px 20px; color: var(--cb-muted); font-size: 15px; }

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #f7f5f0;
}

.container {
    max-width: 1050px;
}


/*******************************/
/********** Header CSS *********/
/*******************************/
.header {
    position: relative;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

@media (min-width: 1200px) {
    .header .container-fluid {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.header .brand {
    position: relative;
}

.header .brand img {
    width: 100%;
    max-width: 150px;
    height: 100%;
    max-height: 100px;
}

.header .topbar {
    position: relative;
    text-align: right;
}

.header .topbar .topbar-col {
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 15px;
}

.header .topbar-col a {
    color: #213546;
    font-size: 13px;
}

.header .topbar-col a i {
    margin-right: 10px;
    color: #4F84C4;
}

.header .topbar-social {
    position: relative;
}

.header .topbar-social a {
    display: inline-block;
}

.header .topbar-social a i {
    margin-right: 10px;
    font-size: 18px;
    color: #4a5568;
}

.header .topbar-social a:last-child i {
    margin: 0;
}

.header .topbar-social a:hover i {
    color: #4F84C4;
}

.header .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #bbbbbb;
}

.header .dropdown-menu a.active {
    color: #4F84C4;
}

/* @media (min-width: 992px) {
    .header .navbar {
        background: #ffffff !important;
    }
    
    .header .navbar-brand {
        display: none;
    }
    
    .header .navbar-light a.nav-link {
        position: relative;
        padding: 8px 10px;
        color: #2C5964;
        font-size: 16px;
        font-weight: 600;
        z-index: 1;
        transition: .3s;
    }
    
    .header .navbar-light a.nav-link:hover,
    .header .navbar-light a.nav-link.active {
        color: #F08830;
        font-weight: 500;
    }
}

@media (max-width: 992px) {
    .header .brand {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .header .topbar {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .header .topbar .topbar-col {
        margin: 0;
    }
    
    .header .topbar .topbar-social {
        margin-top: 5px;
    }
    
    .header .navbar {
        background: #ffffff !important;
        border: 1px solid #eeeeee;
        z-index: 1;
    }
    
    .header a.nav-link {
        padding: 5px 0;
    }
    
    .header .dropdown-menu {
        box-shadow: none;
    }
} */

.header .navbar .btn {
    position: relative;
    margin-left: 15px;
    padding: 12px 25px 10px 25px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    background: linear-gradient(#4F84C4, #00539C);
    transition: .5s;
}

.header .navbar .btn:hover {
    background: linear-gradient(#00539C, #4F84C4);
}

.header .navbar .btn i {
    font-size: 16px;
    margin-right: 8px;
}

@media (max-width: 992px) {
    .header .navbar .btn {
        margin: 15px 0 10px 0;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
}

.page-header h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    text-transform: uppercase;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    top: 6.5px;
    right: -6px;
    border-radius: 7px;
    background: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}


/*******************************/
/*********** Hero CSS **********/
/*******************************/
.hero {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 45px 60px;
    }
}

.hero h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
}

.hero h2 span {
    color: #2C5964;
    font-size: 40px;
}

.hero p {
    margin: 10px 0 20px 0;
    font-size: 18px;
    font-weight: 500;
}

.hero a.btn {
    position: relative;
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #2C5964, #F08830);
    box-shadow: 0 14px 24px rgba(44, 89, 100, .28);
    transition: .5s;
}

.hero a.btn:hover {
    background: linear-gradient(90deg, #F08830, #2C5964);
    box-shadow: 0 18px 30px rgba(44, 89, 100, .4);
    transform: translateY(-5px);
}

.hero img {
    max-width: 100%;
    max-height: 600px;
}

@media (max-width: 767.98px) {
    .hero img {
        margin-top: 30px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 550px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
    padding-bottom: 15px;
}

.section-header::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    left: calc(50% - 30px);
    bottom: 0;
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
    border-radius: 100%;
}

.section-header h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-header p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

@media (min-width: 768px) {
    .service {
        padding: 45px 60px 15px 60px;
    }
}

/* .service .service-item {
   position: relative;
    width: 100%;
    height: calc(100% - 30px);
    padding: 25px 30px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .03) 96%, rgba(0, 0, 0, .1), rgba(0, 0, 0, .2));
    border-radius: 30px 30px 0 0;
    margin-bottom: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
} */

.service .service-item {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    perspective: 1200px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.service .service-item:hover {
    transform: translateY(-12px);
}

.service .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

/* .service .service-item:hover {
    background: linear-gradient(to bottom, rgba(0, 0, 0, .03) 96%, rgba(0, 0, 0, .2), rgba(0, 0, 0, .4));
} */

.service .service-item:hover .card-inner {
    transform: rotateY(180deg);
}

.service .service-item h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* .service .service-item img {
    width: 50px;
    height: 50px;
} */

/* .service .service-item .service-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #2C5964;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
} */

.service .service-item img {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(28%) sepia(24%) saturate(1275%) hue-rotate(155deg) brightness(93%) contrast(92%);
}

.service .card-front svg {
    height: 62px;
    width: 62px;
    padding: 14px;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #ffffff;
    background: #2A5E6B;
    box-shadow: 0 12px 26px rgba(44, 89, 100, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.service .card-front,
.service .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 24px;
    padding: 32px 26px;
    box-sizing: border-box;
    border: 1px solid rgba(44, 89, 100, 0.16);
    box-shadow: 0 22px 48px rgba(44, 89, 100, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service .card-front {
    background: linear-gradient(160deg, #ffffff 0%, #eef4f8 100%);
}

.service .card-front::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: #2A5E6B;
}

.service .card-front .service-icon {
    height: 80px;
    margin-bottom: 20px;
}

.service .card-front h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 1px;
    color: #2C5964;
    margin: 0;
}

.service .card-back {
    background: linear-gradient(135deg, #2A5E6B, #F58634);
    transform: rotateY(180deg);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 48px rgba(44, 89, 100, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.service .card-back p {
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    margin: 0;
}

.service .card-back .btn {
    margin-top: 20px;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #F08830;
    background: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.service .card-back .btn:hover {
    background: #2C5964;
    color: #ffffff;
}

.service .service-item p {
    position: relative;
    margin: 20px 0 0 0;
    font-size: 16px;
}

.service .video-player {
    position: relative;
    padding-bottom: 41.7%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #ffffff;
    margin: 30px 0 0 0;
    border-radius: 8px;
}

.service .video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: #000000;
    z-index: -1;
}

.service .video-player img {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    border: none;
    height: auto;
    border-radius: 8px;
    filter: opacity(75%);
    -webkit-filter: opacity(75%);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
    z-index: 1;
}

.service .video-player:hover img {
    filter: opacity(100%);
    -webkit-filter: opacity(100%);
}

.service .video-player .play {
    height: 100px;
    width: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: absolute;
    background: url("../img/play.png") no-repeat;
    cursor: pointer;
    z-index: 2;
}

.service .video-player .play:hover {
    background: url("../img/play-hover.png") no-repeat;
}

@media (max-width: 575.98px) {   
    .service .video-player .play {
        height: 60px;
        width: 60px;
        left: 50%;
        top: 50%;
        margin-left: -30px;
        margin-top: -30px;
        background: url("../img/play-60.png") no-repeat;
    }
    
    .service .video-player .play:hover {
        background: url("../img/play-hover-60.png") no-repeat;
    }
}


/*******************************/
/******* Service Row CSS *******/
/*******************************/
.service-row {
    position: relative;
    width: 100%;
    padding: 45px 0;
    
}

.service-row .service-row-img {
    position: relative;
    width: 100%;
    padding: 16px 30px;
    perspective: 1100px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(160deg, #ffffff 0%, #eaf2f0 100%);
    border: 1px solid rgba(44, 89, 100, 0.14);
    box-shadow: 0 22px 48px rgba(44, 89, 100, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    --mx: 50%;
    --my: 50%;
}

/* shine that sweeps across the product on hover (clipped to the frame) */
.service-row .service-row-img::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 30px;
    right: 30px;
    bottom: 16px;
    border-radius: 12px;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 65%);
    transform: translateX(-130%);
    transition: transform 0.85s ease;
    pointer-events: none;
    z-index: 2;
}

.service-row .service-row-img:hover::after {
    transform: translateX(130%);
}

.service-row .service-row-img img {
    width: 100%;
    height: 388px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 12px;
    background: linear-gradient(160deg, #ffffff 0%, #eaf2f0 100%);
    box-shadow: 0 14px 30px rgba(44, 89, 100, 0.18);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateZ(0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s ease;
    will-change: transform;
}

.service-row .service-row-img:hover img {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.04);
    box-shadow: 0 26px 54px rgba(44, 89, 100, 0.34);
}

/* Touch devices: no sticky hover transforms, images stay calm & fully visible */
@media (hover: none) {
    .service-row .service-row-img img {
        transform: none;
    }
    .service-row .service-row-img::after {
        display: none;
    }
}

/* Water-lens ripple that follows the cursor on the product image */
.service-row .service-row-img .water-lens {
    position: absolute;
    left: var(--mx, 50%);
    top: var(--my, 50%);
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%) scale(0.55);
    border-radius: 50%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    z-index: 4;
    backdrop-filter: blur(1.8px) saturate(1.3) brightness(1.08);
    -webkit-backdrop-filter: blur(1.8px) saturate(1.3) brightness(1.08);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.08) 42%, transparent 70%);
    box-shadow: inset 0 0 40px rgba(44, 89, 100, 0.18), 0 0 30px rgba(44, 89, 100, 0.22);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-row .service-row-img:hover .water-lens {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* animated ripple rings inside the lens (water moving) */
.service-row .service-row-img .water-lens::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0) 0 10px, rgba(255, 255, 255, 0.18) 11px 12px);
    -webkit-mask: radial-gradient(circle, #000 50%, transparent 74%);
    mask: radial-gradient(circle, #000 50%, transparent 74%);
    animation: waterRipple 2.6s linear infinite;
}

@keyframes waterRipple {
    0% { transform: scale(0.7); opacity: 0.75; }
    100% { transform: scale(1.45); opacity: 0; }
}

@media (hover: none) {
    .service-row .service-row-img .water-lens {
        display: none;
    }
}

@media(max-width: 767.98px) {
    .service-row .service-row-img {
        margin-bottom: 30px;
    }
}

.service-row .service-row-text {
    position: relative;
    width: 100%;
    padding: 0 30px;
}

.service-row h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.service-row h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #2C5964, #F08830, #2C5964);
    border-radius: 0 100% 100% 0; 
}

.service-row p {
    font-size: 16px;
}

.service > .container-fluid > a.btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(#2C5964, #1A3940);
    transition: .5s;
}

.service > .container-fluid > a.btn:hover {
    background: linear-gradient(#1A3940, #2C5964);
}

.service-row .service-row-col .col-sm-6 {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 15px;
}

.service-row .service-row-col-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    padding: 8px 0;
    text-align: center;
    color: #ffffff;
    background: #4F84C4;
}

.service-row .service-row-col-text {
    width: calc(100% - 55px);
}

.service-row .service-row-col-text h3 {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 3px;
}

.service-row .service-row-col-text p {
    margin: 0;
    font-size: 10px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .service-row .service-row-img,
    .service-row .service-row-text {
        padding: 0;
    }
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

@media (min-width: 768px) {
    .about .container-fluid {
        padding: 0;
    }
    
    .about .row {
        margin: 0;
    }
    
    .about .col-md-6:first-child {
        padding: 0;
    }
    
    .about .col-md-6:last-child {
        padding: 0 60px;
    }
}

.about h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 15px;
    margin-left: 15px;
}

.about h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
    border-radius: 0 100% 100% 0;
}

.about p {
    color: #213546;
    font-size: 16px;
    margin-bottom: 30px;
    margin-left: 15px;
}

.about a.btn {
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    background: linear-gradient(#2C5964, #1A3940);
    transition: .5s;
}

.about a.btn:hover {
    background: linear-gradient(#1A3940, #2C5964);
}

.about img {
    max-width: 100%;
    border-radius: 0 30px 30px 0;
}

.service a.btn {
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    background: linear-gradient(#2C5964, #1A3940);
    transition: .5s;
}

.service a.btn:hover {
    background: linear-gradient(#1A3940, #2C5964);
}

@media(max-width: 767.98px) {
    .about img {
        margin-bottom: 30px;
        border-radius: 30px 30px 0 0;
    }
}

/* ===== Vision Section ===== */
.vision-sec {
    background: #f7f9fb;
}

.vision-badge {
    display: inline-block;
    margin-left: 15px;
    margin-bottom: 14px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(44, 89, 100, 0.1);
    border: 1px solid rgba(44, 89, 100, 0.2);
    color: #2C5964;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
}

.vision-text {
    color: #5b6b76;
    font-size: 15px;
    line-height: 1.8;
}

.vision-content {
    padding-left: 64px;
}

@media(max-width: 991.98px) {
    .vision-content {
        padding-left: 15px;
    }
}

.vision-img {
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(44, 89, 100, 0.18);
    transition: transform .5s ease, box-shadow .5s ease;
}

.vision-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(44, 89, 100, 0.26);
}

@media(max-width: 767.98px) {
    .vision-img {
        margin-top: 30px;
    }
}

/* ===== A Word from Our CEO ===== */
.ceo-word {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: linear-gradient(135deg, #0f2a33 0%, #1A3940 50%, #0c1f29 100%);
}

.ceo-word-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
    animation: about-pulse 6s ease-in-out infinite;
}

.ceo-word-glow-1 {
    top: -70px;
    left: 30px;
    width: 360px;
    height: 360px;
    background: rgba(44, 89, 100, 0.6);
}

.ceo-word-glow-2 {
    bottom: -90px;
    right: 30px;
    width: 360px;
    height: 360px;
    background: rgba(240, 136, 48, 0.35);
    animation-delay: 2.4s;
}

.ceo-word .container {
    position: relative;
    z-index: 2;
}

.ceo-word-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.ceo-word-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.ceo-word-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ceo-word-photo {
    position: relative;
    z-index: 2;
    width: min(400px, 80vw);
    height: min(400px, 80vw);
    border-radius: 22px;
    padding: 6px;
    background: linear-gradient(135deg, #2C5964 0%, #F08830 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.ceo-word-photo:hover {
    transform: translateY(-6px) rotateY(-10deg) rotateX(4deg);
}

.ceo-word-caption {
    position: relative;
    z-index: 3;
    margin: 18px auto 0;
    width: 340px;
    max-width: 88%;
    background: linear-gradient(135deg, #2C5964 0%, #1A3940 100%);
    border: 1px solid rgba(240, 136, 48, 0.35);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.ceo-word-caption-name {
    margin: 0;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.ceo-word-caption-role {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #F08830;
}

.ceo-word-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid #0f2a33;
    display: block;
}

.ceo-word-text {
    position: relative;
}

.ceo-word-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #F08830;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
}

.ceo-word-name {
    margin: 0;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
}

.ceo-word-role {
    display: block;
    margin-top: 6px;
    margin-bottom: 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #5eead4;
}

.ceo-word-speech {
    margin: 0;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.85;
    color: #cbd5e1;
}

@media(max-width: 991.98px) {
    .ceo-word-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .ceo-word-media {
        margin-bottom: 10px;
    }
    .ceo-word-quote {
        left: 50%;
    }
    .ceo-word-speech {
        margin: 0 auto;
    }
}

.about .youtube-player {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #ffffff;
    margin: 0;
    border-radius: 0 30px 30px 0;
}

@media (max-width: 991.98px) {
    .about .youtube-player {
        padding-bottom: 50%;
    }
}

@media (max-width: 767.98px) {
    .about .youtube-player {
        padding-bottom: 56.23%;
        margin-bottom: 30px;
        border-radius: 30px 30px 0 0;
    }
}

.about .youtube-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: transparent;
}

.about .youtube-player img {
    bottom: 0;
    display: block;
    left: 0;
    margin: auto;
    max-width: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    height: auto;
    cursor: pointer;
    -webkit-filter: brightness(100%);
    -webkit-transition: .4s all;
    -moz-transition: .4s all;
    transition: .4s all;
}

.about .youtube-player img:hover {
    -webkit-filter: brightness(90%);
}

.about .youtube-player .play {
    height: 100px;
    width: 100px;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    position: absolute;
    background: url("../img/play.png") no-repeat;
    cursor: pointer;
}

.about .youtube-player .play:hover {
    background: url("../img/play-hover.png") no-repeat;
}

@media (max-width: 575.98px) {   
    .about .youtube-player .play {
        height: 60px;
        width: 60px;
        left: 50%;
        top: 50%;
        margin-left: -30px;
        margin-top: -30px;
        background: url("../img/play-60.png") no-repeat;
    }
    
    .about .youtube-player .play:hover {
        background: url("../img/play-hover-60.png") no-repeat;
    }
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

@media (min-width: 768px) {
    .faqs .container-fluid {
        padding: 0;
    }
    
    .faqs .row {
        margin: 0;
    }
    
    .faqs .col-md-6:first-child {
        padding: 0 60px;
    }
    
    .faqs .col-md-6:last-child {
        padding: 0;
    }
}

.faqs h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
}

.faqs h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
    border-radius: 0 100% 100% 0;
}

.faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.faqs .card:last-child {
    margin-bottom: 0;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    width: 100%;
    padding: 15px 20px 12px 20px;
    color: #213546;
    font-size: 16px;
    font-weight: 400;
    background: #ffffff;
    border: 2px solid #4F84C4;
    border-radius: 0 30px 30px 0;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #00539C;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #00539C;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-body {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 400;
    border: none;
    background: #ffffff;
}

.faqs a.btn {
    margin-top: 40px;
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    background: linear-gradient(#2C5964, #1A3940);
    transition: .5s;
}

.faqs a.btn:hover {
    background: linear-gradient(#1A3940, #2C5964);
}

.faqs img {
    max-width: 100%;
    border-radius: 30px 0 0 30px;
}


/*******************************/
/***** Innovative Products ******/
/*******************************/
.ip-header {
    text-align: center;
    margin-bottom: 45px;
}

.ip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    border-radius: 9999px;
    padding: 8px 16px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ip-badge i {
    width: 16px;
    height: 16px;
    color: #2563eb;
}

.ip-title {
    font-size: 47px;
    line-height: 56px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.ip-title span {
    color: #2563eb;
}

.ip-sub {
    font-size: 21px;
    line-height: 28px;
    font-weight: 600;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

.ip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 40px;
    position: relative;
    z-index: 10;
}

/* per-card accent themes (tcmstunner blue / green / orange) */
.ip-card--blue {
    --accent: #2563eb;
    --accent-light-from: #eff6ff;
    --accent-light-to: #dbeafe;
    --accent-border: #bfdbfe;
    --accent-text: #2563eb;
}
.ip-card--green {
    --accent: #16a34a;
    --accent-light-from: #f0fdf4;
    --accent-light-to: #dcfce7;
    --accent-border: #bbf7d0;
    --accent-text: #16a34a;
}
.ip-card--orange {
    --accent: #ea580c;
    --accent-light-from: #fff7ed;
    --accent-light-to: #ffedd5;
    --accent-border: #fed7aa;
    --accent-text: #ea580c;
}

.ip-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.ip-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--accent-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ip-card-head {
    position: relative;
    background: linear-gradient(to bottom right, var(--accent-light-from), var(--accent-light-to));
    padding: 24px 24px 32px;
    transition: all 0.5s ease;
}

.ip-card-logo-wrap {
    width: 100%;
    height: 140px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
}

.ip-card-logo {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.ip-card-name {
    font-size: 21px;
    line-height: 28px;
    font-weight: 600;
    color: #1f2937;
}

.ip-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 32px;
    display: block;
}

.ip-wave path {
    fill: #ffffff;
}

.ip-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.ip-card-desc {
    font-size: 16px;
    line-height: 24px;
    color: #4b5563;
    margin-bottom: 24px;
    flex: 1;
}

.ip-card-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px;
    border: 2px solid var(--accent-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--accent-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ip-card:hover .ip-card-btn {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.ip-card-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.ip-card:hover .ip-card-btn i {
    transform: translateX(8px);
}

.ip-more-wrap {
    margin-top: 64px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.ip-more-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 8px;
    background: #2563eb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ip-more-btn:hover {
    background: #1d4ed8;
}

@media (max-width: 991.98px) {
    .ip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .ip-grid {
        grid-template-columns: 1fr;
    }
    .ip-title {
        font-size: 34px;
        line-height: 42px;
    }
}

@media (max-width: 767.98px) {
    .faqs img {
        margin-top: 30px;
        border-radius: 0 0 30px 30px;
    }
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 45px 0;
    text-align: center;
}

.testimonial .container {
    max-width: 960px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(2);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider-nav .slick-center img {
    border: 5px solid #ffffff;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
    font-size: 20px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
}

.testimonial .testimonial-slider p {
    font-size: 18px;
    font-style: italic;
    margin: 0;
}


/*******************************/
/*********** News CSS **********/
/*******************************/
.news {
    position: relative;
    width: 100%;
    padding: 45px 0 50px 0;
}

@media (min-width: 768px) {
    .news .container-fluid {
        padding: 0;
    }
    
    .news .row {
        margin: 0;
    }
    
    .news .col-md-6:first-child {
        padding: 0;
    }
    
    .news .col-md-6:last-child {
        padding: 0 60px;
    }
}

.news h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.news h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
    border-radius: 0 100% 100% 0; 
}

.news p {
    font-size: 16px;
    margin-bottom: 30px;
}

.news a.btn {
    padding: 10px 35px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    background: linear-gradient(#4F84C4, #00539C);
    transition: .5s;
}

.news a.btn:hover {
    background: linear-gradient(#00539C, #4F84C4);
}

.news img {
    max-width: 100%;
    border-radius: 0 30px 30px 0;
}

@media (max-width: 767.98px) {
    .news img {
        margin-bottom: 30px;
        border-radius: 30px 30px 0 0;
    }
}


/*******************************/
/***** Competitive Advantage ***/
/*******************************/
.advantage {
    position: relative;
    padding: 50px 0;
    background: #f7f9fb;
}

.advantage .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.advantage .eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F08830;
    margin-bottom: 10px;
}

.advantage h2 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #213546;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.advantage h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
    border-radius: 0 100% 100% 0;
}

.advantage .section-header p {
    font-size: 16px;
    color: #4a5568;
    max-width: 760px;
    margin: 0 auto;
}

.advantage .row {
    perspective: 1200px;
}

.advantage-card {
    position: relative;
    height: 100%;
    text-align: left;
    padding: 40px 25px;
    background: linear-gradient(145deg, #ffffff 0%, #f3f6f9 100%);
    border-radius: 6px;
    box-shadow: 6px 6px 0 #1A3940, 0 12px 28px rgba(26, 57, 64, 0.12);
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.advantage-card:hover {
    transform: translateY(-6px) rotateX(4deg);
    box-shadow: 10px 10px 0 #F08830, 0 24px 50px rgba(26, 57, 64, 0.22);
}

.advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2C5964, #1A3940);
    color: #F08830;
    font-size: 32px;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #213546;
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 15px;
    line-height: 24px;
    color: #4a5568;
    margin: 0;
}

.advantage-stats {
    margin-top: 50px;
    padding: 35px 0;
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
    border-radius: 12px;
}

.advantage-stat {
    text-align: center;
    color: #ffffff;
}

.advantage-stat .stat-num {
    display: block;
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.advantage-stat .stat-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 767.98px) {
    .advantage-stat {
        margin-bottom: 25px;
    }
}


/*******************************/
/******* Call to Action ********/
/*******************************/
.call-to-action {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
}

.service-page .call-to-action {
    margin-top: 45px;
}

.call-to-action h2 {
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    text-transform: uppercase;
}

.call-to-action p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.call-to-action a {
    float: right;
    padding: 10px 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #F08830;
    background: #2C5964;
    border-radius: 30px;
}

.call-to-action a:hover{
    color: #F08830 !important;
}

@media (max-width: 768px) {
    .call-to-action a {
        float: left;
        margin-top: 30px;
    }
}


/*******************************/
/********** Story CSS **********/
/*******************************/
.story {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

@media(min-width: 768px) {
    .story {
        padding: 45px 60px 15px 60px;
    }
}

.story .story-container {
    position: relative;
    width: 100%;
}

.story .story-end,
.story .story-start,
.story .story-year {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.story .story-end p,
.story .story-start p,
.story .story-year p {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0;
    padding: 30px 0;
    text-align: center;
    background: linear-gradient(#2C5964, #1A3940);
    border-radius: 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
    color: #F08830;
    font-size: 14px;
    text-transform: uppercase;
}

.story .story-year {
    margin: 30px 0;
}

.story .story-continue {
    position: relative;
    width: 100%;
    padding: 60px 0;
}

.story .story-continue::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    margin-left: -1px;
    background: #4F84C4;
}

.story .row.story-left,
.story .row.story-right .story-date {
    text-align: right;
}

.story .row.story-right,
.story .row.story-left .story-date {
    text-align: left;
}

.story .story-date {
    font-size: 14px;
    font-weight: 600;
    margin: 41px 0 0 0;
}

.story .story-date::after {
    content: '';
    display: block;
    position: absolute;
    width: 14px;
    height: 14px;
    top: 45px;
    background: linear-gradient(#4F84C4, #00539C);
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
    border-radius: 15px;
    z-index: 1;
}

.story .row.story-left .story-date::after {
    left: -7px;
}

.story .row.story-right .story-date::after {
    right: -7px;
}

.story .story-box,
.story .story-launch {
    position: relative;
    display: inline-block;
    margin: 15px;
    padding: 20px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    background: #ffffff;
}

.story .story-launch {
    width: 100%;
    margin: 15px 0;
    padding: 0;
    border: none;
    text-align: center;
    background: transparent;
}

.story .story-box::after,
.story .story-box::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.story .row.story-left .story-box::after,
.story .row.story-left .story-box::before {
    left: 100%;
}

.story .row.story-right .story-box::after,
.story .row.story-right .story-box::before {
    right: 100%;
}

.story .story-launch .story-box::after,
.story .story-launch .story-box::before {
    left: 50%;
    margin-left: -10px;
}

.story .story-box::after {
    top: 26px;
    border-color: transparent transparent transparent #ffffff;
    border-width: 10px;
}

.story .story-box::before {
    top: 25px;
    border-color: transparent transparent transparent #dddddd;
    border-width: 11px;
}

.story .row.story-right .story-box::after {
    border-color: transparent #ffffff transparent transparent;
}

.story .row.story-right .story-box::before {
    border-color: transparent #dddddd transparent transparent;
}

.story .story-launch .story-box::after {
    top: -20px;
    border-color: transparent transparent #dddddd transparent;
}

.story .story-launch .story-box::before {
    top: -19px;
    border-color: transparent transparent #ffffff transparent;
    border-width: 10px;
    z-index: 1;
}

.story .story-box .story-icon {
    position: relative;
    width: 40px;
    height: auto;
    float: left;
}

.story .story-icon i {
    font-size: 25px;
    color: #4F84C4;
}

.story .story-icon img {
    width: 25px;
}

.story .story-box .story-text {
    position: relative;
    width: calc(100% - 40px);
    float: left;
}

.story .story-launch .story-text {
    width: 100%;
}

.story .story-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
}

.story .story-text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .story .story-continue::after {
        left: 40px;
    }
    
    .story .story-end,
    .story .story-start,
    .story .story-year,
    .story .row.story-left,
    .story .row.story-right .story-date,
    .story .row.story-right,
    .story .row.story-left .story-date,
    .story .story-launch {
        text-align: left;
    }
    
    .story .row.story-left .story-date::after,
    .story .row.story-right .story-date::after {
        left: 47px;
    }
    
    .story .story-box,
    .story .row.story-right .story-date,
    .story .row.story-left .story-date {
        margin-left: 55px;
    }
    
    .story .story-launch .story-box {
        margin-left: 0;
    }
    
    .story .row.story-left .story-box::after {
        left: -20px;
        border-color: transparent #ffffff transparent transparent;
    }

    .story .row.story-left .story-box::before {
        left: -22px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .story .story-launch .story-box::after,
    .story .story-launch .story-box::before {
        left: 30px;
        margin-left: 0;
    }
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 60px 0;
}

@media (min-width: 768px) {
    .team {
        padding: 45px 60px 60px 60px;
    }
}


.team .team-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 30px;
    background: rgba(0, 0, 0, .05);
    border-radius: 300px 300px 5px 5px;
}

.team .team-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.team .team-img img {
    width: 100%;
    border-radius: 300px;
}

.team .team-text {
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.team .team-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.team .team-text p {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.team .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: rgba(79, 132, 196, .92);
    border-radius: 300px 300px 5px 5px;
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social {
    opacity: 1;
}

.team .team-social a {
    color: #ffffff;
    font-size: 22px;
    padding: 0 10px;
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.portfolio {
    position: relative;
    padding: 45px 0;
    background: #ffffff;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 30px;
    background: linear-gradient(#4F84C4, #00539C);
    border: 1px solid #4F84C4;
    transition: .5s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #ffffff;
    color: #213546;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    margin: 25px 0;
    padding: 15px 40px;
    transition: .5s;
}

.portfolio .load-more .btn:hover {
    background: linear-gradient(#00539C, #4F84C4);
}

.portfolio .portfolio-item {
    position: relative;
    height: 280px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.portfolio .portfolio-item figure {
    background: #ffffff;
    overflow: hidden;
    height: 280px;
    position: relative;
    border-radius: 30px 30px 0 0;
    margin: 0; 
}

.portfolio .portfolio-item figure img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    border-radius: 8px;
}

.portfolio .portfolio-item figure:hover img {
    opacity: 0.3;
    transition: 0.3s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
    position: absolute;
    display: inline-block;
    opacity: 0;
    line-height: 1;
    text-align: center;
    width: 45px;
    height: 35px;
    border-radius: 6px;
    background: linear-gradient(#4F84C4, #00539C);
    transition: 0.5s;
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
    color: #ffffff;
    padding-top: 9px;
    font-size: 16px;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
    background: linear-gradient(#00539C, #4F84C4);
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
    color: #ffffff;
}

.portfolio .portfolio-item figure .link-preview {
    top: 50%;
    left: calc(50% - 61px);
}

.portfolio .portfolio-item figure .link-details {
    top: 50%;
    right: calc(50% - 61px);
}

.portfolio .portfolio-item figure:hover .link-preview {
    opacity: 1;
    top: calc(50% - 50px);
}

.portfolio .portfolio-item figure:hover .link-details {
    opacity: 1;
    top: calc(50% - 50px);
}

.portfolio .portfolio-item figure .portfolio-title {
    position: absolute;
    margin: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    background: rgba(79, 132, 196, .8);
    border-radius: 0;
}

.portfolio .portfolio-item figure .portfolio-title:hover {
    text-decoration: none;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 45px;
    padding-bottom: 15px;
}

.contact h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #4F84C4, #00539C, #4F84C4);
    border-radius: 0 100% 100% 0;
}

.contact .contact-info {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.contact .contact-info iframe {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.contact .contact-info h3 {
    color: #3f4b5a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact .contact-info h3 span {
    font-weight: 400;
    padding-left: 5px;
}

.contact .contact-info p {
    color: #3f4b5a;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact .editor-info {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

@media (min-width: 992px) {
    .contact .editor-info {
        padding-left: 30px;
    }
}

.contact .editor-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dddddd;
}

.contact .editor-item:last-child {
    margin: 0;
    padding: 0;
    border: none;
}

.contact .editor-img {
    width: 120px;
    height: 120px;
    margin-right: 20px;
}

.contact .editor-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.contact .editor-text {
    width: auto;
}

.contact .editor-text h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact .editor-text a {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 65px 0;
}

.single h2.section-title {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 45px;
    padding-bottom: 15px;
}

.single h2.section-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, #4F84C4, #00539C, #4F84C4);
    border-radius: 0 100% 100% 0; 
}

.single h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.single p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
/*******************************/
/********** Footer *************/
/*******************************/
.site-footer {
    margin: 40px 0 16px;
    padding: 0 16px;
    background: #ffffff;
    font-family: inherit;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 0 64px;
    }
}

.footer-top {
    background: #eef4f5;
    border-radius: 24px 24px 0 0;
    padding: 40px;
}

.footer-top-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-top-inner {
        flex-direction: row;
    }
}

.footer-brand {
    width: 100%;
}

@media (min-width: 768px) {
    .footer-brand {
        width: 36%;
        padding-right: 30px;
    }
}

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-brand-logo img {
    height: 72px;
    width: auto;
}

.footer-brand-text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    color: #2C5964;
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #4a5568;
}

.footer-contact li i {
    width: 18px;
    margin-top: 3px;
    color: #F08830;
}

.footer-links-wrap {
    width: 100%;
}

@media (min-width: 768px) {
    .footer-links-wrap {
        width: 64%;
    }
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 24px;
}

@media (min-width: 576px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-col h3 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
    color: #1A3940;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 9px;
}

.footer-col a {
    font-size: 14px;
    color: #213546;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #F08830;
    text-decoration: underline;
}

.footer-bottom {
    background: #1A3940;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 24px 24px;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

@media (min-width: 640px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copy {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

@media (min-width: 640px) {
    .footer-copy {
        text-align: left;
    }
}

.footer-copy a {
    color: #ffffff;
    text-decoration: none;
}

.footer-copy a:hover {
    color: #F08830;
    text-decoration: underline;
}

.footer-bottom-right {
    display: flex;
    justify-content: center;
}

.footer-bottom-right p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.10);
    padding: 8px 18px;
    border-radius: 999px;
}

/* custom css */


/* @media (min-width: 992px) {

    .header .col-lg-2 {
        display: none;
    }

    .header .col-lg-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .header .topbar {
        display: none;
    }

    .header .navbar {
       position: fixed;
        top: 50%;
        right: 20px;
        left: auto;
        transform: translateY(-50%);
        width: 170px;
        max-width: 170px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        background: rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: none;
        border-radius: 10px;
        padding: 24px 16px;
    }

    .header .navbar-brand {
        display: flex !important;
        justify-content: center;
        margin: 0 0 20px 0;
    }

    .header .navbar-brand img {
       width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.15);
    }

    .header .navbar-collapse {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .header .navbar-collapse.justify-content-between {
        justify-content: flex-start !important;
    }

    .header .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 6px;
    }

    .header .navbar-nav.ml-auto {
        margin-left: 0 !important;
    }

    .header .navbar-light a.nav-link {
        text-align: center;
        padding: 8px 0;
        width: 100%;
    }

    .header .navbar .btn {
        margin: 14px 0 0 0 !important;
        width: 100%;
        text-align: center;
    }

    .header .dropdown-menu {
        background: #111111;
        border-radius: 12px;
    }

    .header .dropdown-menu a {
        color: #ffffff;
    }

    /* Content e right side extra space rakho jate sidebar content dhake na */
    /* .hero,
    .page-header {
        padding-right: 200px;
    } */
/* } */

.about-banner-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}



/*******************************/
/****** Tech Carousel (3D) ****/
/*******************************/
/* .tech-carousel {
    margin-top: 40px;
}

.tech-carousel .slick-track {
    display: flex;
}

.tech-carousel .slick-slide {
    height: auto;
}

.tech-item {
    padding: 0 12px;
}

.tech-flip-inner {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(44, 89, 100, 0.15);
}

.tech-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

.tech-item:hover .tech-flip-card {
    transform: rotateY(180deg);
}

.tech-flip-front,
.tech-flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    padding: 25px 20px;
    box-sizing: border-box;
}

.tech-flip-front {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 2px solid #2C5964;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 20px;
}

.tech-flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 136, 48, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 20px;
    box-sizing: border-box;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.tech-flip-front {
    background: #ffffff;
    border: 2px solid #2C5964;
    box-shadow: 0 10px 25px rgba(44, 89, 100, 0.15);
}

.tech-flip-front img {
    height: 60px;  
    margin-bottom: 18px;
}

.tech-flip-front h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2C5964;
    margin: 0;
}

.tech-flip-back {
    background: linear-gradient(#F08830, #C96A1F);
    transform: rotateY(180deg);
    box-shadow: 0 10px 25px rgba(240, 136, 48, 0.3);
}

.tech-flip-back p {
    color: #ffffff;
    font-size: 14px;
    line-height: 22px;
    margin: 0;
}

.tech-flip-back a {
    color: #ffffff;
    text-decoration: underline;
}

.tech-carousel .slick-dots {
    bottom: -35px;
}

.tech-carousel .slick-dots li button:before {
    color: #2C5964;
}

.tech-carousel .slick-dots li.slick-active button:before {
    color: #F08830;
}

.tech-item:hover .tech-flip-back {
    transform: translateX(0);
} */


@media (min-width: 992px) {

    .header {
        min-height: 64px;
    }

    .header .col-lg-2 {
        display: none;
    }

    .header .col-lg-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .header .topbar {
        display: none;
    }
    
    .header .navbar-brand .logo-ring {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
    }

    .header .navbar-brand .logo-ring::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: conic-gradient(#2C5964 0deg 180deg, #F08830 180deg 360deg);
        -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
        mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 4px));
    }

    .header .navbar-brand img {
        position: relative;
        width: 58px;
        height: 58px;
        object-fit: cover;
        border-radius: 50%;
        display: block;
        border: none;
        z-index: 1;
    }

    /* ---- Default state: normal horizontal navbar at top ---- */
    .header .navbar {
        position: relative;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
        background: transparent !important;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 8px 28px;
        z-index: 1000;
        transition: background 0.4s ease;
    }

    .header .navbar-brand {
        display: flex !important;
        align-items: center;
        margin: 0 50px 0 0;
    }

    .header .navbar-collapse {
        display: flex !important;
        flex-direction: row;
        width: auto;
    }

    .header .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        width: auto;
    }

    .header .navbar-nav.ml-auto {
        margin-left: 0 !important;
    }

    .header .navbar-light a.nav-link {
        text-align: center;
        width: auto;
        padding: 8px 10px;
        color: #2C5964;
        transition: .3s;
    }

    .header .dropdown-menu {
        background: #111111;
        border-radius: 12px;
    }

    .header .dropdown-menu a {
        color: #ffffff;
    }

    /* ---- Scrolled state: floating logo only, menu reveals on hover ---- */
    body.scrolled .header {
        min-height: 0;
    }

    body.scrolled .header .navbar {
        position: fixed;
        top: 50%;
        right: 18px;
        left: auto;
        transform: translateY(-50%);
        width: auto;
        max-width: none;
        border-radius: 50px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
        padding: 9px;
        transition: background 0.4s ease, box-shadow 0.4s ease;
    }

    /* invisible bridge (only while hovered) so hover is not lost across the gap to the menu */
    body.scrolled .header .navbar:hover::before {
        content: "";
        position: absolute;
        top: -10px;
        bottom: -10px;
        right: 100%;
        width: 26px;
        pointer-events: auto;
    }

    @supports not (backdrop-filter: blur(8px)) {
        body.scrolled .header .navbar {
            background: rgba(10, 15, 22, 0.96) !important;
        }
    }

    body.scrolled .header .navbar-brand {
        justify-content: center;
        margin: 0;
    }

    body.scrolled .header .navbar-brand .logo-ring {
        width: 66px;
        height: 66px;
    }

    body.scrolled .header .navbar-brand img {
        width: 60px;
        height: 60px;
    }

    /* Menu hidden by default, revealed (with animation) on hover of the floating logo */
    body.scrolled .header .navbar-collapse {
        position: absolute;
        top: 50%;
        right: calc(100% + 14px);
        transform: translateY(-50%) translateX(18px) scale(0.96);
        flex-direction: column;
        align-items: flex-end;
        width: auto;
        background: rgba(12, 18, 26, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 14px 18px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
        transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
        gap: 4px;
    }

    body.scrolled .header .navbar:hover .navbar-collapse {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) translateX(0) scale(1);
    }

    body.scrolled .header .navbar-nav {
        flex-direction: column;
        align-items: flex-end;
        width: auto;
        gap: 4px;
    }

    body.scrolled .header .navbar-light a.nav-link {
        width: auto;
        white-space: nowrap;
        padding: 7px 12px;
        color: #ffffff;
    }

    body.scrolled .header .navbar-light a.nav-link:hover,
    body.scrolled .header .navbar-light a.nav-link.active {
        color: #F08830;
    }

    body.scrolled .header .navbar .btn {
        margin: 8px 0 0 0 !important;
        width: auto;
        text-align: center;
    }
    .header .navbar-light a.nav-link:hover,
    .header .navbar-light a.nav-link.active {
        color: #F08830;
        font-weight: 500;
    }

    body.scrolled .header .mega-menu {
       position: fixed;
        top: 50%;
        left: auto;
        right: 210px;
        transform: translateY(-50%);
        margin-right: 0;
        width: 620px;
        max-width: calc(100vw - 260px);
        max-height: 80vh;
    }

    body.scrolled .header .mega-dropdown:hover .mega-menu {
       transform: translateY(-50%);
    }

     body.scrolled .header .mega-menu-col {
        max-height: 65vh;
        height: 65vh;
        overflow-y: scroll;
        padding-right: 10px;
        scrollbar-width: thin;
        scrollbar-color: #F08830 #f0f0f0;
    }

    /* Custom scrollbar (optional, better look) */
    body.scrolled .header .mega-menu-col::-webkit-scrollbar {
        width: 5px;
    }

    body.scrolled .header .mega-menu-col::-webkit-scrollbar-thumb {
        background: #F08830;
        border-radius: 10px;
    }

    body.scrolled .header .mega-menu-col::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }
}

/*******************************/
/****** Mega Dropdown Menu ****/
/*******************************/
.header .mega-dropdown {
    position: relative;
}

.header .mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 600px;
    max-width: 90vw;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1001;
}

.header .mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header .mega-menu-col {
    flex: 1;
}

.header .mega-menu-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #F08830;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    white-space: nowrap;
}

.header .mega-menu-col a {
    display: block;
    color: #2C5964;
    font-size: 14px;
    padding: 7px 0;
    transition: 0.2s;
}

.header .mega-menu-col a:hover {
    color: #F08830;
    padding-left: 5px;
}

/*******************************/
/****** Contact Btn Gradient **/
/*******************************/
.header .navbar .nav-link.btn-contact {
    background: linear-gradient(90deg, #2C5964, #F08830);
    color: #ffffff !important;
    border-radius: 50px;
    padding: 10px 26px !important;
    margin-left: 10px;
    transition: 0.4s;
}

.header .navbar .nav-link.btn-contact:hover {
    background: linear-gradient(90deg, #F08830, #2C5964);
}

.header .dropdown-icon {
    font-size: 13px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.header .mega-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}


/* ===========================================================
   Strategic Technology Consulting — Modern 3D Coverflow
   =========================================================== */
.tech-carousel {
    margin-top: 40px;
}

/* 3D depth stage */
.tech-carousel .slick-list {
    padding: 70px 0 80px !important;
    overflow: hidden;
    perspective: 2000px;
    perspective-origin: 50% 42%;
}

.tech-carousel .slick-track {
    display: flex;
    transform-style: preserve-3d;
}

/* base slide transition */
.tech-carousel .slick-slide {
    height: auto;
    transform-style: preserve-3d;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease,
        filter 0.8s ease;
    will-change: transform, opacity;
}

/* left / right neighbours — turned away in 3D with depth */
.tech-carousel .slick-slide.is-left {
    opacity: 0.55;
    filter: blur(0.3px);
    transform: translateX(24%) rotateY(40deg) translateZ(-160px) scale(0.82);
    z-index: 2;
}

.tech-carousel .slick-slide.is-right {
    opacity: 0.55;
    filter: blur(0.3px);
    transform: translateX(-24%) rotateY(-40deg) translateZ(-160px) scale(0.82);
    z-index: 2;
}

/* centre card — faces forward, elevated */
.tech-carousel .slick-slide.is-center {
    opacity: 1;
    filter: none;
    transform: translateZ(0) scale(1.06);
    z-index: 4;
}

/* off-stage cards — faded into the distance */
.tech-carousel .slick-slide.is-far {
    opacity: 0.12;
    transform: scale(0.55) translateZ(-300px);
    z-index: 1;
}

.tech-item {
    padding: 0 14px;
    perspective: 1200px;
}

/* modern glass card */
.tech-flip-inner {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 26px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 242, 240, 0.92) 100%);
    border: 1px solid rgba(44, 89, 100, 0.14);
    box-shadow:
        0 30px 60px rgba(44, 89, 100, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-sizing: border-box;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
}

/* glowing halo for the active card */
.tech-carousel .slick-slide.is-center .tech-flip-inner {
    box-shadow:
        0 44px 84px rgba(44, 89, 100, 0.42),
        0 0 0 1px rgba(240, 136, 48, 0.30),
        0 0 70px rgba(240, 136, 48, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* soft glow reflection beneath the centre card */
.tech-carousel .slick-slide.is-center .tech-flip-inner::after {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: -46px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(240, 136, 48, 0.35) 0%, rgba(240, 136, 48, 0) 70%);
    filter: blur(6px);
    z-index: -1;
}

.tech-item:hover .tech-flip-inner {
    transform: translateY(-12px);
}

/* flip mechanic */
.tech-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
}

.tech-item:hover .tech-flip-card,
.tech-item.is-flipped .tech-flip-card {
    transform: rotateY(180deg);
}

.tech-flip-front,
.tech-flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 26px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 34px 24px;
}

.tech-flip-front {
    background: linear-gradient(160deg, #ffffff 0%, #eaf2f0 100%);
}

.tech-flip-front::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, #2C5964, #F08830);
}

.tech-flip-front .tech-bg-img {
    width: 100%;
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    object-position: center;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient(160deg, #ffffff 0%, #eaf2f0 100%);
    border: 1px solid rgba(44, 89, 100, 0.14);
    padding: 12px;
    box-shadow: 0 16px 34px rgba(44, 89, 100, 0.22);
    transition: transform 0.6s ease;
}

.tech-item:hover .tech-flip-front .tech-bg-img {
    transform: scale(1.05) translateY(-4px);
}

.tech-flip-front h3 {
    font-size: 19px;
    font-weight: 700;
    line-height: 24px;
    margin: 0;
    background: linear-gradient(90deg, #2C5964, #F08830);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.tech-flip-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(44, 89, 100, 0.95) 0%, rgba(240, 136, 48, 0.92) 100%);
    color: #ffffff;
    overflow-y: auto;
}

.tech-flip-back p {
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
    margin: 0;
}

.tech-flip-back a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

/* dot navigation (no arrows) */
.tech-carousel .slick-dots {
    bottom: -14px;
}

.tech-carousel .slick-dots li {
    margin: 0 5px;
}

.tech-carousel .slick-dots li button:before {
    font-size: 12px;
    color: #2C5964;
    opacity: 0.4;
    transition: color 0.3s ease, opacity 0.3s ease, font-size 0.3s ease;
}

.tech-carousel .slick-dots li.slick-active button:before {
    color: #F08830;
    opacity: 1;
    font-size: 15px;
}

/*******************************/
/****** Consulting Process ****/
/*******************************/
.process {
    padding: 80px 0;
}

.process .process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s;
}

.process .process-step:hover {
    transform: translateY(-10px);
}

.process .process-number {
    display: inline-block;
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: #2C5964;
    text-shadow:
        1px 1px 0 #234a53,
        2px 2px 0 #234a53,
        3px 3px 0 #1a3940,
        4px 4px 0 #1a3940,
        5px 5px 10px rgba(0, 0, 0, 0.6);
}

.process .process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #213546;
    margin-bottom: 12px;
}

.process .process-step p {
    font-size: 15px;
    line-height: 24px;
    color: #4a5568;
}

/* Dashed connector line between steps, desktop only */
@media (min-width: 992px) {
    .process .col-lg-3:not(:last-child) .process-step::after {
        content: "";
        position: absolute;
        top: 40px;
        right: -16px;
        width: 32px;
        height: 2px;
        background: repeating-linear-gradient(to right, #F08830 0, #F08830 6px, transparent 6px, transparent 12px);
    }
}

/*******************************/
/****** Our Service Map *******/
/*******************************/
.service-map {
    padding: 60px 0;
}

.service-map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.map-cell {
    position: relative;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
}

.map-title-cell {
    background: #2C5964;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.map-title-cell h3 {
    color: #F08830;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.map-item {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.map-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.map-item:hover img {
    transform: scale(1.08);
}

.map-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #2C5964;
    color: #F08830;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 4px;
    max-width: calc(100% - 32px);
}

@media (max-width: 991.98px) {
    .service-map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .service-map-grid {
        grid-template-columns: 1fr;
    }
}


/*******************************/
/****** Service Highlight *****/
/*******************************/
.service-highlight {
    padding: 60px 0;
}

.service-highlight .highlight-card {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(44, 89, 100, 0.20), 0 5px 12px rgba(44, 89, 100, 0.14);
    transform: perspective(900px) translateY(0) rotateX(0deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    will-change: transform;
}

.service-highlight .highlight-card:hover {
    transform: perspective(900px) translateY(-10px) rotateX(7deg);
    box-shadow: 0 38px 64px rgba(44, 89, 100, 0.34), 0 12px 26px rgba(44, 89, 100, 0.22);
}

.service-highlight .highlight-front {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border: 2px solid #2C5964;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 20px;
}

.service-highlight .highlight-front .highlight-bg-img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    margin-bottom: 18px;
}

.service-highlight .highlight-front h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C5964;
    margin: 0;
}

.service-highlight .highlight-back {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, rgba(240, 136, 48, 0.92) 0%, rgba(201, 106, 31, 0.82) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -28px 52px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 25px 20px;
    box-sizing: border-box;
    border-radius: 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.service-highlight .highlight-card:hover .highlight-back {
    transform: translateY(0);
}

.service-highlight .highlight-back p {
    position: relative;
    width: 100%;
    color: #ffffff;
    font-size: 14px;
    line-height: 21px;
    margin: 0 0 12px 0;
    padding-left: 20px;
    text-align: left;
    box-sizing: border-box;
}

.service-highlight .highlight-back p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 3px;
    background: #2C5964;
    border-radius: 2px;
}

.service-highlight .highlight-back .btn {
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #F08830;
    background: #ffffff;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.service-highlight .highlight-back .btn:hover {
    background: #2C5964;
    color: #ffffff;
}


/*******************************/
/****** Services Grid *********/
/*******************************/
.services-grid {
    padding: 70px 0;
}

.section-header-left {
    max-width: 700px;
    margin-bottom: 40px;
}

.section-header-left h2 {
    font-size: 30px;
    font-weight: 800;
    color: #2C5964;
    margin-bottom: 12px;
}

.section-header-left p {
    font-size: 15px;
    color: #4a5568;
    line-height: 24px;
}

.services-grid .grid-card {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-bottom: 3px solid transparent;
    border-radius: 6px;
    padding: 25px 20px 22px;
    margin-bottom: 25px;
    text-decoration: none;
    transition: border-color 0.3s, transform 0.3s;
}

.services-grid .grid-card:hover,
.services-grid .grid-card.active {
    border-bottom-color: #F08830;
    transform: translateY(-4px);
}

.services-grid .grid-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 18px;
}

.services-grid .grid-icon-box svg {
    width: 26px;
    height: 26px;
}

.services-grid .icon-teal {
    background: rgba(44, 89, 100, 0.12);
    color: #2C5964;
}

.services-grid .icon-orange {
    background: rgba(240, 136, 48, 0.14);
    color: #F08830;
}

.services-grid .grid-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    color: #999999;
    transition: 0.3s;
}

.services-grid .grid-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    color: #999999;
    display: inline-block;
    transition: transform 0.4s ease, color 0.3s;
}

.services-grid .grid-card:hover .grid-arrow {
    color: #F08830;
    transform: rotate(45deg);
}

.services-grid .grid-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #2C5964;
    margin: 0;
    transition: 0.3s;
}

.services-grid .grid-card:hover h3,
.services-grid .grid-card.active h3 {
    color: #F08830;
}


/*******************************/
/****** Mission Value Cards ***/
/*******************************/
.mission-cards {
    padding: 70px 0;
}

.mission-cards .mv-card {
    position: relative;
    height: calc(100% - 30px);
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 30px;
    margin-bottom: 30px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow:
        0 1px 2px rgba(44, 89, 100, 0.08),
        0 8px 16px rgba(44, 89, 100, 0.08),
        0 20px 40px rgba(44, 89, 100, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mission-cards .mv-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 2px 4px rgba(240, 136, 48, 0.1),
        0 12px 24px rgba(240, 136, 48, 0.12),
        0 28px 50px rgba(44, 89, 100, 0.18);
}

.mission-cards .mv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2C5964, #1a3940);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        0 10px 20px rgba(44, 89, 100, 0.35);
    color: #ffffff;
}

.mission-cards .mv-icon svg {
    width: 38px;
    height: 38px;
}

.mission-cards .mv-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C5964;
    margin-bottom: 14px;
}

.mission-cards .mv-card p {
    font-size: 15px;
    line-height: 24px;
    color: #666666;
    margin: 0;
}

.mission-highlight {
    position: relative;
    color: #2C5964 !important;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    padding: 10px 20px 10px 55px;
    margin: 30px 0;
}

.mission-highlight::before {
    content: "\201C";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 70px;
    font-weight: 900;
    color: #F08830;
    font-family: Georgia, serif;
    line-height: 1;
}

.section-header-left h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.section-header-left h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #2C5964, #F08830);
}


/*********************************************************/
/***** Modern 3D Animated Hero (landing page) **********/
/*********************************************************/
.hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 54px 0;
}

.hero-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .5;
    z-index: 0;
    pointer-events: none;
    animation: orbFloat 16s ease-in-out infinite;
}

.hero-bg-orb.orb-1 {
    width: 380px;
    height: 380px;
    background: #2C5964;
    top: -90px;
    left: -70px;
}

.hero-bg-orb.orb-2 {
    width: 320px;
    height: 320px;
    background: #F08830;
    bottom: -70px;
    right: -50px;
    animation-delay: -5s;
}

.hero-bg-orb.orb-3 {
    width: 260px;
    height: 260px;
    background: #4F84C4;
    top: 35%;
    left: 46%;
    opacity: .32;
    animation-delay: -9s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(34px, -34px) scale(1.12); }
}

.hero-scene {
    position: relative;
    perspective: 1200px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content > * {
    animation: heroFadeUp .9s ease both;
}

.hero-content .hero-badge { animation-delay: .1s; }
.hero-content h2 { animation-delay: .25s; }
.hero-content p { animation-delay: .4s; }
.hero-content .btn { animation-delay: .55s; }

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(44, 89, 100, .1);
    color: #2C5964;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    border: 1px solid rgba(44, 89, 100, .2);
}

.hero-badge .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #F08830;
    box-shadow: 0 0 0 0 rgba(240, 136, 48, .6);
    animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
    0% { box-shadow: 0 0 0 0 rgba(240, 136, 48, .6); }
    70% { box-shadow: 0 0 0 11px rgba(240, 136, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(240, 136, 48, 0); }
}

.hero h2 {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
    margin: 0;
}

.hero-badge {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
}

.hero-content p {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
}

.hero h2 .accent-script {
    background: linear-gradient(90deg, #F08830, #C96A1F);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Pacifico', cursive;
}

.hero h2 .grad-text {
    background: linear-gradient(90deg, #2C5964, #4F84C4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-media {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    transition: transform .25s ease;
    will-change: transform;
}

.hero-media:hover {
    transform: translateX(20px) scale(1.08);
}

/* ===== Pure-CSS 3D animated hero visual (no images) ===== */
.hero-visual {
    position: relative;
    width: 100%;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.hero-visual .hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0) 70%);
    filter: blur(22px);
    z-index: 0;
}

.tech-cube {
    position: relative;
    width: 196px;
    height: 196px;
    transform-style: preserve-3d;
    animation: cubeSpin 20s linear infinite;
    z-index: 2;
}

.tech-cube .face {
    position: absolute;
    width: 196px;
    height: 196px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .55));
    border: 1px solid rgba(44, 89, 100, .25);
    box-shadow: 0 10px 30px rgba(44, 89, 100, .18), inset 0 1px 0 rgba(255, 255, 255, .6);
    backdrop-filter: blur(4px);
    color: #2C5964;
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
}

.tech-cube .face i {
    font-size: 38px;
    background: linear-gradient(135deg, #2C5964, #4F84C4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.tech-cube .face span {
    font-size: 14px;
    font-weight: 700;
    color: #213546;
    letter-spacing: .3px;
}

.tech-cube .face.front  { transform: translateZ(98px); }
.tech-cube .face.back   { transform: rotateY(180deg) translateZ(98px); }
.tech-cube .face.right  { transform: rotateY(90deg) translateZ(98px); }
.tech-cube .face.left   { transform: rotateY(-90deg) translateZ(98px); }
.tech-cube .face.top    { transform: rotateX(90deg) translateZ(98px); }
.tech-cube .face.bottom { transform: rotateX(-90deg) translateZ(98px); }

@keyframes cubeSpin {
    0%   { transform: rotateX(-22deg) rotateY(0deg); }
    100% { transform: rotateX(-22deg) rotateY(360deg); }
}

.orbit {
    position: absolute;
    border-radius: 50%;
    transform-style: preserve-3d;
    z-index: 1;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(44, 89, 100, .35);
    animation: orbitSpin1 14s linear infinite;
}

.orbit-1 .node {
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    border-radius: 50%;
    background: #F08830;
    box-shadow: 0 0 14px 2px rgba(240, 136, 48, .7);
}

.orbit-2 {
    width: 380px;
    height: 250px;
    border: 1px dashed rgba(79, 132, 196, .35);
    animation: orbitSpin2 18s linear infinite;
}

.orbit-2 .node {
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    margin-left: -7px;
    border-radius: 50%;
    background: #2C5964;
    box-shadow: 0 0 14px 2px rgba(44, 89, 100, .6);
}

@keyframes orbitSpin1 {
    from { transform: rotateX(72deg) rotateZ(0deg); }
    to   { transform: rotateX(72deg) rotateZ(360deg); }
}

@keyframes orbitSpin2 {
    from { transform: rotateX(68deg) rotateY(20deg) rotateZ(0deg); }
    to   { transform: rotateX(68deg) rotateY(20deg) rotateZ(-360deg); }
}

@media (max-width: 767.98px) {
    .hero-visual { height: 360px; }
    .orbit-1 { width: 240px; height: 240px; }
    .orbit-2 { width: 300px; height: 200px; }
    .hero h2 { font-size: 34px; }
}

/* Light, soft shadows on all gradient buttons */
.hero a.btn,
.about a.btn,
.service a.btn,
.service > .container-fluid > a.btn,
.faqs a.btn,
.news a.btn,
.portfolio #portfolio-flters li,
.portfolio .load-more .btn,
.call-to-action a,
.header .navbar .btn,
.header .navbar .nav-link.btn-contact,
.service-highlight .highlight-back .btn,
.tech-flip-back a {
    box-shadow: 0 12px 26px rgba(44, 89, 100, .28);
}

.hero a.btn:hover,
.about a.btn:hover,
.service a.btn:hover,
.faqs a.btn:hover,
.news a.btn:hover,
.service-highlight .highlight-back .btn:hover {
    box-shadow: 0 16px 34px rgba(44, 89, 100, .4);
}


/*******************************/
/******** 3D Site Navbar *******/
/*******************************/
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 30px rgba(26, 57, 64, 0.10);
}

.site-nav .brand-line {
    height: 3px;
    background: linear-gradient(90deg, #2C5964, #F08830, #1A3940);
}

.site-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
}

/* Floating 3D Logo */
.brand-float {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 5;
}

.brand-logo-ring {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(135deg, #2C5964, #F08830);
    box-shadow: 0 12px 22px rgba(44, 89, 100, 0.35), 0 4px 10px rgba(240, 136, 48, 0.30);
    transform: translateY(-2px) rotate(-3deg);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.brand-logo-ring::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(135deg, #F08830, #2C5964);
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.45s ease;
}

.brand-logo-ring img {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    object-fit: contain;
    background: #ffffff;
}

.brand-float:hover .brand-logo-ring {
    transform: translateY(-10px) rotate(0deg) scale(1.06);
    box-shadow: 0 18px 34px rgba(44, 89, 100, 0.45), 0 6px 14px rgba(240, 136, 48, 0.40);
}

.brand-float:hover .brand-logo-ring::after {
    opacity: 0.6;
}

.brand-text {
    display: block;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    line-height: 1.1;
    white-space: nowrap;
}

.brand-text strong {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    color: #213546;
    letter-spacing: 0.3px;
}

.brand-text small {
    display: block;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 3;
    text-transform: uppercase;
    color: #F08830;
}

/* Menu */
.site-nav-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
}

.nav-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 13px;
    border-radius: 10px;
    color: #213546;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-list > li > a i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.nav-list > li > a:hover {
    background: rgba(44, 89, 100, 0.07);
    color: #F08830;
    transform: translateY(-2px);
}

.has-mega:hover > a i {
    transform: rotate(180deg);
}

.nav-contact {
    color: #2C5964 !important;
}

/* Mega panel (3D dropdown) */
.has-mega {
    position: relative;
}

.dropdown-brand {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 26px 55px rgba(26, 57, 64, 0.20);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) perspective(800px) rotateX(-6deg);
    transform-origin: top center;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 50;
}

.has-mega:hover .dropdown-brand {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) perspective(800px) rotateX(0deg);
}

/* Click-to-toggle pin: stays open after the cursor leaves (desktop) */
.has-mega.open .dropdown-brand {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px) perspective(800px) rotateX(0deg);
}

.dropdown-accent {
    height: 3px;
    background: linear-gradient(90deg, #2C5964, #F08830);
}

.dropdown-list {
    padding: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(44, 89, 100, 0.06);
}

.dropdown-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(44, 89, 100, 0.10);
    color: #2C5964;
    font-size: 16px;
}

.dropdown-icon.alt {
    background: rgba(240, 136, 48, 0.12);
    color: #F08830;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.dropdown-title {
    font-size: 14px;
    font-weight: 600;
    color: #213546;
}

.dropdown-sub {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.dropdown-divider {
    height: 1px;
    background: #eef1f4;
    margin: 4px 12px;
}

/* CTA */
.nav-cta {
    margin-left: 14px;
    padding: 11px 24px;
    border-radius: 30px;
    background: linear-gradient(90deg, #2C5964, #F08830);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(44, 89, 100, 0.30);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(240, 136, 48, 0.42);
    color: #ffffff !important;
}


/*******************************/
/***** Software Consulting ******/
/*******************************/
.consult {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
}

.consult-card {
    position: relative;
    max-width: 920px;
    margin: 0 auto 40px;
    padding: 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(44, 89, 100, 0.05), rgba(240, 136, 48, 0.06));
    border: 1px solid #eef1f4;
    box-shadow: 0 24px 50px rgba(26, 57, 64, 0.10);
}

.consult-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.consult-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #2C5964, #F08830);
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(44, 89, 100, 0.30);
}

.consult-card-head h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #213546;
}

.consult-tag {
    display: inline-block;
    margin-top: 4px;
    padding: 3px 12px;
    border-radius: 999px;
    background: rgba(240, 136, 48, 0.12);
    color: #F08830;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consult-desc {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 26px;
    color: #4a5568;
}

.consult-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.consult-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #eef1f4;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #213546;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.consult-tile i {
    font-size: 20px;
    color: #F08830;
}

.consult-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(44, 89, 100, 0.14);
}

.consult-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.consult-btn-primary,
.consult-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.consult-btn-primary {
    background: linear-gradient(90deg, #2C5964, #F08830);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 10px 22px rgba(44, 89, 100, 0.30);
}

.consult-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(240, 136, 48, 0.42);
    color: #ffffff;
}

.consult-btn-outline {
    background: transparent;
    color: #2C5964;
    border: 2px solid #2C5964;
}

.consult-btn-outline:hover {
    background: #2C5964;
    color: #ffffff;
    transform: translateY(-3px);
}

.consult-cta {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.consult-cta h3 {
    font-size: 30px;
    font-weight: 700;
    color: #213546;
    margin: 0 0 14px;
}

.consult-cta p {
    font-size: 17px;
    line-height: 27px;
    color: #4a5568;
    margin: 0 0 26px;
}

.consult-cta .consult-actions {
    justify-content: center;
}

@media (max-width: 767.98px) {
    .consult-card {
        padding: 26px 20px;
    }

    .consult-grid {
        grid-template-columns: 1fr;
    }

    .consult-card-head {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}


/*******************************/
/***** Highlighted Projects ****/
/*******************************/
.hp {
    position: relative;
    padding: 50px 0;
    background: #ffffff;
}

.hp-header {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: left;
}

.hp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(44, 89, 100, 0.08);
    border: 2px solid rgba(44, 89, 100, 0.18);
    box-shadow: 0 8px 18px rgba(44, 89, 100, 0.10);
}

.hp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2C5964;
    animation: hp-pulse 1.6s ease-in-out infinite;
}

.hp-badge-text {
    font-size: 13px;
    letter-spacing: 0.25em;
    color: #2C5964;
    font-weight: 700;
    text-transform: uppercase;
}

@keyframes hp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hp-title {
    margin: 0 0 18px;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    color: #213546;
}

.hp-title span {
    position: relative;
    display: inline-block;
    color: #2C5964;
}

.hp-bars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hp-bars span {
    height: 6px;
    width: 64px;
    border-radius: 999px;
}

.hp-bars span:nth-child(1) {
    background: #2C5964;
    box-shadow: 0 4px 10px rgba(44, 89, 100, 0.30);
}

.hp-bars span:nth-child(2) {
    background: #F08830;
}

.hp-bars span:nth-child(3) {
    background: rgba(44, 89, 100, 0.25);
}

.hp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.hp-card {
    display: block;
    text-decoration: none;
    border-radius: 28px;
    border: 2px solid #eef1f4;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(26, 57, 64, 0.08);
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}

.hp-card:hover {
    border-color: #2C5964;
    box-shadow: 0 26px 50px rgba(26, 57, 64, 0.18);
    transform: translateY(-12px);
}

.hp-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ffffff;
}

.hp-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    background: linear-gradient(to top, rgba(44, 89, 100, 0.85), rgba(44, 89, 100, 0.20), transparent);
    transition: opacity 0.5s ease;
}

.hp-card:hover .hp-overlay {
    opacity: 1;
}

.hp-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 26px;
    box-sizing: border-box;
    transition: transform 0.7s ease;
}

.hp-card:hover .hp-media img {
    transform: scale(1.1);
}

.hp-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: linear-gradient(135deg, #ffffff, #ffffff 60%, rgba(44, 89, 100, 0.08));
}

.hp-body h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #213546;
    transition: color 0.3s ease;
}

.hp-card:hover .hp-body h3 {
    color: #2C5964;
}

.hp-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2C5964;
    transition: gap 0.3s ease, color 0.3s ease;
}

.hp-card:hover .hp-view {
    gap: 12px;
    color: #F08830;
}

@media (max-width: 767.98px) {
    .hp {
        padding: 60px 0;
    }

    .hp-title {
        font-size: 30px;
    }

    .hp-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Mobile Toggler */
.nav-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggler span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #213546;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 991.98px) {
    .site-nav-inner {
        height: auto;
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .nav-toggler {
        display: flex;
    }

    .site-nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        margin-top: 14px;
    }

    .site-nav-menu.open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-list > li > a {
        justify-content: space-between;
        border-radius: 0;
        border-bottom: 1px solid #eef1f4;
    }

    .dropdown-brand {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.25s ease, max-height 0.3s ease;
    }

    /* Sub-menu opens only when its parent is toggled (.open) */
    .has-mega.open .dropdown-brand {
        opacity: 1;
        visibility: visible;
        max-height: 1400px;
        transform: none;
    }

    /* On touch devices, don't let sticky hover force it open */
    .has-mega:hover .dropdown-brand {
        opacity: 0;
        visibility: hidden;
    }
    .has-mega.open:hover .dropdown-brand {
        opacity: 1;
        visibility: visible;
    }

    .dropdown-accent {
        display: none;
    }

    .nav-cta {
        margin: 16px 0 4px;
        text-align: center;
    }
}

/*******************************/
/********* About Hero **********/
/*******************************/
.about-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2a33 0%, #1A3940 50%, #0c1f29 100%);
    padding: 44px 0 40px;
}

.about-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: about-pulse 6s ease-in-out infinite;
    z-index: 1;
}

.about-hero-glow-1 {
    top: -70px;
    left: 30px;
    width: 380px;
    height: 380px;
    background: rgba(44, 89, 100, 0.6);
}

.about-hero-glow-2 {
    bottom: -90px;
    right: 30px;
    width: 380px;
    height: 380px;
    background: rgba(240, 136, 48, 0.38);
    animation-delay: 2.4s;
}

@keyframes about-pulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.15); opacity: 0.7; }
}

.about-hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(150, 225, 235, 0.85);
    z-index: 1;
    animation: about-float 10s ease-in-out infinite;
}

.about-hero-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.about-hero-particles span:nth-child(2) { top: 30%; left: 24%; animation-delay: 1.2s; }
.about-hero-particles span:nth-child(3) { top: 55%; left: 8%; animation-delay: 2.4s; }
.about-hero-particles span:nth-child(4) { top: 72%; left: 30%; animation-delay: 3.1s; }
.about-hero-particles span:nth-child(5) { top: 20%; left: 82%; animation-delay: 0.8s; }
.about-hero-particles span:nth-child(6) { top: 46%; left: 93%; animation-delay: 2s; }
.about-hero-particles span:nth-child(7) { top: 66%; left: 76%; animation-delay: 3.6s; }
.about-hero-particles span:nth-child(8) { top: 85%; left: 58%; animation-delay: 1.8s; }

@keyframes about-float {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-22px); opacity: 0.95; }
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .about-hero-text {
        order: 1;
    }
    .about-hero-grid > .col-md-6 {
        order: 2;
    }
    .hero-visual {
        justify-content: flex-end;
    }
}

.about-hero-title {
    margin: 0 0 24px;
    font-weight: 700;
    line-height: 1.1;
    font-size: 38px;
    color: #ffffff;
}

@media (min-width: 640px) {
    .about-hero-title { font-size: 50px; }
}

@media (min-width: 992px) {
    .about-hero-title { font-size: 62px; }
}

.about-hero-light {
    display: block;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.about-hero-gradient {
    display: block;
    margin-top: 8px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #2C5964, #F08830);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    filter: drop-shadow(0 0 26px rgba(240, 136, 48, 0.35));
}

.about-hero-sub {
    display: block;
    margin-top: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff;
}

.about-hero-brand {
    background: linear-gradient(90deg, #5eead4, #F08830);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.about-hero-desc {
    margin: 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.75;
    color: #cbd5e1;
}

.about-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-emblem {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 0 60px rgba(44, 89, 100, 0.5), inset 0 0 40px rgba(240, 136, 48, 0.12);
    animation: about-float 8s ease-in-out infinite;
}

.about-hero-emblem img {
    width: 132px;
    height: auto;
}

@media (max-width: 991.98px) {
    .about-hero-visual { margin-top: 6px; }
    .about-hero-emblem { width: 200px; height: 200px; }
    .about-hero-emblem img { width: 112px; }
}

/*******************************/
/******** Product Globe ********/
/*******************************/
.product-globe {
    --globe-r: 205px;
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 500px;
    margin: 0 auto;
    perspective: 1200px;
}

@media (min-width: 768px) {
    .product-globe {
        margin-top: -45px;
    }
}

.product-globe-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 136, 48, 0.28), transparent 70%);
    filter: blur(28px);
    z-index: 0;
}

.product-globe-sphere {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: globe-spin 70s linear infinite;
}

.product-globe-sphere:hover {
    animation-play-state: paused;
}

@keyframes globe-spin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.product-globe-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    z-index: 1;
}

.product-globe-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(44, 89, 100, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 60px rgba(44, 89, 100, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.product-globe-card i {
    font-size: 30px;
    color: #2C5964;
}

.product-globe-card span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: #1A3940;
}

.product-globe-item:hover .product-globe-card {
    transform: scale(1.25);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.5), 0 0 90px rgba(240, 136, 48, 0.85);
    border-color: rgba(240, 136, 48, 0.6);
}

.product-globe-item:hover .product-globe-card i {
    color: #F08830;
}

@media (max-width: 640px) {
    .product-globe {
        --globe-r: 140px;
        height: 340px;
        max-width: 360px;
    }

    .product-globe-item {
        width: 92px;
        height: 92px;
        margin: -46px 0 0 -46px;
    }

    .product-globe-card {
        border-radius: 18px;
        gap: 5px;
    }

    .product-globe-card i {
        font-size: 24px;
    }

    .product-globe-card span {
        font-size: 10px;
    }
}


/* ============================================================


/* ============================================================
   HRMS Hero (hrms.html) â€” mirrors the Hyluminix HRMS hero layout.
   Colors are restricted to the Mi Soft logo palette:
   teal #2C5964, navy #1A3940, orange #F08830, blue #4F84C4, bluedk #00539C,
   text #213546, bg #f7f5f0, muted #4a5568 (with low-alpha tints thereof).
   ============================================================ */
.cb-hrhero {
    position: relative;
    background: linear-gradient(135deg, #f7f5f0 0%, rgba(44, 89, 100, 0.07) 100%);
    padding: 56px 0 72px;
    overflow: hidden;
}
.cb-hrhero-aura {
    position: absolute;
    top: -130px; right: -120px;
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(240, 136, 48, 0.18), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cb-hrhero-inner { position: relative; }

.cb-hr-crumbs {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--cb-muted); margin-bottom: 26px;
}
.cb-hr-crumbs a { color: var(--cb-muted); transition: color .2s ease; }
.cb-hr-crumbs a:hover { color: var(--cb-dark); }
.cb-hr-crumbs .cb-cur { color: var(--cb-dark); font-weight: 700; }
.cb-hr-crumbs span { color: #c2ccd2; }

.cb-hr-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.cb-hr-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(44, 89, 100, 0.10);
    color: var(--cb-dark);
    padding: 8px 16px; border-radius: 40px;
    font-size: 13px; font-weight: 700; letter-spacing: .3px;
    margin-bottom: 20px;
}
.cb-hr-badge i { color: var(--cb-orange); font-size: 14px; }

.cb-hr-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--cb-navy);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.5px;
    margin-bottom: 16px;
}
.cb-hr-sub {
    color: var(--cb-muted); font-size: 17px; line-height: 1.7;
    max-width: 560px; margin-bottom: 22px;
}
.cb-hr-sub strong { color: var(--cb-text); font-weight: 700; }

.cb-hr-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.cb-hr-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #e6ecef;
    color: var(--cb-text);
    padding: 10px 16px; border-radius: 12px;
    font-size: 14px; font-weight: 600;
    box-shadow: 0 6px 16px rgba(26, 57, 64, 0.06);
}
.cb-hr-chip i { color: var(--cb-orange); font-size: 14px; }

.cb-hr-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.cb-hr-btn {
    display: inline-block; padding: 15px 30px; border-radius: 12px;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    text-align: center;
}
.cb-hr-btn-primary {
    background: var(--cb-grad); color: #fff;
    box-shadow: 0 8px 0 #153036, 0 16px 30px rgba(26, 57, 64, 0.28);
}
.cb-hr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 0 #153036, 0 22px 38px rgba(26, 57, 64, 0.32);
}
.cb-hr-btn-ghost {
    background: #fff; color: var(--cb-dark);
    border: 2px solid var(--cb-dark);
    box-shadow: 0 6px 16px rgba(44, 89, 100, 0.12);
}
.cb-hr-btn-ghost:hover {
    transform: translateY(-3px);
    background: var(--cb-dark); color: #fff;
}

/* Right dashboard mock card */
.cb-hr-card {
    background: #fff; border-radius: 24px; padding: 26px;
    box-shadow: var(--cb-shadow-3d);
    border: 1px solid #eef2f5;
}
.cb-hr-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.cb-hr-card-ico {
    width: 50px; height: 50px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(44, 89, 100, 0.12); color: var(--cb-dark);
    font-size: 22px; flex-shrink: 0;
}
.cb-hr-card-head h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 19px; font-weight: 800; }
.cb-hr-card-head p { color: var(--cb-muted); font-size: 13px; margin: 2px 0 0; }

.cb-hr-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.cb-hr-stat { border-radius: 14px; padding: 16px 10px; text-align: center; background: rgba(44, 89, 100, 0.08); }
.cb-hr-stat:nth-child(2) { background: rgba(240, 136, 48, 0.12); }
.cb-hr-stat:nth-child(3) { background: rgba(79, 132, 196, 0.12); }
.cb-hr-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 30px; color: var(--cb-dark); line-height: 1; }
.cb-hr-stat:nth-child(2) .cb-hr-num { color: var(--cb-orange); }
.cb-hr-stat:nth-child(3) .cb-hr-num { color: var(--cb-blue); }
.cb-hr-num-label { color: var(--cb-muted); font-size: 12px; margin-top: 6px; font-weight: 600; }

.cb-hr-quick { background: rgba(44, 89, 100, 0.05); border-radius: 14px; padding: 16px; }
.cb-hr-quick h4 { font-family: 'Montserrat', sans-serif; color: var(--cb-text); font-size: 14px; font-weight: 800; margin-bottom: 12px; }
.cb-hr-quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cb-hr-qbtn { display: block; text-align: center; color: #fff; font-size: 13px; font-weight: 700; padding: 11px 8px; border-radius: 10px; cursor: pointer; user-select: none; }
.cb-hr-q1 { background: var(--cb-dark); }
.cb-hr-q2 { background: var(--cb-blue); }
.cb-hr-q3 { background: var(--cb-navy); }
.cb-hr-q4 { background: var(--cb-orange); }

@media (max-width: 900px) {
    .cb-hr-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 520px) {
    .cb-hr-stats { grid-template-columns: 1fr; }
    .cb-hr-cta { flex-direction: column; }
    .cb-hr-btn { width: 100%; }
}


/* ============================================================
   HRMS â€” Complete Module Suite (replaces "Learn About Us")
   Logo-only palette + 3D card style. Icon tints cycle through
   the five brand accents (teal, orange, blue, navy, bluedk).
   ============================================================ */
.cb-mod { padding: 42px 0; }
.cb-mod-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.cb-mod-badge {
    display: inline-block;
    background: rgba(44, 89, 100, 0.10);
    color: var(--cb-dark);
    font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    font-size: 13px; padding: 7px 18px; border-radius: 40px; margin-bottom: 14px;
}
.cb-mod-head h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--cb-navy);
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 900;
}
.cb-mod-head p { color: var(--cb-muted); font-size: 17px; margin-top: 10px; line-height: 1.6; }

.cb-mod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cb-mod-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef2f5;
    border-radius: 18px;
    padding: 26px 22px 24px;
    overflow: hidden;
    box-shadow: var(--cb-shadow-3d);
    transition: transform .3s ease, box-shadow .3s ease;
}
.cb-mod-card::after {
    content: "";
    position: absolute; left: 0; top: 0;
    height: 5px; width: 100%;
    background: var(--cb-grad-accent);
}
.cb-mod-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--cb-shadow-3d-hover);
}
.cb-mod-ico {
    width: 58px; height: 58px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 16px;
    box-shadow: 0 8px 16px rgba(26, 57, 64, 0.20);
}
.cb-mod-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--cb-navy);
    font-size: 18px; font-weight: 800;
    margin-bottom: 8px;
}
.cb-mod-card p { color: var(--cb-muted); font-size: 14px; line-height: 1.6; }

/* Icon color cycling â€” brand palette only */
.cb-mod-card:nth-child(5n+1) .cb-mod-ico { background: rgba(44, 89, 100, 0.12); color: var(--cb-dark); }
.cb-mod-card:nth-child(5n+2) .cb-mod-ico { background: rgba(240, 136, 48, 0.14); color: var(--cb-orange); }
.cb-mod-card:nth-child(5n+3) .cb-mod-ico { background: rgba(79, 132, 196, 0.14); color: var(--cb-blue); }
.cb-mod-card:nth-child(5n+4) .cb-mod-ico { background: rgba(26, 57, 64, 0.12); color: var(--cb-navy); }
.cb-mod-card:nth-child(5n+5) .cb-mod-ico { background: rgba(0, 83, 156, 0.12); color: var(--cb-bluedk); }

@media (max-width: 900px) {
    .cb-mod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .cb-mod-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   HRMS â€” Flexible Attendance (replaces "consulting services")
   Modern 3D cards, logo-only palette, icon tints cycle through
   the five brand accents.
   ============================================================ */
.cb-att { padding: 42px 0; }
.cb-att-head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.cb-att-badge {
    display: inline-block;
    background: rgba(240, 136, 48, 0.14);
    color: var(--cb-orange);
    font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    font-size: 13px; padding: 7px 18px; border-radius: 40px; margin-bottom: 14px;
}
.cb-att-head h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--cb-navy);
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 900;
}
.cb-att-head p { color: var(--cb-muted); font-size: 17px; margin-top: 10px; line-height: 1.6; }

.cb-att-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cb-att-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef2f5;
    border-radius: 18px;
    padding: 28px 24px;
    overflow: hidden;
    box-shadow: var(--cb-shadow-3d);
    transition: transform .3s ease, box-shadow .3s ease;
}
.cb-att-card::after {
    content: "";
    position: absolute; left: 0; top: 0;
    height: 5px; width: 100%;
    background: var(--cb-grad-accent);
}
.cb-att-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--cb-shadow-3d-hover);
}
.cb-att-ico {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 18px;
    box-shadow: 0 8px 16px rgba(26, 57, 64, 0.20);
    transition: transform .3s ease;
}
.cb-att-card:hover .cb-att-ico { transform: scale(1.08) rotate(-4deg); }
.cb-att-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--cb-navy);
    font-size: 19px; font-weight: 800;
    margin-bottom: 10px;
}
.cb-att-card p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.65; }

/* Icon color cycling â€” brand palette only */
.cb-att-card:nth-child(6n+1) .cb-att-ico { background: rgba(44, 89, 100, 0.12); color: var(--cb-dark); }
.cb-att-card:nth-child(6n+2) .cb-att-ico { background: rgba(240, 136, 48, 0.14); color: var(--cb-orange); }
.cb-att-card:nth-child(6n+3) .cb-att-ico { background: rgba(79, 132, 196, 0.14); color: var(--cb-blue); }
.cb-att-card:nth-child(6n+4) .cb-att-ico { background: rgba(26, 57, 64, 0.12); color: var(--cb-navy); }
.cb-att-card:nth-child(6n+5) .cb-att-ico { background: rgba(0, 83, 156, 0.12); color: var(--cb-bluedk); }
.cb-att-card:nth-child(6n+6) .cb-att-ico { background: rgba(44, 89, 100, 0.14); color: var(--cb-dark); }

@media (max-width: 900px) {
    .cb-att-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .cb-att-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HRMS lower sections (imported & restyled to Mi Soft logo palette)
   All classes use the unique cb- prefix => no Bootstrap / existing
   CSS conflicts. Colors restricted to the logo palette + low-alpha
   tints thereof.
   ============================================================ */

/* shared scaffolding */
.cb-sec { padding: 44px 0; }
.cb-sec-head { text-align: center; max-width: 780px; margin: 0 auto 38px; }
.cb-sec-head .cb-badge-pill {
    display: inline-block;
    background: rgba(44, 89, 100, 0.10);
    color: var(--cb-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
    font-size: 13px; padding: 7px 18px; border-radius: 40px; margin-bottom: 14px;
}
.cb-sec-head h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--cb-navy);
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 900;
}
.cb-sec-head p { color: var(--cb-muted); font-size: 17px; margin-top: 10px; line-height: 1.6; }

/* reusable icon tile */
.cb-ico-tile {
    flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center;
    background: rgba(44, 89, 100, 0.12);
    color: var(--cb-dark);
    box-shadow: 0 8px 16px rgba(26, 57, 64, 0.18);
}

/* 1. Our Products (recruitment pipeline) */
.cb-prod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.cb-prod-list { display: grid; gap: 18px; }
.cb-prod-item { display: flex; gap: 14px; }
.cb-prod-item .cb-ico-tile { width: 42px; height: 42px; border-radius: 12px; font-size: 18px; }
.cb-prod-item h4 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.cb-prod-item p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.6; }
.cb-prod-flow {
    position: relative; background: #fff; border: 1px solid #eef2f5; border-radius: 20px;
    padding: 28px 26px; box-shadow: var(--cb-shadow-3d);
}
.cb-prod-flow::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); border-radius: 20px 20px 0 0; }
.cb-prod-flow h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 20px; font-weight: 800; text-align: center; margin-bottom: 22px; }
.cb-prod-steps { display: flex; flex-direction: column; }
.cb-prod-step { position: relative; display: flex; align-items: center; gap: 14px; padding: 9px 0; }
.cb-prod-step:not(:last-child)::before { content: ""; position: absolute; left: 16px; top: 44px; bottom: -9px; width: 2px; background: rgba(44, 89, 100, 0.18); }
.cb-prod-step .num {
    width: 34px; height: 34px; border-radius: 50%; flex: 0 0 auto;
    background: var(--cb-grad); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
    box-shadow: 0 6px 12px rgba(26, 57, 64, 0.25);
}
.cb-prod-step span { color: var(--cb-text); font-weight: 600; font-size: 15px; }

/* 2. Strategic Technology Consulting (compliance cards) */
.cb-comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cb-comp-card {
    position: relative; background: #fff; border: 1px solid #eef2f5; border-radius: 16px;
    padding: 22px 20px; box-shadow: var(--cb-shadow-3d); overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.cb-comp-card::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.cb-comp-card:hover { transform: translateY(-8px); box-shadow: var(--cb-shadow-3d-hover); }
.cb-comp-card h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.cb-comp-card ul { list-style: none; display: grid; gap: 9px; }
.cb-comp-card li { display: flex; gap: 9px; color: var(--cb-muted); font-size: 14px; line-height: 1.45; }
.cb-comp-card li::before { content: "\2713"; color: var(--cb-orange); font-weight: 800; flex: 0 0 auto; }

/* 3. Our Competitive Advantage (benefits + ROI) */
.cb-adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.cb-adv-list { display: grid; gap: 18px; }
.cb-adv-item { display: flex; gap: 14px; }
.cb-adv-item .cb-ico-tile { width: 42px; height: 42px; border-radius: 12px; font-size: 18px; }
.cb-adv-item h4 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.cb-adv-item p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.6; }
.cb-adv-roi { background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 28px 26px; box-shadow: var(--cb-shadow-3d); }
.cb-adv-roi h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 20px; font-weight: 800; text-align: center; margin-bottom: 22px; }
.cb-adv-stat { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: rgba(44, 89, 100, 0.05); border-radius: 12px; margin-bottom: 12px; }
.cb-adv-stat:last-child { margin-bottom: 0; }
.cb-adv-stat .lbl { color: var(--cb-text); font-weight: 600; font-size: 14.5px; }
.cb-adv-stat .lbl small { display: block; color: var(--cb-muted); font-weight: 500; font-size: 12.5px; }
.cb-adv-stat .val { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; }
.cb-adv-stat:nth-child(2) .val { color: var(--cb-dark); }
.cb-adv-stat:nth-child(3) .val { color: var(--cb-orange); }
.cb-adv-stat:nth-child(4) .val { color: var(--cb-blue); }
.cb-adv-stat:nth-child(5) .val { color: var(--cb-navy); }

/* 4. Portfolio (technology & integrations) */
.cb-port-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.cb-port-item { display: flex; gap: 14px; margin-bottom: 20px; }
.cb-port-item .cb-ico-tile { width: 44px; height: 44px; border-radius: 12px; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px; }
.cb-port-item h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.cb-port-item p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.6; }
.cb-port-card { background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 26px; box-shadow: var(--cb-shadow-3d); }
.cb-port-card h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 20px; font-weight: 800; margin-bottom: 18px; }
.cb-port-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; background: rgba(44, 89, 100, 0.05); border-radius: 10px; margin-bottom: 9px; }
.cb-port-row span { color: var(--cb-text); font-weight: 600; font-size: 14px; }
.cb-port-row i { color: var(--cb-orange); }
.cb-port-deploy { margin-top: 18px; padding: 16px 18px; background: rgba(240, 136, 48, 0.10); border-radius: 12px; }
.cb-port-deploy h4 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.cb-port-deploy ul { list-style: none; display: grid; gap: 6px; }
.cb-port-deploy li { position: relative; padding-left: 16px; color: var(--cb-muted); font-size: 13.5px; }
.cb-port-deploy li::before { content: "\2022"; position: absolute; left: 0; color: var(--cb-orange); font-weight: 800; }

/* 5. Custom Enterprise Solutions (audience cards) */
.cb-ent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cb-ent-card {
    position: relative; text-align: center; background: #fff; border: 1px solid #eef2f5;
    border-radius: 18px; padding: 30px 20px; box-shadow: var(--cb-shadow-3d); overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.cb-ent-card::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.cb-ent-card:hover { transform: translateY(-8px); box-shadow: var(--cb-shadow-3d-hover); }
.cb-ent-ico { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 8px 16px rgba(26, 57, 64, 0.2); }
.cb-ent-card h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.cb-ent-card p { color: var(--cb-muted); font-size: 14px; line-height: 1.6; }
.cb-ent-card:nth-child(4n+1) .cb-ent-ico { background: rgba(44, 89, 100, 0.12); color: var(--cb-dark); }
.cb-ent-card:nth-child(4n+2) .cb-ent-ico { background: rgba(240, 136, 48, 0.14); color: var(--cb-orange); background: rgba(240, 136, 48, 0.14); }
.cb-ent-card:nth-child(4n+3) .cb-ent-ico { background: rgba(79, 132, 196, 0.14); color: var(--cb-blue); }
.cb-ent-card:nth-child(4n+4) .cb-ent-ico { background: rgba(26, 57, 64, 0.12); color: var(--cb-navy); }

/* Common Questions (FAQ) â€” native <details>, reuses .hrms-faq */
.cb-faq { padding: 44px 0; }
.cb-faq .cb-sec-head { margin-bottom: 34px; }
.cb-faq .hrms-accordion { max-width: 860px; margin: 0 auto; }

@media (max-width: 900px) {
    .cb-prod-grid, .cb-adv-grid, .cb-port-grid { grid-template-columns: 1fr; }
    .cb-comp-grid { grid-template-columns: repeat(2, 1fr); }
    .cb-ent-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .cb-comp-grid, .cb-ent-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   chatbot.html â€” AI Chatbot solutions page (Mi Soft logo palette)
   Classes prefixed cbch- => unique, no Bootstrap / existing conflicts.
   ============================================================ */

/* ---------- Hero ---------- */
.cbch-hero {
    position: relative;
    padding: 70px 0 80px;
    background: var(--cb-grad-soft);
    overflow: hidden;
}
.cbch-hero::before, .cbch-hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(10px); }
.cbch-hero::before { width: 360px; height: 360px; background: var(--cb-orange); top: -120px; right: -80px; opacity: .30; }
.cbch-hero::after { width: 420px; height: 420px; background: var(--cb-blue); bottom: -160px; left: -120px; opacity: .16; }
.cbch-hero-inner { position: relative; z-index: 2; max-width: 960px; margin: 0 auto; text-align: center; padding: 0 15px; }
.cbch-breadcrumb { font-size: 14px; color: var(--cb-muted); margin-bottom: 18px; }
.cbch-breadcrumb a { color: var(--cb-dark); font-weight: 600; }
.cbch-breadcrumb span { margin: 0 8px; color: var(--cb-muted); }
.cbch-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--cb-dark);
    font-family: 'Montserrat', sans-serif; font-weight: 800;
    font-size: 13px; letter-spacing: .5px; text-transform: uppercase;
    padding: 8px 18px; border-radius: 40px; box-shadow: var(--cb-shadow-3d);
    margin-bottom: 20px;
}
.cbch-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cb-orange); }
.cbch-h1 {
    font-family: 'Montserrat', sans-serif; font-weight: 900;
    color: var(--cb-navy); font-size: clamp(32px, 5vw, 54px); line-height: 1.1;
}
.cbch-h1 .grad { background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbch-sub { color: var(--cb-muted); font-size: 18px; line-height: 1.65; max-width: 720px; margin: 18px auto 0; }
.cbch-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.cbch-chip {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--cb-navy); background: #fff; border: 1px solid rgba(44, 89, 100, .18);
    padding: 9px 20px; border-radius: 40px; box-shadow: var(--cb-shadow-3d);
}
.cbch-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.cbch-stat {
    background: #fff; border: 1px solid #eef2f5; border-radius: 16px; padding: 22px 16px;
    box-shadow: var(--cb-shadow-3d);
}
.cbch-stat .num {
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 34px;
    background: var(--cb-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cbch-stat:nth-child(2) .num {
    background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cbch-stat .lbl { color: var(--cb-text); font-size: 13.5px; font-weight: 600; margin-top: 4px; }

/* ---------- Generic section ---------- */
.cbch-sec { padding: 60px 0; }
.cbch-sec-head { text-align: center; max-width: 800px; margin: 0 auto 42px; }
.cbch-sec-head .cbch-badge-pill {
    display: inline-block; background: rgba(44, 89, 100, .10); color: var(--cb-dark);
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
    letter-spacing: 1px; text-transform: uppercase; padding: 7px 18px; border-radius: 40px; margin-bottom: 14px;
}
.cbch-sec-head h2 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-weight: 900; font-size: clamp(26px, 3.4vw, 38px); }
.cbch-sec-head p { color: var(--cb-muted); font-size: 17px; margin-top: 12px; line-height: 1.6; }

/* ---------- 3D cards ---------- */
.cbch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; perspective: 1200px; }
.cbch-card {
    position: relative; overflow: hidden;
    background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 30px 26px;
    box-shadow: var(--cb-shadow-3d);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s;
    transform-style: preserve-3d; display: flex; flex-direction: column;
}
.cbch-card::after {
    content: ""; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%);
    transform: translateX(-130%); transition: transform .9s;
}
.cbch-card:hover { transform: translateY(-12px) rotateX(5deg) rotateY(-5deg); box-shadow: var(--cb-shadow-3d-hover); }
.cbch-card:hover::after { transform: translateX(130%); }
.cbch-card-tag {
    align-self: flex-start; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px;
    text-transform: uppercase; letter-spacing: .5px; color: #fff; padding: 6px 14px; border-radius: 30px;
    background: var(--cb-grad-accent); margin-bottom: 18px;
}
.cbch-card-ico {
    width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff; background: var(--cb-grad); box-shadow: 0 10px 20px rgba(26, 57, 64, .25);
    margin-bottom: 18px; transition: transform .45s;
}
.cbch-card:hover .cbch-card-ico { transform: translateZ(28px) scale(1.06); }
.cbch-card h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.cbch-card p { color: var(--cb-muted); font-size: 15px; line-height: 1.65; flex: 1; }
.cbch-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.cbch-tag { font-size: 12.5px; font-weight: 600; color: var(--cb-dark); background: rgba(44, 89, 100, .10); padding: 5px 12px; border-radius: 30px; }
.cbch-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--cb-orange); }
.cbch-card-link i { transition: transform .3s; }
.cbch-card-link:hover i { transform: translateX(4px); }
.cbch-grid .cbch-card:nth-child(3n+2) .cbch-card-ico { background: var(--cb-grad-accent); }
.cbch-grid .cbch-card:nth-child(3n+3) .cbch-card-ico { background: var(--cb-blue); }

/* ---------- Research stats ---------- */
.cbch-research-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; perspective: 1200px; }
.cbch-stat-card {
    position: relative; overflow: hidden; text-align: center;
    background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 36px 24px;
    box-shadow: var(--cb-shadow-3d); transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s; transform-style: preserve-3d;
}
.cbch-stat-card:hover { transform: translateY(-10px) rotateX(5deg) rotateY(5deg); box-shadow: var(--cb-shadow-3d-hover); }
.cbch-stat-card .big { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 52px; background: var(--cb-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbch-stat-card:nth-child(2) .big { background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbch-stat-card:nth-child(3) .big { background: var(--cb-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbch-stat-card h4 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 17px; font-weight: 800; margin-top: 10px; }

/* ---------- CTA ---------- */
.cbch-cta { padding: 60px 0; }
.cbch-cta-box {
    position: relative; overflow: hidden; text-align: center;
    background: var(--cb-grad); border-radius: 24px; padding: 56px 30px; color: #fff;
    box-shadow: var(--cb-shadow-3d);
}
.cbch-cta-box::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255, 255, 255, .08); top: -120px; right: -60px; }
.cbch-cta-box h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); position: relative; }
.cbch-cta-box p { max-width: 640px; margin: 14px auto 26px; font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, .92); position: relative; }
.cbch-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }
.cbch-btn-primary { font-family: 'Montserrat', sans-serif; font-weight: 800; background: var(--cb-orange); color: #fff; padding: 13px 28px; border-radius: 40px; box-shadow: 0 10px 22px rgba(240, 136, 48, .4); }
.cbch-btn-primary:hover { background: #e07b22; color: #fff; }
.cbch-btn-outline { font-family: 'Montserrat', sans-serif; font-weight: 800; background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, .7); padding: 11px 26px; border-radius: 40px; }
.cbch-btn-outline:hover { background: #fff; color: var(--cb-navy); }

@media (max-width: 900px) {
    .cbch-stats { grid-template-columns: repeat(2, 1fr); }
    .cbch-grid, .cbch-research-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .cbch-stats, .cbch-grid, .cbch-research-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   manufacture.html â€” Manufacturing HRMS page (Mi Soft logo palette)
   Classes prefixed cbf- => unique, no Bootstrap / existing conflicts.
   ============================================================ */

/* ---------- Hero ---------- */
.cbf-hero { position: relative; padding: 70px 0 80px; background: var(--cb-grad-soft); overflow: hidden; }
.cbf-hero-bg-orb { position: absolute; border-radius: 50%; filter: blur(10px); z-index: 0; animation: cbfOrb 14s ease-in-out infinite; }
.cbf-hero-bg-orb.orb-1 { width: 340px; height: 340px; background: var(--cb-orange); top: -110px; right: -70px; opacity: .28; }
.cbf-hero-bg-orb.orb-2 { width: 400px; height: 400px; background: var(--cb-blue); bottom: -150px; left: -110px; opacity: .15; animation-delay: -4s; }
.cbf-hero-bg-orb.orb-3 { width: 220px; height: 220px; background: var(--cb-dark); top: 40%; left: 45%; opacity: .10; animation-delay: -8s; }
@keyframes cbfOrb { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-26px); } }
.cbf-hero-scene { position: relative; z-index: 2; }
.cbf-hero-breadcrumb { font-size: 14px; color: var(--cb-muted); margin-bottom: 16px; }
.cbf-hero-breadcrumb a { color: var(--cb-dark); font-weight: 600; }
.cbf-hero-breadcrumb span { margin: 0 8px; color: var(--cb-muted); }
.cbf-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--cb-dark); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; padding: 8px 18px; border-radius: 40px; box-shadow: var(--cb-shadow-3d); margin-bottom: 18px; }
.cbf-hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cb-orange); }
.cbf-hero-h1 { font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--cb-navy); font-size: clamp(30px, 4.4vw, 50px); line-height: 1.12; }
.cbf-hero-h1 .grad { background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbf-hero-sub { color: var(--cb-muted); font-size: 17px; line-height: 1.65; margin-top: 16px; max-width: 560px; }
.cbf-hero-stats { display: grid; grid-template-columns: repeat(3, auto); gap: 14px; margin-top: 26px; justify-content: start; }
.cbf-hero-stat { background: #fff; border: 1px solid #eef2f5; border-radius: 16px; padding: 16px 20px; box-shadow: var(--cb-shadow-3d); }
.cbf-hero-stat .num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; background: var(--cb-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbf-hero-stat .lbl { color: var(--cb-text); font-size: 12.5px; font-weight: 600; margin-top: 2px; }
.cbf-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* hero dashboard visual */
.cbf-hero-visual { perspective: 1400px; display: flex; justify-content: center; }
.cbf-dash { width: 100%; max-width: 460px; background: #fff; border: 1px solid #eef2f5; border-radius: 22px; padding: 24px; box-shadow: var(--cb-shadow-3d); transform-style: preserve-3d; animation: cbfFloat 6.5s ease-in-out infinite; }
@keyframes cbfFloat { 0%,100% { transform: translateY(0) rotateY(-7deg) rotateX(4deg); } 50% { transform: translateY(-16px) rotateY(-7deg) rotateX(4deg); } }
.cbf-dash-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.cbf-dash-eyebrow { font-size: 12px; color: var(--cb-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.cbf-dash-title { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 18px; font-weight: 800; margin-top: 2px; }
.cbf-dash-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; color: var(--cb-orange); background: rgba(240,136,48,.12); padding: 5px 10px; border-radius: 30px; }
.cbf-dash-live .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--cb-orange); animation: cbfPulse 1.4s infinite; }
@keyframes cbfPulse { 0% { box-shadow: 0 0 0 0 rgba(240,136,48,.5); } 100% { box-shadow: 0 0 0 9px rgba(240,136,48,0); } }
.cbf-dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 18px; }
.cbf-dash-metric { background: rgba(44,89,100,.06); border-radius: 14px; padding: 12px; text-align: center; }
.cbf-dash-metric .big { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 26px; background: var(--cb-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbf-dash-metric .small { font-size: 11.5px; color: var(--cb-muted); font-weight: 600; margin-top: 2px; }
.cbf-dash-lines-label { display: block; font-size: 12px; font-weight: 700; color: var(--cb-navy); margin: 18px 0 10px; text-transform: uppercase; letter-spacing: .5px; }
.cbf-line { display: grid; grid-template-columns: 1fr 120px 42px; align-items: center; gap: 10px; margin-bottom: 10px; }
.cbf-line-name { font-size: 13px; color: var(--cb-text); font-weight: 600; }
.cbf-line-track { height: 10px; background: rgba(44,89,100,.10); border-radius: 10px; overflow: hidden; }
.cbf-line-fill { height: 100%; border-radius: 10px; background: var(--cb-grad); transform: scaleX(0); transform-origin: left; animation: cbfGrow 1.6s .3s ease forwards; }
.cbf-line-fill.alt { background: var(--cb-grad-accent); }
@keyframes cbfGrow { to { transform: scaleX(1); } }
.cbf-line-pct { font-size: 13px; font-weight: 800; color: var(--cb-navy); text-align: right; }
.cbf-dash-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cbf-dash-chips span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--cb-dark); background: rgba(44,89,100,.08); padding: 6px 11px; border-radius: 30px; }
.cbf-dash-chips i { color: var(--cb-orange); }

/* ---------- Buttons ---------- */
.cbf-btn-primary { font-family: 'Montserrat', sans-serif; font-weight: 800; background: var(--cb-orange); color: #fff; padding: 13px 28px; border-radius: 40px; box-shadow: 0 10px 22px rgba(240,136,48,.4); }
.cbf-btn-primary:hover { background: #e07b22; color: #fff; }
.cbf-btn-outline { font-family: 'Montserrat', sans-serif; font-weight: 800; background: transparent; color: var(--cb-navy); border: 2px solid rgba(44,89,100,.35); padding: 11px 26px; border-radius: 40px; }
.cbf-btn-outline:hover { background: var(--cb-navy); color: #fff; border-color: var(--cb-navy); }

/* ---------- Generic section ---------- */
.cbf-sec { padding: 60px 0; }
.cbf-sec-head { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.cbf-sec-head .cbf-badge-pill { display: inline-block; background: rgba(44,89,100,.10); color: var(--cb-dark); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 7px 18px; border-radius: 40px; margin-bottom: 14px; }
.cbf-sec-head h2 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-weight: 900; font-size: clamp(26px, 3.4vw, 38px); }
.cbf-sec-head p { color: var(--cb-muted); font-size: 17px; margin-top: 12px; line-height: 1.6; }

/* ---------- 3D cards ---------- */
.cbf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; perspective: 1200px; }
.cbf-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.cbf-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.cbf-grid.cols-5 { grid-template-columns: repeat(5,1fr); }
.cbf-card { position: relative; overflow: hidden; background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 30px 26px; box-shadow: var(--cb-shadow-3d); transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s; transform-style: preserve-3d; display: flex; flex-direction: column; }
.cbf-card::after { content: ""; position: absolute; inset: 0; border-radius: 20px; pointer-events: none; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%); transform: translateX(-130%); transition: transform .9s; }
.cbf-card:hover { transform: translateY(-12px) rotateX(5deg) rotateY(-5deg); box-shadow: var(--cb-shadow-3d-hover); }
.cbf-card:hover::after { transform: translateX(130%); }
.cbf-card-ico { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; background: var(--cb-grad); box-shadow: 0 10px 20px rgba(26,57,64,.25); margin-bottom: 18px; transition: transform .45s; }
.cbf-card:hover .cbf-card-ico { transform: translateZ(28px) scale(1.06); }
.cbf-card h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.cbf-card p { color: var(--cb-muted); font-size: 15px; line-height: 1.65; flex: 1; }

/* ---------- Modules ---------- */
.cbf-mod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cbf-mod-card { position: relative; overflow: hidden; background: #fff; border: 1px solid #eef2f5; border-radius: 18px; padding: 24px 20px; box-shadow: var(--cb-shadow-3d); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s; transform-style: preserve-3d; }
.cbf-mod-card::after { content: ""; position: absolute; inset: 0; border-radius: 18px; pointer-events: none; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.5) 50%, transparent 70%); transform: translateX(-130%); transition: transform .9s; }
.cbf-mod-card:hover { transform: translateY(-10px) rotateX(4deg) rotateY(-4deg); box-shadow: var(--cb-shadow-3d-hover); }
.cbf-mod-card:hover::after { transform: translateX(130%); }
.cbf-mod-ico { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin-bottom: 14px; transition: transform .4s; }
.cbf-mod-card:hover .cbf-mod-ico { transform: translateZ(22px) scale(1.05); }
.cbf-mod-card h4 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.cbf-mod-card p { color: var(--cb-muted); font-size: 13.5px; line-height: 1.55; }
.cbf-mod-card:nth-child(5n+1) .cbf-mod-ico { background: var(--cb-dark); }
.cbf-mod-card:nth-child(5n+2) .cbf-mod-ico { background: var(--cb-orange); }
.cbf-mod-card:nth-child(5n+3) .cbf-mod-ico { background: var(--cb-blue); }
.cbf-mod-card:nth-child(5n+4) .cbf-mod-ico { background: var(--cb-navy); }
.cbf-mod-card:nth-child(5n+5) .cbf-mod-ico { background: var(--cb-grad-accent); }

/* ---------- OEE ---------- */
.cbf-oee-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; perspective: 1200px; }
.cbf-oee-card { position: relative; overflow: hidden; background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 32px 26px; box-shadow: var(--cb-shadow-3d); transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s; transform-style: preserve-3d; }
.cbf-oee-card:hover { transform: translateY(-10px) rotateX(5deg) rotateY(5deg); box-shadow: var(--cb-shadow-3d-hover); }
.cbf-oee-letter { display: block; width: 54px; height: 54px; border-radius: 14px; background: var(--cb-grad); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 28px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 18px rgba(26,57,64,.25); margin-bottom: 16px; transition: transform .45s; }
.cbf-oee-card:hover .cbf-oee-letter { transform: translateZ(26px) scale(1.05); }
.cbf-oee-card:nth-child(2) .cbf-oee-letter { background: var(--cb-grad-accent); }
.cbf-oee-card:nth-child(3) .cbf-oee-letter { background: var(--cb-blue); }
.cbf-oee-card h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.cbf-oee-card p { color: var(--cb-muted); font-size: 15px; line-height: 1.6; }
.cbf-oee-formula { text-align: center; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; color: var(--cb-navy); margin: 30px 0; }
.cbf-oee-perf { background: #fff; border: 1px solid #eef2f5; border-radius: 22px; padding: 30px; box-shadow: var(--cb-shadow-3d); }
.cbf-oee-perf-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cbf-oee-perf-head h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 19px; font-weight: 800; }
.cbf-oee-bench { font-size: 12.5px; color: var(--cb-muted); font-weight: 600; }
.cbf-oee-bars { display: grid; gap: 14px; }
.cbf-oee-bar { display: grid; grid-template-columns: 120px 1fr 56px; align-items: center; gap: 12px; }
.cbf-oee-bar-name { font-size: 14px; font-weight: 600; color: var(--cb-text); }
.cbf-oee-track { height: 12px; background: rgba(44,89,100,.10); border-radius: 10px; overflow: hidden; }
.cbf-oee-fill { height: 100%; border-radius: 10px; background: var(--cb-grad); transform: scaleX(0); transform-origin: left; animation: cbfGrow 1.6s .3s ease forwards; }
.cbf-oee-fill.alt { background: var(--cb-grad-accent); }
.cbf-oee-bar-pct { font-size: 14px; font-weight: 800; color: var(--cb-navy); text-align: right; }
.cbf-oee-score { display: inline-flex; align-items: baseline; gap: 10px; margin-top: 22px; padding: 14px 22px; background: var(--cb-grad-soft); border-radius: 16px; }
.cbf-oee-score-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 40px; background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbf-oee-score-lbl { font-weight: 700; color: var(--cb-navy); }
.cbf-oee-mini { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 18px; }
.cbf-oee-mini div { background: rgba(44,89,100,.06); border-radius: 14px; padding: 14px; text-align: center; }
.cbf-oee-mini .big { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; color: var(--cb-dark); }
.cbf-oee-mini .small { font-size: 12.5px; color: var(--cb-muted); font-weight: 600; }

/* ---------- Workflows ---------- */
.cbf-work-card { text-align: left; }
.cbf-steps { list-style: none; counter-reset: step; display: grid; gap: 12px; margin-top: 6px; padding: 0; }
.cbf-steps li { position: relative; padding-left: 42px; color: var(--cb-muted); font-size: 14.5px; line-height: 1.5; }
.cbf-steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px; width: 28px; height: 28px; border-radius: 50%; background: var(--cb-grad); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 12px rgba(26,57,64,.22); }
.cbf-work-grid .cbf-card:nth-child(2) .cbf-steps li::before { background: var(--cb-grad-accent); }
.cbf-work-grid .cbf-card:nth-child(3) .cbf-steps li::before { background: var(--cb-blue); }
.cbf-work-grid .cbf-card:nth-child(4) .cbf-steps li::before { background: var(--cb-navy); }

/* ---------- Benefits ---------- */
.cbf-ben-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; perspective: 1200px; }
.cbf-ben-card { text-align: left; }
.cbf-ben-list { list-style: none; display: grid; gap: 10px; padding: 0; margin: 0; }
.cbf-ben-list li { position: relative; padding-left: 24px; color: var(--cb-muted); font-size: 14.5px; line-height: 1.55; }
.cbf-ben-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--cb-orange); font-weight: 800; }
.cbf-roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.cbf-roi { background: rgba(44,89,100,.06); border-radius: 14px; padding: 14px; text-align: center; }
.cbf-roi .num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 26px; background: var(--cb-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbf-roi:nth-child(2) .num { background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbf-roi:nth-child(3) .num { background: var(--cb-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cbf-roi .lbl { font-size: 12px; color: var(--cb-muted); font-weight: 600; margin-top: 2px; }

/* ---------- Technology sub-grid ---------- */
.cbf-secgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 30px; perspective: 1200px; }
.cbf-secbox { background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 28px; box-shadow: var(--cb-shadow-3d); transition: transform .4s ease, box-shadow .4s; }
.cbf-secbox:hover { transform: translateY(-8px); box-shadow: var(--cb-shadow-3d-hover); }
.cbf-secbox h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 19px; font-weight: 800; margin-bottom: 16px; }
.cbf-secbox h3 i { color: var(--cb-orange); margin-right: 8px; }
.cbf-deploy { display: grid; gap: 12px; }
.cbf-deploy-item { display: flex; align-items: center; gap: 14px; background: rgba(44,89,100,.06); border-radius: 14px; padding: 12px 16px; }
.cbf-deploy-item i { width: 40px; height: 40px; border-radius: 12px; background: var(--cb-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.cbf-deploy-item strong { display: block; font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-weight: 800; font-size: 15px; }
.cbf-deploy-item span { font-size: 13px; color: var(--cb-muted); }

/* ---------- Mobile App ---------- */
.cbf-app-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cbf-app-feat { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid #eef2f5; border-radius: 16px; padding: 16px; box-shadow: var(--cb-shadow-3d); transition: transform .35s ease, box-shadow .35s; }
.cbf-app-feat:hover { transform: translateY(-6px) rotateX(4deg); box-shadow: var(--cb-shadow-3d-hover); }
.cbf-app-feat i { width: 46px; height: 46px; border-radius: 12px; flex: 0 0 auto; background: var(--cb-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.cbf-app-feat:nth-child(even) i { background: var(--cb-grad-accent); }
.cbf-app-feat strong { display: block; font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-weight: 800; font-size: 14.5px; }
.cbf-app-feat span { font-size: 12.5px; color: var(--cb-muted); }
.cbf-app-visual { perspective: 1400px; display: flex; justify-content: center; }
.cbf-phone { width: 280px; background: linear-gradient(160deg, var(--cb-navy), var(--cb-dark)); border-radius: 38px; padding: 18px 16px 26px; box-shadow: var(--cb-shadow-3d-hover); position: relative; animation: cbfFloatPhone 7s ease-in-out infinite; transform-style: preserve-3d; }
@keyframes cbfFloatPhone { 0%,100% { transform: translateY(0) rotateY(8deg) rotateX(3deg); } 50% { transform: translateY(-16px) rotateY(8deg) rotateX(3deg); } }
.cbf-phone-notch { width: 120px; height: 22px; background: #0e272d; border-radius: 0 0 16px 16px; margin: 0 auto 12px; }
.cbf-phone-status { display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 12px; font-weight: 700; padding: 0 4px; }
.cbf-phone-brand { font-size: 11px; opacity: .8; }
.cbf-phone-greet { color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; margin: 16px 4px 12px; }
.cbf-phone-checkin { background: rgba(255,255,255,.12); color: #fff; border-radius: 14px; padding: 12px 14px; font-size: 13px; font-weight: 600; }
.cbf-phone-checkin i { color: #5fd38a; margin-right: 6px; }
.cbf-phone-shift { font-size: 11px; opacity: .7; margin-top: 4px; }
.cbf-phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.cbf-phone-tile { background: rgba(255,255,255,.10); color: #fff; border-radius: 14px; padding: 14px 8px; text-align: center; font-size: 12px; font-weight: 700; }
.cbf-phone-tile i { display: block; font-size: 20px; margin-bottom: 6px; color: var(--cb-orange); }

/* ---------- FAQ ---------- */
.cbf-faq { padding: 60px 0; }
.cbf-faq .hrms-accordion { max-width: 860px; margin: 0 auto; }

/* ---------- Explore ---------- */
.cbf-explore { display: grid; grid-template-columns: 1.2fr 1fr; gap: 26px; align-items: start; perspective: 1200px; }
.cbf-explore-card { display: flex; gap: 18px; background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 26px; box-shadow: var(--cb-shadow-3d); text-decoration: none; transition: transform .4s ease, box-shadow .4s; }
.cbf-explore-card:hover { transform: translateY(-8px); box-shadow: var(--cb-shadow-3d-hover); text-decoration: none; }
.cbf-explore-ico { width: 56px; height: 56px; border-radius: 16px; flex: 0 0 auto; background: var(--cb-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.cbf-explore-card h3 { font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-size: 19px; font-weight: 800; }
.cbf-explore-card p { color: var(--cb-muted); font-size: 14px; line-height: 1.55; margin: 6px 0 10px; }
.cbf-explore-link { color: var(--cb-orange); font-weight: 700; font-size: 14px; }
.cbf-explore-link i { transition: transform .3s; }
.cbf-explore-card:hover .cbf-explore-link i { transform: translateX(4px); }
.cbf-explore-list { background: #fff; border: 1px solid #eef2f5; border-radius: 20px; padding: 24px; box-shadow: var(--cb-shadow-3d); }
.cbf-explore-list-label { display: block; font-family: 'Montserrat', sans-serif; color: var(--cb-navy); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.cbf-explore-list a { display: block; color: var(--cb-text); font-size: 14px; font-weight: 600; padding: 10px 0; border-bottom: 1px solid #eef2f5; text-decoration: none; transition: color .2s; }
.cbf-explore-list a:last-child { border-bottom: 0; }
.cbf-explore-list a:hover { color: var(--cb-orange); }

/* ---------- CTA ---------- */
.cbf-cta { padding: 60px 0; }
.cbf-cta-box { position: relative; overflow: hidden; text-align: center; background: var(--cb-grad); border-radius: 24px; padding: 56px 30px; color: #fff; box-shadow: var(--cb-shadow-3d); }
.cbf-cta-box::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.08); top: -120px; right: -60px; }
.cbf-cta-box h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); position: relative; }
.cbf-cta-box p { max-width: 640px; margin: 14px auto 26px; font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.92); position: relative; }
.cbf-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }
.cbf-cta-box .cbf-btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.cbf-cta-box .cbf-btn-outline:hover { background: #fff; color: var(--cb-navy); border-color: #fff; }

@media (max-width: 1100px) { .cbf-grid.cols-4, .cbf-mod-grid, .cbf-grid.cols-5 { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px) {
    .cbf-hero-stats { grid-template-columns: repeat(3,1fr); }
    .cbf-grid, .cbf-oee-grid, .cbf-ben-grid, .cbf-secgrid, .cbf-explore { grid-template-columns: 1fr; }
    .cbf-grid.cols-2, .cbf-grid.cols-4, .cbf-grid.cols-5, .cbf-mod-grid { grid-template-columns: repeat(2,1fr); }
    .cbf-app-features { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .cbf-grid, .cbf-oee-grid, .cbf-ben-grid, .cbf-grid.cols-2, .cbf-grid.cols-4, .cbf-grid.cols-5, .cbf-mod-grid { grid-template-columns: 1fr; }
    .cbf-hero-stats { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .cbf-dash, .cbf-phone, .cbf-hero-bg-orb, .cbf-dash-live .pulse { animation: none !important; }
    .cbf-line-fill, .cbf-oee-fill { transform: none !important; }
}


/* ============================================================
   IoT Enabled Cloud Platform (iot.html)
   ============================================================ */
/* =============================================================
   iot.html — IoT Enabled Cloud Platform
   Senior-level, 3D-forward design for the Mi Soft brand palette.
   Palette: teal #2C5964 · navy #1A3940 · orange #F08830 · blue #4F84C4
   ============================================================= */

:root {
    --ink: #1A3940;
    --teal: #2C5964;
    --teal-2: #3c7280;
    --blue: #4F84C4;
    --blue-dk: #00539C;
    --orange: #F08830;
    --orange-dk: #b8631c;
    --bg: #f7f5f0;
    --paper: #ffffff;
    --muted: #5b6b76;
    --line: rgba(44, 89, 100, 0.14);

    --grad-brand: linear-gradient(135deg, #2C5964 0%, #4F84C4 50%, #F08830 100%);
    --grad-brand-soft: linear-gradient(160deg, #ffffff 0%, #eef4f8 100%);
    --grad-dark: linear-gradient(135deg, #0f2a33 0%, #1A3940 55%, #0c1f29 100%);

    --shadow-3d:
        0 2px 1px rgba(15, 42, 51, 0.10),
        0 6px 8px rgba(15, 42, 51, 0.12),
        0 14px 22px rgba(15, 42, 51, 0.16),
        0 30px 45px rgba(15, 42, 51, 0.12);
    --shadow-3d-hover:
        0 4px 2px rgba(15, 42, 51, 0.12),
        0 10px 14px rgba(15, 42, 51, 0.16),
        0 22px 34px rgba(15, 42, 51, 0.20),
        0 44px 70px rgba(15, 42, 51, 0.20);
}

/* Reusable container scoped to this page */
.iot-wrap { width: 100%; max-width: 1366px; margin: 0 auto; }
.iot-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- HERO ---------- */
.iot-hero {
    position: relative;
    overflow: hidden;
    background: var(--grad-dark);
    color: #fff;
    padding: 64px 0 120px;
    isolation: isolate;
}
.iot-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 50% at 12% 18%, rgba(79, 132, 196, 0.40), transparent 60%),
        radial-gradient(55% 45% at 88% 82%, rgba(240, 136, 48, 0.34), transparent 62%),
        radial-gradient(40% 40% at 50% 50%, rgba(44, 89, 100, 0.45), transparent 70%);
    z-index: -2;
}
/* faint grid for depth */
.iot-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 50% 35%, #000 30%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 30%, transparent 78%);
    z-index: -1;
}
.iot-hero .iot-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.iot-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
}
.iot-status .pulse {
    width: 9px; height: 9px; border-radius: 50%;
    background: #38e0a6;
    box-shadow: 0 0 0 0 rgba(56, 224, 166, 0.7);
    animation: iotPulse 2s infinite;
}
@keyframes iotPulse {
    0% { box-shadow: 0 0 0 0 rgba(56, 224, 166, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(56, 224, 166, 0); }
    100% { box-shadow: 0 0 0 0 rgba(56, 224, 166, 0); }
}

.iot-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(38px, 5.2vw, 68px);
    line-height: 1.04;
    margin: 22px 0 0;
    letter-spacing: -1px;
}
.iot-hero h1 .grad {
    background: linear-gradient(100deg, #5eead4, #4F84C4 45%, #F08830);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.iot-hero p.lede {
    margin: 22px 0 0;
    max-width: 540px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.iot-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.iot-chip-meta {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}
.iot-chip-meta b { font-size: 13px; color: #fff; letter-spacing: .3px; }
.iot-chip-meta span { font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

.iot-cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.iot-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 50px; font-weight: 700;
    font-family: 'Montserrat', sans-serif; font-size: 15px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    cursor: pointer; border: none; text-decoration: none;
}
.iot-btn-primary {
    color: #1A3940;
    background: linear-gradient(120deg, #F08830, #ffb15e);
    box-shadow: 0 10px 0 #9c5313, 0 22px 40px rgba(240, 136, 48, 0.40);
}
.iot-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 13px 0 #9c5313, 0 28px 48px rgba(240, 136, 48, 0.5); }
.iot-btn-ghost {
    color: #F08830;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-3d);
}
.iot-btn-ghost:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.16); }

/* ---------- 3D ORBIT HERO VISUAL ---------- */
.iot-hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 460px; }

.iot-orbit-system {
    position: relative;
    width: 420px; height: 420px;
    perspective: 1100px;
    transform-style: preserve-3d;
}
.iot-stage {
    position: absolute; inset: 0;
    transform-style: preserve-3d;
    animation: iotStageFloat 9s ease-in-out infinite;
}
@keyframes iotStageFloat {
    0%, 100% { transform: translateY(0) rotateX(8deg); }
    50% { transform: translateY(-16px) rotateX(8deg); }
}

.iot-core {
    position: absolute; top: 50%; left: 50%;
    width: 150px; height: 150px; margin: -75px 0 0 -75px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #7fe3ff, #4F84C4 45%, #1A3940 100%);
    box-shadow: 0 0 60px rgba(79, 132, 196, 0.7), inset 0 0 30px rgba(255, 255, 255, 0.4);
    display: flex; align-items: center; justify-content: center;
    transform: translateZ(40px);
}
.iot-core::before {
    content: ""; position: absolute; inset: -22px; border-radius: 50%;
    border: 2px solid rgba(94, 234, 212, 0.55);
    animation: iotSpin 18s linear infinite;
}
.iot-core-label {
    position: relative; z-index: 2; text-align: center; color: #fff;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.iot-core-label small { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2px; color: #cdeaff; }

.iot-orbit {
    position: absolute; top: 50%; left: 50%;
    border-radius: 50%;
    border: 1.5px dashed rgba(255, 255, 255, 0.30);
    transform: translate(-50%, -50%) rotateX(76deg);
    transform-style: preserve-3d;
}
.iot-orbit--1 { width: 300px; height: 300px; animation: iotSpin 16s linear infinite; }
.iot-orbit--2 { width: 400px; height: 400px; border-style: dotted; border-color: rgba(240, 136, 48, 0.45); animation: iotSpin 24s linear infinite reverse; }
.iot-orbit--3 { width: 480px; height: 480px; border-color: rgba(94, 234, 212, 0.22); animation: iotSpin 32s linear infinite; }
@keyframes iotSpin { to { transform: translate(-50%, -50%) rotateX(76deg) rotateZ(360deg); } }

.iot-node {
    position: absolute; top: -16px; left: 50%;
    width: 34px; height: 34px; margin-left: -17px;
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #e7eef4);
    color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(255, 255, 255, 0.08);
    transform: translateZ(0) rotateX(-76deg);
}
.iot-node--o { background: linear-gradient(145deg, #ffd9ab, #F08830); color: #5a2e06; }
.iot-node--t { background: linear-gradient(145deg, #bff6ec, #5eead4); color: #0c3b32; }

/* floating metric chips around the system (depth via translateZ + float) */
.iot-float {
    position: absolute;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-3d);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    animation: iotFloat 7s ease-in-out infinite;
}
.iot-float b { display: block; font-size: 20px; font-weight: 800; line-height: 1; }
.iot-float span { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.iot-float--1 { top: 6%; left: -6%; transform: translateZ(70px); animation-delay: 0s; }
.iot-float--2 { bottom: 10%; left: -12%; transform: translateZ(50px); animation-delay: 1.4s; }
.iot-float--3 { top: 14%; right: -8%; transform: translateZ(80px); animation-delay: 2.2s; }
.iot-float--4 { bottom: 4%; right: -4%; transform: translateZ(60px); animation-delay: 0.8s; }
@keyframes iotFloat {
    0%, 100% { transform: translateZ(var(--tz, 60px)) translateY(0); }
    50% { transform: translateZ(var(--tz, 60px)) translateY(-14px); }
}

/* ---------- SECTION SHELL ---------- */
.iot-section { padding: 28px 0; position: relative; }
.iot-section.soft { background: var(--bg); }
.iot-section.alt { background: linear-gradient(180deg, #ffffff, #f3f7fa); }

.iot-head { max-width: 760px; margin: 0 auto 24px; text-align: center; }
.iot-eyebrow {
    display: inline-block;
    padding: 7px 16px; border-radius: 40px;
    background: rgba(44, 89, 100, 0.10);
    border: 1px solid rgba(44, 89, 100, 0.18);
    color: var(--teal);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase;
    margin-bottom: 12px;
}
.iot-head h2 {
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: clamp(28px, 3.6vw, 42px); color: var(--ink); margin: 0 0 12px; line-height: 1.12;
}
.iot-head h2 .accent { color: var(--orange); }
.iot-head p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0; }

/* ---------- ARCHITECTURE (3D layered stack) ---------- */
.iot-arch { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.iot-arch-copy h2 {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(26px, 3vw, 38px);
    color: var(--ink); margin: 0 0 14px;
}
.iot-arch-copy p { color: var(--muted); font-size: 16px; line-height: 1.7; }

.iot-layers { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.iot-layer {
    display: flex; align-items: center; gap: 18px;
    padding: 18px 22px; border-radius: 16px;
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow-3d);
    transition: transform .3s ease, box-shadow .3s ease;
}
.iot-layer:hover { transform: translateX(8px); box-shadow: var(--shadow-3d-hover); }
.iot-layer .num {
    flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: #fff;
    background: var(--grad-brand); box-shadow: 0 8px 18px rgba(44, 89, 100, 0.3);
}
.iot-layer h4 { margin: 0; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); }
.iot-layer p { margin: 2px 0 0; font-size: 14px; color: var(--muted); }

/* 3D isometric stack visual */
.iot-stack-scene { perspective: 1200px; display: flex; justify-content: center; align-items: center; min-height: 420px; }
.iot-stack {
    position: relative; width: 320px; height: 320px;
    transform-style: preserve-3d;
    transform: rotateX(58deg) rotateZ(-40deg);
    animation: iotStackFloat 9s ease-in-out infinite;
}
@keyframes iotStackFloat {
    0%, 100% { transform: rotateX(58deg) rotateZ(-40deg) translateZ(0); }
    50% { transform: rotateX(58deg) rotateZ(-40deg) translateZ(26px); }
}
.iot-plate {
    position: absolute; inset: 0; border-radius: 26px;
    transform-style: preserve-3d;
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(232,242,248,0.9));
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 30px 60px rgba(15, 42, 51, 0.30);
}
.iot-plate--3 { transform: translateZ(150px); background: linear-gradient(145deg, #2C5964, #1A3940); box-shadow: 0 40px 70px rgba(15,42,51,0.45); }
.iot-plate--2 { transform: translateZ(75px); }
.iot-plate--1 { transform: translateZ(0); }
/* Billboarded labels: counter-rotate the parent's rotateX(58)/rotateZ(-40)
   so text always faces the camera, upright and legible. Each plate's label
   sits in a different corner so the three never overlap in the iso view. */
.iot-plate .p-label {
    position: absolute;
    transform: rotateZ(40deg) rotateX(-58deg);
    transform-origin: center;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 14px;
    letter-spacing: .3px;
    padding: 7px 14px; border-radius: 12px; white-space: nowrap;
    box-shadow: 0 10px 22px rgba(15, 42, 51, 0.35);
}
.iot-plate--1 .p-label { left: 24px; bottom: 24px; top: auto; }
.iot-plate--2 .p-label { left: 24px; top: 128px; }
.iot-plate--3 .p-label { right: 24px; top: 24px; left: auto; background: rgba(15, 42, 51, 0.85); color: #fff; box-shadow: 0 10px 22px rgba(0,0,0,0.5); }

.iot-plate .p-dots {
    position: absolute;
    transform: rotateZ(40deg) rotateX(-58deg);
    display: flex; gap: 8px;
}
.iot-plate--1 .p-dots { top: 24px; right: 24px; left: auto; bottom: auto; }
.iot-plate--2 .p-dots { bottom: 24px; right: 24px; left: auto; top: auto; }
.iot-plate--3 .p-dots { bottom: 24px; left: 24px; right: auto; top: auto; }
.iot-plate .p-dots i {
    width: 12px; height: 12px; border-radius: 50%; display: block;
    background: var(--blue); box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.iot-plate--2 .p-dots i { background: var(--orange); }
.iot-plate--3 .p-dots i { background: #5eead4; }

/* ---------- CAPABILITY CARDS (3D tilt) ---------- */
.iot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.iot-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px 20px 20px;
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
}
.iot-card::after {
    content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%;
    background: var(--grad-brand);
}
.iot-card:hover { box-shadow: var(--shadow-3d-hover); }
.iot-card .c-ico {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff; margin-bottom: 14px;
    background: var(--grad-brand);
    box-shadow: 0 12px 22px rgba(44, 89, 100, 0.34), inset 0 1px 0 rgba(255,255,255,0.4);
    transform: translateZ(40px);
}
.iot-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: var(--ink); margin: 0 0 8px; transform: translateZ(28px); }
.iot-card p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; transform: translateZ(18px); }

/* ---------- TECH STACK + PROGRESS ---------- */
.iot-tech { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.iot-tech-card {
    background: #fff; border: 1px solid var(--line); border-radius: 20px;
    padding: 20px 18px; text-align: center; box-shadow: var(--shadow-3d);
    transition: transform .3s ease, box-shadow .3s ease;
}
.iot-tech-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-3d-hover); }
.iot-tech-badge {
    width: 72px; height: 72px; margin: 0 auto 12px;
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; color: #fff;
    background: var(--grad-brand); box-shadow: 0 12px 22px rgba(44,89,100,0.3);
}
.iot-tech-card h4 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; color: var(--ink); margin: 0 0 6px; }
.iot-tech-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

.iot-progress-wrap { margin-top: 56px; }
.iot-progress-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.iot-progress { }
.iot-progress .pr-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.iot-progress .pr-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink); }
.iot-progress .pr-val { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--orange); }
.iot-bar { height: 12px; border-radius: 10px; background: #e7eef2; overflow: hidden; box-shadow: inset 0 1px 3px rgba(0,0,0,0.08); }
.iot-bar > i {
    display: block; height: 100%; border-radius: 10px; width: 0;
    background: linear-gradient(90deg, #2C5964, #4F84C4 55%, #F08830);
    box-shadow: 0 0 14px rgba(79,132,196,0.6);
    transition: width 1.4s cubic-bezier(.22,1,.36,1);
}
.iot-milestones { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.iot-milestone {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px; border-radius: 50px;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-3d);
    font-weight: 600; color: var(--ink); font-size: 14px;
}
.iot-milestone .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(240,136,48,0.18); }

/* ---------- USE CASES ---------- */
.iot-usecases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.iot-uc {
    position: relative; border-radius: 24px; overflow: hidden;
    background: var(--grad-dark); color: #fff;
    padding: 34px 28px 30px; min-height: 300px;
    box-shadow: var(--shadow-3d);
    transition: transform .35s ease, box-shadow .35s ease;
}
.iot-uc:hover { transform: translateY(-10px) rotateX(4deg); box-shadow: var(--shadow-3d-hover); }
.iot-uc::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 60% at 80% 20%, rgba(79,132,196,0.45), transparent 60%);
}
.iot-uc .uc-tag { position: relative; display: inline-block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #ffce99; font-weight: 700; }
.iot-uc h3 { position: relative; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 23px; margin: 10px 0 12px; }
.iot-uc p { position: relative; color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.65; }
.iot-uc .uc-ico {
    position: relative; margin-bottom: 18px;
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 26px;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

/* ---------- FAQ ---------- */
.iot-faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 10px; }
.iot-faq {
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    box-shadow: var(--shadow-3d); overflow: hidden;
}
.iot-faq summary {
    cursor: pointer; list-style: none; padding: 20px 26px;
    font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--ink); font-size: 17px;
    display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.iot-faq summary::-webkit-details-marker { display: none; }
.iot-faq summary .pm {
    flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #fff;
    background: var(--grad-brand); transition: transform .3s ease;
}
.iot-faq[open] summary .pm { transform: rotate(45deg); }
.iot-faq-body { padding: 0 26px 22px; color: var(--muted); font-size: 15px; line-height: 1.7; }

/* ---------- CTA ---------- */
.iot-cta {
    position: relative; overflow: hidden;
    background: var(--grad-brand); color: #fff;
    border-radius: 30px; padding: 34px 30px; text-align: center;
    box-shadow: var(--shadow-3d-hover);
    margin: 0 auto; max-width: 1080px;
}
.iot-cta::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(50% 60% at 15% 20%, rgba(255,255,255,0.25), transparent 60%),
                radial-gradient(50% 60% at 85% 90%, rgba(26,57,64,0.4), transparent 60%);
}
.iot-cta h2 { position: relative; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(26px, 3.4vw, 40px); margin: 0 0 14px; }
.iot-cta p {     position: relative; max-width: 640px; margin: 0 auto 22px; font-size: 17px; color: rgba(255,255,255,0.92); }
.iot-cta .iot-cta-row { position: relative; justify-content: center; }
.iot-cta .iot-btn-ghost { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.55); }

/* ---------- IoT footer layout (logo + address at bottom, links to one side) ---------- */
.site-footer--iot .footer-top-inner.iot-foot-main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}
.site-footer--iot .footer-brand { width: 38%; padding-right: 0; }
.site-footer--iot .footer-links-wrap { width: 58%; }
.site-footer--iot .footer-links-grid { grid-template-columns: repeat(2, 1fr); justify-content: end; }

.site-footer--iot .footer-bottom-inner.iot-foot-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}
.site-footer--iot .iot-foot-id {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}
.site-footer--iot .iot-foot-id .footer-brand-logo { margin-bottom: 0; }
.site-footer--iot .iot-foot-id .footer-brand-logo img { height: 54px; }
.site-footer--iot .iot-foot-id .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 0;
}
.site-footer--iot .iot-foot-id .footer-contact li { margin: 0; max-width: 360px; }
.site-footer--iot .footer-copy { text-align: right; }
.site-footer--iot .iot-foot-div { display: block; margin-top: 4px; opacity: .8; }

@media (max-width: 820px) {
    .site-footer--iot .footer-top-inner.iot-foot-main { flex-direction: column; }
    .site-footer--iot .footer-brand,
    .site-footer--iot .footer-links-wrap { width: 100%; }
    .site-footer--iot .footer-bottom-inner.iot-foot-bottom { flex-direction: column; align-items: flex-start; }
    .site-footer--iot .footer-copy { text-align: left; }
}

/* ---------- reveal animation ---------- */
.iot-reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1); }
.iot-reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .iot-hero .iot-container { grid-template-columns: 1fr; }
    .iot-hero-visual { order: -1; min-height: 380px; }
    .iot-arch { grid-template-columns: 1fr; }
    .iot-stack-scene { margin-top: 20px; }
    .iot-grid, .iot-tech, .iot-progress-grid, .iot-usecases { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .iot-hero { padding: 44px 0 90px; }
    .iot-orbit-system { transform: scale(.82); }
    .iot-grid, .iot-tech, .iot-progress-grid, .iot-usecases { grid-template-columns: 1fr; }
    .iot-cta { padding: 40px 24px; }
}


/* ============================================================
   Agriculture B2B Platform (agriculture.html)
   ============================================================ */
/* =============================================================
   Agriculture B2B Platform (agriculture.html)
   Next-level 3D: particle canvas + rotating 3D cube + parallax
   Palette (from Mi Soft logo): teal #2C5964 · navy #1A3940
   orange #F08830 · blue #4F84C4  (+ white / navy-based neutrals)
   ============================================================= */

.ag-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- HERO ---------- */
.ag-hero {
    position: relative; overflow: hidden;
    background: var(--grad-dark); color: #fff;
    padding: 64px 0 120px; isolation: isolate;
}
.ag-hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(60% 50% at 12% 18%, rgba(79,132,196,0.40), transparent 60%),
        radial-gradient(55% 45% at 88% 82%, rgba(240,136,48,0.34), transparent 62%),
        radial-gradient(40% 40% at 50% 50%, rgba(44,89,100,0.45), transparent 70%);
    z-index: -2;
}
.ag-hero canvas.ag-particles {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 0; opacity: .85;
}
.ag-hero .ag-container {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}

.ag-status {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 16px 8px 12px; border-radius: 40px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px); font-size: 13px; font-weight: 600; letter-spacing: .4px;
}
.ag-status .pulse {
    width: 9px; height: 9px; border-radius: 50%; background: #F08830;
    box-shadow: 0 0 0 0 rgba(240,136,48,0.7); animation: agStatusPulse 2s infinite;
}
@keyframes agStatusPulse {
    0% { box-shadow: 0 0 0 0 rgba(240,136,48,.7); }
    70% { box-shadow: 0 0 0 12px rgba(240,136,48,0); }
    100% { box-shadow: 0 0 0 0 rgba(240,136,48,0); }
}

.ag-hero h1 {
    font-family: 'Poppins', sans-serif; font-weight: 800;
    font-size: clamp(38px, 5.2vw, 68px); line-height: 1.04;
    margin: 22px 0 0; letter-spacing: -1px;
}
.ag-hero h1 .grad {
    background: linear-gradient(100deg, #F08830, #4F84C4 50%, #2C5964);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ag-hero p.lede { margin: 22px 0 0; max-width: 540px; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.82); }

/* ---------- 3D HERO VISUAL ---------- */
.ag-hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 500px; perspective: 1100px; }
.ag-3d { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.ag-stage { position: relative; width: 440px; height: 440px; max-width: 92vw; transform-style: preserve-3d; transition: transform .25s ease-out; }
.ag-globe { display: block; width: 440px; height: 440px; max-width: 92vw; touch-action: none; }
@media (max-width: 640px) { .ag-stage, .ag-globe { width: 320px; height: 320px; } }

.ag-float {
    position: absolute; padding: 12px 16px; border-radius: 16px;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(10px); box-shadow: var(--shadow-3d); color: #fff;
    font-family: 'Montserrat', sans-serif; animation: agFloat 7s ease-in-out infinite;
}
.ag-float b { display: block; font-size: 18px; font-weight: 800; }
.ag-float span { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.ag-float--1 { top: 2%; left: -10%; --tz: 70px; animation-delay: 0s; }
.ag-float--2 { bottom: 8%; left: -14%; --tz: 50px; animation-delay: 1.4s; }
.ag-float--3 { top: 8%; right: -12%; --tz: 80px; animation-delay: 2.2s; }
@keyframes agFloat { 0%,100% { transform: translateZ(var(--tz,60px)) translateY(0); } 50% { transform: translateZ(var(--tz,60px)) translateY(-14px); } }

/* ---------- TRADE DASHBOARD ---------- */
.ag-dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: stretch; }
.ag-panel {
    background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 30px 28px;
    box-shadow: var(--shadow-3d); transform: perspective(1100px) rotateX(4deg);
    transition: transform .4s ease, box-shadow .4s ease;
}
.ag-panel:hover { transform: perspective(1100px) rotateX(0deg) translateY(-6px); box-shadow: var(--shadow-3d-hover); }
.ag-panel h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 21px; color: var(--ink); margin: 0 0 4px; }
.ag-panel .ag-sub { font-size: 12px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }

.ag-deal {
    background: linear-gradient(160deg, #2C5964, #1A3940); color: #fff; border-radius: 16px;
    padding: 20px; margin-bottom: 16px; box-shadow: 0 14px 30px rgba(26,57,64,0.35);
}
.ag-deal-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.ag-deal h4 { margin: 0; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; }
.ag-deal .ag-tag { font-size: 11px; background: rgba(240,136,48,0.22); color: #ffce99; padding: 4px 10px; border-radius: 20px; font-weight: 700; white-space: nowrap; }
.ag-deal p { margin: 12px 0 14px; font-size: 14px; color: rgba(255,255,255,0.82); }
.ag-deal .ag-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.ag-deal .ag-meta b { color: #fff; }

.ag-track-step { display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: 14px; background: #f7fafc; border: 1px solid var(--line); margin-bottom: 10px; }
.ag-track-step .dot { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; background: var(--teal); box-shadow: 0 8px 16px rgba(44,89,100,0.3); flex: 0 0 auto; }
.ag-track-step.done .dot { background: var(--orange); }
.ag-track-step.active .dot { background: var(--blue); box-shadow: 0 0 0 4px rgba(79,132,196,0.25); }
.ag-track-step .t-name { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--ink); font-size: 15px; }
.ag-track-step .t-state { font-size: 12px; color: rgba(26,57,64,0.62); }
.ag-track-line { width: 2px; height: 12px; background: var(--line); margin: 0 0 0 33px; }

.ag-muted { color: rgba(26,57,64,0.72); }

/* ---------- BENEFITS ---------- */
.ag-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.ag-benefit {
    background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 26px 22px;
    text-align: center; box-shadow: var(--shadow-3d); transition: transform .3s ease, box-shadow .3s ease;
}
.ag-benefit:hover { transform: translateY(-8px); box-shadow: var(--shadow-3d-hover); }
.ag-benefit .ag-num {
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 44px;
    background: linear-gradient(135deg, #2C5964, #F08830);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ag-benefit .ag-blabel { margin-top: 6px; font-weight: 600; color: rgba(26,57,64,0.72); font-size: 14px; }

.ag-vprops { max-width: 760px; margin: 40px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ag-vprop { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-3d); font-weight: 600; color: var(--ink); font-size: 15px; }
.ag-vprop i { color: var(--orange); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .ag-hero .ag-container { grid-template-columns: 1fr; }
    .ag-hero-visual { order: -1; min-height: 420px; }
    .ag-dash-grid { grid-template-columns: 1fr; }
    .ag-benefits { grid-template-columns: repeat(2, 1fr); }
    .ag-vprops { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .ag-hero { padding: 44px 0 90px; }
    .ag-3d { transform: scale(.82); }
    .ag-benefits { grid-template-columns: 1fr; }
    .ag-panel { transform: none; }
}

/* ============================================================
   Sales Force Automation Platform (sales.html)
   ============================================================ */
.sfa-hero { position: relative; overflow: hidden; padding: 52px 0 32px; isolation: isolate; background: var(--bg); }
.sfa-particles { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; opacity: .4; }
.sfa-hero::before {
    content: ''; position: absolute; inset: 0; z-index: -2;
    background:
        radial-gradient(1200px 600px at 82% -10%, rgba(44,89,100,0.12), transparent 60%),
        radial-gradient(900px 520px at 0% 115%, rgba(26,57,64,0.12), transparent 55%);
}
.sfa-hero .ag-container {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
    position: relative; z-index: 2;
}
.sfa-hero-copy h1 {
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 54px; line-height: 1.05;
    margin: 14px 0 14px; color: var(--teal); letter-spacing: -1px;
}
.sfa-hero-copy h1 .grad { background: none; -webkit-text-fill-color: var(--teal); color: var(--teal); }
.sfa-hero-copy .lede {
    font-size: 17px; line-height: 1.7; color: var(--muted); max-width: 540px; margin-bottom: 18px;
}
.sfa-hero-visual { position: relative; }
.sfa-hero .iot-status { background: rgba(44,89,100,0.08); border-color: rgba(44,89,100,0.18); color: var(--teal); }
.sfa-hero .iot-chip-meta { background: #fff; border-color: var(--line); box-shadow: var(--shadow-3d); }
.sfa-hero .iot-chip-meta b { color: var(--teal); }
.sfa-hero .iot-chip-meta span { color: var(--muted); }

/* ---- 3D isometric live field-map ---- */
.sfa-3d { perspective: 1200px; display: flex; justify-content: center; }
.sfa-stage {
    position: relative; width: 460px; height: 460px; max-width: 92vw;
    transform-style: preserve-3d; transition: transform .25s ease-out;
}
.sfa-map {
    position: absolute; inset: 0; border-radius: 28px;
    transform: rotateX(56deg) rotateZ(-28deg); transform-style: preserve-3d;
    background: linear-gradient(145deg, rgba(44,89,100,0.34), rgba(26,57,64,0.34));
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 40px 80px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
    overflow: hidden;
}
.sfa-grid {
    position: absolute; inset: -40%;
    background-image:
        linear-gradient(rgba(79,132,196,0.40) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79,132,196,0.40) 1px, transparent 1px);
    background-size: 38px 38px;
    transform: translateZ(0);
}
.sfa-route { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sfa-route-line {
    fill: none; stroke: url(#sfaRouteGrad); stroke-width: 3.5; stroke-linecap: round;
    stroke-dasharray: 6 10; opacity: .95; animation: sfaDash 1.1s linear infinite;
}
@keyframes sfaDash { to { stroke-dashoffset: -32; } }
.sfa-pin { fill: #F08830; filter: drop-shadow(0 0 4px rgba(240,136,48,0.9)); }
.sfa-marker {
    fill: #fff; stroke: #F08830; stroke-width: 3;
    filter: drop-shadow(0 0 7px rgba(240,136,48,0.95));
}
.sfa-scan {
    position: absolute; inset: 0; border-radius: 28px;
    background: linear-gradient(180deg, rgba(240,136,48,0.22), transparent 45%);
    animation: sfaScan 3.6s ease-in-out infinite;
}
@keyframes sfaScan {
    0%, 100% { opacity: .25; transform: translateY(-28%); }
    50% { opacity: .65; transform: translateY(28%); }
}

/* floating KPI chips above the map plane */
.sfa-chip {
    position: absolute; padding: 10px 16px; border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #e7eef4); color: var(--teal);
    box-shadow: 0 18px 38px rgba(0,0,0,0.45); text-align: center; line-height: 1.1;
}
.sfa-chip b { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 22px; }
.sfa-chip span { font-size: 11px; letter-spacing: .4px; color: #5b6b76; text-transform: uppercase; }
.sfa-chip--1 { top: 4%; left: -7%; transform: translateZ(95px); }
.sfa-chip--2 { top: 51%; right: 25%; transform: translateZ(135px); }
.sfa-chip--3 { bottom: 2%; left: 6%; transform: translateZ(70px); }

/* floating mobile check-in card */
.sfa-phone {
    position: absolute; top: 24%; right: -5%; width: 122px; height: 232px; border-radius: 22px;
    background: #0e272d; border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 26px 52px rgba(0,0,0,0.5); transform: translateZ(120px) rotateY(-16deg);
    overflow: hidden;
}
.sfa-phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 46px; height: 12px; background: #06181d; border-radius: 0 0 10px 10px; }
.sfa-phone-screen { position: absolute; inset: 14px 10px 10px; border-radius: 14px; background: linear-gradient(160deg, #14333b, #0b2127); padding: 12px 10px; }
.sfa-checkin { display: flex; gap: 7px; align-items: center; color: #fff; }
.sfa-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(145deg, #ffd9ab, #F08830); color: #5a2e06; display: flex; align-items: center; justify-content: center; font-size: 13px; flex: none; }
.sfa-checkin b { font-size: 10px; display: block; }
.sfa-checkin small { font-size: 8px; color: rgba(255,255,255,0.6); }
.sfa-track { display: flex; gap: 5px; margin-top: 12px; }
.sfa-track span { height: 6px; border-radius: 4px; background: rgba(79,132,196,0.5); }
.sfa-track span:nth-child(1) { width: 40%; } .sfa-track span:nth-child(2) { width: 28%; } .sfa-track span:nth-child(3) { width: 20%; }
.sfa-track--2 span { background: rgba(240,136,48,0.55); }

/* stats band */
.sfa-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 12px; }
.sfa-stat {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px 16px; text-align: center;
    box-shadow: var(--shadow-3d);
}
.sfa-stat b { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 34px; color: var(--teal); line-height: 1; }
.sfa-stat span { font-size: 12.5px; color: #5b6b76; margin-top: 8px; display: block; }

/* before / after */
.sfa-compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sfa-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sfa-before, .sfa-after {
    border-radius: 14px; padding: 16px 18px; font-size: 14px; line-height: 1.55;
    border: 1px solid var(--line); background: #fff;
}
.sfa-before { color: #F1F1F1; background: linear-gradient(150deg, #2b1414, #1a1a1a); border-color: #5a1f1f; }
.sfa-after { color: var(--teal); background: linear-gradient(150deg, rgba(44,89,100,0.10), rgba(79,132,196,0.10)); border-color: rgba(44,89,100,0.25); font-weight: 500; }
.sfa-before span, .sfa-after span {
    display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    padding: 3px 9px; border-radius: 20px; margin-bottom: 8px;
}
.sfa-before span { background: rgba(255,107,107,0.15); color: #FF6B6B; }
.sfa-after span { background: var(--orange); color: #fff; }

/* executive insights panel */
.sfa-insights {
    margin-top: 18px; background: linear-gradient(150deg, var(--teal), var(--blue-dk));
    border-radius: 20px; padding: 22px 24px; color: #fff; box-shadow: var(--shadow-3d-hover);
}
.sfa-insights h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 19px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.sfa-insights h3 i { color: var(--orange); }
.sfa-insights ul { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; margin: 0; padding: 0; }
.sfa-insights li { font-size: 14.5px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.92); }
.sfa-insights li i { color: var(--orange); }

@media (max-width: 991px) {
    .sfa-hero .ag-container { grid-template-columns: 1fr; }
    .sfa-hero-copy h1 { font-size: 42px; }
    .sfa-3d { margin-top: 30px; }
    .sfa-stats { grid-template-columns: repeat(3, 1fr); }
    .sfa-insights ul { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .sfa-stage { width: 330px; height: 330px; }
    .sfa-stats { grid-template-columns: repeat(2, 1fr); }
    .sfa-compare, .sfa-pair { grid-template-columns: 1fr; }
    .sfa-hero-copy h1 { font-size: 34px; }
}


/* ============================================================
   loanchatbot.html — AI Chatbot Use Cases by Industry
   3D creative section styles (palette = Mi Soft logo)
   Scoped to .cb-* so it cannot affect other pages.
   ============================================================ */
.cb-hero { padding: 42px 0 70px; overflow: hidden; }
.cb-hero .cb-container { text-align: left; }
.cb-hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .45; z-index: 0; animation: cbHeroPulse 7s ease-in-out infinite; }
.cb-hero-glow-1 { top: -90px; left: -60px; width: 360px; height: 360px; background: rgba(240,136,48,0.4); }
.cb-hero-glow-2 { bottom: -110px; right: -40px; width: 380px; height: 380px; background: rgba(79,132,196,0.4); animation-delay: 2.6s; }
@keyframes cbHeroPulse { 0%,100% { transform: scale(1); opacity: .35; } 50% { transform: scale(1.12); opacity: .5; } }

.cb-hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.cb-hero-copy { max-width: 640px; }
.cb-hero-copy .cb-eyebrow { margin-bottom: 20px; }
.cb-hero h1 { text-align: left; font-size: clamp(34px, 4.6vw, 56px); }
.cb-hero p { text-align: left; margin: 22px 0 0; }
.cb-hero .cb-cta-row { justify-content: flex-start; }
.cb-hero .cb-chips { justify-content: flex-start; margin-top: 26px; }
.cb-grad-text { background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* 3D orbiting chatbot scene */
.cb-orbit { position: relative; height: 430px; display: flex; align-items: center; justify-content: center; perspective: 1100px; }
.cb-orbit-core {
    position: relative; width: 172px; height: 172px; border-radius: 38px;
    background: linear-gradient(145deg, #2C5964, #1A3940);
    display: flex; align-items: center; justify-content: center; color: #F08830; font-size: 66px;
    box-shadow: 0 30px 60px rgba(26,57,64,0.5), inset 0 2px 0 rgba(255,255,255,0.25),
                0 0 0 10px rgba(240,136,48,0.12), 0 0 0 22px rgba(79,132,196,0.10);
    transform-style: preserve-3d; z-index: 3;
    animation: cbCoreFloat 5s ease-in-out infinite;
}
.cb-orbit-core::before {
    content: ""; position: absolute; inset: -28px; border-radius: 52px;
    background: radial-gradient(circle, rgba(240,136,48,0.18), transparent 62%); z-index: -1;
    animation: cbCoreSpin 9s linear infinite;
}
@keyframes cbCoreFloat { 0%,100% { transform: translateY(-12px) rotateX(8deg) rotateY(-14deg); } 50% { transform: translateY(12px) rotateX(8deg) rotateY(-14deg); } }
@keyframes cbCoreSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.cb-orbit-ring { position: absolute; inset: 0; transform-style: preserve-3d; animation: cbOrbit 24s linear infinite; }
@keyframes cbOrbit { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
.cb-orbit-node {
    position: absolute; left: 50%; top: 50%; width: 94px; height: 94px; margin: -47px;
    border-radius: 22px; transform-style: preserve-3d;
}
.cb-orbit-bubble {
    width: 100%; height: 100%; border-radius: 22px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 5px;
    background: linear-gradient(160deg, #ffffff, #eef4f8); color: #2C5964; font-size: 30px;
    border: 1px solid #eef2f5; box-shadow: var(--cb-shadow-3d);
    animation: cbBubble 24s linear infinite;
}
.cb-orbit-bubble small { font-size: 10px; font-weight: 700; color: var(--cb-muted); text-transform: uppercase; letter-spacing: .3px; }
@keyframes cbBubble { from { transform: rotateY(0deg); } to { transform: rotateY(-360deg); } }

/* 3D tilt + depth on cards */
.cb-grid { perspective: 1400px; }
.cb3d-tilt { transform-style: preserve-3d; transition: transform .25s ease, box-shadow .3s ease; will-change: transform; }
.cb3d-tilt .cb-icon { transform: translateZ(42px); }
.cb3d-tilt h3 { transform: translateZ(30px); }
.cb3d-tilt p { transform: translateZ(20px); }
.cb3d-tilt .cb-badge { transform: translateZ(48px); }
.cb3d-tilt .cb-tags { transform: translateZ(26px); }
.cb3d-tilt .cb-link { transform: translateZ(36px); }

/* scroll reveal (progressive: visible by default, hidden only once JS opts in) */
.cb-reveal { transition: opacity .7s ease, transform .7s ease; }
.cb-reveal.cb-hidden { opacity: 0; transform: translateY(34px); }

/* CTA glow accent */
.cb-cta { position: relative; }
.cb-cta-glow { position: absolute; inset: 0; border-radius: 26px; background: radial-gradient(circle at 18% 20%, rgba(255,255,255,0.18), transparent 45%), radial-gradient(circle at 82% 80%, rgba(255,255,255,0.14), transparent 45%); pointer-events: none; }

/* Explicit black text for all readable content (per request) */
.cb-section-head h2,
.cb-section-head p,
.cb-section-head .cb-tag,
.cb-card h3,
.cb-card p,
.cb-badge,
.cb-tag-item,
.cb-link,
.cb-label,
.cb-rlabel,
.cb-hero-copy p { color: #000; }
.cb-card h3 { color: #000 !important; }
.cb-card p { color: #000 !important; }

@media (prefers-reduced-motion: reduce) {
    .cb-reveal, .cb-reveal.cb-hidden { opacity: 1; transform: none; }
    .cb-orbit-ring, .cb-orbit-bubble, .cb-orbit-core, .cb-orbit-core::before, .cb-hero-glow { animation: none; }
}
@media (max-width: 900px) {
    .cb-hero-grid { grid-template-columns: 1fr; }
    .cb-orbit { height: 380px; order: -1; }
}
@media (max-width: 600px) {
    .cb-orbit { height: 340px; }
    .cb-orbit-core { width: 140px; height: 140px; font-size: 54px; }
    .cb-orbit-node { width: 78px; height: 78px; margin: -39px; font-size: 24px; }
    .cb-orbit-node .cb-orbit-bubble { transform: scale(0.82); }
}


/* ============================================================
   loanchatbot.html — AI Chatbot for Loan Processing & Lending
   Creative 3D style, brand-colored (teal / navy / orange / blue)
   ============================================================ */

/* Breadcrumb */
.loan-breadcrumb { background: #fff; border-bottom: 1px solid #e9eef2; padding: 14px 0; }
.loan-crumbs { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.loan-crumbs a { color: var(--cb-dark); text-decoration: none; transition: color .2s; }
.loan-crumbs a:hover { color: var(--cb-orange); }
.loan-crumb-sep { color: #b7c2c9; font-size: 10px; }
.loan-crumb-current { color: var(--cb-orange); }

/* Hero (left-aligned 2-column variant) */
.loan-hero { padding: 46px 0 84px; }
.loan-hero .cb-container { text-align: left; }
.loan-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; position: relative; z-index: 2; }
.loan-hero-copy .cb-eyebrow { margin-bottom: 18px; }
.loan-hero-copy h1 { color: #fff; font-size: clamp(34px, 4.6vw, 56px); font-weight: 900; line-height: 1.08; text-align: left; }
.loan-hero-copy p { max-width: 560px; margin: 22px 0 0; font-size: 18px; color: rgba(255,255,255,0.9); text-align: left; }
.loan-hero-copy .cb-cta-row { justify-content: flex-start; margin-top: 32px; }

/* 3D chat mockup */
.loan-hero-visual { perspective: 1300px; }
.loan-chat { transform: rotateY(-14deg) rotateX(7deg); transform-style: preserve-3d; transition: transform .5s ease; }
.loan-chat:hover { transform: rotateY(-7deg) rotateX(3deg); }
.loan-chat-inner {
    background: #fff; border-radius: 24px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(13,40,46,0.55), 0 0 0 1px rgba(255,255,255,0.35), 0 0 0 16px rgba(240,136,48,0.10);
    transform: translateZ(40px);
}

/* ============================================================
   Carousel / slider navigation buttons (global, all instances)
   Brand colors: #2A5E6B (default/inactive) + #F58634 (active/hover)
   ============================================================ */
.slick-prev,
.slick-next,
.slick-arrow {
    background: #2A5E6B;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(42, 94, 107, 0.35), 0 4px 14px rgba(245, 134, 52, 0.25);
    transition: background-color .25s ease, box-shadow .25s ease;
}
.slick-prev:before,
.slick-next:before {
    color: #fff;
    opacity: 1;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus,
.slick-prev:active,
.slick-next:active {
    background: #F58634;
    box-shadow: 0 6px 18px rgba(245, 134, 52, 0.40), 0 6px 18px rgba(42, 94, 107, 0.25);
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before,
.slick-prev:active:before,
.slick-next:active:before {
    color: #fff;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
    background: #2A5E6B;
    box-shadow: 0 4px 14px rgba(42, 94, 107, 0.35), 0 4px 14px rgba(245, 134, 52, 0.25);
    opacity: .45;
}
.loan-chat-head {
    display: flex; align-items: center; gap: 14px; padding: 16px 20px;
    background: var(--cb-grad); color: #fff; position: relative;
}
.loan-chat-head::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%;
    background: linear-gradient(90deg, var(--cb-orange), var(--cb-blue));
}
.loan-avatar {
    width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: var(--cb-orange); color: #fff; font-size: 20px; box-shadow: 0 6px 16px rgba(240,136,48,0.5);
    transform: translateZ(20px);
}
.loan-chat-id { display: flex; flex-direction: column; line-height: 1.25; }
.loan-chat-name { font-weight: 800; font-size: 16px; }
.loan-chat-status { font-size: 12px; opacity: .88; display: flex; align-items: center; gap: 6px; }
.loan-live { color: #57e08f; font-size: 9px; animation: loanPulse 1.6s ease-in-out infinite; }
@keyframes loanPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.loan-chat-body {
    padding: 20px; display: flex; flex-direction: column; gap: 14px;
    background: #f3f7fa; border-radius: 0 0 24px 24px;
}
.loan-msg {
    max-width: 88%; padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.5;
    transform: translateZ(14px); box-shadow: 0 6px 14px rgba(26,57,64,0.10);
}
.loan-msg-user { align-self: flex-end; background: var(--cb-bluedk); color: #fff; border-bottom-right-radius: 5px; }
.loan-msg-bot { align-self: flex-start; background: #fff; color: #1c2b34; border: 1px solid #e2ebf0; border-bottom-left-radius: 5px; }
.loan-msg-compare { background: #fff; border: 1px solid rgba(240,136,48,0.4); }
.loan-compare-emoji { margin-right: 4px; }
.loan-msg { opacity: 1; transition: opacity .5s ease, transform .5s ease; }
.loan-msg-pre { opacity: 0; transform: translateY(14px) translateZ(14px); }
.loan-msg-in { opacity: 1; transform: translateY(0) translateZ(14px); }

@media (prefers-reduced-motion: reduce) {
    .loan-msg, .loan-msg-pre, .loan-msg-in { opacity: 1; transform: none; transition: none; }
    .loan-engine-ring, .loan-live, .loan-chat { animation: none; }
}

/* Hero stats overlap */
.loan-stats { margin-top: -46px; padding-bottom: 10px; position: relative; z-index: 5; }
.loan-stat-card { border-top: 4px solid var(--cb-orange); }

/* Transform narrative */
.loan-transform { max-width: 880px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 30px 32px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; }
.loan-transform p { color: #1f3340; font-size: 16px; line-height: 1.7; margin: 0 0 16px; }
.loan-transform p:last-child { margin-bottom: 0; }
.loan-transform strong { color: var(--cb-dark); }

/* Core capability rows */
.loan-cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; perspective: 1500px; }
.loan-cap {
    display: flex; gap: 18px; align-items: flex-start; background: #fff; border-radius: 20px; padding: 24px 22px;
    box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; transform-style: preserve-3d;
    transition: transform .25s ease, box-shadow .3s ease;
}
.loan-cap:hover { box-shadow: var(--cb-shadow-3d-hover); }
.loan-cap-num {
    flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; color: #fff;
    background: var(--cb-grad-accent); transform: translateZ(30px); box-shadow: 0 8px 18px rgba(240,136,48,0.35);
}
.loan-cap-body { transform: translateZ(16px); }
.loan-cap-body h3 { font-size: 19px; margin: 0 0 8px; color: #000; }
.loan-cap-body p { color: #000; font-size: 14.5px; line-height: 1.6; margin: 0; }

/* RBI compliance engine */
.loan-comp-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 36px; align-items: center; }
.loan-engine-wrap { display: flex; justify-content: center; }
.loan-engine { position: relative; width: 230px; height: 230px; display: flex; align-items: center; justify-content: center; transform-style: preserve-3d; }
.loan-engine-ring {
    position: absolute; inset: 0; border-radius: 50%;
    background: conic-gradient(from 0deg, var(--cb-orange), var(--cb-blue), var(--cb-dark), var(--cb-orange));
    -webkit-mask: radial-gradient(circle, transparent 64px, #000 65px);
    mask: radial-gradient(circle, transparent 64px, #000 65px);
    animation: loanSpin 8s linear infinite; filter: drop-shadow(0 10px 24px rgba(26,57,64,0.35));
}
@keyframes loanSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.loan-engine-core {
    width: 128px; height: 128px; border-radius: 50%; background: var(--cb-grad); color: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    box-shadow: 0 18px 38px rgba(26,57,64,0.5), inset 0 2px 0 rgba(255,255,255,0.2);
    font-weight: 800; font-size: 14px; transform: translateZ(34px); z-index: 2;
}
.loan-engine-core i { font-size: 30px; color: var(--cb-orange); }
.loan-comp-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; }
.loan-comp-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; font-weight: 600; color: #1f3340; line-height: 1.45; }
.loan-comp-list i { color: var(--cb-orange); font-size: 17px; margin-top: 2px; flex: 0 0 auto; }

/* FAQ accordion */
.loan-faq { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.loan-faq-item {
    background: #fff; border: 1px solid #e7eef3; border-radius: 16px; box-shadow: var(--cb-shadow-3d);
    overflow: hidden; transition: box-shadow .3s ease;
}
.loan-faq-item[open] { box-shadow: var(--cb-shadow-3d-hover); }
.loan-faq-item summary {
    list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 22px; font-weight: 700; font-size: 16px; color: #1c2b34;
}
.loan-faq-item summary::-webkit-details-marker { display: none; }
.loan-faq-item summary i { color: var(--cb-orange); transition: transform .3s ease; flex: 0 0 auto; }
.loan-faq-item[open] summary i { transform: rotate(180deg); }
.loan-faq-answer { padding: 0 22px 20px; }
.loan-faq-answer p { margin: 0; color: #1f3340; font-size: 15px; line-height: 1.65; }

/* Related cards */
.loan-related { text-decoration: none; }
.loan-related .cb-link { margin-top: 12px; }

/* Mutual fund calculator example quote */
.mf-eg {
    margin-top: 14px; padding: 10px 14px; font-size: 13.5px; font-style: italic; color: var(--cb-dark);
    background: #f1f6f9; border-left: 3px solid var(--cb-blue); border-radius: 0 10px 10px 0; line-height: 1.45;
    transform: translateZ(14px);
}

/* Responsive */
@media (max-width: 900px) {
    .loan-hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .loan-hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
    .loan-cap-grid { grid-template-columns: 1fr; }
    .loan-comp-grid { grid-template-columns: 1fr; gap: 28px; }
    .loan-comp-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .loan-chat { transform: none; }
    .loan-comp-list { grid-template-columns: 1fr; }
    .loan-stats .cb-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   healthcare.html — AI Chatbot for Healthcare & Patient Engagement
   Creative 3D style, brand-aligned (teal #2C5964 / orange #F08830)
   ============================================================ */
.hc-hero {
    --hc-mint: #37c2a8;
    --hc-accent: #F08830;
    position: relative;
    padding: 90px 0 100px;
    background: radial-gradient(120% 120% at 80% 0%, #1d4049 0%, #143038 45%, #0f242b 100%);
    color: #eaf4f3;
    overflow: hidden;
}
.hc-hero-bg { position: absolute; inset: 0; z-index: 0; }
.hc-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; }
.hc-blob-1 { width: 420px; height: 420px; background: #37c2a8; top: -120px; right: -80px; animation: hcBlob 14s ease-in-out infinite; }
.hc-blob-2 { width: 360px; height: 360px; background: #F08830; bottom: -140px; left: -100px; opacity: .35; animation: hcBlob 18s ease-in-out infinite reverse; }
.hc-blob-3 { width: 300px; height: 300px; background: #2C5964; top: 40%; left: 45%; opacity: .4; animation: hcBlob 20s ease-in-out infinite; }
@keyframes hcBlob { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-40px) scale(1.08); } }

.hc-hero .container { position: relative; z-index: 1; }
.hc-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }

.hc-breadcrumb { font-size: 13px; color: #9fc4c0; margin-bottom: 18px; letter-spacing: .3px; }
.hc-breadcrumb a { color: #9fc4c0; text-decoration: none; }
.hc-breadcrumb a:hover { color: #fff; }
.hc-breadcrumb span { margin: 0 8px; opacity: .6; }

.hc-badge { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(55,194,168,.45); color: #bfeede; font-size: 13px; font-weight: 600; letter-spacing: .3px; margin-bottom: 20px; }
.hc-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #37c2a8; box-shadow: 0 0 0 4px rgba(55,194,168,.25); }

.hc-h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 46px; line-height: 1.12; margin: 0 0 18px; color: #fff; }
.hc-h1 .grad { background: linear-gradient(90deg, #37c2a8, #F08830); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.hc-sub { font-size: 17px; line-height: 1.7; color: #c4dcd9; max-width: 560px; margin: 0 0 28px; }

.hc-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hc-btn-primary, .hc-btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 14px; font-weight: 700; font-size: 15px; text-decoration: none; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.hc-btn-primary { background: linear-gradient(90deg, #F08830, #ec6f1f); color: #fff; box-shadow: 0 16px 32px rgba(240,136,48,.35); }
.hc-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px rgba(240,136,48,.45); color: #fff; }
.hc-btn-outline { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.28); color: #eaf4f3; }
.hc-btn-outline:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); color: #fff; }

.hc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hc-stat { padding: 16px 14px; border-radius: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); text-align: center; }
.hc-stat .num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 26px; color: #fff; }
.hc-stat .lbl { font-size: 12px; color: #a9cbc7; margin-top: 4px; }

.hc-hero-visual { position: relative; perspective: 1200px; min-height: 360px; }
.hc-glass { position: relative; background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.22); border-radius: 24px; padding: 22px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 40px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.25); transform-style: preserve-3d; transition: transform .2s ease; }
.hc-glass-head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #cfeee6; margin-bottom: 14px; }
.hc-live { display: inline-flex; align-items: center; gap: 8px; }
.hc-live-dot { width: 9px; height: 9px; border-radius: 50%; background: #43e0a0; animation: hcPulse 1.6s infinite; }
@keyframes hcPulse { 0% { box-shadow: 0 0 0 0 rgba(67,224,160,.6); } 70% { box-shadow: 0 0 0 12px rgba(67,224,160,0); } 100% { box-shadow: 0 0 0 0 rgba(67,224,160,0); } }
.hc-bpm { color: #ffd9b8; font-weight: 700; }
.hc-monitor { position: relative; height: 150px; border-radius: 16px; background: linear-gradient(180deg, rgba(15,36,43,.6), rgba(15,36,43,.2)); overflow: hidden; border: 1px solid rgba(55,194,168,.25); }
.hc-ecg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hc-ecg polyline { fill: none; stroke: #37c2a8; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 820; stroke-dashoffset: 820; filter: drop-shadow(0 0 6px rgba(55,194,168,.8)); animation: hcDraw 3.2s linear infinite; }
@keyframes hcDraw { to { stroke-dashoffset: 0; } }
.hc-scan { position: absolute; top: 0; bottom: 0; width: 60px; left: -60px; background: linear-gradient(90deg, transparent, rgba(55,194,168,.18), transparent); animation: hcScan 3.2s linear infinite; }
@keyframes hcScan { to { left: 100%; } }
.hc-glass-foot { display: flex; justify-content: space-between; gap: 10px; margin-top: 14px; font-size: 12px; color: #bfe6df; }

.hc-float { position: absolute; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 20px; box-shadow: 0 14px 30px rgba(0,0,0,.3); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: hcFloat 5s ease-in-out infinite; transform-style: preserve-3d; }
.hc-f2 { background: rgba(240,136,48,.25); border-color: rgba(240,136,48,.6); color: #ffd9b8; }
.hc-f3 { background: rgba(55,194,168,.22); border-color: rgba(55,194,168,.6); color: #bfeede; }
@keyframes hcFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hc-f1 { top: -18px; right: 18px; animation-delay: .2s; }
.hc-f2 { top: 120px; right: -22px; animation-delay: 1.1s; }
.hc-f3 { bottom: 40px; right: 30px; animation-delay: .6s; }
.hc-f4 { bottom: -16px; left: 30px; animation-delay: 1.5s; }
.hc-f5 { top: 40px; left: -22px; animation-delay: .9s; }

.hc-sec { padding: 80px 0; }
.hc-sec-alt { background: linear-gradient(180deg, #f4f8f7, #eef4f3); }
.hc-sec-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.hc-badge-pill { display: inline-block; padding: 7px 16px; border-radius: 999px; background: rgba(44,89,100,.1); color: #2C5964; font-weight: 700; font-size: 13px; letter-spacing: .4px; margin-bottom: 14px; }
.hc-sec-head h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 34px; color: #16323a; margin: 0 0 12px; }
.hc-sec-head p { color: #5d7170; font-size: 16px; line-height: 1.6; margin: 0; }

.hc-lead { max-width: 860px; margin: 0 auto; }
.hc-lead p { font-size: 17px; line-height: 1.8; color: #36505a; margin: 0 0 18px; }
.hc-lead a { color: #F08830; font-weight: 600; text-decoration: underline; }
.hc-lead strong { color: #16323a; }

.hc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hc-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin: 0 auto; }
.hc-card { background: #fff; border: 1px solid rgba(44,89,100,.12); border-radius: 22px; padding: 28px 24px; box-shadow: 0 18px 40px rgba(26,57,64,.08); transform-style: preserve-3d; transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; will-change: transform; }
.hc-card:hover { box-shadow: 0 30px 60px rgba(26,57,64,.16); border-color: rgba(55,194,168,.5); }
.hc-card-ico { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; background: linear-gradient(135deg, #2C5964, #37c2a8); margin-bottom: 16px; box-shadow: 0 12px 24px rgba(44,89,100,.3); }
.hc-card h3 { font-size: 19px; font-weight: 700; color: #16323a; margin: 0 0 10px; }
.hc-card p { font-size: 14.5px; line-height: 1.65; color: #5d7170; margin: 0; }
.hc-card-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: #ec6f1f; background: rgba(240,136,48,.12); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.hc-card-link { text-decoration: none; color: inherit; display: block; }
.hc-card-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: #2C5964; font-weight: 700; font-size: 14px; }

.hc-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hc-int { background: #fff; border: 1px solid rgba(44,89,100,.1); border-radius: 18px; padding: 24px 20px; text-align: center; box-shadow: 0 14px 30px rgba(26,57,64,.06); transition: transform .35s ease, box-shadow .35s ease; }
.hc-int:hover { transform: translateY(-8px); box-shadow: 0 24px 46px rgba(26,57,64,.14); }
.hc-int-ico { width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #37c2a8; background: rgba(55,194,168,.12); }
.hc-int h4 { font-size: 16px; color: #16323a; margin: 0 0 6px; }
.hc-int p { font-size: 13.5px; color: #5d7170; margin: 0; }

.hc-comp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hc-comp { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid rgba(44,89,100,.1); border-radius: 16px; padding: 20px; box-shadow: 0 12px 26px rgba(26,57,64,.06); transition: transform .35s ease; }
.hc-comp:hover { transform: translateY(-6px); }
.hc-comp i { font-size: 20px; color: #37c2a8; margin-top: 2px; flex: 0 0 auto; }
.hc-comp p { font-size: 14px; line-height: 1.5; color: #36505a; margin: 0; }

.hc-faq { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }
.hc-faq-item { background: #fff; border: 1px solid rgba(44,89,100,.12); border-radius: 16px; overflow: hidden; box-shadow: 0 12px 26px rgba(26,57,64,.06); }
.hc-faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 16.5px; color: #16323a; display: flex; justify-content: space-between; align-items: center; }
.hc-faq-item summary::-webkit-details-marker { display: none; }
.hc-faq-item summary::after { content: "\f078"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: #F08830; transition: transform .3s ease; }
.hc-faq-item[open] summary::after { transform: rotate(180deg); }
.hc-faq-body { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.7; color: #5d7170; }

.hc-cta { padding: 80px 0; }
.hc-cta-box { max-width: 880px; margin: 0 auto; text-align: center; padding: 54px 40px; border-radius: 28px; background: radial-gradient(120% 140% at 50% 0%, #1d4049, #0f242b); color: #eaf4f3; box-shadow: 0 40px 80px rgba(15,36,43,.4); overflow: hidden; }
.hc-cta-box h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 32px; color: #fff; margin: 0 0 14px; }
.hc-cta-box p { font-size: 16px; line-height: 1.7; color: #c4dcd9; max-width: 640px; margin: 0 auto 26px; }
.hc-cta-box .hc-actions { justify-content: center; }

.hc-hide { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.hc-hide.in { opacity: 1; transform: none; }

@media (max-width: 991px) {
    .hc-hero-grid { grid-template-columns: 1fr; }
    .hc-hero-visual { min-height: 320px; margin-top: 10px; }
    .hc-grid, .hc-int-grid, .hc-comp-grid { grid-template-columns: repeat(2, 1fr); }
    .hc-h1 { font-size: 38px; }
}
@media (max-width: 575px) {
    .hc-grid, .hc-int-grid, .hc-comp-grid, .hc-grid-2 { grid-template-columns: 1fr; }
    .hc-stats { grid-template-columns: repeat(2, 1fr); }
    .hc-h1 { font-size: 30px; }
    .hc-sec-head h2 { font-size: 27px; }
}


/* ============================================================
   ecommerce.html — AI Chatbot for E-Commerce & Retail
   Creative 3D animated hero + brand-colored (teal/navy/orange/blue)
   ============================================================ */

/* 3D animated hero scene */
.ec-hero-scene {
    position: relative; perspective: 1300px; transform-style: preserve-3d;
    padding: 10px 0;
}
.ec-chat-float {
    transform-style: preserve-3d;
    animation: ecFloat 6.5s ease-in-out infinite;
    will-change: transform;
}
@keyframes ecFloat {
    0%, 100% { transform: translateY(-12px) rotateX(5deg) rotateY(-12deg); }
    50%      { transform: translateY(12px)  rotateX(5deg) rotateY(-12deg); }
}

/* Floating 3D commerce badges orbiting the chat */
.ec-float {
    position: absolute; z-index: 5; width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff;
    background: var(--cb-grad); box-shadow: 0 16px 34px rgba(26,57,64,.45), inset 0 2px 0 rgba(255,255,255,.25);
    transform-style: preserve-3d; animation: ecOrbit 9s linear infinite;
}
.ec-float i { transform: translateZ(16px); }
.ec-float-1 { top: -7%;  left: -5%;  background: linear-gradient(145deg,#F08830,#2C5964); animation-duration: 8s; }
.ec-float-2 { top: 6%;   right: -7%; background: linear-gradient(145deg,#4F84C4,#00539C); animation-duration: 11s; animation-delay: -2s; }
.ec-float-3 { bottom: 12%; left: -9%; background: linear-gradient(145deg,#2C5964,#1A3940); animation-duration: 10s; animation-delay: -4s; }
.ec-float-4 { bottom: -5%; right: 1%; background: linear-gradient(145deg,#F08830,#b8631c); animation-duration: 9s;  animation-delay: -1s; }
.ec-float-5 { top: 46%;  right: -11%; background: linear-gradient(145deg,#4F84C4,#2C5964); animation-duration: 12s; animation-delay: -3s; }
@keyframes ecOrbit {
    0%   { transform: translate3d(0, 0, 0)     rotateY(0deg)   rotateX(0deg); }
    50%  { transform: translate3d(0, -28px, 55px) rotateY(200deg) rotateX(14deg); }
    100% { transform: translate3d(0, 0, 0)     rotateY(360deg) rotateX(0deg); }
}

.ec-check { color: #2e9e5b; font-weight: 700; margin-right: 2px; }

/* E-Commerce platform integrations */
.ec-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ec-int {
    display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #eef2f5;
    border-radius: 16px; padding: 16px 18px; box-shadow: var(--cb-shadow-3d);
    transition: transform .25s ease, box-shadow .3s ease;
}
.ec-int:hover { transform: translateY(-6px); box-shadow: var(--cb-shadow-3d-hover); }
.ec-int i {
    width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
    display: flex; align-items: center; justify-content: center; font-size: 20px; color: #fff;
    background: var(--cb-grad-accent); box-shadow: 0 8px 16px rgba(240,136,48,.3);
}
.ec-int span { font-weight: 700; color: #1f3340; font-size: 15px; }

/* Inline link inside narrative */
.loan-transform a { color: var(--cb-orange); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.loan-transform a:hover { color: var(--cb-dark); }

@media (prefers-reduced-motion: reduce) {
    .ec-chat-float, .ec-float { animation: none; }
    .ec-float { transform: none !important; }
}

@media (max-width: 900px) {
    .ec-int-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .ec-float { width: 48px; height: 48px; font-size: 21px; }
    .ec-float-1 { left: -2%; } .ec-float-2 { right: -2%; } .ec-float-3 { left: -3%; } .ec-float-5 { right: -4%; }
}

/* ============================================================
   realstate.html — AI Chatbot for Real Estate & Property
   Reuses .hc-* 3D base; adds property-assistant chat + accents
   ============================================================ */
.hc-card { position: relative; }
.hc-num { position: absolute; top: -15px; left: 24px; width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #2C5964, #37c2a8); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(44,89,100,.4); }
.hc-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 980px; margin: 0 auto; }

.rs-chat { display: flex; flex-direction: column; }
.rs-chat-head { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #cfeee6; margin-bottom: 16px; }
.rs-online-dot { width: 9px; height: 9px; border-radius: 50%; background: #43e0a0; animation: hcPulse 1.6s infinite; }
.rs-chat-title { font-weight: 700; color: #fff; }
.rs-online { margin-left: auto; color: #ffd9b8; font-weight: 600; }
.rs-chat-body { display: flex; flex-direction: column; gap: 10px; }
.rs-msg { max-width: 90%; padding: 12px 16px; border-radius: 16px; font-size: 13.5px; line-height: 1.5; opacity: 0; transform: translateY(12px); animation: rsMsgIn .55s ease forwards; }
.rs-msg-user { align-self: flex-end; background: linear-gradient(90deg, #F08830, #ec6f1f); color: #fff; border-bottom-right-radius: 5px; box-shadow: 0 10px 22px rgba(240,136,48,.3); }
.rs-msg-bot { align-self: flex-start; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #eaf4f3; border-bottom-left-radius: 5px; }
.rs-msg:nth-child(1) { animation-delay: .2s; }
.rs-msg:nth-child(2) { animation-delay: 1s; }
.rs-msg:nth-child(3) { animation-delay: 1.9s; }
.rs-msg:nth-child(4) { animation-delay: 2.8s; }
@keyframes rsMsgIn { to { opacity: 1; transform: none; } }

@media (max-width: 991px) { .hc-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .hc-grid-3 { grid-template-columns: 1fr; } }


/* ============================================================
   travel.html — AI Chatbot for Hospitality & Travel
   Creative 3D style. Palette matches the Mi Soft logo.
   ============================================================ */
.tv-hero { position: relative; background: var(--cb-grad); color: #fff; padding: 56px 0 96px; overflow: hidden; perspective: 1400px; }
.tv-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 18%, rgba(240,136,48,0.35), transparent 42%), radial-gradient(circle at 88% 82%, rgba(79,132,196,0.38), transparent 44%); }
.tv-hero .container { position: relative; }
.tv-breadcrumb { font-size: 13px; opacity: .85; margin-bottom: 14px; }
.tv-breadcrumb a { color: #fff; }
.tv-breadcrumb span { margin: 0 8px; opacity: .6; }
.tv-badge { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); padding: 7px 16px; border-radius: 40px; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
.tv-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; margin-top: 22px; }
.tv-hero h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 900; line-height: 1.06; text-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 18px 40px rgba(0,0,0,0.25); }
.tv-hero p { max-width: 560px; margin: 20px 0 0; font-size: 18px; color: rgba(255,255,255,0.88); }
.tv-cta-row { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }
.tv-btn { display: inline-block; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-family: 'Montserrat', sans-serif; transition: transform .25s ease, box-shadow .25s ease; }
.tv-btn-primary { background: var(--cb-orange); color: #fff; box-shadow: 0 8px 0 #b8631c, 0 16px 30px rgba(184,99,28,0.4); }
.tv-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 11px 0 #b8631c, 0 22px 38px rgba(184,99,28,0.45); }
.tv-btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.tv-btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

/* Hero 3D visual */
.tv-hero-visual { position: relative; transform-style: preserve-3d; }
.tv-chat-card { background: #fff; border-radius: 22px; padding: 20px; box-shadow: var(--cb-shadow-3d); transform: rotateY(-12deg) rotateX(6deg); transform-style: preserve-3d; transition: transform .3s ease; position: relative; animation: tvFloat 6s ease-in-out infinite; }
@keyframes tvFloat { 0%,100% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); } 50% { transform: rotateY(-12deg) rotateX(6deg) translateY(-12px); } }
.tv-chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid #eef2f5; margin-bottom: 14px; }
.tv-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--cb-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; flex: 0 0 auto; }
.tv-meta strong { display: block; color: var(--cb-navy); font-family: 'Montserrat', sans-serif; font-size: 14px; }
.tv-meta small { color: var(--cb-muted); font-size: 12px; }
.tv-msg { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.45; margin-bottom: 12px; }
.tv-msg.user { margin-left: auto; background: var(--cb-grad); color: #fff; border-bottom-right-radius: 4px; }
.tv-msg.bot { background: #eef4f8; color: var(--cb-text); border-bottom-left-radius: 4px; }
.tv-emoji { font-size: 15px; }

/* Health-related animation widget */
.tv-wellness { position: absolute; right: -14px; bottom: -26px; width: 212px; background: rgba(255,255,255,0.97); border-radius: 16px; padding: 12px 14px; box-shadow: var(--cb-shadow-3d); transform: translateZ(60px) rotateY(8deg); border: 1px solid #eef2f5; }
.tv-wellness-head { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--cb-dark); font-family: 'Montserrat', sans-serif; }
.tv-pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: #e74c5b; box-shadow: 0 0 0 0 rgba(231,76,91,0.6); animation: tvPulse 1.4s infinite; }
@keyframes tvPulse { 0% { box-shadow: 0 0 0 0 rgba(231,76,91,0.6); } 70% { box-shadow: 0 0 0 12px rgba(231,76,91,0); } 100% { box-shadow: 0 0 0 0 rgba(231,76,91,0); } }
.tv-ecg { width: 100%; height: 46px; display: block; margin: 8px 0 4px; }
.tv-ecg-scroll { animation: tvScroll 2.4s linear infinite; }
@keyframes tvScroll { from { transform: translateX(0); } to { transform: translateX(-300px); } }
.tv-ecg-line { fill: none; stroke: #e74c5b; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tv-wellness-foot { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--cb-muted); }
.tv-wellness-foot .fa-heart { color: #e74c5b; animation: tvBeat 1.1s ease-in-out infinite; }
@keyframes tvBeat { 0%,100% { transform: scale(1); } 15% { transform: scale(1.35); } 30% { transform: scale(1); } 45% { transform: scale(1.25); } 60% { transform: scale(1); } }

/* Stats band */
.tv-stats { position: relative; z-index: 5; margin-top: -48px; padding-bottom: 10px; }
.tv-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tv-stat { background: #fff; border-radius: 18px; padding: 22px 16px; text-align: center; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; }
.tv-stat .tv-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 40px; background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.tv-stat .tv-label { color: var(--cb-muted); font-weight: 600; font-size: 13px; margin-top: 6px; }

/* Sections */
.tv-section { padding: 44px 0; }
.tv-section-head { text-align: center; max-width: 760px; margin: 0 auto 30px; }
.tv-section-head .tv-tag { color: var(--cb-orange); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; }
.tv-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 10px; }
.tv-section-head p { color: var(--cb-muted); font-size: 17px; }
.tv-bg-soft { background: var(--cb-grad-soft); }
.tv-prose { max-width: 860px; margin: 0 auto; }
.tv-prose p { color: var(--cb-muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.tv-prose strong { color: var(--cb-navy); }

/* Journey phases */
.tv-journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tv-phase { background: #fff; border-radius: 20px; padding: 26px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.tv-phase::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.tv-phase:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.tv-phase-step { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 13px; letter-spacing: 2px; color: var(--cb-orange); }
.tv-phase h3 { font-size: 20px; margin: 6px 0 14px; color: var(--cb-navy); }
.tv-phase ul { list-style: none; padding: 0; margin: 0; }
.tv-phase li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--cb-muted); font-size: 14.5px; }
.tv-phase li::before { content: "\f00c"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; top: 1px; color: var(--cb-blue); }

/* Feature cards */
.tv-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tv-feature { background: #fff; border-radius: 20px; padding: 26px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.tv-feature::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.tv-feature:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.tv-ficon { width: 62px; height: 62px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; margin-bottom: 16px; background: var(--cb-grad); box-shadow: 0 10px 18px rgba(44,89,100,0.3); }
.tv-feature h3 { font-size: 19px; margin-bottom: 10px; color: var(--cb-navy); }
.tv-feature p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.55; }

/* Integrations */
.tv-int-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.tv-int { background: #fff; border: 1px solid #eef2f5; border-radius: 14px; padding: 14px 22px; font-weight: 700; font-family: 'Montserrat', sans-serif; color: var(--cb-dark); box-shadow: var(--cb-shadow-3d); display: flex; align-items: center; gap: 10px; transition: transform .25s ease; }
.tv-int:hover { transform: translateY(-5px); }
.tv-int i { color: var(--cb-orange); }

/* FAQ */
.tv-faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.tv-faq { background: #fff; border: 1px solid #eef2f5; border-radius: 16px; box-shadow: var(--cb-shadow-3d); overflow: hidden; }
.tv-faq summary { cursor: pointer; list-style: none; padding: 18px 22px; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--cb-navy); font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.tv-faq summary::-webkit-details-marker { display: none; }
.tv-faq summary::after { content: "\f078"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: var(--cb-orange); transition: transform .25s ease; }
.tv-faq[open] summary::after { transform: rotate(180deg); }
.tv-faq-body { padding: 0 22px 20px; color: var(--cb-muted); font-size: 15px; line-height: 1.6; }

/* Use cases */
.tv-uc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tv-uc { background: #fff; border-radius: 20px; padding: 26px 24px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.tv-uc::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.tv-uc:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.tv-uc-ico { width: 56px; height: 56px; border-radius: 14px; background: var(--cb-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; box-shadow: 0 10px 18px rgba(44,89,100,0.3); }
.tv-uc h3 { font-size: 20px; margin-bottom: 8px; color: var(--cb-navy); }
.tv-uc p { color: var(--cb-muted); font-size: 14.5px; }
.tv-uc a { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; color: var(--cb-orange); font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 14px; transition: gap .2s ease; }
.tv-uc a:hover { gap: 14px; }

/* CTA */
.tv-cta { position: relative; background: var(--cb-grad-accent); color: #fff; border-radius: 26px; padding: 44px 30px; text-align: center; overflow: hidden; box-shadow: var(--cb-shadow-3d); margin: 18px auto; }
.tv-cta h2 { color: #fff; font-size: 30px; }
.tv-cta p { max-width: 640px; margin: 14px auto 28px; opacity: .95; }

/* Scroll reveal (progressive enhancement) */
.tv-reveal { transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.tv-reveal.tv-hide { opacity: 0; transform: translateY(28px) scale(.98); }
.tv-reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .tv-hero-grid { grid-template-columns: 1fr; }
    .tv-stats-grid, .tv-journey-grid, .tv-feature-grid, .tv-uc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .tv-stats-grid, .tv-journey-grid, .tv-feature-grid, .tv-uc-grid { grid-template-columns: 1fr; }
    .tv-wellness { display: none; }
}

/* ============================================================
   development.html — AI-Powered Software Development
   Creative 3D style. Palette matches the Mi Soft logo.
   ============================================================ */
.dv-hero { position: relative; background: var(--cb-grad); color: #fff; padding: 56px 0 92px; overflow: hidden; perspective: 1400px; }
.dv-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 18%, rgba(240,136,48,0.35), transparent 42%), radial-gradient(circle at 88% 82%, rgba(79,132,196,0.38), transparent 44%); }
.dv-hero .container { position: relative; }
.dv-badge { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); padding: 7px 16px; border-radius: 40px; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
.dv-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; margin-top: 22px; }
.dv-hero h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 900; line-height: 1.08; text-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 18px 40px rgba(0,0,0,0.25); }
.dv-hero p { max-width: 560px; margin: 20px 0 0; font-size: 18px; color: rgba(255,255,255,0.88); }
.dv-cta-row { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }
.dv-btn { display: inline-block; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-family: "Montserrat", sans-serif; transition: transform .25s ease, box-shadow .25s ease; }
.dv-btn-primary { background: var(--cb-orange); color: #fff; box-shadow: 0 8px 0 #b8631c, 0 16px 30px rgba(184,99,28,0.4); }
.dv-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 11px 0 #b8631c, 0 22px 38px rgba(184,99,28,0.45); }
.dv-btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.dv-btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

/* Hero stats */
.dv-stats { display: flex; gap: 28px; margin-top: 34px; flex-wrap: wrap; }
.dv-stat .dv-num { font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 34px; background: var(--cb-grad-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dv-stat .dv-label { color: rgba(255,255,255,0.82); font-size: 13px; font-weight: 600; margin-top: 2px; }

/* Hero 3D code card */
.dv-hero-visual { position: relative; transform-style: preserve-3d; }
.dv-code-card { background: #0f2230; border-radius: 18px; padding: 18px; box-shadow: var(--cb-shadow-3d); transform: rotateY(-12deg) rotateX(6deg); transform-style: preserve-3d; position: relative; border: 1px solid rgba(79,132,196,0.35); animation: dvFloat 6s ease-in-out infinite; }
@keyframes dvFloat { 0%,100% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); } 50% { transform: rotateY(-12deg) rotateX(6deg) translateY(-12px); } }
.dv-code-head { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #9fb6c4; margin-bottom: 12px; }
.dv-dots { display: inline-flex; gap: 5px; }
.dv-dots i { width: 10px; height: 10px; border-radius: 50%; background: #f0654a; display: inline-block; }
.dv-dots i:nth-child(2) { background: #f0b429; }
.dv-dots i:nth-child(3) { background: #57c98a; }
.dv-code-file { font-family: "Montserrat", sans-serif; font-weight: 700; color: #cfe3ee; }
.dv-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: #57c98a; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.dv-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #57c98a; box-shadow: 0 0 0 0 rgba(87,201,138,0.6); animation: dvPulse 1.5s infinite; }
@keyframes dvPulse { 0% { box-shadow: 0 0 0 0 rgba(87,201,138,0.6); } 70% { box-shadow: 0 0 0 10px rgba(87,201,138,0); } 100% { box-shadow: 0 0 0 0 rgba(87,201,138,0); } }
.dv-code { background: #0a1922; border-radius: 12px; padding: 16px; margin: 0; overflow: auto; }
.dv-code code { font-family: "SFMono-Regular", Consolas, monospace; font-size: 13px; line-height: 1.6; color: #9fd0ff; white-space: pre; }
.dv-code-tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.dv-tool-chip { background: rgba(79,132,196,0.16); border: 1px solid rgba(79,132,196,0.4); color: #cfe3ee; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.dv-tool-chip.lg { font-size: 14px; padding: 9px 18px; background: #fff; border-color: #e2e8ec; color: var(--cb-dark); box-shadow: 0 4px 10px rgba(26,57,64,0.06); }
.dv-ship-badge { position: absolute; top: -14px; right: -14px; background: var(--cb-orange); color: #fff; font-weight: 800; font-family: "Montserrat", sans-serif; font-size: 13px; padding: 8px 16px; border-radius: 30px; box-shadow: 0 10px 22px rgba(240,136,48,0.4); transform: translateZ(40px); }

/* Sections */
.dv-section { padding: 44px 0; }
.dv-section-head { text-align: center; max-width: 780px; margin: 0 auto 30px; }
.dv-section-head .dv-tag { color: var(--cb-orange); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; }
.dv-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 10px; }
.dv-section-head .dv-lead { color: var(--cb-muted); font-size: 17px; }
.dv-bg-soft { background: var(--cb-grad-soft); }
.dv-tools-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Methodology + build + process + challenge cards (shared 3D card) */
.dv-method-grid, .dv-build-grid, .dv-process-grid, .dv-challenge-grid, .dv-stack-grid { display: grid; gap: 20px; }
.dv-method-grid, .dv-build-grid { grid-template-columns: repeat(3, 1fr); }
.dv-process-grid { grid-template-columns: repeat(3, 1fr); }
.dv-challenge-grid { grid-template-columns: repeat(3, 1fr); }
.dv-stack-grid { grid-template-columns: repeat(4, 1fr); }

.dv-method, .dv-build, .dv-phase, .dv-challenge { background: #fff; border-radius: 20px; padding: 26px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.dv-method::after, .dv-build::after, .dv-phase::after, .dv-challenge::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.dv-method:hover, .dv-build:hover, .dv-phase:hover, .dv-challenge:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.dv-method-ico, .dv-build-ico { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 25px; color: #fff; margin-bottom: 16px; background: var(--cb-grad); box-shadow: 0 10px 18px rgba(44,89,100,0.3); }
.dv-method h3, .dv-build h3, .dv-phase h3, .dv-challenge h3 { font-size: 19px; margin-bottom: 10px; color: var(--cb-navy); }
.dv-method p, .dv-build p, .dv-phase p, .dv-challenge p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.55; }
.dv-result { display: inline-block; margin-top: 14px; background: #eef4f8; color: var(--cb-dark); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 20px; }
.dv-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.dv-tags span { background: #eef4f8; color: var(--cb-dark); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }

/* Process phase number */
.dv-phase-num { font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 46px; line-height: 1; color: #F58634; margin-bottom: 4px; }
.dv-phase-step { display: block; font-size: 12px; font-weight: 800; letter-spacing: 2px; color: var(--cb-orange); text-transform: uppercase; margin-bottom: 6px; }

/* Comparison table */
.dv-compare-wrap { max-width: 920px; margin: 0 auto; background: #fff; border-radius: 20px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; overflow: hidden; }
.dv-compare { width: 100%; border-collapse: collapse; }
.dv-compare th, .dv-compare td { padding: 16px 20px; text-align: left; font-size: 15px; border-bottom: 1px solid #eef2f5; }
.dv-compare thead th { background: var(--cb-grad); color: #fff; font-family: "Montserrat", sans-serif; font-weight: 800; font-size: 14px; letter-spacing: .3px; }
.dv-compare tbody tr:last-child td { border-bottom: none; }
.dv-compare tbody td:first-child { font-weight: 700; color: var(--cb-navy); width: 34%; }
.dv-compare tbody td:nth-child(2) { color: var(--cb-muted); }
.dv-compare tbody td:nth-child(3) { color: var(--cb-dark); font-weight: 600; }

/* Tech stack */
.dv-stack { background: #fff; border-radius: 20px; padding: 24px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; }
.dv-stack h3 { font-size: 18px; margin-bottom: 14px; color: var(--cb-navy); display: flex; align-items: center; gap: 10px; }
.dv-stack h3::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--cb-grad-accent); }
.dv-stack ul { list-style: none; padding: 0; margin: 0; }
.dv-stack li { padding: 9px 0; border-bottom: 1px dashed #e6ecef; color: var(--cb-muted); font-size: 14.5px; }
.dv-stack li:last-child { border-bottom: none; }

/* Deliverables */
.dv-deliver { list-style: none; padding: 0; margin: 0 auto; max-width: 880px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.dv-deliver li { display: flex; align-items: flex-start; gap: 10px; color: var(--cb-text); font-size: 15px; }
.dv-deliver li i { color: var(--cb-orange); margin-top: 3px; }

/* Testimonial */
.dv-quote { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 22px; padding: 34px 32px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; }
.dv-quote::before { content: "\f10d"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; top: 16px; left: 22px; font-size: 30px; color: rgba(240,136,48,0.25); }
.dv-quote p { font-size: 17px; line-height: 1.7; color: var(--cb-text); font-style: italic; padding-left: 6px; }
.dv-quote-by { margin-top: 14px; text-align: right; }
.dv-quote-by strong { display: block; color: var(--cb-navy); font-family: "Montserrat", sans-serif; }
.dv-quote-by span { color: var(--cb-muted); font-size: 13px; }

/* FAQ */
.dv-faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
.dv-faq { background: #fff; border: 1px solid #eef2f5; border-radius: 16px; box-shadow: var(--cb-shadow-3d); overflow: hidden; }
.dv-faq summary { cursor: pointer; list-style: none; padding: 18px 22px; font-family: "Montserrat", sans-serif; font-weight: 700; color: var(--cb-navy); font-size: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.dv-faq summary::-webkit-details-marker { display: none; }
.dv-faq summary::after { content: "\f078"; font-family: "Font Awesome 5 Free"; font-weight: 900; color: var(--cb-orange); transition: transform .25s ease; }
.dv-faq[open] summary::after { transform: rotate(180deg); }
.dv-faq-body { padding: 0 22px 20px; color: var(--cb-muted); font-size: 15px; line-height: 1.6; }

/* CTA */
.dv-cta { position: relative; background: var(--cb-grad-accent); color: #fff; border-radius: 26px; padding: 46px 30px; text-align: center; overflow: hidden; box-shadow: var(--cb-shadow-3d); margin: 18px auto; }
.dv-cta-badge { display: inline-block; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3); padding: 6px 16px; border-radius: 30px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.dv-cta h2 { color: #fff; font-size: 30px; }
.dv-cta p { max-width: 640px; margin: 14px auto 28px; opacity: .95; }
.dv-cta-note { margin-top: 18px; font-size: 13px; opacity: .85; }

/* Reveal (progressive enhancement) */
.dv-reveal { transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.dv-reveal.dv-hide { opacity: 0; transform: translateY(28px) scale(.98); }
.dv-reveal.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .dv-hero-grid { grid-template-columns: 1fr; }
    .dv-method-grid, .dv-build-grid, .dv-process-grid, .dv-challenge-grid { grid-template-columns: 1fr 1fr; }
    .dv-stack-grid { grid-template-columns: 1fr 1fr; }
    .dv-deliver { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .dv-method-grid, .dv-build-grid, .dv-process-grid, .dv-challenge-grid, .dv-stack-grid { grid-template-columns: 1fr; }
    .dv-stats { gap: 18px; }
    .tv-wellness { display: none; }
}

/* ============================================================
   cloude.html — Cloud Computing & DevOps Solutions
   Creative 3D style. Palette matches the Mi Soft logo.
   ============================================================ */
.cl-hero { position: relative; background: var(--cb-grad); color: #fff; padding: 56px 0 92px; overflow: hidden; perspective: 1400px; }
.cl-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 18%, rgba(240,136,48,0.35), transparent 42%), radial-gradient(circle at 88% 82%, rgba(79,132,196,0.38), transparent 44%); }
.cl-hero .container { position: relative; }
.cl-badge { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); padding: 7px 16px; border-radius: 40px; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
.cl-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; margin-top: 22px; }
.cl-hero h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 900; line-height: 1.08; text-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 18px 40px rgba(0,0,0,0.25); }
.cl-hero p { max-width: 560px; margin: 20px 0 0; font-size: 18px; color: rgba(255,255,255,0.88); }
.cl-hero-pills { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.cl-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); padding: 10px 16px; border-radius: 40px; font-weight: 600; font-size: 14px; }
.cl-pill i { color: var(--cb-orange); }
.cl-cta-row { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }
.cl-btn { display: inline-block; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-family: "Montserrat", sans-serif; transition: transform .25s ease, box-shadow .25s ease; }
.cl-btn-primary { background: var(--cb-orange); color: #fff; box-shadow: 0 8px 0 #b8631c, 0 16px 30px rgba(184,99,28,0.4); }
.cl-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 11px 0 #b8631c, 0 22px 38px rgba(184,99,28,0.45); }
.cl-btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.cl-btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

/* Hero 3D cloud ops card */
.cl-hero-visual { position: relative; transform-style: preserve-3d; }
.cl-cloud-card { background: #0f2230; border-radius: 18px; padding: 18px; box-shadow: var(--cb-shadow-3d); transform: rotateY(-12deg) rotateX(6deg); transform-style: preserve-3d; position: relative; border: 1px solid rgba(79,132,196,0.35); animation: clFloat 6s ease-in-out infinite; margin-bottom: 18px; }
@keyframes clFloat { 0%,100% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); } 50% { transform: rotateY(-12deg) rotateX(6deg) translateY(-12px); } }
.cl-cloud-head { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #9fb6c4; margin-bottom: 14px; }
.cl-dots { display: inline-flex; gap: 5px; }
.cl-dots i { width: 10px; height: 10px; border-radius: 50%; background: #f0654a; display: inline-block; }
.cl-dots i:nth-child(2) { background: #f0b429; }
.cl-dots i:nth-child(3) { background: #57c98a; }
.cl-cloud-file { font-family: "Montserrat", sans-serif; font-weight: 700; color: #cfe3ee; }
.cl-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: #57c98a; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.cl-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #57c98a; box-shadow: 0 0 0 0 rgba(87,201,138,0.6); animation: clPulse 1.5s infinite; }
@keyframes clPulse { 0% { box-shadow: 0 0 0 0 rgba(87,201,138,0.6); } 70% { box-shadow: 0 0 0 10px rgba(87,201,138,0); } 100% { box-shadow: 0 0 0 0 rgba(87,201,138,0); } }
.cl-providers { display: flex; gap: 10px; margin-bottom: 14px; }
.cl-provider { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: rgba(79,132,196,0.14); border: 1px solid rgba(79,132,196,0.35); color: #cfe3ee; font-weight: 700; font-family: "Montserrat", sans-serif; font-size: 13px; padding: 12px 8px; border-radius: 12px; }
.cl-provider i { color: var(--cb-orange); }
.cl-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.cl-metric { background: #0a1922; border-radius: 12px; padding: 12px 10px; text-align: center; }
.cl-metric span { display: block; font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: #9fb6c4; }
.cl-metric b { font-family: "Montserrat", sans-serif; font-size: 16px; color: #fff; }

/* Sections */
.cl-section { padding: 44px 0; }
.cl-section-head { text-align: center; max-width: 780px; margin: 0 auto 30px; }
.cl-section-head .cl-tag { color: var(--cb-orange); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; }
.cl-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 10px; }
.cl-lead { color: var(--cb-muted); font-size: 17px; }

/* Benefits */
.cl-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cl-benefit { background: #fff; border-radius: 20px; padding: 32px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; text-align: center; }
.cl-benefit::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.cl-benefit:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.cl-benefit-ico { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; margin: 0 auto 16px; background: var(--cb-grad); box-shadow: 0 10px 18px rgba(44,89,100,0.3); }
.cl-benefit h3 { font-size: 18px; color: var(--cb-navy); }

/* Technologies */
.cl-tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cl-tech { background: #fff; border: 1px solid #eef2f5; border-radius: 14px; padding: 18px 20px; font-weight: 700; font-family: "Montserrat", sans-serif; color: var(--cb-dark); box-shadow: var(--cb-shadow-3d); display: flex; align-items: center; gap: 12px; transition: transform .25s ease; }
.cl-tech::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--cb-grad-accent); flex: none; }
.cl-tech:hover { transform: translateY(-5px); }

/* What you'll receive */
.cl-receive { list-style: none; padding: 0; margin: 0 auto; max-width: 880px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.cl-receive li { display: flex; align-items: flex-start; gap: 10px; color: var(--cb-text); font-size: 15px; }
.cl-receive li i { color: var(--cb-orange); margin-top: 3px; }

/* Process */
.cl-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cl-step { background: #fff; border-radius: 20px; padding: 26px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.cl-step::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.cl-step:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.cl-step-num { font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 46px; line-height: 1; color: #F58634; margin-bottom: 4px; }
.cl-step h3 { font-size: 18px; margin: 6px 0 10px; color: var(--cb-navy); }
.cl-step p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.55; }

/* Testimonial */
.cl-quote { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 22px; padding: 34px 32px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; }
.cl-quote::before { content: "\f10d"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; top: 16px; left: 22px; font-size: 30px; color: rgba(240,136,48,0.25); }
.cl-quote p { font-size: 17px; line-height: 1.7; color: var(--cb-text); font-style: italic; padding-left: 6px; }
.cl-quote-by { margin-top: 14px; text-align: right; }
.cl-quote-by strong { display: block; color: var(--cb-navy); font-family: "Montserrat", sans-serif; }
.cl-quote-by span { color: var(--cb-muted); font-size: 13px; }

/* CTA */
.cl-cta { position: relative; background: var(--cb-grad-accent); color: #fff; border-radius: 26px; padding: 46px 30px; text-align: center; overflow: hidden; box-shadow: var(--cb-shadow-3d); margin: 18px auto; }
.cl-cta h2 { color: #fff; font-size: 30px; }
.cl-cta p { max-width: 640px; margin: 14px auto 28px; opacity: .95; }

/* Reveal (progressive enhancement) */
.cl-reveal { transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.cl-reveal.cl-hide { opacity: 0; transform: translateY(28px) scale(.98); }
.cl-reveal.in { opacity: 1; transform: none; }
.cl3d-tilt { transform-style: preserve-3d; transition: transform .25s ease, box-shadow .25s ease; }

@media (max-width: 900px) {
    .cl-hero-grid { grid-template-columns: 1fr; }
    .cl-benefit-grid, .cl-tech-grid { grid-template-columns: 1fr 1fr; }
    .cl-process-grid { grid-template-columns: 1fr 1fr; }
    .cl-receive { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .cl-benefit-grid, .cl-tech-grid, .cl-process-grid { grid-template-columns: 1fr; }
    .tv-wellness { display: none; }
}

/* ============================================================
   cybersecurity.html — IT Security & Cybersecurity Solutions
   Creative 3D style. Palette matches the Mi Soft logo.
   ============================================================ */
.cy-hero { position: relative; background: var(--cb-grad); color: #fff; padding: 56px 0 92px; overflow: hidden; perspective: 1400px; }
.cy-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 18%, rgba(240,136,48,0.35), transparent 42%), radial-gradient(circle at 88% 82%, rgba(79,132,196,0.38), transparent 44%); }
.cy-hero .container { position: relative; }
.cy-badge { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); padding: 7px 16px; border-radius: 40px; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
.cy-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; margin-top: 22px; }
.cy-hero h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 900; line-height: 1.08; text-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 18px 40px rgba(0,0,0,0.25); }
.cy-hero p { max-width: 560px; margin: 20px 0 0; font-size: 18px; color: rgba(255,255,255,0.88); }
.cy-hero-pills { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.cy-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); padding: 10px 16px; border-radius: 40px; font-weight: 600; font-size: 14px; }
.cy-pill i { color: var(--cb-orange); }
.cy-cta-row { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }
.cy-btn { display: inline-block; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-family: "Montserrat", sans-serif; transition: transform .25s ease, box-shadow .25s ease; }
.cy-btn-primary { background: var(--cb-orange); color: #fff; box-shadow: 0 8px 0 #b8631c, 0 16px 30px rgba(184,99,28,0.4); }
.cy-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 11px 0 #b8631c, 0 22px 38px rgba(184,99,28,0.45); }
.cy-btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.cy-btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

/* Hero 3D Security Operations Center card */
.cy-hero-visual { position: relative; transform-style: preserve-3d; }
.cy-soc-card { background: #0f2230; border-radius: 18px; padding: 18px; box-shadow: var(--cb-shadow-3d); transform: rotateY(-12deg) rotateX(6deg); transform-style: preserve-3d; position: relative; border: 1px solid rgba(79,132,196,0.35); animation: cyFloat 6s ease-in-out infinite; margin-bottom: 18px; }
@keyframes cyFloat { 0%,100% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); } 50% { transform: rotateY(-12deg) rotateX(6deg) translateY(-12px); } }
.cy-soc-head { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #9fb6c4; margin-bottom: 14px; }
.cy-dots { display: inline-flex; gap: 5px; }
.cy-dots i { width: 10px; height: 10px; border-radius: 50%; background: #f0654a; display: inline-block; }
.cy-dots i:nth-child(2) { background: #f0b429; }
.cy-dots i:nth-child(3) { background: #57c98a; }
.cy-soc-file { font-family: "Montserrat", sans-serif; font-weight: 700; color: #cfe3ee; }
.cy-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: #57c98a; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.cy-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #57c98a; box-shadow: 0 0 0 0 rgba(87,201,138,0.6); animation: cyPulse 1.5s infinite; }
@keyframes cyPulse { 0% { box-shadow: 0 0 0 0 rgba(87,201,138,0.6); } 70% { box-shadow: 0 0 0 10px rgba(87,201,138,0); } 100% { box-shadow: 0 0 0 0 rgba(87,201,138,0); } }
.cy-shield { position: relative; height: 132px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.cy-shield > i { position: relative; z-index: 2; font-size: 54px; color: #57c98a; text-shadow: 0 6px 18px rgba(87,201,138,0.45); }
.cy-shield-ring { position: absolute; width: 110px; height: 110px; border-radius: 50%; border: 2px solid rgba(87,201,138,0.5); animation: cyPing 2.4s ease-out infinite; }
.cy-shield-ring.r2 { animation-delay: 1.2s; }
@keyframes cyPing { 0% { transform: scale(.55); opacity: .9; } 100% { transform: scale(1.15); opacity: 0; } }
.cy-scan { display: grid; gap: 8px; }
.cy-scan-row { display: flex; justify-content: space-between; align-items: center; background: #0a1922; border-radius: 10px; padding: 10px 14px; font-size: 14px; }
.cy-scan-row span { color: #9fb6c4; }
.cy-scan-row b { font-family: "Montserrat", sans-serif; color: #57c98a; }

/* Sections */
.cy-section { padding: 44px 0; }
.cy-section-head { text-align: center; max-width: 780px; margin: 0 auto 30px; }
.cy-section-head .cy-tag { color: var(--cb-orange); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; }
.cy-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 10px; }
.cy-lead { color: var(--cb-muted); font-size: 17px; }

/* Benefits */
.cy-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cy-benefit { background: #fff; border-radius: 20px; padding: 32px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; text-align: center; }
.cy-benefit::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.cy-benefit:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.cy-benefit-ico { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; margin: 0 auto 16px; background: var(--cb-grad); box-shadow: 0 10px 18px rgba(44,89,100,0.3); }
.cy-benefit h3 { font-size: 18px; color: var(--cb-navy); }

/* Technologies */
.cy-tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cy-tech { background: #fff; border: 1px solid #eef2f5; border-radius: 14px; padding: 18px 20px; font-weight: 700; font-family: "Montserrat", sans-serif; color: var(--cb-dark); box-shadow: var(--cb-shadow-3d); display: flex; align-items: center; gap: 12px; transition: transform .25s ease; }
.cy-tech::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--cb-grad-accent); flex: none; }
.cy-tech:hover { transform: translateY(-5px); }

/* What you'll receive */
.cy-receive { list-style: none; padding: 0; margin: 0 auto; max-width: 880px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.cy-receive li { display: flex; align-items: flex-start; gap: 10px; color: var(--cb-text); font-size: 15px; }
.cy-receive li i { color: var(--cb-orange); margin-top: 3px; }

/* Process */
.cy-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cy-step { background: #fff; border-radius: 20px; padding: 26px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.cy-step::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.cy-step:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.cy-step-num { font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 46px; line-height: 1; color: #F58634; margin-bottom: 4px; }
.cy-step h3 { font-size: 18px; margin: 6px 0 10px; color: var(--cb-navy); }
.cy-step p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.55; }

/* Testimonial */
.cy-quote { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 22px; padding: 34px 32px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; }
.cy-quote::before { content: "\f10d"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; top: 16px; left: 22px; font-size: 30px; color: rgba(240,136,48,0.25); }
.cy-quote p { font-size: 17px; line-height: 1.7; color: var(--cb-text); font-style: italic; padding-left: 6px; }
.cy-quote-by { margin-top: 14px; text-align: right; }
.cy-quote-by strong { display: block; color: var(--cb-navy); font-family: "Montserrat", sans-serif; }
.cy-quote-by span { color: var(--cb-muted); font-size: 13px; }

/* CTA */
.cy-cta { position: relative; background: var(--cb-grad-accent); color: #fff; border-radius: 26px; padding: 46px 30px; text-align: center; overflow: hidden; box-shadow: var(--cb-shadow-3d); margin: 18px auto; }
.cy-cta h2 { color: #fff; font-size: 30px; }
.cy-cta p { max-width: 640px; margin: 14px auto 28px; opacity: .95; }

/* Reveal (progressive enhancement) */
.cy-reveal { transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.cy-reveal.cy-hide { opacity: 0; transform: translateY(28px) scale(.98); }
.cy-reveal.in { opacity: 1; transform: none; }
.cy3d-tilt { transform-style: preserve-3d; transition: transform .25s ease, box-shadow .25s ease; }

@media (max-width: 900px) {
    .cy-hero-grid { grid-template-columns: 1fr; }
    .cy-benefit-grid, .cy-tech-grid { grid-template-columns: 1fr 1fr; }
    .cy-process-grid { grid-template-columns: 1fr 1fr; }
    .cy-receive { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .cy-benefit-grid, .cy-tech-grid, .cy-process-grid { grid-template-columns: 1fr; }
    .tv-wellness { display: none; }
}

/* ============================================================
   data.html — Data Science & Big Data Analytics
   Creative 3D style. Palette matches the Mi Soft logo.
   Fresh health-related hero animation (live vitals engine).
   ============================================================ */
.da-hero { position: relative; background: var(--cb-grad); color: #fff; padding: 56px 0 92px; overflow: hidden; perspective: 1400px; }
.da-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 18%, rgba(240,136,48,0.35), transparent 42%), radial-gradient(circle at 88% 82%, rgba(79,132,196,0.38), transparent 44%); }
.da-hero .container { position: relative; }
.da-badge { display: inline-block; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); padding: 7px 16px; border-radius: 40px; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; }
.da-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; margin-top: 22px; }
.da-hero h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 900; line-height: 1.08; text-shadow: 0 6px 0 rgba(0,0,0,0.18), 0 18px 40px rgba(0,0,0,0.25); }
.da-hero p { max-width: 560px; margin: 20px 0 0; font-size: 18px; color: rgba(255,255,255,0.88); }
.da-hero-pills { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.da-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); padding: 10px 16px; border-radius: 40px; font-weight: 600; font-size: 14px; }
.da-pill i { color: var(--cb-orange); }
.da-cta-row { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }
.da-btn { display: inline-block; padding: 14px 30px; border-radius: 50px; font-weight: 700; font-family: "Montserrat", sans-serif; transition: transform .25s ease, box-shadow .25s ease; }
.da-btn-primary { background: var(--cb-orange); color: #fff; box-shadow: 0 8px 0 #b8631c, 0 16px 30px rgba(184,99,28,0.4); }
.da-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 11px 0 #b8631c, 0 22px 38px rgba(184,99,28,0.45); }
.da-btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.da-btn-ghost:hover { transform: translateY(-3px); background: rgba(255,255,255,0.18); }

/* Hero 3D health-vitals engine card */
.da-hero-visual { position: relative; transform-style: preserve-3d; }
.da-vitals-card { background: #0f2230; border-radius: 18px; padding: 18px; box-shadow: var(--cb-shadow-3d); transform: rotateY(-12deg) rotateX(6deg); transform-style: preserve-3d; position: relative; border: 1px solid rgba(79,132,196,0.35); animation: daFloat 6s ease-in-out infinite; }
@keyframes daFloat { 0%,100% { transform: rotateY(-12deg) rotateX(6deg) translateY(0); } 50% { transform: rotateY(-12deg) rotateX(6deg) translateY(-12px); } }
.da-card-head { display: flex; align-items: center; gap: 10px; font-size: 12px; color: #9fb6c4; margin-bottom: 8px; }
.da-dots { display: inline-flex; gap: 5px; }
.da-dots i { width: 10px; height: 10px; border-radius: 50%; background: #f0654a; display: inline-block; }
.da-dots i:nth-child(2) { background: #f0b429; }
.da-dots i:nth-child(3) { background: #57c98a; }
.da-card-file { font-family: "Montserrat", sans-serif; font-weight: 700; color: #cfe3ee; }
.da-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: #57c98a; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.da-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #57c98a; box-shadow: 0 0 0 0 rgba(87,201,138,0.6); animation: daLivePulse 1.5s infinite; }
@keyframes daLivePulse { 0% { box-shadow: 0 0 0 0 rgba(87,201,138,0.6); } 70% { box-shadow: 0 0 0 10px rgba(87,201,138,0); } 100% { box-shadow: 0 0 0 0 rgba(87,201,138,0); } }

/* Live vitals pulse: beating heart + sonar rings + orbiting data nodes */
.da-pulse { position: relative; width: 188px; height: 188px; margin: 6px auto 14px; }
.da-core { position: absolute; top: 50%; left: 50%; width: 76px; height: 76px; margin: -38px; border-radius: 50%; background: var(--cb-grad-accent); display: flex; align-items: center; justify-content: center; font-size: 30px; color: #fff; box-shadow: 0 10px 30px rgba(240,136,48,0.5); animation: daBeat 1.4s infinite; z-index: 4; }
@keyframes daBeat { 0%,100% { transform: scale(1); } 14% { transform: scale(1.18); } 28% { transform: scale(1); } 42% { transform: scale(1.1); } 56% { transform: scale(1); } }
.da-ring { position: absolute; top: 50%; left: 50%; border: 2px solid rgba(79,132,196,0.6); border-radius: 50%; animation: daRing 2.8s ease-out infinite; }
.da-ring.r1 { width: 110px; height: 110px; margin: -55px; }
.da-ring.r2 { width: 150px; height: 150px; margin: -75px; animation-delay: .9s; border-color: rgba(240,136,48,0.5); }
.da-ring.r3 { width: 96px; height: 96px; margin: -48px; animation-delay: 1.8s; border-color: rgba(87,201,138,0.55); }
@keyframes daRing { 0% { transform: scale(.45); opacity: .85; } 100% { transform: scale(1.25); opacity: 0; } }
.da-orbit { position: absolute; top: 50%; left: 50%; border-radius: 50%; animation: daSpin linear infinite; }
.da-orbit.o1 { width: 188px; height: 188px; margin: -94px; border: 1px dashed rgba(255,255,255,0.16); }
.da-orbit.o2 { width: 140px; height: 140px; margin: -70px; border: 1px dashed rgba(255,255,255,0.12); animation-direction: reverse; }
.da-orbit.o3 { width: 224px; height: 224px; margin: -112px; border: 1px dashed rgba(255,255,255,0.1); }
.da-orbit .da-dot { position: absolute; top: -6px; left: 50%; width: 12px; height: 12px; margin-left: -6px; border-radius: 50%; background: var(--cb-orange); box-shadow: 0 0 12px var(--cb-orange); }
.da-orbit.o2 .da-dot { background: #4F84C4; box-shadow: 0 0 12px #4F84C4; }
.da-orbit.o3 .da-dot { background: #57c98a; box-shadow: 0 0 12px #57c98a; }
@keyframes daSpin { to { transform: rotate(360deg); } }
.da-readouts { display: flex; gap: 10px; margin: 4px 0 12px; }
.da-readout { flex: 1; background: #0a1922; border-radius: 12px; padding: 10px 8px; text-align: center; }
.da-readout span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #9fb6c4; }
.da-readout b { font-family: "Montserrat", sans-serif; font-size: 18px; color: #57c98a; }
.da-ecg { display: block; width: 100%; height: 56px; }

/* Sections */
.da-section { padding: 44px 0; }
.da-section-head { text-align: center; max-width: 780px; margin: 0 auto 30px; }
.da-section-head .da-tag { color: var(--cb-orange); font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; font-size: 13px; }
.da-section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 8px 0 10px; }
.da-lead { color: var(--cb-muted); font-size: 17px; }
.da-bg-soft { background: var(--cb-grad-soft); }

/* Benefits */
.da-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.da-benefit { background: #fff; border-radius: 20px; padding: 32px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; text-align: center; }
.da-benefit::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.da-benefit:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.da-benefit-ico { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; margin: 0 auto 16px; background: var(--cb-grad); box-shadow: 0 10px 18px rgba(44,89,100,0.3); }
.da-benefit h3 { font-size: 18px; color: var(--cb-navy); }

/* Technologies */
.da-tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.da-tech { background: #fff; border: 1px solid #eef2f5; border-radius: 14px; padding: 18px 20px; font-weight: 700; font-family: "Montserrat", sans-serif; color: var(--cb-dark); box-shadow: var(--cb-shadow-3d); display: flex; align-items: center; gap: 12px; transition: transform .25s ease; }
.da-tech::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--cb-grad-accent); flex: none; }
.da-tech:hover { transform: translateY(-5px); }

/* What you'll receive */
.da-receive { list-style: none; padding: 0; margin: 0 auto; max-width: 880px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
.da-receive li { display: flex; align-items: flex-start; gap: 10px; color: var(--cb-text); font-size: 15px; }
.da-receive li i { color: var(--cb-orange); margin-top: 3px; }

/* Process */
.da-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.da-step { background: #fff; border-radius: 20px; padding: 26px 22px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.da-step::after { content: ""; position: absolute; left: 0; top: 0; height: 5px; width: 100%; background: var(--cb-grad-accent); }
.da-step:hover { transform: translateY(-10px); box-shadow: var(--cb-shadow-3d-hover); }
.da-step-num { font-family: "Montserrat", sans-serif; font-weight: 900; font-size: 46px; line-height: 1; color: #F58634; margin-bottom: 4px; }
.da-step h3 { font-size: 18px; margin: 6px 0 10px; color: var(--cb-navy); }
.da-step p { color: var(--cb-muted); font-size: 14.5px; line-height: 1.55; }

/* Testimonial */
.da-quote { max-width: 860px; margin: 0 auto; background: #fff; border-radius: 22px; padding: 34px 32px; box-shadow: var(--cb-shadow-3d); border: 1px solid #eef2f5; position: relative; }
.da-quote::before { content: "\f10d"; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; top: 16px; left: 22px; font-size: 30px; color: rgba(240,136,48,0.25); }
.da-quote p { font-size: 17px; line-height: 1.7; color: var(--cb-text); font-style: italic; padding-left: 6px; }
.da-quote-by { margin-top: 14px; text-align: right; }
.da-quote-by strong { display: block; color: var(--cb-navy); font-family: "Montserrat", sans-serif; }
.da-quote-by span { color: var(--cb-muted); font-size: 13px; }

/* CTA */
.da-cta { position: relative; background: var(--cb-grad-accent); color: #fff; border-radius: 26px; padding: 46px 30px; text-align: center; overflow: hidden; box-shadow: var(--cb-shadow-3d); margin: 18px auto; }
.da-cta h2 { color: #fff; font-size: 30px; }
.da-cta p { max-width: 640px; margin: 14px auto 28px; opacity: .95; }

/* Reveal (progressive enhancement) */
.da-reveal { transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.da-reveal.da-hide { opacity: 0; transform: translateY(28px) scale(.98); }
.da-reveal.in { opacity: 1; transform: none; }
.da3d-tilt { transform-style: preserve-3d; transition: transform .25s ease, box-shadow .25s ease; }

@media (max-width: 900px) {
    .da-hero-grid { grid-template-columns: 1fr; }
    .da-benefit-grid, .da-tech-grid { grid-template-columns: 1fr 1fr; }
    .da-process-grid { grid-template-columns: 1fr 1fr; }
    .da-receive { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .da-benefit-grid, .da-tech-grid, .da-process-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   GLOBAL RESPONSIVE SAFETY NET
   Ensures nothing overflows or breaks on any screen size.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

img, video, iframe, canvas, svg { max-width: 100%; height: auto; }

/* Consistent vertical rhythm for generic .section blocks */
.section { padding: 64px 0; }

html { -webkit-text-size-adjust: 100%; }

/* Kill accidental horizontal scroll (clip = sticky-safe, no scroll container) */
body { overflow-x: clip; }

/* Open mobile menu stays within the viewport and scrolls if long */
@media (max-width: 991.98px) {
    .site-nav-menu.open {
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-cta {
        width: 100%;
        text-align: center;
    }
}

/* Scale hero + section rhythm down on phones */
@media (max-width: 767.98px) {
    .hero { padding: 34px 0; }
    .hero h2 { font-size: 26px; }
    .hero h2 span { font-size: 30px; }
    .hero p { font-size: 16px; }

    .section { padding: 42px 0; }
    .section-header { margin-bottom: 26px; }
    .section-header h2 { font-size: 26px; }
    .section-header p { font-size: 15px; }

    .cb-hero { padding: 40px 0 70px; }
    .cb-hero h1 { font-size: clamp(28px, 8vw, 40px); }
    .cb-hero p { font-size: 16px; }
    .cb-section { padding: 30px 0; }
    .cb-cta { padding: 30px 20px; }
    .cb-cta h2 { font-size: 24px; }

    .footer-top { padding: 28px 20px; }
}

/* Forms: full-width controls on small screens */
@media (max-width: 575.98px) {
    .form-control, .input-group, input[type="text"],
    input[type="email"], input[type="tel"], textarea, select {
        width: 100% !important;
        max-width: 100%;
    }
    .btn-block-sm { display: block; width: 100%; }
}


/* ============================================================
   Contact Page (contact.html) — BODY/CONTENT ONLY
   Palette: teal #2C5964 / #1A3940 + accent orange #F08830
   Fonts: Montserrat (headings), Raleway (body) — already loaded
   Scoped under .contact-page so it cannot affect other pages.
   ============================================================ */
.contact-page {
    position: relative;
    width: 100%;
    padding: 64px 0 70px;
    background:
        radial-gradient(circle at 88% -10%, rgba(240, 136, 48, 0.10), transparent 42%),
        radial-gradient(circle at 0% 110%, rgba(44, 89, 100, 0.10), transparent 45%),
        #f7f5f0;
}

.contact-page .contact-head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.contact-page .contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(44, 89, 100, 0.10);
    border: 1px solid rgba(44, 89, 100, 0.18);
    color: #2C5964;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.contact-page .contact-eyebrow i { color: #F08830; font-size: 13px; }

.contact-page .contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    color: #1A3940;
    margin: 0 0 14px;
}

.contact-page .contact-title span {
    position: relative;
    color: #F08830;
}

.contact-page .contact-sub {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.contact-page .contact-grid { margin-bottom: 56px; }

/* ---------- Contact Info Card ---------- */
.contact-page .contact-info {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(44, 89, 100, 0.14);
    border-radius: 24px;
    padding: 38px 34px 34px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(44, 89, 100, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-page .contact-info-corner {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2C5964, #F08830, #1A3940);
}

.contact-page .contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #1A3940;
    margin: 0 0 8px;
}

.contact-page .contact-info-lead {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #6b7782;
    margin: 0 0 26px;
}

.contact-page .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(44, 89, 100, 0.14);
}

.contact-page .contact-item:last-child { border-bottom: 0; }

.contact-page .contact-ico {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #2C5964, #1A3940);
    box-shadow: 0 10px 20px rgba(44, 89, 100, 0.30);
    transition: transform .3s ease, background .3s ease, color .3s ease;
}

.contact-page .contact-item:hover .contact-ico {
    background: linear-gradient(135deg, #F08830, #d9721f);
    transform: translateY(-3px);
}

.contact-page .contact-text { display: flex; flex-direction: column; padding-top: 2px; }

.contact-page .contact-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #F08830;
    margin-bottom: 4px;
}

.contact-page .contact-value {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #2C5964;
    font-weight: 500;
}

.contact-page .contact-value a { color: #2C5964; transition: color .25s ease; }
.contact-page .contact-value a:hover { color: #F08830; }

/* ---------- Social ---------- */
.contact-page .contact-social { padding-top: 6px; }

.contact-page .contact-social-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #1A3940;
    margin-bottom: 12px;
}

.contact-page .contact-social-row { display: flex; gap: 12px; }

.contact-page .contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f7;
    border: 1px solid rgba(44, 89, 100, 0.14);
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.contact-page .contact-social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.contact-page .contact-social-link:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #2C5964, #1A3940);
    box-shadow: 0 12px 22px rgba(44, 89, 100, 0.30);
}

/* ---------- Contact Form ---------- */
.contact-page .contact-form-wrap {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(44, 89, 100, 0.14);
    border-radius: 24px;
    padding: 38px 34px 34px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(44, 89, 100, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-page .contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #1A3940;
    margin: 0 0 24px;
    padding-bottom: 14px;
    position: relative;
}

.contact-page .contact-form-title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 60px; height: 3px;
    border-radius: 0 100% 100% 0;
    background: linear-gradient(to left, #2C5964, #F08830, #1A3940);
}

.contact-page .contact-field-row {
    display: flex;
    gap: 18px;
}

.contact-page .contact-field {
    flex: 1;
    margin-bottom: 18px;
    min-width: 0;
}

.contact-page .contact-field label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #2C5964;
    margin-bottom: 7px;
}

.contact-page .contact-field label span { color: #F08830; }

.contact-page .contact-field input,
.contact-page .contact-field textarea {
    width: 100%;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #213546;
    background: #fafbfc;
    border: 1.5px solid #dbe3e8;
    border-radius: 12px;
    padding: 12px 16px;
    transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.contact-page .contact-field textarea { resize: vertical; min-height: 130px; }

.contact-page .contact-field input:focus,
.contact-page .contact-field textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #F08830;
    box-shadow: 0 0 0 4px rgba(240, 136, 48, 0.16);
}

.contact-page .contact-field input::placeholder,
.contact-page .contact-field textarea::placeholder { color: #9aa7b0; }

.contact-page .contact-field.invalid input,
.contact-page .contact-field.invalid textarea {
    border-color: #e2554b;
    background: #fff6f5;
}

.contact-page .contact-error {
    display: none;
    margin: 6px 0 0;
    font-family: 'Raleway', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #e2554b;
}

.contact-page .contact-field.invalid .contact-error { display: block; }

.contact-page .contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
    padding: 14px 34px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(135deg, #F08830, #d9721f);
    box-shadow: 0 12px 26px rgba(240, 136, 48, 0.36);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.contact-page .contact-submit i { font-size: 14px; transition: transform .3s ease; }

.contact-page .contact-submit:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #2C5964, #1A3940);
    box-shadow: 0 16px 32px rgba(44, 89, 100, 0.34);
}

.contact-page .contact-submit:hover i { transform: translateX(5px); }

.contact-page .contact-note {
    margin: 16px 0 0;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    min-height: 20px;
    color: #2C5964;
}

.contact-page .contact-note.success { color: #1f9d6b; }
.contact-page .contact-note.error { color: #e2554b; }

/* ---------- Map ---------- */
.contact-page .contact-map-wrap {
    background: #ffffff;
    border: 1px solid rgba(44, 89, 100, 0.14);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 22px 48px rgba(44, 89, 100, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-page .contact-map-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-page .contact-map-head i {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #2C5964, #1A3940);
}

.contact-page .contact-map-head h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #1A3940;
    margin: 0;
}

.contact-page .contact-map {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(44, 89, 100, 0.12);
}

.contact-page .contact-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(18%) contrast(1.02);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .contact-page .contact-info { margin-bottom: 30px; }
}

@media (max-width: 767.98px) {
    .contact-page { padding: 42px 0 50px; }
    .contact-page .contact-grid { margin-bottom: 40px; }
    .contact-page .contact-field-row { flex-direction: column; gap: 0; }
    .contact-page .contact-info,
    .contact-page .contact-form-wrap { padding: 30px 22px; }
    .contact-page .contact-map-wrap { padding: 22px; }
    .contact-page .contact-map iframe { height: 320px; }
    .contact-page .contact-submit { width: 100%; justify-content: center; }
}


/* ============================================================
   AI/ML Page (aiml.html) — BODY/CONTENT ONLY
   Palette: #2A5E6B (primary) + #F58634 (accent) + white/gray/black
   Fonts: Montserrat (headings), Raleway (body). Scoped under .aiml-page.
   ============================================================ */
.aiml-page {
    --aiml-teal: #2A5E6B;
    --aiml-orange: #F58634;
    --aiml-ink: #232b2f;
    --aiml-muted: #566066;
    --aiml-gray: #f4f6f7;
    --aiml-gray-2: #e9edee;
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: var(--aiml-ink);
    background: #ffffff;
}

.aiml-page h1, .aiml-page h2, .aiml-page h3, .aiml-page h4 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

.aiml-page a { text-decoration: none; }

/* ---------- Section Header ---------- */
.aiml-section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.aiml-eyebrow {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--aiml-orange);
    margin-bottom: 12px;
}
.aiml-section-title {
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 38px);
    color: var(--aiml-teal);
    margin-bottom: 14px;
}
.aiml-section-title span { color: var(--aiml-orange); }
.aiml-section-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--aiml-muted);
    margin: 0;
}

/* ---------- Buttons ---------- */
.aiml-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.aiml-btn i { font-size: 13px; transition: transform .3s ease; }
.aiml-btn-primary {
    background: var(--aiml-orange);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(245, 134, 52, 0.36);
}
.aiml-btn-primary:hover { background: var(--aiml-teal); color: #ffffff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(42, 94, 107, 0.34); }
.aiml-btn-primary:hover i { transform: translateX(5px); }
.aiml-btn-ghost {
    background: transparent;
    color: var(--aiml-teal);
    border: 2px solid rgba(42, 94, 107, 0.35);
}
.aiml-btn-ghost:hover { border-color: var(--aiml-orange); color: var(--aiml-orange); transform: translateY(-3px); }

/* ---------- Hero ---------- */
.aiml-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 80px;
    background: var(--aiml-teal);
}
.aiml-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
    pointer-events: none;
}
.aiml-hero-glow.glow-1 { top: -80px; right: -40px; width: 360px; height: 360px; background: rgba(245, 134, 52, 0.55); }
.aiml-hero-glow.glow-2 { bottom: -120px; left: -60px; width: 380px; height: 380px; background: rgba(245, 134, 52, 0.30); }
.aiml-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 70% 40%, #000 0%, transparent 75%);
}
.aiml-hero .container { position: relative; z-index: 2; }
.aiml-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}
.aiml-badge i { color: var(--aiml-orange); }
.aiml-title {
    color: #ffffff;
    font-weight: 900;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    margin-bottom: 18px;
}
.aiml-title span { color: var(--aiml-orange); }
.aiml-sub {
    color: rgba(255,255,255,0.88);
    font-size: 18px;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 0 30px;
}
.aiml-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.aiml-hero .aiml-btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.5); }
.aiml-hero .aiml-btn-ghost:hover { color: var(--aiml-orange); border-color: var(--aiml-orange); }

/* ---------- Hero Neural Net Visual ---------- */
.aiml-net {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: aimlFloat 6s ease-in-out infinite;
}
@keyframes aimlFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.aiml-net-svg { width: 100%; max-width: 460px; height: auto; overflow: visible; }
.aiml-net-lines line { stroke: rgba(255,255,255,0.22); stroke-width: 1.5; }
.aiml-net-nodes circle { transition: transform .3s ease; transform-box: fill-box; transform-origin: center; }
.n-orange { fill: var(--aiml-orange); }
.n-teal { fill: #ffffff; }
.aiml-net-nodes circle { animation: aimlPulse 3s ease-in-out infinite; }
.aiml-net-nodes circle:nth-child(2) { animation-delay: .3s; }
.aiml-net-nodes circle:nth-child(3) { animation-delay: .6s; }
.aiml-net-nodes circle:nth-child(4) { animation-delay: .9s; }
.aiml-net-nodes circle:nth-child(5) { animation-delay: 1.2s; }
.aiml-net-nodes circle:nth-child(6) { animation-delay: 1.5s; }
.aiml-net-nodes circle:nth-child(7) { animation-delay: 1.8s; }
.aiml-net-nodes circle:nth-child(8) { animation-delay: 2.1s; }
.aiml-net-nodes circle:nth-child(9) { animation-delay: 2.4s; }
@keyframes aimlPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.18); opacity: .8; } }

/* ---------- Services ---------- */
.aiml-services { padding: 70px 0; background: #ffffff; }
.aiml-services .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.aiml-services .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: none;
    padding: 0;
    margin: 0;
}
.aiml-services .aiml-card { margin-bottom: 0; }
@media (max-width: 991.98px) {
    .aiml-services .row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .aiml-services .row { grid-template-columns: 1fr; }
}
.aiml-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--aiml-gray-2);
    border-radius: 22px;
    padding: 34px 28px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(42, 94, 107, 0.10);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.aiml-card::before {
    content: "";
    position: absolute; top: 0; left: 28px; right: 28px; height: 4px;
    border-radius: 0 0 8px 8px;
    background: linear-gradient(90deg, var(--aiml-teal), var(--aiml-orange));
}
.aiml-card:hover { transform: translateY(-10px); box-shadow: 0 28px 56px rgba(42, 94, 107, 0.18); border-color: rgba(245, 134, 52, 0.4); }
.aiml-card-icon {
    width: 66px; height: 66px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: #ffffff;
    background: var(--aiml-teal);
    box-shadow: 0 12px 22px rgba(42, 94, 107, 0.30);
    margin-bottom: 20px;
    transition: background .3s ease, transform .3s ease;
}
.aiml-card:hover .aiml-card-icon { background: var(--aiml-orange); transform: translateY(-4px) rotate(-4deg); }
.aiml-card-title { font-size: 20px; font-weight: 800; color: var(--aiml-teal); margin-bottom: 12px; }
.aiml-card-text { font-size: 15px; line-height: 1.65; color: var(--aiml-muted); margin: 0; }

/* ---------- Why Choose Us ---------- */
.aiml-why { padding: 70px 0; background: var(--aiml-gray); }
.aiml-why-item {
    position: relative;
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--aiml-gray-2);
    border-radius: 20px;
    padding: 30px 26px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 14px 30px rgba(42, 94, 107, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.aiml-why-item:hover { transform: translateY(-8px); box-shadow: 0 24px 46px rgba(42, 94, 107, 0.16); }
.aiml-why-ico {
    width: 70px; height: 70px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: #ffffff;
    background: var(--aiml-teal);
    margin: 0 auto 18px;
    box-shadow: 0 12px 22px rgba(42, 94, 107, 0.28);
    transition: background .3s ease;
}
.aiml-why-item:hover .aiml-why-ico { background: var(--aiml-orange); }
.aiml-why-title { font-size: 19px; font-weight: 800; color: var(--aiml-teal); margin-bottom: 10px; }
.aiml-why-text { font-size: 14.5px; line-height: 1.6; color: var(--aiml-muted); margin: 0; }

.aiml-stats {
    margin-top: 20px;
    padding: 38px 30px;
    border-radius: 20px;
    background: var(--aiml-teal);
    box-shadow: 0 22px 46px rgba(42, 94, 107, 0.22);
}
.aiml-stat { text-align: center; color: #ffffff; }
.aiml-stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 44px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 8px;
}
.aiml-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--aiml-orange);
}

/* ---------- Closing CTA ---------- */
.aiml-cta { padding: 70px 0; background: #ffffff; }
.aiml-cta-inner {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 26px;
    padding: 56px 30px;
    background: linear-gradient(135deg, var(--aiml-teal) 0%, var(--aiml-orange) 100%);
    box-shadow: 0 26px 56px rgba(42, 94, 107, 0.24);
}
.aiml-cta-glow {
    position: absolute; top: -90px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    filter: blur(40px);
}
.aiml-cta-title { position: relative; color: #ffffff; font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.aiml-cta-text { position: relative; color: rgba(255,255,255,0.92); font-size: 17px; line-height: 1.6; max-width: 620px; margin: 0 auto 28px; }
.aiml-cta-row { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.aiml-cta .aiml-btn-primary { background: #ffffff; color: var(--aiml-teal); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.aiml-cta .aiml-btn-primary:hover { background: var(--aiml-teal); color: #ffffff; }
.aiml-cta .aiml-btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.7); }
.aiml-cta .aiml-btn-ghost:hover { color: var(--aiml-teal); background: #ffffff; border-color: #ffffff; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .aiml-hero-visual { margin-top: 36px; }
    .aiml-net-svg { max-width: 380px; }
}
@media (max-width: 767.98px) {
    .aiml-hero { padding: 48px 0 60px; }
    .aiml-title { font-size: 34px; }
    .aiml-services, .aiml-why, .aiml-cta { padding: 48px 0; }
    .aiml-section-head { margin-bottom: 32px; }
    .aiml-stat { margin-bottom: 22px; }
    .aiml-stat-num { font-size: 36px; }
}

/* ============================================================
   Case Studies Page (casestudies.html) — BODY/CONTENT ONLY
   Palette: #2A5E6B (primary) + #F58634 (accent) + white/gray/black
   Fonts: Montserrat (headings), Raleway (body). Scoped under .cs-page.
   3D-depth style: layered shadows, hover-lift, soft gradients.
   ============================================================ */
.cs-page {
    --cs-teal: #2A5E6B;
    --cs-orange: #F58634;
    --cs-ink: #232b2f;
    --cs-muted: #566066;
    --cs-gray: #f4f6f7;
    --cs-gray-2: #e9edee;
    --cs-shadow-3d: 0 2px 1px rgba(35,43,47,0.08),
                    0 6px 8px rgba(35,43,47,0.10),
                    0 14px 24px rgba(42,94,107,0.14),
                    0 30px 46px rgba(42,94,107,0.10);
    --cs-shadow-3d-hover: 0 4px 2px rgba(35,43,47,0.10),
                          0 10px 16px rgba(35,43,47,0.14),
                          0 24px 40px rgba(42,94,107,0.20),
                          0 44px 70px rgba(42,94,107,0.18);
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: var(--cs-ink);
    background: #ffffff;
}
.cs-page h1, .cs-page h2, .cs-page h3, .cs-page h4 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}
.cs-page a { text-decoration: none; }

/* ---------- Hero ---------- */
.cs-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 64px;
    background: var(--cs-teal);
}
.cs-hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; }
.cs-hero-glow.glow-1 { top: -80px; right: -40px; width: 360px; height: 360px; background: rgba(245,134,52,0.55); }
.cs-hero-glow.glow-2 { bottom: -120px; left: -60px; width: 380px; height: 380px; background: rgba(245,134,52,0.28); }
.cs-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 78%);
    -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 78%);
}
.cs-hero .container { position: relative; z-index: 2; }
.cs-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.cs-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 22px;
}
.cs-badge i { color: var(--cs-orange); }
.cs-hero-title { color: #ffffff; font-weight: 900; font-size: clamp(34px, 5vw, 56px); line-height: 1.08; margin-bottom: 18px; }
.cs-hero-title span { color: var(--cs-orange); }
.cs-hero-sub { color: rgba(255,255,255,0.88); font-size: 18px; line-height: 1.7; margin: 0 auto 38px; max-width: 640px; }
.cs-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 18px; padding: 22px 18px;
}
.cs-stat { text-align: center; }
.cs-stat-num { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 34px; color: #ffffff; line-height: 1; }
.cs-stat-label { display: block; margin-top: 8px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: .5px; }

/* ---------- Live Banner ---------- */
.cs-live {
    position: relative; z-index: 3;
    margin-top: -28px;
    display: flex; align-items: center; gap: 12px;
    background: #ffffff;
    border: 1px solid var(--cs-gray-2);
    border-left: 5px solid var(--cs-orange);
    border-radius: 14px;
    padding: 16px 22px;
    box-shadow: 0 18px 36px rgba(42,94,107,0.16);
}
.cs-live-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--cs-orange); box-shadow: 0 0 0 5px rgba(245,134,52,0.18); animation: csPulse 1.8s ease-in-out infinite; flex: 0 0 auto; }
@keyframes csPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.25); opacity: .7; } }
.cs-live-text { font-size: 15px; color: var(--cs-ink); }
.cs-live-text strong { color: var(--cs-teal); }

/* ---------- Section Head ---------- */
.cs-section { padding: 64px 0 30px; background: #ffffff; }
.cs-section-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.cs-eyebrow { display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cs-orange); margin-bottom: 12px; }
.cs-section-title { font-weight: 800; font-size: clamp(28px, 3.6vw, 38px); color: var(--cs-teal); margin-bottom: 14px; }
.cs-section-title span { color: var(--cs-orange); }
.cs-section-sub { font-size: 17px; line-height: 1.7; color: var(--cs-muted); margin: 0; }

/* ---------- Filter ---------- */
.cs-filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.cs-filter-btn {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--cs-teal);
    background: #ffffff;
    border: 1.5px solid var(--cs-gray-2);
    border-radius: 40px; padding: 10px 22px; cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.cs-filter-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(42,94,107,0.14); }
.cs-filter-btn.active { background: linear-gradient(135deg, var(--cs-teal), #1a1a1a); color: #ffffff; border-color: transparent; box-shadow: 0 10px 22px rgba(42,94,107,0.28); }

/* ---------- Cards Grid ---------- */
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.cs-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--cs-gray-2);
    border-radius: 22px;
    padding: 30px 28px 32px;
    overflow: hidden;
    box-shadow: var(--cs-shadow-3d);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.cs-card::before {
    content: ""; position: absolute; left: 0; top: 0; height: 6px; width: 100%;
    background: linear-gradient(90deg, var(--cs-teal), var(--cs-orange));
}
.cs-card:hover { transform: translateY(-12px); box-shadow: var(--cs-shadow-3d-hover); border-color: rgba(245,134,52,0.4); }
.cs-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cs-card-index { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 30px; color: var(--cs-gray-2); line-height: 1; }
.cs-card-tag {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12px;
    text-transform: uppercase; letter-spacing: .5px;
    color: var(--cs-teal); background: rgba(42,94,107,0.10);
    padding: 5px 12px; border-radius: 30px;
}
.cs-card-ico {
    margin-left: auto;
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: #ffffff;
    background: linear-gradient(135deg, var(--cs-teal), #1a1a1a);
    box-shadow: 0 10px 18px rgba(42,94,107,0.30);
    transition: background .3s ease, transform .3s ease;
}
.cs-card:hover .cs-card-ico { background: linear-gradient(135deg, var(--cs-orange), #1a1a1a); transform: rotate(-4deg); }
.cs-card-title { font-size: 21px; font-weight: 800; color: var(--cs-teal); margin-bottom: 8px; line-height: 1.3; }
.cs-card-client { font-size: 13.5px; color: var(--cs-muted); margin: 0 0 16px; display: flex; align-items: center; gap: 7px; }
.cs-card-client i { color: var(--cs-orange); font-size: 13px; }
.cs-card-block { margin-bottom: 14px; }
.cs-card-block h4 {
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
    color: var(--cs-orange); margin-bottom: 5px;
}
.cs-card-block p { font-size: 14.5px; line-height: 1.6; color: var(--cs-muted); margin: 0; }
.cs-card-result {
    display: flex; align-items: center; gap: 14px;
    margin-top: 18px; padding: 16px 18px;
    background: var(--cs-gray);
    border-radius: 14px;
    border-left: 4px solid var(--cs-orange);
}
.cs-result-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 32px; color: var(--cs-teal); line-height: 1; }
.cs-result-label { font-size: 13.5px; font-weight: 600; color: var(--cs-ink); line-height: 1.4; }
.cs-empty { text-align: center; padding: 40px 0; font-size: 16px; color: var(--cs-muted); }
.cs-empty-link { color: var(--cs-orange); font-weight: 700; }

/* ---------- Closing CTA ---------- */
.cs-cta { padding: 60px 0 70px; background: #ffffff; }
.cs-cta-inner {
    position: relative; overflow: hidden; text-align: center;
    border-radius: 26px; padding: 56px 30px;
    background: linear-gradient(135deg, var(--cs-teal) 0%, var(--cs-orange) 100%);
    box-shadow: 0 26px 56px rgba(42,94,107,0.24);
}
.cs-cta-glow { position: absolute; top: -90px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.16); filter: blur(40px); }
.cs-cta-title { position: relative; color: #ffffff; font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.cs-cta-text { position: relative; color: rgba(255,255,255,0.92); font-size: 17px; line-height: 1.6; max-width: 620px; margin: 0 auto 28px; }
.cs-cta-row { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cs-btn { display: inline-flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .4px; text-transform: uppercase; padding: 14px 32px; border-radius: 50px; cursor: pointer; transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease; }
.cs-btn i { font-size: 13px; transition: transform .3s ease; }
.cs-btn-primary { background: #ffffff; color: var(--cs-teal); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.cs-btn-primary:hover { background: var(--cs-teal); color: #ffffff; transform: translateY(-3px); }
.cs-btn-primary:hover i { transform: translateX(5px); }
.cs-btn-ghost { background: transparent; color: #ffffff; border: 2px solid rgba(255,255,255,0.7); }
.cs-btn-ghost:hover { background: #ffffff; color: var(--cs-teal); transform: translateY(-3px); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .cs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
    .cs-hero { padding: 48px 0 52px; }
    .cs-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cs-section { padding: 44px 0 20px; }
    .cs-grid { grid-template-columns: 1fr; gap: 24px; }
    .cs-live { flex-wrap: wrap; }
}

/* ============================================================
   Services Page (services.html) — BODY/CONTENT ONLY
   Palette: #2A5E6B (primary) + #F58634 (accent) + white/gray/black
   Fonts: Montserrat (headings), Raleway (body). Scoped under .sv-page.
   3D style: layered shadows, hover-lift (translateY + scale), soft depth.
   ============================================================ */
.sv-page {
    --sv-teal: #2A5E6B;
    --sv-orange: #F58634;
    --sv-ink: #232b2f;
    --sv-muted: #566066;
    --sv-gray: #f4f6f7;
    --sv-gray-2: #e9edee;
    --sv-shadow-3d: 0 2px 1px rgba(35,43,47,0.07),
                    0 6px 8px rgba(35,43,47,0.09),
                    0 14px 24px rgba(42,94,107,0.13),
                    0 28px 44px rgba(42,94,107,0.10);
    --sv-shadow-3d-hover: 0 4px 2px rgba(35,43,47,0.09),
                          0 10px 16px rgba(35,43,47,0.13),
                          0 24px 40px rgba(42,94,107,0.20),
                          0 44px 70px rgba(42,94,107,0.18);
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: var(--sv-ink);
    background: #ffffff;
}
.sv-page h1, .sv-page h2, .sv-page h3, .sv-page h4 { font-family: 'Montserrat', sans-serif; margin: 0; }
.sv-page a { text-decoration: none; }

/* ---------- Hero ---------- */
.sv-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 70px;
    background: var(--sv-teal);
}
.sv-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: .22;
    pointer-events: none;
    animation: svFloat 14s ease-in-out infinite;
}
.sv-shape.shape-1 { top: 12%; left: 8%; width: 120px; height: 120px; background: var(--sv-orange); }
.sv-shape.shape-2 { top: 60%; left: 18%; width: 70px; height: 70px; background: #ffffff; animation-delay: 2s; }
.sv-shape.shape-3 { top: 18%; right: 12%; width: 160px; height: 160px; background: var(--sv-orange); animation-delay: 4s; }
.sv-shape.shape-4 { bottom: 8%; right: 22%; width: 90px; height: 90px; background: #ffffff; animation-delay: 6s; }
@keyframes svFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-26px) translateX(14px); }
}
.sv-hero .container { position: relative; z-index: 2; }
.sv-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.sv-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 22px;
}
.sv-badge i { color: var(--sv-orange); }
.sv-title { color: #ffffff; font-weight: 900; font-size: clamp(36px, 5.5vw, 60px); line-height: 1.08; margin-bottom: 18px; }
.sv-title span { color: var(--sv-orange); }
.sv-sub { color: rgba(255,255,255,0.88); font-size: 18px; line-height: 1.7; max-width: 600px; margin: 0 auto 32px; }
.sv-cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sv-hero .sv-btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.5); }
.sv-hero .sv-btn-ghost:hover { color: var(--sv-orange); border-color: var(--sv-orange); }

/* ---------- Buttons ---------- */
.sv-btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
    letter-spacing: .4px; text-transform: uppercase;
    padding: 14px 32px; border-radius: 50px; cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
}
.sv-btn i { font-size: 13px; transition: transform .3s ease; }
.sv-btn-primary { background: var(--sv-orange); color: #ffffff; box-shadow: 0 12px 26px rgba(245,134,52,0.36); }
.sv-btn-primary:hover { background: var(--sv-teal); color: #ffffff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(42,94,107,0.34); }
.sv-btn-primary:hover i { transform: translateX(5px); }
.sv-btn-ghost { background: transparent; color: var(--sv-teal); border: 2px solid rgba(42,94,107,0.35); }
.sv-btn-ghost:hover { border-color: var(--sv-orange); color: var(--sv-orange); transform: translateY(-3px); }

/* ---------- Section Head ---------- */
.sv-services { padding: 70px 0; background: #ffffff; }
.sv-section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.sv-eyebrow { display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sv-orange); margin-bottom: 12px; }
.sv-section-title { font-weight: 800; font-size: clamp(28px, 3.6vw, 38px); color: var(--sv-teal); margin-bottom: 14px; }
.sv-section-title span { color: var(--sv-orange); }
.sv-section-sub { font-size: 17px; line-height: 1.7; color: var(--sv-muted); margin: 0; }

/* ---------- Cards Grid (3D) ---------- */
.sv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.sv-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--sv-gray-2);
    border-radius: 22px;
    padding: 30px 28px 32px;
    overflow: hidden;
    box-shadow: var(--sv-shadow-3d);
    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, border-color .35s ease;
    will-change: transform;
}
.sv-card::before {
    content: ""; position: absolute; left: 0; top: 0; height: 6px; width: 100%;
    background: linear-gradient(90deg, var(--sv-teal), var(--sv-orange));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
}
.sv-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--sv-shadow-3d-hover);
    border-color: rgba(245,134,52,0.4);
}
.sv-card:hover::before { transform: scaleX(1); }
.sv-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.sv-card-cat {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px;
    text-transform: uppercase; letter-spacing: .6px;
    color: var(--sv-teal); background: rgba(42,94,107,0.10);
    padding: 5px 12px; border-radius: 30px;
}
.sv-card-ico {
    margin-left: auto;
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #ffffff;
    background: linear-gradient(135deg, var(--sv-teal), #1a1a1a);
    box-shadow: 0 10px 18px rgba(42,94,107,0.30);
    transition: background .35s ease, transform .35s ease;
}
.sv-card:hover .sv-card-ico { background: linear-gradient(135deg, var(--sv-orange), #1a1a1a); transform: rotate(-5deg) scale(1.05); }
.sv-card-title { font-size: 20px; font-weight: 800; color: var(--sv-teal); margin-bottom: 10px; line-height: 1.3; }
.sv-card-text { font-size: 14.5px; line-height: 1.65; color: var(--sv-muted); margin: 0 0 18px; }
.sv-card-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13.5px;
    color: var(--sv-orange);
    transition: gap .25s ease;
}
.sv-card-link i { font-size: 12px; }
.sv-card-link:hover { gap: 13px; }

/* ---------- Closing CTA ---------- */
.sv-cta { padding: 60px 0 75px; background: #ffffff; }
.sv-cta-inner {
    position: relative; overflow: hidden; text-align: center;
    border-radius: 26px; padding: 56px 30px;
    background: linear-gradient(135deg, var(--sv-teal) 0%, var(--sv-orange) 100%);
    box-shadow: 0 26px 56px rgba(42,94,107,0.24);
}
.sv-cta-glow { position: absolute; top: -90px; right: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.16); filter: blur(40px); }
.sv-cta-title { position: relative; color: #ffffff; font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.sv-cta-text { position: relative; color: rgba(255,255,255,0.92); font-size: 17px; line-height: 1.6; max-width: 620px; margin: 0 auto 28px; }
.sv-cta-row { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.sv-cta .sv-btn-primary { background: #ffffff; color: var(--sv-teal); box-shadow: 0 14px 30px rgba(0,0,0,0.18); }
.sv-cta .sv-btn-primary:hover { background: var(--sv-teal); color: #ffffff; }
.sv-cta .sv-btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.7); }
.sv-cta .sv-btn-ghost:hover { background: #ffffff; color: var(--sv-teal); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) { .sv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767.98px) {
    .sv-hero { padding: 52px 0 56px; }
    .sv-services { padding: 48px 0; }
    .sv-grid { grid-template-columns: 1fr; gap: 24px; }
    .sv-cta { padding: 44px 0 56px; }
}
@media (prefers-reduced-motion: reduce) {
    .sv-shape { animation: none; }
    .sv-card { transition: box-shadow .3s ease; }
    .sv-card:hover { transform: translateY(-6px); }
}

/* ============================================================
   Privacy Policy Page (privacy.html) — BODY/CONTENT ONLY
   Palette: #2A5E6B (primary) + #F58634 (accent) + white/gray/black
   Fonts: Montserrat (headings), Raleway (body). Scoped under .pp-page.
   ============================================================ */
.pp-page {
    --pp-teal: #2A5E6B;
    --pp-orange: #F58634;
    --pp-ink: #232b2f;
    --pp-muted: #566066;
    --pp-gray: #f4f6f7;
    --pp-gray-2: #e9edee;
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: var(--pp-ink);
    background: #ffffff;
}
.pp-page h1, .pp-page h2, .pp-page h3, .pp-page h4 { font-family: 'Montserrat', sans-serif; margin: 0; }
.pp-page a { text-decoration: none; }

/* ---------- Hero ---------- */
.pp-hero {
    position: relative; overflow: hidden;
    padding: 70px 0 64px;
    background: var(--pp-teal);
}
.pp-hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; }
.pp-hero-glow.glow-1 { top: -80px; right: -40px; width: 340px; height: 340px; background: rgba(245,134,52,0.5); }
.pp-hero-glow.glow-2 { bottom: -110px; left: -50px; width: 360px; height: 360px; background: rgba(245,134,52,0.26); }
.pp-hero .container { position: relative; z-index: 2; }
.pp-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.pp-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 20px;
}
.pp-badge i { color: var(--pp-orange); }
.pp-title { color: #ffffff; font-weight: 900; font-size: clamp(34px, 5vw, 54px); line-height: 1.08; margin-bottom: 14px; }
.pp-title span { color: var(--pp-orange); }
.pp-updated { color: rgba(255,255,255,0.85); font-size: 15px; margin: 10px; }
.pp-updated span { color: #ffffff; font-weight: 600; }

/* ---------- Layout ---------- */
.pp-body { padding: 56px 0 70px; background: #ffffff; }
.pp-layout { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }

/* ---------- TOC ---------- */
.pp-aside { position: sticky; top: 20px; }
.pp-toc {
    background: var(--pp-gray);
    border: 1px solid var(--pp-gray-2);
    border-radius: 16px;
    padding: 22px 20px;
}
.pp-toc-title {
    display: block;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--pp-teal);
    margin-bottom: 14px;
}
.pp-toc-link {
    display: block;
    font-size: 14px; font-weight: 600;
    color: var(--pp-muted);
    padding: 8px 12px;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.pp-toc-link:hover { color: var(--pp-teal); background: #ffffff; }
.pp-toc-link.active {
    color: var(--pp-teal);
    background: #ffffff;
    border-left-color: var(--pp-orange);
    font-weight: 700;
}

/* ---------- Content ---------- */
.pp-content { min-width: 0; }
.pp-section { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--pp-gray-2); }
.pp-section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.pp-h2 {
    position: relative;
    font-size: 24px; font-weight: 800; color: var(--pp-teal);
    margin-bottom: 16px; padding-bottom: 12px;
}
.pp-h2::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 54px; height: 3px; border-radius: 0 100% 100% 0;
    background: linear-gradient(90deg, var(--pp-teal), var(--pp-orange));
}
.pp-h3 { font-size: 17px; font-weight: 700; color: var(--pp-ink); margin: 22px 0 10px; }
.pp-content p { font-size: 15.5px; line-height: 1.8; color: var(--pp-muted); margin: 0 0 14px; }
.pp-list { margin: 0 0 14px; padding: 0; list-style: none; }
.pp-list li {
    position: relative;
    padding: 7px 0 7px 28px;
    font-size: 15px; line-height: 1.6; color: var(--pp-muted);
    border-bottom: 1px dashed var(--pp-gray-2);
}
.pp-list li:last-child { border-bottom: 0; }
.pp-list li::before {
    content: ""; position: absolute; left: 4px; top: 14px;
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--pp-orange);
    box-shadow: 0 0 0 4px rgba(245,134,52,0.15);
}
.pp-list li strong { color: var(--pp-teal); }

/* ---------- Contact Card ---------- */
.pp-contact-card {
    background: var(--pp-gray);
    border: 1px solid var(--pp-gray-2);
    border-left: 5px solid var(--pp-orange);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 6px 0 18px;
}
.pp-contact-name { font-size: 18px; font-weight: 800; color: var(--pp-teal); margin-bottom: 12px; }
.pp-contact-list { list-style: none; margin: 0; padding: 0; }
.pp-contact-list li { font-size: 14.5px; color: var(--pp-ink); padding: 6px 0 6px 28px; position: relative; }
.pp-contact-list li i { position: absolute; left: 0; top: 9px; color: var(--pp-orange); font-size: 14px; }
.pp-contact-list a { color: var(--pp-teal); font-weight: 600; }
.pp-contact-list a:hover { color: var(--pp-orange); }
.pp-compliance { font-size: 13.5px; color: var(--pp-muted); font-style: italic; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .pp-layout { grid-template-columns: 1fr; gap: 24px; }
    .pp-aside { position: static; }
    .pp-toc { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px; }
    .pp-toc-title { width: 100%; margin-bottom: 6px; }
    .pp-toc-link { border-left: 0; padding: 6px 12px; }
    .pp-toc-link.active { border-left: 0; }
}
@media (max-width: 767.98px) {
    .pp-hero { padding: 48px 0 52px; }
    .pp-body { padding: 40px 0 50px; }
    .pp-h2 { font-size: 21px; }
}


/* ============================================================
   Terms of Service Page  (.to-page)  — scoped copy of .pp-page
   ============================================================ */

.to-page {
    --to-teal: #2A5E6B;
    --to-orange: #F58634;
    --to-ink: #232b2f;
    --to-muted: #566066;
    --to-gray: #f4f6f7;
    --to-gray-2: #e9edee;
    position: relative;
    font-family: 'Raleway', sans-serif;
    color: var(--to-ink);
    background: #ffffff;
}
.to-page h1, .to-page h2, .to-page h3, .to-page h4 { font-family: 'Montserrat', sans-serif; margin: 0; }
.to-page a { text-decoration: none; }

/* ---------- Hero ---------- */
.to-hero {
    position: relative; overflow: hidden;
    padding: 70px 0 64px;
    background: var(--to-teal);
}
.to-hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5; pointer-events: none; }
.to-hero-glow.glow-1 { top: -80px; right: -40px; width: 340px; height: 340px; background: rgba(245,134,52,0.5); }
.to-hero-glow.glow-2 { bottom: -110px; left: -50px; width: 360px; height: 360px; background: rgba(245,134,52,0.26); }
.to-hero .container { position: relative; z-index: 2; }
.to-hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.to-badge {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 18px; border-radius: 50px; margin-bottom: 20px;
}
.to-badge i { color: var(--to-orange); }
.to-title { color: #ffffff; font-weight: 900; font-size: clamp(34px, 5vw, 54px); line-height: 1.08; margin-bottom: 14px; }
.to-title span { color: var(--to-orange); }
.to-updated { color: rgba(255,255,255,0.85); font-size: 15px; margin: 10px; }
.to-updated span { color: #ffffff; font-weight: 600; }

/* ---------- Layout ---------- */
.to-body { padding: 56px 0 70px; background: #ffffff; }
.to-layout { display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }

/* ---------- TOC ---------- */
.to-aside { position: sticky; top: 20px; }
.to-toc {
    background: var(--to-gray);
    border: 1px solid var(--to-gray-2);
    border-radius: 16px;
    padding: 22px 20px;
}
.to-toc-title {
    display: block;
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 12px;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--to-teal);
    margin-bottom: 14px;
}
.to-toc-link {
    display: block;
    font-size: 14px; font-weight: 600;
    color: var(--to-muted);
    padding: 8px 12px;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: color .25s ease, background .25s ease, border-color .25s ease;
}
.to-toc-link:hover { color: var(--to-teal); background: #ffffff; }
.to-toc-link.active {
    color: var(--to-teal);
    background: #ffffff;
    border-left-color: var(--to-orange);
    font-weight: 700;
}

/* ---------- Content ---------- */
.to-content { min-width: 0; }
.to-section { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--to-gray-2); }
.to-section:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.to-h2 {
    position: relative;
    font-size: 24px; font-weight: 800; color: var(--to-teal);
    margin-bottom: 16px; padding-bottom: 12px;
}
.to-h2::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 54px; height: 3px; border-radius: 0 100% 100% 0;
    background: linear-gradient(90deg, var(--to-teal), var(--to-orange));
}
.to-h3 { font-size: 17px; font-weight: 700; color: var(--to-ink); margin: 22px 0 10px; }
.to-content p { font-size: 15.5px; line-height: 1.8; color: var(--to-muted); margin: 0 0 14px; }
.to-list { margin: 0 0 14px; padding: 0; list-style: none; }
.to-list li {
    position: relative;
    padding: 7px 0 7px 28px;
    font-size: 15px; line-height: 1.6; color: var(--to-muted);
    border-bottom: 1px dashed var(--to-gray-2);
}
.to-list li:last-child { border-bottom: 0; }
.to-list li::before {
    content: ""; position: absolute; left: 4px; top: 14px;
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--to-orange);
    box-shadow: 0 0 0 4px rgba(245,134,52,0.15);
}
.to-list li strong { color: var(--to-teal); }

/* ---------- Contact Card ---------- */
.to-contact-card {
    background: var(--to-gray);
    border: 1px solid var(--to-gray-2);
    border-left: 5px solid var(--to-orange);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 6px 0 18px;
}
.to-contact-name { font-size: 18px; font-weight: 800; color: var(--to-teal); margin-bottom: 12px; }
.to-contact-list { list-style: none; margin: 0; padding: 0; }
.to-contact-list li { font-size: 14.5px; color: var(--to-ink); padding: 6px 0 6px 28px; position: relative; }
.to-contact-list li i { position: absolute; left: 0; top: 9px; color: var(--to-orange); font-size: 14px; }
.to-contact-list a { color: var(--to-teal); font-weight: 600; }
.to-contact-list a:hover { color: var(--to-orange); }
.to-compliance { font-size: 13.5px; color: var(--to-muted); font-style: italic; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .to-layout { grid-template-columns: 1fr; gap: 24px; }
    .to-aside { position: static; }
    .to-toc { display: flex; flex-wrap: wrap; gap: 6px; padding: 16px; }
    .to-toc-title { width: 100%; margin-bottom: 6px; }
    .to-toc-link { border-left: 0; padding: 6px 12px; }
    .to-toc-link.active { border-left: 0; }
}
@media (max-width: 767.98px) {
    .to-hero { padding: 48px 0 52px; }
    .to-body { padding: 40px 0 50px; }
    .to-h2 { font-size: 21px; }
}



/* ===== Migrated inline styles (consolidated from HTML) ===== */
.il-0001 { padding-top:0; }
.il-0002 { display:none; }
.il-0003 { font-size:14px;margin-top:8px;color:var(--cb-muted); }
.il-0004 { justify-content:center; }
.il-0005 { transform: rotateY(0deg) rotateX(-15deg) translateZ(var(--globe-r)); }
.il-0006 { transform: rotateY(45deg) rotateX(25deg) translateZ(var(--globe-r)); }
.il-0007 { transform: rotateY(90deg) rotateX(-9deg) translateZ(var(--globe-r)); }
.il-0008 { transform: rotateY(135deg) rotateX(-25deg) translateZ(var(--globe-r)); }
.il-0009 { transform: rotateY(180deg) rotateX(-21deg) translateZ(var(--globe-r)); }
.il-0010 { transform: rotateY(225deg) rotateX(23deg) translateZ(var(--globe-r)); }
.il-0011 { transform: rotateY(270deg) rotateX(2deg) translateZ(var(--globe-r)); }
.il-0012 { transform: rotateY(315deg) rotateX(-50deg) translateZ(var(--globe-r)); }
.il-0013 { --tz:70px }
.il-0014 { --tz:50px }
.il-0015 { --tz:80px }
.il-0016 { --tz:60px }
.il-0017 { width:92% }
.il-0018 { width:78% }
.il-0019 { width:88% }
.il-0020 { width:94.2% }
.il-0021 { width:89.7% }
.il-0022 { width:97.5% }
.il-0023 { background-color: #2C5964; }
