:root { --navy: #0a2540; --blue: #1663c7; --green: #0e9f6e; --light: #f5f8fc; --text: #42526b; --border: #e4eaf2; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', Arial, sans-serif; }
html { scroll-behavior: smooth; }
body { background: #fff; color: var(--text); line-height: 1.7; }
section { scroll-margin-top: 90px; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.3; }
.container { max-width: 1150px; margin: 0 auto; padding: 0 24px; }

header { position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1150px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { height: 48px; width: auto; }
.logo-text .name { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: 1px; }
.logo-text .name span { color: var(--blue); }
.logo-text .sub { font-size: 11px; color: var(--text); letter-spacing: 2px; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 26px; }
nav a { color: var(--navy); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; position: relative; }
nav a:hover { color: var(--blue); }
nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: var(--blue); transition: width 0.25s; }
nav a:hover::after { width: 100%; }
.btn { display: inline-block; padding: 12px 26px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; border: none; cursor: pointer; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #0f4fa3; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22,99,199,0.3); }
.btn-outline { background: rgba(255,255,255,0.9); color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #0b7f58; transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.header-cta { white-space: nowrap; }
.hamburger { display: none; background: none; border: none; font-size: 26px; color: var(--navy); cursor: pointer; }

.hero {
    background:
        linear-gradient(135deg, rgba(22,99,199,0.25), rgba(14,159,110,0.15), rgba(245,248,252,0.55)),
        url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600') center/cover;
    padding: 80px 0 90px;
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero-tag { display: inline-block; background: rgba(255,255,255,0.9); color: var(--blue); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 30px; margin-bottom: 18px; box-shadow: 0 4px 12px rgba(22,99,199,0.15); }
.hero h1 { font-size: 44px; font-weight: 800; margin-bottom: 18px; }
.hero h1 span { color: var(--blue); }
.hero p { font-size: 17px; margin-bottom: 28px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 14px; font-size: 14px; font-weight: 500; color: var(--navy); }
.trust span { background: rgba(255,255,255,0.85); padding: 5px 12px; border-radius: 20px; }
.trust span::before { content: "✓ "; color: var(--green); font-weight: 800; }

.dash { position: relative; }
.dash-card { background: linear-gradient(180deg, #ffffff, #f4f8ff); border-radius: 16px; padding: 24px; box-shadow: 0 20px 50px rgba(10,37,64,0.15); border: 1px solid var(--border); border-top: 4px solid var(--blue); }
.dash-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dash-head h4 { font-size: 15px; }
.dash-badge { background: #e6f7f0; color: var(--green); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.bars { display: flex; align-items: flex-end; gap: 12px; height: 130px; margin-bottom: 18px; }
.bar { flex: 1; border-radius: 6px 6px 0 0; }
.b1 { height: 45%; background: #cfe0f7; } .b2 { height: 65%; background: #a8c6f0; }
.b3 { height: 50%; background: #cfe0f7; } .b4 { height: 85%; background: var(--blue); }
.b5 { height: 60%; background: #a8c6f0; } .b6 { height: 100%; background: var(--green); }
.dash-stats { display: flex; gap: 12px; }
.stat { flex: 1; background: var(--light); border-radius: 10px; padding: 10px 12px; }
.stat b { display: block; color: var(--navy); font-size: 18px; }
.stat small { font-size: 11px; color: var(--text); }
.dash-stats .stat:nth-child(1) { background: #e7f0fd; border: 1px solid #cfe0f7; }
.dash-stats .stat:nth-child(1) b { color: var(--blue); }
.dash-stats .stat:nth-child(2) { background: #e6f7f0; border: 1px solid #c6ecdb; }
.dash-stats .stat:nth-child(2) b { color: var(--green); }
.dash-stats .stat:nth-child(3) { background: #fff7e6; border: 1px solid #ffe3b3; }
.dash-stats .stat:nth-child(3) b { color: #e8890c; }
.float-chip { position: absolute; background: #fff; border-radius: 10px; padding: 10px 16px; box-shadow: 0 10px 30px rgba(10,37,64,0.15); font-size: 13px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 8px; animation: floaty 4s ease-in-out infinite; }
.float-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.chip1 { top: -18px; right: 20px; }
.chip2 { bottom: -16px; left: -10px; animation-delay: 2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.sec { padding: 85px 0; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 55px; }
.sec-head .kicker { background: linear-gradient(90deg, #1663c7, #0e9f6e); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }
.sec-head h2 { font-size: 34px; font-weight: 800; margin: 10px 0 12px; }
.sec-head p { font-size: 16px; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 30px 26px; transition: transform 0.25s, box-shadow 0.25s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 35px rgba(10,37,64,0.1); }
.card .icon { width: 54px; height: 54px; border-radius: 12px; background: #e7f0fd; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; }
.center { text-align: center; margin-top: 40px; }

/* Colourful service cards */
.grid-3 .card:nth-child(1) { border-top: 4px solid #1663c7; }
.grid-3 .card:nth-child(2) { border-top: 4px solid #0e9f6e; }
.grid-3 .card:nth-child(3) { border-top: 4px solid #e8890c; }
.grid-3 .card:nth-child(4) { border-top: 4px solid #8b5cf6; }
.grid-3 .card:nth-child(5) { border-top: 4px solid #e11d48; }
.grid-3 .card:nth-child(6) { border-top: 4px solid #0891b2; }
.grid-3 .card:nth-child(1) .icon { background: #e7f0fd; }
.grid-3 .card:nth-child(2) .icon { background: #e6f7f0; }
.grid-3 .card:nth-child(3) .icon { background: #fff2e0; }
.grid-3 .card:nth-child(4) .icon { background: #f1e9ff; }
.grid-3 .card:nth-child(5) .icon { background: #fde8ee; }
.grid-3 .card:nth-child(6) .icon { background: #e0f5f9; }

.about { background: var(--light); }
.about p.lead { font-size: 17px; margin-bottom: 14px; }
.about-flex { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: center; }
.owner-photo { width: 240px; height: 240px; border-radius: 50%; object-fit: cover; border: 5px solid var(--green); box-shadow: 0 12px 30px rgba(10,37,64,0.15); }
.owner-name { text-align: center; margin-top: 12px; font-weight: 700; color: var(--navy); }
.owner-role { text-align: center; font-size: 13px; color: var(--text); }
.about-text { max-width: 520px; }
.highlights { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.hl { background: #fff; border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.hl h4 { display: flex; align-items: center; gap: 10px; font-size: 17px; margin-bottom: 6px; }
.hl h4::before { content: "✓"; background: var(--green); color: #fff; width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }
.hl p { font-size: 14px; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.why-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: transform 0.25s, box-shadow 0.25s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(10,37,64,0.09); }
.why-card .icon { font-size: 28px; background: #e6f7f0; min-width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-card h4 { font-size: 16px; margin-bottom: 4px; }
.why-card p { font-size: 13.5px; }
.why-card:nth-child(1) .icon { background: #e7f0fd; }
.why-card:nth-child(2) .icon { background: #e6f7f0; }
.why-card:nth-child(3) .icon { background: #fff2e0; }
.why-card:nth-child(4) .icon { background: #f1e9ff; }
.why-card:nth-child(5) .icon { background: #fde8ee; }
.why-card:nth-child(6) .icon { background: #e0f5f9; }

.industries { background: var(--light); }
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.ind { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 26px 18px; text-align: center; font-weight: 600; color: var(--navy); font-size: 15px; transition: transform 0.25s, border-color 0.25s; }
.ind:hover { transform: translateY(-4px); border-color: var(--blue); }
.ind .emoji { font-size: 30px; display: block; margin-bottom: 10px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.step { text-align: center; padding: 10px; }
.step .num { width: 62px; height: 62px; margin: 0 auto 16px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(10,37,64,0.25); }
.step h4 { font-size: 18px; margin-bottom: 6px; }
.step p { font-size: 14px; }
.step:nth-child(1) .num { background: linear-gradient(135deg, #1663c7, #4a8ef0); }
.step:nth-child(2) .num { background: linear-gradient(135deg, #0e9f6e, #34d399); }
.step:nth-child(3) .num { background: linear-gradient(135deg, #e8890c, #fbbf24); }
.step:nth-child(4) .num { background: linear-gradient(135deg, #8b5cf6, #c084fc); }

.cta { background: linear-gradient(135deg, #0a2540 0%, #1663c7 55%, #0e9f6e 120%); color: #fff; text-align: center; padding: 80px 24px; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.06); top: -150px; right: -100px; }
.cta h2 { color: #fff; font-size: 32px; margin-bottom: 12px; }
.cta p { opacity: 0.85; margin-bottom: 30px; font-size: 17px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
details { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--navy); font-size: 15.5px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 22px; color: var(--blue); transition: 0.25s; }
details[open] summary::after { transform: rotate(45deg); }
details .ans { padding: 0 22px 18px; font-size: 14.5px; }

#contact { background: linear-gradient(180deg, #f5f8fc, #eaf1fa); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
.form-card { background: linear-gradient(180deg, #ffffff, #f7faff); border: 1px solid var(--border); border-top: 4px solid var(--blue); border-radius: 14px; padding: 30px; box-shadow: 0 15px 40px rgba(10,37,64,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-card label { font-size: 12px; font-weight: 600; color: var(--navy); display: block; margin: 14px 0 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-card input, .form-card select, .form-card textarea { width: 100%; padding: 12px 14px; border: 1px solid #d5e2f2; border-radius: 8px; font-size: 14.5px; font-family: inherit; background: var(--light); }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { outline: 2px solid var(--blue); background: #fff; }
.form-card button { width: 100%; margin-top: 20px; padding: 16px; font-size: 17px; background: linear-gradient(135deg, #1663c7, #0e9f6e); color: #fff; box-shadow: 0 8px 20px rgba(22,99,199,0.35); }
.form-card button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22,99,199,0.45); }
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card { display: flex; align-items: center; gap: 16px; background: linear-gradient(180deg, #ffffff, #f7faff); border: 1px solid var(--border); border-left: 4px solid var(--blue); border-radius: 12px; padding: 18px 20px; transition: transform 0.25s, box-shadow 0.25s; }
.info-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(10,37,64,0.08); }
.info-card:nth-child(1) { border-left-color: #25d366; }
.info-card:nth-child(2) { border-left-color: #1663c7; }
.info-card:nth-child(3) { border-left-color: #e8890c; }
.info-card:nth-child(4) { border-left-color: #0e9f6e; }
.info-card .icon { font-size: 24px; background: linear-gradient(135deg, #e7f0fd, #dcebfb); width: 50px; height: 50px; min-width: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.info-card:nth-child(1) .icon { background: #e6f9ef; }
.info-card b { display: block; color: var(--navy); font-size: 15px; margin-bottom: 2px; }
.info-card a, .info-card span { color: var(--text); font-size: 14px; text-decoration: none; }
.info-card a:hover { color: var(--blue); }

footer { background: linear-gradient(135deg, #081d33, #0a2540 60%, #10345c); color: #b9c6d8; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 45px; }
.footer-grid h4 { color: #fff; font-size: 16px; margin-bottom: 16px; }
.footer-grid a { display: block; color: #b9c6d8; text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.footer-grid a:hover { color: #fff; }
.f-logo { font-size: 22px; font-weight: 800; letter-spacing: 1px; background: linear-gradient(90deg, #fff, #6ea8ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.f-sub { font-size: 13px; letter-spacing: 2px; color: #8fa3bd; }
.f-tag { font-size: 14px; margin: 10px 0 16px; color: #8fa3bd; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); text-align: center; padding: 20px; font-size: 13.5px; }

.float-btn { position: fixed; right: 22px; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0,0,0,0.25); z-index: 600; transition: transform 0.2s; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { bottom: 22px; background: linear-gradient(135deg, #25d366, #128c7e); animation: waGlow 2.5s ease-in-out infinite; }
@keyframes waGlow { 0%,100% { box-shadow: 0 8px 25px rgba(37,211,102,0.5); } 50% { box-shadow: 0 8px 35px rgba(37,211,102,0.8); } }
.float-call { bottom: 90px; background: var(--blue); color: #fff; font-size: 24px; text-decoration: none; display: none; }
@media (max-width: 768px) { .float-call { display: flex; } }

@media (max-width: 900px) {
    .hero-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    nav.open { display: flex; }
    .hamburger { display: block; }
    .header-cta { display: none; }
}
@media (max-width: 500px) {
    .hero h1 { font-size: 27px; }
    .sec { padding: 60px 0; }
    .form-row { grid-template-columns: 1fr; }
}
