/* ============================================================
   CupCube Technology — Common Stylesheet
   Shared across all pages (SEO & Accessibility Optimized)
   ============================================================ */

/* ── VARIABLES & FONTS ── */

/* Combined font imports to optimize HTTP requests and minimize Cumulative Layout Shift (CLS) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

:root {
  /* WCAG AA Compliant Colors (Contrast Ratio >= 4.5:1 against white/dark backgrounds) */
  --primary: #1a56db;       /* Adjusted to accessible Royal Blue */
  --secondary: #1e40af;     /* Consistent accessible contrast deep-blue */
  --accent: #047857;        /* Accessible Emerald green */
  --dark: #0f172a;          /* Rich deep slate */
  --light-bg: #f8fafc;
  --text-muted: #475569;    /* Darkened to pass AA guidelines for small text */
  --focus-ring: 0 0 0 3px rgba(26, 86, 219, 0.4);
}

/* ── RESET & BASE ── */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

body { 
  font-family: "Montserrat", sans-serif; 
  color: var(--dark); 
  background-color: #ffffff;
  overflow-x: hidden; 
  line-height: 1.6; /* Optimal readability standard */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 { 
  font-family: 'Outfit', sans-serif; 
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

/* ── ACCESSIBILITY & KEYBOARD FOCUS UTILITIES ── */
a, button, input, select, textarea, [role="button"] {
  transition: outline 0.15s ease, box-shadow 0.15s ease;
}

/* Visible crisp outline for keyboard navigation */
a:focus-visible, 
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  box-shadow: var(--focus-ring);
}

/* Screen reader only utility class for invisible accessibility cues */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── UTILITY CLASSES ── */
.text-primary-custom { color: var(--primary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-light-custom { background: var(--light-bg) !important; }
.bg-dark-custom { background: var(--dark) !important; }

/* ── TOPBAR ── */
.topbar { background: var(--dark); padding: 8px 0; font-size: 0.85rem; }
.topbar a, .topbar span { color: #cbd5e1; text-decoration: none; }
.topbar a:hover { color: #ffffff; text-decoration: underline; }
.topbar .sep { color: #475569; margin: 0 8px; }

/* ── NAVBAR ── */
.navbar { background: #ffffff; box-shadow: 0 1px 20px rgba(0,0,0,0.08); padding: 12px 0; }
.navbar-brand { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--primary) !important; line-height: 1; }
.navbar-brand small { display: block; font-size: 0.65rem; font-weight: 700; color: #1e293b; letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.nav-link { font-weight: 600; color: #334155 !important; font-size: 14px; padding: 6px 14px !important; transition: color 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-cta { background: #000000; color: #ffffff !important; border-radius: 6px; padding: 8px 20px !important; text-decoration: none; display: inline-block; }
.nav-cta:hover { background: #1e293b; color: #ffffff !important; }

/* ── DROPDOWN ── */
.dropdown-menu { border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 12px; padding: 8px; }
.dropdown-item { border-radius: 8px; padding: 10px 16px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; color: var(--dark); }
.dropdown-item:hover { background: rgba(26,86,219,0.08); color: var(--primary); }

/* ── BREADCRUMB ── */
.breadcrumb-item a { color: var(--primary); text-decoration: none; font-size: 0.88rem; font-weight: 500; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item.active { color: #0f172a; font-size: 0.88rem; font-weight: 600; }
.breadcrumb-item+.breadcrumb-item::before { color: #cbd5e1; }

/* ── PAGE HERO (BREADCRUMB STYLE) ── */
.page-hero { background: linear-gradient(135deg, #eef3ff 0%, #ffffff 60%); padding: 56px 0 40px; border-bottom: 1px solid #e2e8f0; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(26,86,219,0.07) 0%, transparent 70%); border-radius: 50%; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }

/* ── PAGE TITLE ── */
.page-title { background: #ffffff; padding: 16px 0 6px; }
.page-title h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 4px; }
.page-title .hint { font-size: 0.87rem; color: #1e293b; font-style: italic; margin-bottom: 6px; }
.page-title .tagline { font-size: 0.95rem; color: #1e293b; line-height: 1.7; }

/* ── HERO STAT PILLS ── */
.hero-stat-pill { display: inline-flex; align-items: center; gap: 10px; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 40px; padding: 8px 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); margin: 4px; }
.hero-stat-pill .icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(26,86,219,0.1); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.9rem; }
.hero-stat-pill span { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.hero-stat-pill small { color: var(--text-muted); font-size: 0.75rem; display: block; margin-top: -2px; }

/* ── SECTION COMMON ── */
.section-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.section-title { font-weight: 800; font-size: 2rem; line-height: 1.2; color: var(--dark); }
.section-sub { color: #334155; font-size: 1rem; margin-top: 8px; }
.divider { width: 50px; height: 4px; background: var(--dark); border-radius: 2px; margin: 14px 0 24px; }

/* ── STATS STRIP ── */
.stats-strip { background: #000000; padding: 44px 0; }
.stat-box { text-align: center; color: #ffffff; }
.stat-box .snum { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 900; line-height: 1; }
.stat-box .slbl { font-size: 0.85rem; color: #cbd5e1; margin-top: 5px; font-weight: 500; }

/* ── WHY STRIP (DARK) ── */
.why-strip { background: var(--dark); padding: 50px 0; }
.why-item { text-align: center; padding: 10px; }
.why-item .wi-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(26,86,219,0.18); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #60a5fa; margin: 0 auto 14px; }
.why-item h5 { color: #ffffff; font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.why-item p { color: #94a3b8; font-size: 0.85rem; margin: 0; line-height: 1.6; }

/* ── CTA BANNER ── */
.cta-banner { background: #000000; padding: 60px 0; text-align: center; }
.cta-banner h2 { font-size: 2.1rem; font-weight: 800; color: #ffffff; }
.cta-banner p { color: #cbd5e1; font-size: 1rem; }

/* ── BUTTONS ── */
.btn-white { background: #ffffff; color: #000000; border: none; border-radius: 8px; padding: 13px 30px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; transition: all 0.25s; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-white:hover { background: #f0f6ff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); color: #000000; }
.btn-outline-w { background: transparent; color: #ffffff; border: 2px solid rgba(255,255,255,0.5); border-radius: 8px; padding: 11px 28px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; transition: all 0.25s; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-outline-w:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; color: #ffffff; }
.btn-cc { background: #000000; color: #ffffff; border: none; border-radius: 8px; padding: 10px 24px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.92rem; cursor: pointer; transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-cc:hover { background: #1e293b; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,86,219,0.3); color: #ffffff; }
.btn-primary-cc { background: #000000; color: #ffffff; border: none; border-radius: 8px; padding: 13px 30px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; transition: all 0.25s; cursor: pointer; }
.btn-primary-cc:hover { background: #1e293b; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(26,86,219,0.35); }
.btn-outline-cc { background: transparent; color: var(--dark); border: 2px solid #cbd5e1; border-radius: 8px; padding: 11px 28px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem; transition: all 0.25s; cursor: pointer; }
.btn-outline-cc:hover { border-color: var(--primary); color: var(--primary); }
.btn-submit { background: #000000; color: #ffffff; border: none; border-radius: 10px; padding: 13px 32px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; width: 100%; transition: all 0.25s; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: #1e293b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.35); }

/* ── FOOTER ── */
footer { background: var(--dark); padding: 60px 0 0; }
footer .brand { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--primary); }
footer .brand span { color: #ffffff; }
footer h6 { font-family: 'Outfit', sans-serif; font-weight: 700; color: #e2e8f0; margin-bottom: 18px; font-size: 0.85rem; letter-spacing: 0.6px; text-transform: uppercase; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: #94a3b8; font-size: 0.87rem; text-decoration: none; transition: color 0.2s; }
footer ul li a:hover { color: #ffffff; text-decoration: underline; }
footer .contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
footer .contact-item i { color: #60a5fa; margin-top: 2px; flex-shrink: 0; }
footer .contact-item p { color: #cbd5e1; font-size: 0.87rem; margin: 0; line-height: 1.6; }
footer .social-links { display: flex; gap: 10px; margin-top: 20px; }
footer .social-links a { width: 36px; height: 36px; border-radius: 8px; background: #1e293b; display: flex; align-items: center; justify-content: center; color: #cbd5e1; text-decoration: none; transition: all 0.2s; font-size: 1rem; }
footer .social-links a:hover { background: var(--primary); color: #ffffff; }

/* Footer SEO: Drastically improved contrast from slate-700 (#334155) to slate-400 (#94a3b8) */
.footer-seo { background: #060d18; padding: 22px 0; }
.footer-seo a { color: #94a3b8; font-size: 0.8rem; text-decoration: none; transition: color 0.2s; margin: 0 5px; white-space: nowrap; }
.footer-seo a:hover { color: #ffffff; text-decoration: underline; }
.footer-seo a.footer-seo-active { color: #818cf8 !important; font-weight: 700; }

.footer-bottom { background: #060d18; border-top: 1px solid #1e293b; padding: 18px 0; }
.footer-bottom p { color: #94a3b8; font-size: 0.82rem; margin: 0; }
.work-for-flag { display: inline-flex; align-items: center; gap: 7px; background: #1e293b; border-radius: 8px; padding: 7px 12px; margin: 4px; }
.work-for-flag span { font-size: 0.83rem; color: #cbd5e1; }

/* ── TECH BADGE ── */
.tech-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--light-bg); border: 1px solid #cbd5e1; border-radius: 10px; padding: 10px 18px; margin: 6px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.88rem; transition: all 0.25s; cursor: default; color: var(--dark); }
.tech-badge:hover { background: rgba(26,86,219,0.06); border-color: rgba(26,86,219,0.3); color: var(--primary); }
.tech-badge i { font-size: 1.1rem; }

/* ── FEATURE LIST (CHECKMARK LIST) ── */
.feat-list { list-style: none; padding: 0; margin: 0; }
.feat-list li { display: flex; align-items: center; gap: 10px; padding: 9px 14px; margin-bottom: 7px; background: var(--light-bg); border-radius: 9px; border: 1px solid #e2e8f0; font-size: 0.89rem; color: #1e293b; transition: all 0.22s; }
.feat-list li:hover { border-color: rgba(26,86,219,0.25); background: #ffffff; box-shadow: 0 3px 12px rgba(26,86,219,0.07); transform: translateX(4px); }
.feat-list li i { color: var(--primary); font-size: 0.95rem; flex-shrink: 0; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── TOAST NOTIFICATION ── */
#toast { position: fixed; bottom: 30px; right: 30px; background: var(--dark); color: #ffffff; padding: 14px 22px; border-radius: 12px; font-size: 0.9rem; display: none; align-items: center; gap: 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.2); z-index: 9999; }
#toast i { color: #10b981; font-size: 1.2rem; }

/* ── PAGE SPECIFIC: HOME ── */
.hero { background: linear-gradient(135deg, #ffffff 55%, #eef3ff 100%); min-height: 80vh; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; right: -120px; top: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(26,86,219,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero-badge { display: inline-block; background: rgba(26,86,219,0.1); color: var(--primary); font-size: 0.82rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.5px; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; line-height: 1.1; }
.hero h1 span { color: var(--primary); }
.hero p.lead { color: #1e293b; font-size: 1.05rem; max-width: 480px; }
.hero-visual { position: relative; }
.hero-card { background: #ffffff; border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.12); padding: 20px; }
.hero-float { animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.social-pill { display: inline-flex; gap: 12px; background: #ffffff; border-radius: 40px; padding: 10px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.social-pill a { color: #000000; font-size: 1.2rem; transition: color 0.2s; }
.social-pill a:hover { color: var(--primary); }
.stat-row { display: flex; gap: 36px; margin-top: 36px; }
.stat-item .num { font-family: 'Outfit', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--dark); }
.stat-item .lbl { font-size: 0.8rem; color: #1e293b; margin-top: 2px; font-weight: 500; }

/* ── INDUSTRIES MARQUEE ── */
.industries { background: var(--dark); padding: 22px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 40px; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-track span { color: #cbd5e1; font-size: 0.9rem; font-weight: 600; padding: 4px 20px; border: 1px solid #334155; border-radius: 20px; flex-shrink: 0; }
.marquee-track span:nth-child(odd) { color: #93c5fd; border-color: rgba(96,165,250,0.3); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── HEADLINE SECTION ── */
.headline-section { padding: 40px 0; text-align: center; background: #ffffff; }
.gradient-heading { font-family: 'Outfit', sans-serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; line-height: 1.1; }
.gradient-heading .line1 { color: #0d6efd; }
.gradient-heading .line2 { color: #0a58ca; }
.gradient-heading .line3 { color: #084298; }
.headline-sub { color: #1e293b; font-size: 1rem; max-width: 580px; margin: 16px auto 0; }

/* ── INDUSTRY CARDS ── */
.industry-cards { background: var(--light-bg); padding: 40px 0 60px; }
.ind-card { background: #ffffff; border-radius: 14px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: all 0.3s; cursor: pointer; border: 2px solid transparent; }
.ind-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(26,86,219,0.15); }
.ind-card .ind-icon { width: 36px; height: 36px; background: #000000; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 1rem; margin-bottom: 10px; }
.ind-card h6 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.ind-card .know-more { font-size: 0.78rem; color: var(--primary); font-weight: 700; }

/* ── FEATURES ── */
.features { padding: 70px 0; background: #ffffff; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; padding: 28px; border-radius: 16px; border: 1px solid #f1f5f9; transition: all 0.3s; }
.feature-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-color: transparent; }
.feat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.feat-icon.orange { background: rgba(26,86,219,0.1); color: var(--primary); }
.feat-icon.blue { background: rgba(37,99,235,0.1); color: var(--secondary); }
.feat-icon.green { background: rgba(16,185,129,0.1); color: var(--accent); }
.feature-item h5 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.feature-item p { font-size: 0.88rem; color: #1e293b; margin: 0; line-height: 1.6; }

/* ── OUR WORK ── */
.our-work { background: var(--light-bg); padding: 70px 0; }
.work-card { border-radius: 16px; overflow: hidden; position: relative; }
.work-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.work-card:hover img { transform: scale(1.05); }
.work-card .overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(15,23,42,0.95) 0%, transparent 100%); padding: 16px; display: flex; align-items: center; gap: 8px; }
.work-card .overlay h6 { color: #ffffff; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.88rem; margin: 0; }
.work-card .overlay i { color: rgba(255,255,255,0.8); font-size: 1rem; flex-shrink: 0; }

/* ── ABOUT ── */
.about { padding: 80px 0; background: #ffffff; }
.about-text h2 { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 2rem; }
.about-badge { background: rgba(26,86,219,0.1); color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 0.82rem; font-weight: 700; margin-bottom: 12px; display: inline-block; }
.about-text p { color: #1e293b; line-height: 1.8; font-size: 0.95rem; margin-bottom: 14px; }
.tech-tag { display: inline-block; background: var(--light-bg); border: 1px solid #cbd5e1; border-radius: 6px; padding: 5px 12px; font-size: 0.8rem; font-weight: 600; margin: 4px; color: var(--dark); }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 20px; width: 100%; object-fit: cover; height: 420px; background: #e2e8f0; }
.about-float-card { position: absolute; bottom: 30px; left: -20px; background: #ffffff; border-radius: 14px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); padding: 16px 22px; z-index: 2; }
.about-float-card .num { font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--primary); }

/* ── SERVICES ── */
.services { background: var(--dark); padding: 70px 0; }
.services .section-title { color: #ffffff; }
.services .section-sub { color: #cbd5e1; }
.service-icon-card { background: #1e293b; border-radius: 14px; padding: 22px; display: flex; align-items: center; gap: 16px; border: 1px solid #334155; transition: all 0.3s; cursor: pointer; }
.service-icon-card:hover { background: #000000; border-color: var(--primary); transform: translateY(-3px); }
.service-icon-card .svc-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(26,86,219,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: #60a5fa; flex-shrink: 0; }
.service-icon-card:hover .svc-icon { background: rgba(255,255,255,0.2); color: #ffffff; }
.service-icon-card span { font-family: 'Outfit', sans-serif; font-weight: 600; color: #e2e8f0; font-size: 0.95rem; }
.service-icon-card:hover span { color: #ffffff; }

/* ── SERVICE DETAIL ── */
.service-detail { background: var(--light-bg); padding: 70px 0; }
.sd-card { background: #ffffff; border-radius: 16px; padding: 30px; height: 100%; border: 1px solid #f1f5f9; transition: all 0.3s; }
.sd-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.sd-card .sd-icon { width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.sd-card h5 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.sd-card p { font-size: 0.88rem; color: #1e293b; line-height: 1.7; }
.tech-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tech-pill { font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 4px; background: var(--light-bg); color: var(--dark); border: 1px solid #e2e8f0; }

/* ── SERVICES GRID ── */
.services-grid { padding: 70px 0; background: #ffffff; }
.svc-card { background: #ffffff; border-radius: 20px; overflow: hidden; border: 1px solid #e8eef8; transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 2px 16px rgba(0,0,0,0.05); height: 100%; }
.svc-card:hover { box-shadow: 0 20px 50px rgba(26,86,219,0.14); transform: translateY(-6px); border-color: rgba(26,86,219,0.25); }
.svc-card .svc-img { position: relative; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.45s; }
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-card .svc-img .badge-cat { position: absolute; top: 14px; left: 14px; background: #000000; color: #ffffff; font-family: 'Outfit', sans-serif; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; }
.svc-card .svc-body { padding: 24px; }
.svc-card .svc-icon-wrap { width: 44px; height: 44px; border-radius: 12px; background: rgba(26,86,219,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); margin-bottom: 14px; }
.svc-card h5 { font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.88rem; color: #1e293b; line-height: 1.75; margin-bottom: 16px; }
.svc-card .svc-features { list-style: none; padding: 0; margin: 0 0 18px; }
.svc-card .svc-features li { font-size: 0.82rem; color: #334155; padding: 3px 0; display: flex; align-items: center; gap: 8px; }
.svc-card .svc-features li i { color: var(--primary); font-size: 0.85rem; }
.svc-link { color: var(--primary); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.88rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.svc-link:hover { gap: 10px; color: #000000; text-decoration: underline; }

/* ── PROCESS SECTION ── */
.process { background: var(--light-bg); padding: 70px 0; }
.process-step { text-align: center; position: relative; }
.process-step .step-num { width: 56px; height: 56px; border-radius: 50%; background: #000000; color: #ffffff; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 6px 20px rgba(26,86,219,0.35); }
.process-step h6 { font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: #1e293b; line-height: 1.65; }
.process-connector { position: absolute; top: 28px; left: calc(50% + 36px); right: calc(-50% + 36px); height: 2px; background: linear-gradient(90deg, var(--primary), rgba(26,86,219,0.2)); border-radius: 2px; }
@media(max-width:768px) { .process-connector { display: none; } }

/* ── TECH STACK ── */
.tech-stack { background: #ffffff; padding: 60px 0; }

/* ── FAQ ── */
.faq { background: #ffffff; padding: 70px 0; }
.accordion-button { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.97rem; }
.accordion-button:not(.collapsed) { color: var(--primary); background: rgba(26,86,219,0.05); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }
.accordion-item { border: 1px solid #e8eef8 !important; border-radius: 12px !important; overflow: hidden; margin-bottom: 12px !important; }
.accordion-item:last-child { margin-bottom: 0; }
.accordion-body { font-size: 0.88rem; color: #1e293b; line-height: 1.78; }

/* ── TESTIMONIALS ── */
.testimonials { background: linear-gradient(135deg, #000000 0%, #1e3a5f 100%); padding: 70px 0; }
.testimonials .section-title { color: #ffffff; }
.testi-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 30px; }
.testi-card p { color: #f1f5f9; font-size: 0.95rem; line-height: 1.8; font-style: italic; } /* Adjusted color for AAA contrast */
.testi-card .avatar { width: 52px; height: 52px; border-radius: 50%; background: #000000; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 700; color: #ffffff; font-size: 1.1rem; }
.testi-card h6 { color: #ffffff; font-family: 'Outfit', sans-serif; font-weight: 700; margin: 0; }
.testi-card small { color: #cbd5e1; font-weight: 500; }
.stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 14px; } /* Swapped to standard gold yellow for visual clarity */

/* ── PAGE SPECIFIC: ABOUT US ── */
.about-main { padding: 70px 0; background: #ffffff; }
.about-lead { font-size: 1.05rem; color: #1e293b; line-height: 1.85; margin-bottom: 18px; }
.about-lead strong { color: var(--dark); font-weight: 700; }
.highlight-card { background: var(--light-bg); border-radius: 16px; border: 1px solid #e8eef8; padding: 28px 24px; height: 100%; transition: all 0.3s; }
.highlight-card:hover { box-shadow: 0 12px 40px rgba(26,86,219,0.1); transform: translateY(-5px); border-color: rgba(26,86,219,0.2); }
.highlight-card .hc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.highlight-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.highlight-card p { font-size: 0.87rem; color: #1e293b; line-height: 1.7; margin: 0; }
.mission-vision { background: var(--light-bg); padding: 70px 0; }
.mv-card { background: #ffffff; border-radius: 20px; padding: 36px 32px; border: 1px solid #e8eef8; height: 100%; position: relative; overflow: hidden; transition: all 0.3s; }
.mv-card::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; opacity: 0.06; }
.mv-card.mission::after { background: #000000; }
.mv-card.vision::after { background: var(--accent); }
.mv-card.values::after { background: #f59e0b; }
.mv-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.09); transform: translateY(-4px); }
.mv-card .mv-icon { width: 60px; height: 60px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.mv-card h4 { font-weight: 800; font-size: 1.15rem; margin-bottom: 14px; }
.mv-card p { font-size: 0.9rem; color: #1e293b; line-height: 1.8; margin: 0; }
.team-section { background: #ffffff; padding: 70px 0; }
.team-card { background: var(--light-bg); border-radius: 20px; overflow: hidden; border: 1px solid #e8eef8; transition: all 0.35s; text-align: center; }
.team-card:hover { box-shadow: 0 16px 48px rgba(26,86,219,0.12); transform: translateY(-6px); }
.team-card .team-img { width: 100%; height: 200px; object-fit: cover; background: linear-gradient(135deg,#eef3ff,#dbeafe); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: rgba(26,86,219,0.25); }
.team-card .team-body { padding: 22px 20px; }
.team-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.team-card p { font-size: 0.83rem; color: #1e293b; line-height: 1.65; margin-bottom: 14px; }
.team-card .team-socials { display: flex; gap: 8px; justify-content: center; }
.team-card .team-socials a { width: 32px; height: 32px; border-radius: 8px; background: #e8eef8; display: flex; align-items: center; justify-content: center; color: #000000; text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.team-card .team-socials a:hover { background: #000000; color: #ffffff; }
.journey { background: var(--light-bg); padding: 70px 0; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg,var(--primary),rgba(26,86,219,0.1)); border-radius: 2px; }
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { position: absolute; left: -32px; top: 4px; width: 28px; height: 28px; border-radius: 50%; background: #000000; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; box-shadow: 0 4px 14px rgba(26,86,219,0.35); font-family: 'Outfit', sans-serif; }
.tl-card { background: #ffffff; border-radius: 14px; padding: 22px 24px; border: 1px solid #e8eef8; transition: all 0.3s; }
.tl-card:hover { border-color: rgba(26,86,219,0.25); box-shadow: 0 8px 30px rgba(26,86,219,0.08); }
.tl-card .tl-year { font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--primary); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.tl-card h6 { font-weight: 700; font-size: 0.97rem; margin-bottom: 6px; }
.tl-card p { font-size: 0.86rem; color: #1e293b; line-height: 1.7; margin: 0; }

/* ── PAGE SPECIFIC: CONTACT US ── */
.contact-section { padding: 70px 0; background: #ffffff; }
.info-card { background: var(--light-bg); border-radius: 16px; border: 1px solid #e8eef8; padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s; }
.info-card:hover { box-shadow: 0 10px 36px rgba(26,86,219,0.1); border-color: rgba(26,86,219,0.2); transform: translateY(-3px); }
.info-card .ic-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.info-card h6 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.info-card p, .info-card a { font-size: 0.88rem; color: #1e293b; margin: 0; text-decoration: none; line-height: 1.7; }
.info-card a:hover { color: var(--primary); text-decoration: underline; }
.avail-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(4,120,87,0.1); border: 1px solid rgba(4,120,87,0.25); border-radius: 20px; padding: 6px 16px; font-size: 0.82rem; font-weight: 600; color: var(--accent); margin-bottom: 24px; }
.avail-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse-green 1.5s ease-in-out infinite; }
@keyframes pulse-green { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; text-decoration: none; transition: all 0.25s; border: 1px solid #cbd5e1; color: #000000; background: #ffffff; }
.social-btn:hover { background: #000000; color: #ffffff; border-color: #000000; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,86,219,0.3); }
.form-card { background: #ffffff; border-radius: 24px; border: 1px solid #e8eef8; padding: 40px 36px; box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.form-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.form-card .form-subtitle { font-size: 0.9rem; color: #1e293b; margin-bottom: 28px; }
.form-label { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select { border: 1.5px solid #cbd5e1; border-radius: 10px; padding: 11px 14px; font-size: 0.9rem; color: var(--dark); font-family: "Montserrat", sans-serif; transition: all 0.2s; background: var(--light-bg); }
.form-control:focus, .form-select:focus { border-color: var(--primary); background: #ffffff; box-shadow: 0 0 0 3px rgba(26,86,219,0.15); outline: none; }
.form-control::placeholder { color: #64748b; font-size: 0.87rem; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.78rem; color: #64748b; margin-top: 4px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .bi { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: #64748b; font-size: 0.95rem; pointer-events: none; }
.input-icon-wrap .form-control, .input-icon-wrap .form-select { padding-left: 38px; }
.input-icon-wrap-textarea .bi { top: 14px; transform: none; }
.recaptcha-mock { background: #f9fafb; border: 1px solid #cbd5e1; border-radius: 8px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.recaptcha-mock .rc-box { width: 22px; height: 22px; border: 2px solid #cbd5e1; border-radius: 3px; flex-shrink: 0; }
.recaptcha-mock span { font-size: 0.85rem; color: #334155; }
.recaptcha-mock .rc-logo { margin-left: auto; text-align: center; }
.recaptcha-mock .rc-logo img { width: 32px; }
.recaptcha-mock .rc-logo small { display: block; font-size: 0.6rem; color: #64748b; }
.map-section { background: var(--light-bg); padding: 60px 0 0; }
.map-section h2 { font-weight: 800; font-size: 1.8rem; text-align: center; margin-bottom: 30px; }
.map-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 40px rgba(0,0,0,0.1); border: 1px solid #cbd5e1; }
.map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

/* ── PAGE SPECIFIC: POS / SERVICE PAGES ── */
.intro { background: #ffffff; padding: 20px 0 50px; }
.intro p { color: #1e293b; font-size: 0.93rem; line-height: 1.85; margin-bottom: 12px; }
.mockup-img { width: 100%; border-radius: 20px; box-shadow: 0 18px 55px rgba(26,86,219,0.18); object-fit: cover; max-height: 360px; }
.solutions { background: var(--light-bg); padding: 60px 0; }
.solutions h2 { font-size: 1.65rem; font-weight: 800; text-align: center; margin-bottom: 40px; }
.sol-card { background: #ffffff; border-radius: 18px; border: 1px solid #e8eef8; padding: 28px 22px; height: 100%; transition: all 0.35s; text-align: center; }
.sol-card:hover { box-shadow: 0 14px 44px rgba(26,86,219,0.11); transform: translateY(-6px); border-color: rgba(26,86,219,0.2); }
.sol-card .sc-icon { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.55rem; margin: 0 auto 16px; }
.sol-card h5 { font-weight: 800; font-size: 0.95rem; margin-bottom: 10px; }
.sol-card p { font-size: 0.83rem; color: #1e293b; line-height: 1.7; margin: 0; }
.info-sec { padding: 60px 0; }
.info-sec h2 { font-size: 1.45rem; font-weight: 800; margin-bottom: 14px; }
.info-sec p { font-size: 0.91rem; color: #1e293b; line-height: 1.85; margin-bottom: 12px; }
.info-sec p:last-child { margin-bottom: 0; }
.info-img { width: 100%; border-radius: 18px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); object-fit: cover; }
.choose-sec { background: #ffffff; padding: 50px 0 30px; }
.choose-sec h2 { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 46px; line-height: 1.35; }
.choose-row { padding: 40px 0; border-bottom: 1px solid #f1f5f9; }
.choose-row:last-child { border-bottom: none; }
.choose-row h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 12px; }
.choose-row p { font-size: 0.89rem; color: #1e293b; line-height: 1.82; margin: 0; }
.choose-img { width: 100%; border-radius: 18px; box-shadow: 0 14px 44px rgba(0,0,0,0.1); object-fit: cover; max-height: 340px; }

/* ── SERVICES SECTION (PAGE-LEVEL) ── */
.services-sec { background: var(--light-bg); padding: 60px 0; }
.services-sec h2 { font-size: 1.6rem; font-weight: 800; text-align: center; margin-bottom: 42px; }
.srv-card { background: #ffffff; border-radius: 18px; border: 1px solid #e8eef8; padding: 36px 24px; height: 100%; transition: all 0.35s; text-align: center; }
.srv-card:hover { box-shadow: 0 14px 44px rgba(26,86,219,0.11); transform: translateY(-6px); border-color: rgba(26,86,219,0.2); }
.srv-card .sc-icon { width: 62px; height: 62px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.65rem; margin: 0 auto 18px; }
.srv-card h5 { font-weight: 800; font-size: 0.98rem; margin-bottom: 13px; }
.srv-card p { font-size: 0.84rem; color: #1e293b; line-height: 1.75; margin: 0; }

/* ── PRODUCT SECTION ── */
.product { background: #ffffff; padding: 60px 0; }
.product h2 { font-size: 1.65rem; font-weight: 800; text-align: center; margin-bottom: 40px; }
.prod-item { margin-bottom: 30px; padding-left: 6px; }
.prod-item h5 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.prod-item h5 .dot-icon { width: 10px; height: 10px; border-radius: 50%; background: #000000; flex-shrink: 0; display: inline-block; }
.prod-item p { font-size: 0.88rem; color: #1e293b; line-height: 1.78; padding-left: 16px; }

/* ── DEMO CARD ── */
.demo-card { border-radius: 18px; overflow: hidden; box-shadow: 0 16px 48px rgba(26,86,219,0.15); position: relative; background: var(--dark); }
.demo-card img { width: 100%; height: 250px; object-fit: cover; opacity: 0.8; }
.demo-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.play-btn { width: 54px; height: 54px; border-radius: 50%; background: #000000; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #ffffff; box-shadow: 0 8px 24px rgba(26,86,219,0.5); cursor: pointer; transition: transform 0.3s; }
.play-btn:hover { transform: scale(1.15); }
.demo-label { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.88rem; color: #ffffff; margin-top: 11px; background: rgba(26,86,219,0.85); padding: 4px 16px; border-radius: 20px; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.mini-box { background: var(--light-bg); border: 1px solid #cbd5e1; border-radius: 12px; padding: 14px; text-align: center; }
.mini-box i { font-size: 1.35rem; display: block; margin-bottom: 5px; }
.mini-box .ml { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--dark); }
.mini-box .ms { font-size: 0.72rem; color: #1e293b; }

/* ── HIRE / BOTTOM TEXT SECTIONS ── */
.hire { background: var(--light-bg); padding: 60px 0; }
.hire h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 18px; }
.hire p { font-size: 0.92rem; color: #1e293b; line-height: 1.85; margin-bottom: 14px; }
.bottom-txt { background: var(--light-bg); padding: 50px 0; }
.bottom-txt p { font-size: 0.9rem; color: #1e293b; line-height: 1.85; margin-bottom: 13px; }
.tag-pill { display: inline-block; font-size: 0.74rem; font-weight: 600; padding: 4px 11px; border-radius: 20px; margin: 3px; }
.feat-aside { background: #ffffff; border-radius: 18px; border: 1px solid #cbd5e1; box-shadow: 0 8px 30px rgba(26,86,219,0.07); padding: 26px; text-align: center; }
.feat-aside i { font-size: 3rem; }
.feat-aside .fa-title { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem; margin-top: 12px; }
.feat-aside .fa-sub { font-size: 0.8rem; color: #1e293b; margin-top: 3px; }

/* ── PHONE MOCKUP ── */
.mockup-wrap { position: relative; display: inline-block; }
.circle-deco { position: absolute; border-radius: 50%; opacity: 0.18; }
.mockup-wrap img { position: relative; z-index: 1; width: 100%; max-width: 340px; border-radius: 18px; box-shadow: 0 16px 50px rgba(0,0,0,0.25); }

/* ── PLATFORM CARDS ── */
.platforms-section { padding: 70px 0; background: #ffffff; }
.platform-card { background: #ffffff; border-radius: 20px; border: 1px solid #cbd5e1; padding: 32px 28px; height: 100%; transition: all 0.35s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 2px 16px rgba(0,0,0,0.04); position: relative; overflow: hidden; }
.platform-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--card-color, var(--primary)); border-radius: 20px 0 0 20px; opacity: 0; transition: opacity 0.3s; }
.platform-card:hover { box-shadow: 0 20px 50px rgba(26,86,219,0.12); transform: translateY(-6px); border-color: rgba(26,86,219,0.2); }
.platform-card:hover::before { opacity: 1; }
.platform-card .pc-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; transition: transform 0.3s; }
.platform-card:hover .pc-icon { transform: scale(1.1) rotate(-4deg); }
.platform-card h4 { font-weight: 800; font-size: 1.15rem; margin-bottom: 12px; }
.platform-card p { font-size: 0.9rem; color: #1e293b; line-height: 1.8; margin-bottom: 16px; }
.platform-card .tech-note { font-size: 0.8rem; color: #475569; font-style: italic; border-top: 1px solid #f1f5f9; padding-top: 14px; margin-top: 4px; }
.platform-card .tech-note i { color: var(--primary); margin-right: 4px; }
.platform-card .feature-list { list-style: none; padding: 0; margin: 0 0 16px; }
.platform-card .feature-list li { font-size: 0.85rem; color: #334155; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.platform-card .feature-list li i { font-size: 0.8rem; flex-shrink: 0; }
.platform-card .learn-link { color: var(--primary); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.platform-card .learn-link:hover { gap: 10px; text-decoration: underline; }

/* ── EXPERTISE & APP FEATURE CARDS ── */
.expertise-sec { background: #ffffff; padding: 60px 0; }
.expertise-sec h2 { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 42px; }
.exp-card { background: #ffffff; border-radius: 4px; border: 1px solid #cbd5e1; padding: 36px 24px 30px; height: 100%; transition: all 0.3s; text-align: center; }
.exp-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.08); transform: translateY(-4px); }
.exp-card .ec-icon { font-size: 2.2rem; color: #64748b; margin-bottom: 18px; display: block; }
.exp-card h5 { font-weight: 800; font-size: 0.95rem; margin-bottom: 12px; line-height: 1.35; }
.exp-card p { font-size: 0.83rem; color: #1e293b; line-height: 1.72; margin: 0; }
.app-feat-sec { background: #ffffff; padding: 60px 0; }
.app-feat-sec h2 { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 42px; }
.af-card { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 4px; padding: 28px 22px; height: 100%; transition: all 0.3s; text-align: center; }
.af-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.07); transform: translateY(-4px); }
.af-card h5 { font-weight: 800; font-size: 0.93rem; margin-bottom: 10px; }
.af-card p { font-size: 0.83rem; color: #1e293b; line-height: 1.72; margin: 0; }

/* ── COMPANY SECTION ── */
.company-sec { background: #ffffff; padding: 60px 0; }
.company-sec h2 { font-size: 1.5rem; font-weight: 800; text-align: center; margin-bottom: 22px; }
.company-sec p { font-size: 0.91rem; color: #1e293b; line-height: 1.85; text-align: center; margin-bottom: 12px; }
.company-sec .cta-link { display: inline-block; color: var(--primary); font-weight: 700; font-size: 0.9rem; text-decoration: none; border-bottom: 2px solid rgba(26,86,219,0.35); padding-bottom: 1px; transition: all 0.2s; }
.company-sec .cta-link:hover { border-color: var(--primary); }

/* ── BENEFITS ── */
.benefits-sec { background: var(--light-bg); padding: 60px 0; }
.benefits-sec h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 30px; }
.benefit-block { margin-bottom: 26px; }
.benefit-block h5 { font-size: 0.95rem; font-weight: 700; }
.benefit-block p { font-size: 0.875rem; color: #1e293b; line-height: 1.75; margin: 0; }
.side-stats { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 16px; padding: 28px; position: sticky; top: 20px; }
.side-stats .s-num { font-size: 1.9rem; font-weight: 800; color: var(--primary); }
.side-stats .s-lbl { font-size: 0.82rem; color: #1e293b; font-weight: 500; }
.side-stats .s-row { margin-bottom: 20px; }

/* ── SECURE / KEY INFO ── */
.secure-sec { background: #ffffff; padding: 60px 0; }
.secure-sec h2 { font-size: 1.45rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 22px; }
.secure-list { list-style: none; padding: 0; margin: 0; }
.secure-list li { font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; padding-left: 14px; position: relative; color: var(--dark); }
.secure-list li::before { content: '• '; position: absolute; left: 0; color: var(--primary); }
.keyinfo-sec { padding: 70px 0; text-align: center; border-top: 1px solid #cbd5e1; }
.keyinfo-sec h2 { font-size: 1.9rem; font-weight: 900; text-transform: uppercase; line-height: 1.2; margin-bottom: 20px; }
.keyinfo-sec p { font-size: 0.9rem; color: #1e293b; max-width: 580px; margin: 0 auto; line-height: 1.85; }

/* ── INTRO DESC ── */
.intro-desc { font-size: 0.9rem; color: #1e293b; line-height: 1.8; margin-bottom: 24px; }

/* ── FEAT TITLE ── */
.feat-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 14px; }

/* ── FEAT CARD ── */
.feat-card { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 12px; padding: 28px 24px; height: 100%; }
.feat-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 0.875rem; color: #1e293b; line-height: 1.6; margin: 0; }

/* ── FEATURES SECTION ── */
.features-sec { background: var(--light-bg); padding: 60px 0; }
.features-sec h2 { font-size: 1.9rem; font-weight: 800; text-align: center; margin-bottom: 40px; }

/* ── ABOUT SECTION (ALT) ── */
.about-sec { padding: 60px 0; }
.about-sec h2 { font-size: 1.9rem; font-weight: 800; text-align: center; margin-bottom: 20px; }
.about-sec p { color: #1e293b; font-size: 0.93rem; line-height: 1.8; margin-bottom: 16px; }
.about-sec a { color: var(--primary); text-decoration: none; font-weight: 600; }
.about-sec a:hover { text-decoration: underline; }

/* ── PLAN CARDS ── */
.plan-card { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 14px; padding: 28px 24px; height: 100%; position: relative; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.plan-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.plan-card.popular { background: #000000; border-color: var(--primary); }
.plan-card.popular * { color: #ffffff !important; }
.popular-badge { position: absolute; top: 16px; right: 16px; background: #ffffff; color: var(--primary); font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.plan-icon { width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.plan-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.plan-card p { font-size: 0.86rem; color: #1e293b; line-height: 1.65; margin-bottom: 14px; }
.plan-list { list-style: none; padding: 0; margin: 0; }
.plan-list li { font-size: 0.84rem; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.plan-list li::before { content: '✓'; font-weight: 700; color: var(--primary); flex-shrink: 0; }

/* ── PROVIDER CHIPS ── */
.provider-chip { background: var(--light-bg); border: 1px solid #cbd5e1; border-radius: 8px; padding: 12px 10px; text-align: center; font-size: 0.84rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; justify-content: center; gap: 6px; transition: background 0.2s, border-color 0.2s; }
.provider-chip:hover { background: #ffffff; border-color: var(--primary); color: var(--primary); }

/* ── WHY CARDS ── */
.why-card { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 12px; padding: 24px 22px; height: 100%; transition: box-shadow 0.2s; }
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
.why-icon { width: 46px; height: 46px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.why-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: #1e293b; line-height: 1.65; margin: 0; }

/* ── STEP NUM ── */
.step-num { width: 56px; height: 56px; border-radius: 50%; background: #000000; color: #ffffff; font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto; }

/* ── FAQ (ALT) ── */
.faq-item { border: 1px solid #cbd5e1 !important; border-radius: 10px !important; margin-bottom: 10px; overflow: hidden; }
.faq-btn { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.93rem; background: #ffffff !important; color: var(--dark) !important; box-shadow: none !important; padding: 16px 20px; }
.faq-btn:not(.collapsed) { color: var(--primary) !important; }
.faq-body { font-size: 0.88rem; color: #1e293b; line-height: 1.75; padding: 4px 20px 18px; background: #ffffff; }

/* ── SEO HERO ILLUSTRATION ── */
.seo-hero-img { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-radius: 12px; padding: 30px; position: relative; overflow: hidden; min-height: 260px; display: flex; align-items: center; justify-content: center; }
.seo-badge { position: absolute; top: 20px; right: 20px; background: #fbbf24; color: #000000; font-size: 0.72rem; font-weight: 700; padding: 6px 12px; border-radius: 6px; line-height: 1.4; text-align: center; }
.seo-badge span { display: block; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 130px; }
.bar { border-radius: 4px 4px 0 0; width: 28px; animation: growBar 1s ease forwards; transform-origin: bottom; }
@keyframes growBar { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.arrow-up { position: absolute; bottom: 24px; right: 60px; font-size: 2rem; color: #22c55e; animation: bounce 1.5s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── NO SEO ILLUSTRATION ── */
.no-seo-img { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-radius: 12px; padding: 30px; min-height: 240px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.no-seo-badge { position: absolute; top: 20px; right: 20px; background: #ef4444; color: #ffffff; font-size: 0.72rem; font-weight: 700; padding: 6px 12px; border-radius: 6px; line-height: 1.4; text-align: center; }
.bars-down { display: flex; align-items: flex-end; gap: 8px; height: 120px; }
.bar-d { border-radius: 4px 4px 0 0; width: 28px; }

/* ── CONTENT SECTIONS ── */
.content-sec { padding: 36px 0; }
.content-sec h2 { font-size: 1.55rem; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.content-sec h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; margin-top: 24px; color: var(--dark); }
.content-sec p { font-size: 0.9rem; color: #1e293b; line-height: 1.8; margin-bottom: 14px; }

/* ── SERP MOCKUP ── */
.serp-wrap { position: relative; }
.serp-box { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.serp-topbar { background: #f1f3f4; padding: 8px 12px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid #cbd5e1; }
.serp-search { flex: 1; background: #ffffff; border: 1px solid #cbd5e1; border-radius: 20px; padding: 5px 14px; font-size: 0.78rem; color: #000000; display: flex; align-items: center; justify-content: space-between; }
.serp-tabs { display: flex; gap: 0; border-bottom: 1px solid #cbd5e1; padding: 0 12px; background: #ffffff; }
.serp-tab { font-size: 0.75rem; padding: 8px 12px; color: #000000; border-bottom: 2px solid transparent; cursor: pointer; }
.serp-tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 600; }
.serp-result { padding: 10px 14px; border-bottom: 1px solid #f0f0f0; }
.serp-result .sr-url { font-size: 0.7rem; color: #188038; margin-bottom: 2px; }
.serp-result .sr-title { font-size: 0.82rem; color: #1a0dab; font-weight: 600; margin-bottom: 3px; }
.serp-result .sr-title:hover { text-decoration: underline; }
.serp-result .sr-desc { font-size: 0.75rem; color: #1e293b; line-height: 1.5; }
.serp-badge-yellow { position: absolute; right: -10px; top: 50%; background: #fbbf24; color: #000000; font-size: 0.7rem; font-weight: 700; padding: 8px 12px; border-radius: 6px; line-height: 1.4; text-align: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.red-arrow { position: absolute; right: 40px; bottom: -20px; font-size: 1.8rem; color: #ef4444; }

/* ── HOSTING IMAGE ── */
.hosting-img { max-width: 100%; border-radius: 4px; }

/* ── NAVBAR (SIDEBAR STYLE) ── */
.main-nav { background: #ffffff; border-bottom: 1px solid #cbd5e1; display: flex; align-items: center; }
.nav-brand-col { background: #ffffff; border-right: 1px solid #cbd5e1; padding: 14px 24px; display: flex; align-items: center; gap: 10px; min-width: 180px; }
.brand-logo { width: 36px; height: 36px; background: #000000; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.brand-logo i { color: #ffffff; font-size: 1.1rem; }
.brand-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; line-height: 1; }
.brand-sub { font-size: 0.68rem; color: #1e293b; }
.nav-links-col { flex: 1; display: flex; align-items: center; padding: 0 20px; }
.nav-links-col a { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--dark); text-decoration: none; padding: 18px 16px; display: inline-block; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-links-col a:hover { color: var(--primary); border-bottom-color: var(--primary); }
.nav-links-col .has-dd { position: relative; }
.nav-links-col .has-dd::after { content: ' ▾'; font-size: 0.7rem; }
.bc-sep { color: #334155; margin: 0 6px; font-size: 0.88rem; }

/* ── FOOTER (LIGHT VARIANT) ── */
.footer-main { background: #ffffff; padding: 50px 0 30px; border-top: 1px solid #cbd5e1; }
.footer-main h6 { font-family: 'Outfit', sans-serif; font-weight: 800; margin-bottom: 6px; font-size: 1.05rem; }
.footer-main .f-sub { font-size: 0.82rem; color: #1e293b; margin-bottom: 14px; }
.footer-main p, .footer-main a { font-size: 0.85rem; color: #1e293b; text-decoration: none; }
.footer-main a:hover { color: var(--primary); text-decoration: underline; }
.footer-main .f-contact p { margin-bottom: 6px; }
.f-addr-label { font-weight: 700; font-size: 0.85rem; color: var(--dark); margin-top: 12px; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.social-icons { display: flex; gap: 10px; margin-top: 4px; }
.social-icons a { width: 38px; height: 38px; border-radius: 50%; background: var(--light-bg); color: #000000; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; text-decoration: none; transition: background 0.2s; }
.social-icons a:hover { background: var(--primary); color: #ffffff; }
.country-item { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: #1e293b; }

.footer-links-strip { background: #1e1e2e; padding: 28px 0; }
.footer-links-strip .fls-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px 0; }
.footer-links-strip a { color: #cbd5e1; font-size: 0.75rem; text-decoration: none; padding: 3px 0; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.footer-links-strip a::before { content: '•'; font-size: 0.6rem; color: #818cf8; }
.footer-links-strip a:hover { color: #ffffff; text-decoration: underline; }

.online-badge { position: fixed; bottom: 16px; right: 16px; background: #000000; color: #ffffff; padding: 6px 14px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 16px rgba(26,86,219,0.4); z-index: 999; }
.online-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; }

/* CONSTRUCTION BENEFITS */
.construction-sec { background: var(--light-bg); padding: 60px 0; }
.construction-sec h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 26px; }
.con-list { list-style: none; padding: 0; margin: 0; }
.con-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; margin-bottom: 10px; background: #ffffff; border-radius: 10px; border: 1px solid #e8eef8; font-size: 0.89rem; color: #334155; line-height: 1.7; transition: all 0.22s; }
.con-list li:hover { border-color: rgba(26,86,219,0.2); box-shadow: 0 4px 14px rgba(26,86,219,0.07); }
.con-list li i { color: var(--primary); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* APP WILL BRING SOLUTION */
.app-solution { background: var(--dark); padding: 70px 0; text-align: center; }
.app-solution h2 { color: #ffffff; font-size: 2rem; font-weight: 900; margin-bottom: 20px; }
.app-solution p { color: #cbd5e1; font-size: 0.93rem; line-height: 1.85; max-width: 700px; margin: 0 auto; }

/* ── SOCIAL ILLUSTRATION ── */
.social-hero { background: radial-gradient(ellipse at center, #e8f4ff 0%, #f0e8ff 50%, #fff5e8 100%); border-radius: 16px; padding: 40px 20px; display: flex; align-items: center; justify-content: center; min-height: 300px; position: relative; overflow: hidden; }
.social-icons-float { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.si-bubble { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 18px rgba(0,0,0,0.15); animation: floatBubble 3s ease-in-out infinite; }
.si-bubble:nth-child(2) { animation-delay: 0.4s; }
.si-bubble:nth-child(3) { animation-delay: 0.8s; }
.si-bubble:nth-child(4) { animation-delay: 1.2s; }
.si-bubble:nth-child(5) { animation-delay: 1.6s; }
.si-bubble:nth-child(6) { animation-delay: 2s; }
.si-bubble:nth-child(7) { animation-delay: 2.4s; }
@keyframes floatBubble { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── PLATFORM TABS ── */
.platform-tab { cursor: pointer; padding: 12px 20px; border-radius: 8px; transition: background 0.2s; }
.platform-tab:hover { background: var(--light-bg); }
.platform-tab.active { background: #000000; color: #ffffff; }
.platform-tab.active h6 { color: #ffffff; }
.platform-tab.active p { color: #e2e8f0; }
.platform-tab h6 { font-size: 0.93rem; font-weight: 700; margin-bottom: 4px; }
.platform-tab p { font-size: 0.82rem; color: #1e293b; margin: 0; }
.tab-content-panel { display: none; }
.tab-content-panel.active { display: block; }

/* ── RESULT CARDS ── */
.result-card { background: linear-gradient(135deg, var(--primary) 0%, #0a58ca 100%); border-radius: 14px; padding: 28px 20px; color: #ffffff; text-align: center; }
.result-num { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; }
.result-lbl { font-size: 0.82rem; opacity: 0.9; margin-top: 4px; font-weight: 500; }

/* ── TESTIMONIAL (ALT) ── */
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.testi-role { font-size: 0.8rem; color: #334155; }

/* ── FOOTER SOCIAL (ALT) ── */
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: var(--light-bg); color: #000000; display: inline-flex; align-items: center; justify-content: center; font-size: 1.05rem; text-decoration: none; transition: background 0.2s; margin-right: 6px; }
.footer-social a:hover { background: var(--primary); color: #ffffff; }
.fls-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px 0; }

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 768px) {
  .nav-brand-col { min-width: auto; }
  .nav-links-col { display: none; }
  .footer-links-strip .fls-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero { padding: 40px 0 30px; }
  .section-title { font-size: 1.6rem; }
  .stat-box .snum { font-size: 2rem; }
  .hero-stat-pill { padding: 5px 12px; }
  .hero-stat-pill .icon { width: 28px; height: 28px; font-size: 0.8rem; }
  .footer-seo .col-md-4 { margin-bottom: 10px; }
  .footer-seo a { display: inline-block; margin: 3px; }
  .form-card { padding: 25px 20px; }
  .mv-card { padding: 25px 20px; }
  .timeline { padding-left: 25px; }
}

@media (min-width: 481px) and (max-width: 768px) {
  .sm { display: block; }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .md { display: block; }
  .service-icon-card {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    min-height: 156px !important;
    text-align: center;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .lg { display: block; }
  .service-icon-card {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    min-height: 156px !important;
    text-align: center;
  }
}