 /* ── Reset ─────────────────────────────────────────────── */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     background: #f5f8fb;
     color: #111820;
     -webkit-font-smoothing: antialiased;
     line-height: 1.6;
     overflow-x: hidden;
 }

 a {
     text-decoration: none;
     color: inherit;
 }

 ul {
     list-style: none;
 }

 button {
     font-family: inherit;
     cursor: pointer;
     border: none;
     background: none;
 }

 img {
     display: block;
     max-width: 100%;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Inter', sans-serif;
 }

 /*
* ═══════════════════════════════════════════════════════
*  BRAND COLORS — extracted from Stellent Info logo:
*    Primary:   #1565a0  (deep steel blue — logo top arc)
*    Secondary: #1e88c8  (bright mid blue — logo highlight)
*    Dark:      #1e2a38  (near-black navy — logo base)
*    Gradient:  #1565a0 → #1e88c8  (logo S gradient)
* ═══════════════════════════════════════════════════════
*/
 :root {
     --p: #1565a0;
     /* primary deep blue   */
     --p2: #1e88c8;
     /* secondary sky blue  */
     --dark: #1e2a38;
     /* logo dark navy      */
     --pl: rgba(21, 101, 160, 0.08);
     --pb: rgba(21, 101, 160, 0.22);
     --fg: #0d1520;
     --mt: #526070;
     --bd: #dce5ee;
     --bg: #f5f8fb;
     --bga: #edf2f7;
     --wh: #ffffff;
     --ft: #0d1926;
     --glow: rgba(21, 101, 160, 0.30);
     --r: 14px;
 }

 /* ── Gradient helpers ──────────────────────────────────── */
 .grad {
     background: linear-gradient(135deg, var(--p), var(--p2));
 }

 .grad-text {
     background: linear-gradient(135deg, var(--p), var(--p2));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .btn-grad {
     background: linear-gradient(135deg, var(--p), var(--p2));
     color: #fff;
     border: none;
     transition: opacity .2s, transform .2s, box-shadow .2s;
 }

 .btn-grad:hover {
     opacity: .9;
     transform: translateY(-1px);
     box-shadow: 0 8px 28px var(--glow);
 }

 /* ── Scrollbar ─────────────────────────────────────────── */
 ::-webkit-scrollbar {
     width: 5px;
 }

 ::-webkit-scrollbar-track {
     background: var(--bga);
 }

 ::-webkit-scrollbar-thumb {
     background: #b0c4d8;
     border-radius: 3px;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: rgba(21, 101, 160, .5);
 }

 /* ══════════════════════════════════════════════════════
NAVBAR
══════════════════════════════════════════════════════ */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 200;
     background: rgba(255, 255, 255, .06);
     backdrop-filter: blur(18px);
     border-bottom: 1px solid transparent;
     transition: background .35s, border-color .35s, box-shadow .35s;
 }

 .navbar.scrolled {
     background: rgba(255, 255, 255, .97);
     border-color: var(--bd);
     box-shadow: 0 1px 14px rgba(0, 0, 0, .07);
 }

 .nav-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px;
     height: 64px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .nav-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
 }

 .nav-logo-icon {
     width: 36px;
     height: 36px;
     border-radius: 9px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 14px var(--glow);
 }

 .nav-logo-icon svg {
     width: 18px;
     height: 18px;
     fill: none;
     stroke: #fff;
     stroke-width: 2.2;
 }

 .nav-logo-text {
     font-family: 'Inter', sans-serif;
     font-weight: 700;
     font-size: 1.1rem;
     letter-spacing: -.02em;
     color: #fff;
     transition: color .35s;
 }

 .navbar.scrolled .nav-logo-text {
     color: var(--fg);
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 2px;
 }

 .nav-links button {
     padding: 8px 14px;
     font-size: .875rem;
     font-weight: 500;
     color: rgba(255, 255, 255, .88);
     border-radius: 8px;
     font-family: 'Inter', sans-serif;
     transition: color .2s, background .2s;
 }

 .navbar.scrolled .nav-links button {
     color: var(--mt);
 }

 .nav-links button:hover {
     background: rgba(255, 255, 255, .13);
     color: #fff;
 }

 .navbar.scrolled .nav-links button:hover {
     background: rgba(0, 0, 0, .04);
     color: var(--fg);
 }

 .nav-cta {
     padding: 9px 22px;
     border-radius: 9px;
     font-size: .875rem;
     font-weight: 600;
     font-family: 'Inter', sans-serif;
 }

 .hamburger {
     display: none;
     padding: 8px;
     border-radius: 8px;
     color: rgba(255, 255, 255, .88);
     transition: color .2s, background .2s;
 }

 .navbar.scrolled .hamburger {
     color: var(--mt);
 }

 .hamburger svg {
     width: 22px;
     height: 22px;
     fill: none;
     stroke: currentColor;
     stroke-width: 2;
 }

 .mobile-menu {
     display: none;
     position: fixed;
     top: 64px;
     left: 0;
     right: 0;
     z-index: 199;
     background: rgba(255, 255, 255, .98);
     backdrop-filter: blur(16px);
     border-bottom: 1px solid var(--bd);
     box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
     padding: 12px 16px 16px;
 }

 .mobile-menu.open {
     display: flex;
     flex-direction: column;
     gap: 4px;
 }

 .mobile-menu button {
     padding: 12px 16px;
     text-align: left;
     font-size: .9rem;
     font-weight: 500;
     color: var(--mt);
     border-radius: 10px;
     transition: color .2s, background .2s;
     font-family: 'Inter', sans-serif;
 }

 .mobile-menu button:hover {
     color: var(--fg);
     background: rgba(0, 0, 0, .04);
 }

 .mobile-menu .nav-cta {
     width: 100%;
     text-align: center;
     margin-top: 8px;
 }

 /* ══════════════════════════════════════════════════════
HERO — full-screen banner
══════════════════════════════════════════════════════ */
 #hero {
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding-top: 64px;
     overflow: hidden;
     position: relative;
     background: var(--ft);
 }

 .hero-bg-img {
     position: absolute;
     inset: 0;
     z-index: 0;
     background-image: url('https://caffeine.ai/assets/generated/hero-banner.dim_1600x900.jpg');
     background-size: cover;
     background-position: center;
     opacity: .5;
 }

 /* Brand-colored gradient overlay — deep blue tones from logo */
 .hero-overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
     background: linear-gradient(160deg,
             rgba(13, 25, 38, 0.80) 0%,
             rgba(21, 101, 160, 0.45) 60%,
             rgba(30, 136, 200, 0.20) 100%);
 }

 .hero-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 80px 24px 60px;
     position: relative;
     z-index: 2;
     text-align: center;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 6px 16px;
     border-radius: 999px;
     border: 1px solid rgba(30, 136, 200, .5);
     background: rgba(21, 101, 160, .18);
     backdrop-filter: blur(8px);
     color: rgba(255, 255, 255, .92);
     font-family: 'Inter', sans-serif;
     font-size: .72rem;
     font-weight: 600;
     letter-spacing: .07em;
     text-transform: uppercase;
     margin-bottom: 28px;
 }

 .hero-badge svg {
     width: 12px;
     height: 12px;
     fill: none;
     stroke: currentColor;
     stroke-width: 2.2;
 }

 .hero-h1 {
     font-family: 'Inter', sans-serif;
     font-size: clamp(2.4rem, 5.5vw, 4.4rem);
     font-weight: 800;
     line-height: 1.1;
     letter-spacing: -.035em;
     margin-bottom: 20px;
     color: #fff;
 }

 .hero-sub {
     font-size: 1.05rem;
     color: rgba(255, 255, 255, .78);
     line-height: 1.78;
     max-width: 560px;
     margin: 0 auto 36px;
 }

 .hero-btns {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     justify-content: center;
 }

 .btn-primary {
     padding: 13px 30px;
     border-radius: 10px;
     font-size: .9rem;
     font-weight: 600;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-family: 'Inter', sans-serif;
     letter-spacing: -.01em;
     box-shadow: 0 0 36px var(--glow), 0 0 72px rgba(21, 101, 160, .1);
 }

 .btn-ghost {
     padding: 13px 30px;
     border-radius: 10px;
     font-size: .9rem;
     font-weight: 600;
     border: 1.5px solid rgba(255, 255, 255, .38);
     color: #fff;
     background: rgba(255, 255, 255, .08);
     backdrop-filter: blur(8px);
     font-family: 'Inter', sans-serif;
     letter-spacing: -.01em;
     transition: background .2s, border-color .2s;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .btn-ghost:hover {
     background: rgba(255, 255, 255, .16);
     border-color: rgba(255, 255, 255, .58);
 }

 .btn-primary svg,
 .btn-ghost svg {
     width: 15px;
     height: 15px;
     fill: none;
     stroke: currentColor;
     stroke-width: 2.2;
 }

 /* Stat cards — glassmorphism with blue tint from brand */
 .hero-stats {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 16px;
     max-width: 720px;
     margin: 60px auto 0;
 }

 .stat-card {
     background: rgba(21, 101, 160, .14);
     backdrop-filter: blur(14px);
     border-radius: var(--r);
     border: 1px solid rgba(30, 136, 200, .28);
     padding: 22px 16px;
     text-align: center;
     transition: background .25s, transform .25s;
 }

 .stat-card:hover {
     background: rgba(30, 136, 200, .22);
     transform: translateY(-3px);
 }

 .stat-value {
     font-family: 'Inter', sans-serif;
     font-weight: 800;
     font-size: 2rem;
     letter-spacing: -.04em;
     color: #fff;
     margin-bottom: 4px;
 }

 .stat-label {
     font-size: .78rem;
     color: rgba(255, 255, 255, .72);
     font-weight: 500;
 }

 .scroll-hint {
     position: absolute;
     bottom: 28px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 2;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 5px;
     color: rgba(255, 255, 255, .45);
     font-family: 'Inter', sans-serif;
     font-size: .68rem;
     letter-spacing: .06em;
     text-transform: uppercase;
     animation: bounceY 2s ease-in-out infinite;
 }

 .scroll-hint svg {
     width: 18px;
     height: 18px;
     fill: none;
     stroke: currentColor;
     stroke-width: 1.8;
 }

 @keyframes bounceY {

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

     50% {
         transform: translateX(-50%) translateY(7px);
     }
 }

 /* ══════════════════════════════════════════════════════
SHARED
══════════════════════════════════════════════════════ */
 section {
     padding: 96px 0;
 }

 .section-alt {
     background: var(--bga);
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 24px;
 }

 .section-tag {
     font-family: 'Inter', sans-serif;
     font-size: .72rem;
     font-weight: 600;
     color: var(--p);
     letter-spacing: .1em;
     text-transform: uppercase;
     margin-bottom: 12px;
 }

 .section-title {
     font-family: 'Inter', sans-serif;
     font-size: clamp(1.9rem, 3.5vw, 2.75rem);
     font-weight: 800;
     letter-spacing: -.035em;
     line-height: 1.15;
     margin-bottom: 14px;
     color: var(--fg);
 }

 .section-sub {
     font-size: 1rem;
     color: var(--mt);
     max-width: 560px;
     margin: 0 auto;
     line-height: 1.75;
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
 }

 /* Fade-up animations */
 .fade-up {
     opacity: 0;
     transform: translateY(28px);
     transition: opacity .6s ease, transform .6s ease;
 }

 .fade-up.visible {
     opacity: 1;
     transform: translateY(0);
 }

 .fd1 {
     transition-delay: .1s;
 }

 .fd2 {
     transition-delay: .2s;
 }

 .fd3 {
     transition-delay: .3s;
 }

 .fd4 {
     transition-delay: .4s;
 }

 /* ══════════════════════════════════════════════════════
SERVICES
══════════════════════════════════════════════════════ */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 22px;
 }

 .service-card {
     background: var(--wh);
     border-radius: var(--r);
     border: 1px solid var(--bd);
     padding: 28px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
     transition: transform .28s, box-shadow .28s, border-color .28s;
 }

 .service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 14px 40px rgba(21, 101, 160, .12);
     border-color: rgba(21, 101, 160, .28);
 }

 .service-icon {
     width: 46px;
     height: 46px;
     border-radius: 11px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 18px;
 }

 .service-icon svg {
     width: 22px;
     height: 22px;
     fill: none;
     stroke-width: 1.8;
 }

 .service-title {
     font-family: 'Inter', sans-serif;
     font-weight: 700;
     font-size: 1.05rem;
     letter-spacing: -.02em;
     margin-bottom: 10px;
     color: var(--fg);
 }

 .service-desc {
     font-size: .875rem;
     color: var(--mt);
     line-height: 1.7;
     margin-bottom: 18px;
 }

 .service-features {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .service-feature {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: .84rem;
     color: rgba(17, 24, 32, .72);
 }

 .fcheck {
     width: 16px;
     height: 16px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .fcheck svg {
     width: 10px;
     height: 10px;
     fill: none;
     stroke-width: 2.5;
 }

 /* ══════════════════════════════════════════════════════
ABOUT
══════════════════════════════════════════════════════ */
 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .about-values {
     display: flex;
     flex-direction: column;
     gap: 20px;
     margin-top: 30px;
 }

 .about-value {
     display: flex;
     align-items: flex-start;
     gap: 16px;
 }

 .about-value-icon {
     width: 42px;
     height: 42px;
     border-radius: 11px;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 14px var(--glow);
 }

 .about-value-icon svg {
     width: 19px;
     height: 19px;
     fill: none;
     stroke: #fff;
     stroke-width: 2;
 }

 .about-value-title {
     font-family: 'Inter', sans-serif;
     font-weight: 700;
     font-size: .95rem;
     letter-spacing: -.02em;
     margin-bottom: 3px;
     color: var(--fg);
 }

 .about-value-desc {
     font-size: .85rem;
     color: var(--mt);
 }

 .about-images {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .about-img {
     border-radius: var(--r);
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, .13);
 }

 .about-img img {
     width: 100%;
     object-fit: cover;
     display: block;
     transition: transform .5s;
 }

 .about-img:hover img {
     transform: scale(1.04);
 }

 .about-img-1 img {
     height: 280px;
 }

 .about-img-2 img {
     height: 220px;
 }

 /* ══════════════════════════════════════════════════════
PORTFOLIO
══════════════════════════════════════════════════════ */
 .portfolio-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 22px;
 }

 .portfolio-item {
     position: relative;
     border-radius: var(--r);
     overflow: hidden;
     cursor: pointer;
 }

 .portfolio-item::after {
     content: '';
     position: absolute;
     inset: 0;
     /* Brand-colored overlay — steel blue from logo */
     background: linear-gradient(160deg, rgba(13, 25, 38, .85), rgba(21, 101, 160, .65));
     opacity: 0;
     transition: opacity .35s;
 }

 .portfolio-item:hover::after {
     opacity: 1;
 }

 .portfolio-item img {
     width: 100%;
     height: 280px;
     object-fit: cover;
     display: block;
     transition: transform .55s;
 }

 .portfolio-item:hover img {
     transform: scale(1.06);
 }

 .portfolio-overlay {
     position: absolute;
     inset: 0;
     z-index: 2;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 24px;
     opacity: 0;
     transition: opacity .35s;
 }

 .portfolio-item:hover .portfolio-overlay {
     opacity: 1;
 }

 .portfolio-cat {
     font-family: 'Inter', sans-serif;
     font-size: .7rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: .1em;
     color: rgba(255, 255, 255, .75);
     margin-bottom: 4px;
 }

 .portfolio-title {
     font-family: 'Inter', sans-serif;
     font-weight: 700;
     font-size: 1.15rem;
     letter-spacing: -.02em;
     color: #fff;
 }

 .portfolio-view {
     display: flex;
     align-items: center;
     gap: 4px;
     margin-top: 8px;
     color: rgba(255, 255, 255, .8);
     font-family: 'Inter', sans-serif;
     font-size: .85rem;
     font-weight: 500;
 }

 .portfolio-view svg {
     width: 15px;
     height: 15px;
     fill: none;
     stroke: currentColor;
     stroke-width: 2.2;
 }

 /* ══════════════════════════════════════════════════════
TECH STACK — infinite marquee
══════════════════════════════════════════════════════ */
 #tech {
     background: var(--wh);
 }

 .tech-track-wrap {
     overflow: hidden;
     position: relative;
     mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
     -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
 }

 .tech-track {
     display: flex;
     gap: 14px;
     width: max-content;
     animation: marquee 28s linear infinite;
 }

 .tech-track:hover {
     animation-play-state: paused;
 }

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

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

 .tech-badge {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 22px;
     border-radius: 999px;
     border: 1.5px solid var(--bd);
     background: var(--wh);
     font-family: 'Inter', sans-serif;
     font-weight: 600;
     font-size: .88rem;
     color: rgba(17, 24, 32, .85);
     white-space: nowrap;
     flex-shrink: 0;
     transition: border-color .2s, box-shadow .2s, transform .2s;
     cursor: default;
 }

 .tech-badge:hover {
     border-color: rgba(21, 101, 160, .4);
     box-shadow: 0 4px 14px rgba(21, 101, 160, .1);
     transform: translateY(-2px);
 }

 .tech-badge .emoji {
     font-size: 1.2rem;
 }

 /* CTA strip — brand gradient */
 .cta-strip {
     margin-top: 60px;
     border-radius: var(--r);
     overflow: hidden;
     position: relative;
     /* Steel blue → sky blue — directly from logo gradient */
     background: linear-gradient(135deg, #0d4f82 0%, #1565a0 40%, #1e88c8 100%);
     padding: 60px 40px;
     text-align: center;
 }

 .cta-strip::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 255, 255, .07) 0%, transparent 60%);
 }

 .cta-strip h3 {
     font-family: 'Inter', sans-serif;
     font-weight: 800;
     font-size: clamp(1.5rem, 2.8vw, 2.2rem);
     letter-spacing: -.03em;
     color: #fff;
     margin-bottom: 12px;
     position: relative;
 }

 .cta-strip p {
     color: rgba(255, 255, 255, .8);
     font-size: 1rem;
     margin-bottom: 30px;
     max-width: 460px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.7;
     position: relative;
 }

 .btn-white {
     padding: 13px 30px;
     border-radius: 10px;
     font-size: .9rem;
     font-weight: 600;
     background: #fff;
     color: var(--p);
     border: none;
     font-family: 'Inter', sans-serif;
     letter-spacing: -.01em;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: background .2s, transform .2s;
     position: relative;
 }

 .btn-white:hover {
     background: rgba(255, 255, 255, .9);
     transform: translateY(-1px);
 }

 .btn-white svg {
     width: 15px;
     height: 15px;
     fill: none;
     stroke: currentColor;
     stroke-width: 2.2;
 }

 /* ══════════════════════════════════════════════════════
CONTACT
══════════════════════════════════════════════════════ */
 .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 36px;
 }

 .contact-card {
     background: var(--wh);
     border-radius: var(--r);
     border: 1px solid var(--bd);
     padding: 36px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
 }

 .contact-card h3 {
     font-family: 'Inter', sans-serif;
     font-weight: 700;
     font-size: 1.3rem;
     letter-spacing: -.025em;
     margin-bottom: 24px;
     color: var(--fg);
 }

 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 14px;
 }

 .form-group {
     margin-bottom: 16px;
 }

 .form-group label {
     display: block;
     font-family: 'Inter', sans-serif;
     font-size: .8rem;
     font-weight: 600;
     margin-bottom: 6px;
     color: var(--fg);
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 11px 13px;
     border-radius: 10px;
     border: 1.5px solid var(--bd);
     font-size: .875rem;
     font-family: inherit;
     background: var(--bg);
     color: var(--fg);
     transition: border-color .2s, box-shadow .2s;
     outline: none;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: var(--p);
     box-shadow: 0 0 0 3px rgba(21, 101, 160, .1);
 }

 .form-group textarea {
     resize: none;
 }

 .form-group select {
     appearance: none;
     cursor: pointer;
 }

 .btn-submit {
     width: 100%;
     padding: 13px;
     border-radius: 10px;
     font-size: .9rem;
     font-weight: 600;
     font-family: 'Inter', sans-serif;
     letter-spacing: -.01em;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .btn-submit svg {
     width: 15px;
     height: 15px;
     fill: none;
     stroke: currentColor;
     stroke-width: 2.2;
 }

 .success-msg {
     display: none;
     margin-top: 14px;
     padding: 12px 16px;
     border-radius: 10px;
     background: #f0fdf4;
     border: 1px solid #86efac;
     color: #166534;
     font-family: 'Inter', sans-serif;
     font-size: .84rem;
     font-weight: 600;
     text-align: center;
 }

 .success-msg.show {
     display: block;
 }

 .contact-info-items {
     display: flex;
     flex-direction: column;
     gap: 18px;
 }

 .contact-info-item {
     display: flex;
     align-items: center;
     gap: 14px;
 }

 .cinfo-icon {
     width: 42px;
     height: 42px;
     border-radius: 11px;
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 14px var(--glow);
 }

 .cinfo-icon svg {
     width: 19px;
     height: 19px;
     fill: none;
     stroke: #fff;
     stroke-width: 2;
 }

 .cinfo-label {
     font-family: 'Inter', sans-serif;
     font-size: .68rem;
     text-transform: uppercase;
     letter-spacing: .09em;
     color: var(--mt);
     font-weight: 600;
 }

 .cinfo-val {
     font-family: 'Inter', sans-serif;
     font-size: .875rem;
     font-weight: 600;
     transition: color .2s;
     color: var(--fg);
 }

 .cinfo-val:hover {
     color: var(--p);
 }

 .map-box {
     flex: 1;
     min-height: 160px;
     border-radius: var(--r);
     border: 1px solid var(--bd);
     background: var(--wh);
     box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     padding: 28px;
     margin-top: 16px;
 }

 .map-icon-wrap {
     width: 56px;
     height: 56px;
     border-radius: 14px;
     background: var(--pl);
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 14px;
 }

 .map-icon-wrap svg {
     width: 26px;
     height: 26px;
     fill: none;
     stroke: var(--p);
     stroke-width: 1.8;
 }

 .map-title {
     font-family: 'Inter', sans-serif;
     font-weight: 600;
     color: rgba(17, 24, 32, .42);
     font-size: .84rem;
 }

 .map-sub {
     font-size: .76rem;
     color: var(--mt);
     margin-top: 4px;
 }

 .contact-right {
     display: flex;
     flex-direction: column;
 }

 /* ══════════════════════════════════════════════════════
FOOTER — dark navy from logo base color
══════════════════════════════════════════════════════ */
 footer {
     background: var(--ft);
     color: rgba(180, 200, 220, .72);
     padding: 64px 0 32px;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
     gap: 40px;
     margin-bottom: 48px;
 }

 .footer-brand {
     display: flex;
     flex-direction: column;
     gap: 14px;
 }

 .footer-logo {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .footer-logo-icon {
     width: 34px;
     height: 34px;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .footer-logo-icon svg {
     width: 18px;
     height: 18px;
     fill: none;
     stroke: #fff;
     stroke-width: 2.2;
 }

 .footer-logo-text {
     font-family: 'Inter', sans-serif;
     font-weight: 700;
     font-size: 1.05rem;
     letter-spacing: -.02em;
     color: #fff;
 }

 .footer-desc {
     font-size: .84rem;
     line-height: 1.75;
     max-width: 260px;
     opacity: .65;
 }

 .footer-col h4 {
     font-family: 'Inter', sans-serif;
     font-size: .7rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: .1em;
     color: #fff;
     margin-bottom: 18px;
 }

 .footer-col ul {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .footer-col ul button {
     font-family: 'Inter', sans-serif;
     font-size: .85rem;
     opacity: .65;
     text-align: left;
     transition: opacity .2s, color .2s;
 }

 .footer-col ul button:hover {
     opacity: 1;
     color: #fff;
 }

 .footer-contact {
     display: flex;
     flex-direction: column;
     gap: 11px;
 }

 .footer-contact-item {
     display: flex;
     align-items: flex-start;
     gap: 9px;
     font-size: .85rem;
     opacity: .65;
 }

 .footer-contact-item svg {
     width: 15px;
     height: 15px;
     fill: none;
     stroke: currentColor;
     stroke-width: 2;
     flex-shrink: 0;
     margin-top: 2px;
 }

 .footer-social {
     display: flex;
     gap: 8px;
     margin-top: 18px;
 }

 .footer-social button {
     width: 34px;
     height: 34px;
     border-radius: 7px;
     border: 1px solid rgba(255, 255, 255, .18);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: .55;
     transition: opacity .2s, border-color .2s;
 }

 .footer-social button:hover {
     opacity: 1;
     border-color: rgba(255, 255, 255, .38);
 }

 .footer-social button svg {
     width: 15px;
     height: 15px;
     fill: none;
     stroke: #fff;
     stroke-width: 2;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, .1);
     padding-top: 22px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 8px;
 }

 .footer-bottom p {
     font-family: 'Inter', sans-serif;
     font-size: .76rem;
     opacity: .45;
 }

 .footer-bottom a {
     color: rgba(255, 255, 255, .75);
 }

 .footer-bottom a:hover {
     color: #fff;
 }

 /* ══════════════════════════════════════════════════════
RESPONSIVE
══════════════════════════════════════════════════════ */
 @media (max-width: 1024px) {

     .nav-links,
     .nav-cta {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .about-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .about-images {
         flex-direction: row;
     }

     .about-img-1 img,
     .about-img-2 img {
         height: 220px;
     }

     .services-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 30px;
     }
 }

 @media (max-width: 768px) {
     section {
         padding: 64px 0;
     }

     .hero-stats {
         grid-template-columns: repeat(2, 1fr);
     }

     .services-grid {
         grid-template-columns: 1fr;
     }

     .portfolio-grid {
         grid-template-columns: 1fr;
     }

     .contact-grid {
         grid-template-columns: 1fr;
     }

     .form-row {
         grid-template-columns: 1fr;
     }

     .footer-grid {
         grid-template-columns: 1fr;
     }

     .about-images {
         flex-direction: column;
     }

     .cta-strip {
         padding: 40px 20px;
     }
 }

 @media (max-width: 480px) {
     .hero-btns {
         flex-direction: column;
         align-items: center;
     }

     .btn-primary,
     .btn-ghost {
         width: 100%;
         justify-content: center;
     }
 }

 .quick-links li button,
 .bottom-Services li button {
     color: white;
     opacity: 0.55;
 }