/* ==========================================================================
   EXPLORE IT - Modern Enterprise Design System & Bootstrap 5 Customizations
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Palette */
  --primary-navy: #0b132b;
  --primary-blue: #1c64f2;
  --primary-blue-hover: #1a56db;
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #e0f2fe;
  --accent-indigo: #4f46e5;
  --accent-emerald: #10b981;
  --slate-dark: #0f172a;
  --slate-body: #334155;
  --slate-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-card: #ffffff;

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* UI Tokens */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -8px rgba(15, 23, 42, 0.06);
  --shadow-hover: 0 25px 50px -12px rgba(28, 100, 242, 0.22);

  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
body {
  font-family: var(--font-body);
  color: var(--slate-body);
  background-color: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
  font-family: var(--font-heading);
  color: var(--slate-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Glassmorphism Top Navbar */
.navbar-custom {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-normal);
  padding: 12px 0;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar-logo-img {
  height: 48px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.navbar-custom.scrolled .navbar-logo-img {
  height: 40px;
  max-height: 40px;
}

.brand-icon-box {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(28, 100, 242, 0.3);
}

.brand-text-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-text-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-body) !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue) !important;
  background: rgba(28, 100, 242, 0.06);
}

/* Hero Section */
.hero-wrapper {
  position: relative;
  background-color: #011736;
  background-image: linear-gradient(90deg, #011736 0%, rgba(1, 23, 54, 0.95) 45%, rgba(1, 23, 54, 0.5) 65%, rgba(1, 23, 54, 0) 85%), url('../images/home_hero_bg.webp');
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, cover;
  color: #ffffff;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-content-col {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #38bdf8;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.2rem;
  color: #94a3b8;
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 36px;
}

/* Feature Cards & Glass Panels in Hero */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-normal);
}

.hero-glass-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 500;
  margin-top: 4px;
}

/* Section Header */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-blue);
  background: rgba(28, 100, 242, 0.08);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-muted);
  max-width: 680px;
}

/* Why Partners Trust Explore IT Section */
.why-trust-section {
  background-color: #f8fafc;
  padding: 50px 0 55px;
}

.why-trust-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.why-trust-card {
  background: #ffffff;
  border: 1px solid #d8dde6;
  border-radius: 14px;
  padding: 38px 24px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.16), 0 8px 16px -6px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.why-trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px -6px rgba(0, 0, 0, 0.22), 0 10px 20px -6px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.trust-card-icon-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
}

.trust-card-text {
  font-size: 0.93rem;
  line-height: 1.55;
  color: #334155;
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .hero-wrapper {
    padding: 95px 0 50px;
  }

  .why-trust-section {
    padding: 35px 0 40px;
  }

  .why-trust-title {
    font-size: 1.85rem;
  }

  .why-trust-card {
    padding: 28px 18px;
  }
}

/* Partner Brand Cards & Grid */
.partner-card {
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
  opacity: 0;
  transition: var(--transition-fast);
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.partner-card:hover::before {
  opacity: 1;
}

.partner-logo-wrapper {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
  padding: 4px;
}

.partner-logo-wrapper img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-fast);
}

.partner-card:hover .partner-logo-wrapper img {
  transform: scale(1.08);
}

/* Quick Brand Item in Products page */
.quick-brand-item {
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--slate-dark);
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.quick-brand-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.quick-brand-item img {
  max-height: 40px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

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

/* Vendor Showcase Card Logo Box */
.vendor-showcase-logo {
  height: 65px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.vendor-showcase-logo img {
  max-height: 55px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.partner-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.partner-category {
  font-size: 0.8rem;
  color: var(--slate-muted);
  font-weight: 500;
}

/* Solution / Product Cards */
.solution-card {
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: #93c5fd;
}

.solution-img-box {
  position: relative;
  height: 220px;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.solution-img-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition-normal);
}

.solution-card:hover .solution-img-box img {
  transform: scale(1.06);
}

.solution-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.solution-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.solution-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.solution-text {
  font-size: 0.92rem;
  color: var(--slate-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.feature-list li {
  font-size: 0.85rem;
  color: var(--slate-body);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.feature-list li i {
  color: var(--accent-emerald);
  font-size: 0.8rem;
}

/* Feature Grid Section */
.feature-box {
  background: var(--bg-card);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  transition: var(--transition-normal);
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(28, 100, 242, 0.1);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* CTA Banner Section */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: radial-gradient(circle, rgba(28, 100, 242, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* Custom Buttons */
.btn-primary-custom {
  background: var(--primary-blue);
  color: #ffffff;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(28, 100, 242, 0.35);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: var(--primary-blue-hover);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(28, 100, 242, 0.45);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* ==========================================================================
   Modern Footer (Matching Reference Design)
   ========================================================================== */
.footer-wrapper {
  background: #111a33;
  color: #94a3b8;
  padding: 45px 0 25px;
  font-size: 0.9rem;
}

/* Top Brands Auto-sliding Marquee Strip */
.footer-brands-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  padding: 8px 0;
}

.footer-brands-marquee-track {
  display: flex;
  width: max-content;
  animation: footerMarqueeScroll 42s linear infinite;
  will-change: transform;
}

.footer-brands-marquee-wrap:hover .footer-brands-marquee-track {
  animation-play-state: paused;
}

.footer-brands-group {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
}

.footer-brand-logo-item {
  width: 155px;
  min-width: 155px;
  height: 56px;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  flex-shrink: 0;
}

.footer-brand-logo-item:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26);
}

.footer-brand-logo-item img {
  max-height: 30px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: none;
}

@keyframes footerMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Column 1: Brand Info */
.footer-brand-block {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-company-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.footer-company-sub {
  color: #cbd5e1;
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.footer-regions-text {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  flex-wrap: wrap;
}

.footer-link-email {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  margin-right: 6px;
  transition: color 0.2s ease;
}

.footer-link-email:hover {
  color: #38bdf8;
}

.footer-link-desc {
  color: #cbd5e1;
}

/* Circular Icons */
.footer-icon-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #cbd5e1;
  font-size: 0.75rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-icon-circle.circle-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  font-size: 0.88rem;
}

.footer-icon-circle.circle-phone {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #cbd5e1;
}

/* Headings */
.footer-col-heading {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

/* Quick Links List */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-links-list li a:hover {
  color: #38bdf8;
  padding-left: 3px;
}

/* Column 3: Locations List */
.footer-locations-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-location-entry {
  display: flex;
  flex-direction: column;
}

.footer-country-name {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-country-contact {
  display: flex;
  align-items: center;
}

.footer-country-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-country-link:hover {
  color: #ffffff;
}

/* Column 4: Follow Us & Support Desk */
.footer-social-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social-btn.btn-linkedin {
  border: 1.5px solid #0077b5;
  background: rgba(0, 119, 181, 0.15);
  color: #00a0dc;
}

.footer-social-btn.btn-linkedin:hover {
  background: #0077b5;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social-btn.btn-facebook {
  border: 1.5px solid #1877f2;
  background: rgba(24, 119, 242, 0.15);
  color: #1877f2;
}

.footer-social-btn.btn-facebook:hover {
  background: #1877f2;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-support-desc {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.45;
  max-width: 250px;
}

.btn-support-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-support-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #64748b;
}

/* Base HTML / Body Viewport Fix */
html {
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Image & Media Fluid Constraints */
img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

/* Responsive Action Buttons Container */
.nav-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics-row {
  margin-top: 24px;
  padding-top: 12px;
}

/* Orange Partner CTA Buttons */
.btn-orange-custom {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 26px;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-orange-custom:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.55);
  transform: translateY(-2px);
}

.btn-orange-sm {
  padding: 8px 18px;
  font-size: 0.88rem;
}

/* Subpage Hero Header */
.page-hero-wrapper {
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 60%, #0f172a 100%);
  color: #ffffff;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-hero-wrapper::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(28, 100, 242, 0.15) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

/* Bottom Border Wave */
.hero-bottom-wave {
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-bottom-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 75px;
  vertical-align: bottom;
}

@media (min-width: 2560px) {
  .hero-bottom-wave svg {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .hero-bottom-wave svg {
    height: 40px;
  }
}

/* Intro Strip Styling */
.intro-strip-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  color: #f8fafc;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.intro-strip-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f97316, #1c64f2);
}

/* Availability Strip Styling */
.availability-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.availability-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.status-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Interactive Footprint Map Visual */
.footprint-container {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 0;
  color: var(--slate-dark);
  position: relative;
}

.office-hub-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: var(--transition-normal);
  height: 100%;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.office-hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-blue);
  transition: var(--transition-fast);
}

.office-hub-card.card-accent-orange {
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.3) 0%, #ffffff 45%);
  border-color: rgba(245, 158, 11, 0.3);
}

.office-hub-card.card-accent-orange::before {
  background: linear-gradient(90deg, #f59e0b, #ea580c);
}

.office-hub-card.card-accent-orange:hover {
  border-color: #f59e0b;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.18);
}

.office-hub-card.card-accent-blue {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.35) 0%, #ffffff 45%);
  border-color: rgba(28, 100, 242, 0.25);
}

.office-hub-card.card-accent-blue::before {
  background: linear-gradient(90deg, #1c64f2, #06b6d4);
}

.office-hub-card.card-accent-blue:hover {
  border-color: #1c64f2;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(28, 100, 242, 0.18);
}

.office-hub-card.card-accent-green {
  background: linear-gradient(180deg, rgba(209, 250, 229, 0.35) 0%, #ffffff 45%);
  border-color: rgba(16, 185, 129, 0.3);
}

.office-hub-card.card-accent-green::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.office-hub-card.card-accent-green:hover {
  border-color: #10b981;
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.18);
}

.office-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.office-icon-orange {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.office-icon-blue {
  background: linear-gradient(135deg, #1c64f2, #06b6d4);
}

.office-icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.market-pill {
  background: rgba(28, 100, 242, 0.08);
  border: 1px solid rgba(28, 100, 242, 0.2);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.market-pill:hover {
  background: rgba(28, 100, 242, 0.15);
  border-color: var(--primary-blue);
}

/* Value Badges Card */
.value-badge-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

.value-badge-card:hover {
  border-color: #f97316;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.value-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(28, 100, 242, 0.12));
  color: #f97316;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px;
}

/* Mission & Vision Card */
.mv-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: var(--transition-fast);
}

.mv-card:hover {
  box-shadow: var(--shadow-md);
}

.mv-img-box {
  height: 180px;
  overflow: hidden;
  position: relative;
}

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

/* Orange Accent Highlights */
.text-orange-accent {
  color: #ea580c !important;
}

.badge-orange-subtle {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
  border: 1px solid rgba(249, 115, 22, 0.25);
}

/* Logo Carousel Styling (Swipe Left & Right) */
.brand-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.brand-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 8px 28px 8px;
}

.brand-carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-brand-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  height: 115px;
}

.carousel-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -4px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.carousel-brand-img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-brand-img-wrap img {
  max-height: 48px;
  max-width: 145px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.carousel-brand-card:hover .carousel-brand-img-wrap img {
  transform: scale(1.05);
}

.brand-nav-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.carousel-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.carousel-nav-btn:hover {
  background: #ffffff;
  color: #0f172a;
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.brand-carousel-subtitle {
  max-width: 100% !important;
  font-size: 0.98rem;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .brand-carousel-subtitle {
    white-space: nowrap;
    font-size: 1rem;
  }
}

/* ==========================================================================
   Technology Portfolio Grid (6 Outcome Cards)
   ========================================================================== */
.tech-portfolio-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.07), 0 4px 10px -2px rgba(0, 0, 0, 0.03);
}

.tech-portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px -4px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.tech-portfolio-img-wrap {
  position: relative;
  width: 100%;
  height: 175px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #0f172a;
}

.tech-portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tech-portfolio-card:hover .tech-portfolio-img-wrap img {
  transform: scale(1.05);
}

.tech-portfolio-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #0b132b;
  color: #ffffff;
  border: 1.5px solid #3b82f6;
  border-radius: 50px;
  padding: 4px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.tech-portfolio-body {
  padding: 0 6px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tech-portfolio-body p {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.58;
  margin-bottom: 14px;
}

.tech-portfolio-body p:last-child {
  margin-bottom: 0;
}


/* Tech Hero Visual Graphic */
.tech-global-visual {
  background: radial-gradient(circle at center, rgba(28, 100, 242, 0.15) 0%, rgba(11, 19, 43, 0.9) 70%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tech-globe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Auth & Legal Pages */
.auth-page-section {
  padding-top: 130px;
  padding-bottom: 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.terms-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.terms-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--slate-dark);
}

.terms-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.terms-card li {
  margin-bottom: 8px;
  color: var(--slate-body);
  font-size: 0.92rem;
}

.legal-content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--slate-dark);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--slate-body);
  line-height: 1.6;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE SYSTEM (TABLET & MOBILE)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Breakpoint: max-width 991.98px (Tablets & Mobile Dropdown)
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 10px 0;
  }

  .navbar-logo-img {
    height: 42px;
    max-height: 42px;
  }

  .navbar-toggler {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    cursor: pointer !important;
    position: relative;
    z-index: 1050;
    transition: var(--transition-fast);
  }

  .navbar-toggler * {
    pointer-events: none !important;
  }

  .navbar-toggler:focus,
  .navbar-toggler:active {
    box-shadow: 0 0 0 3px rgba(28, 100, 242, 0.15) !important;
  }

  .navbar-collapse {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
    border: 1px solid #e2e8f0;
    margin-top: 12px;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }

  .navbar-nav {
    gap: 2px;
    margin-bottom: 0 !important;
  }

  .nav-link {
    padding: 10px 14px !important;
    font-size: 0.98rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2px;
    display: block;
  }

  .nav-action-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
  }

  .nav-action-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  /* Hero & Headings on Tablet */
  .hero-wrapper {
    padding: 110px 0 60px;
    background-image: linear-gradient(180deg, rgba(1, 23, 54, 0.92) 0%, rgba(1, 23, 54, 0.85) 100%), url('../images/home_hero_bg.webp');
    background-position: center center, center center;
    background-size: 100% 100%, cover;
  }

  .page-hero-wrapper {
    padding: 105px 0 50px;
  }

  .hero-title {
    font-size: 2.6rem;
    line-height: 1.2;
  }

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

  .hero-lead {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }
}

/* --------------------------------------------------------------------------
   2. Breakpoint: max-width 767.98px (Standard Mobile & Phablets)
   -------------------------------------------------------------------------- */
@media (max-width: 767.98px) {

  /* Layout Spacers */
  .hero-wrapper {
    padding: 95px 0 45px;
  }

  .page-hero-wrapper {
    padding: 90px 0 40px;
  }

  .hero-wrapper::before,
  .hero-wrapper::after,
  .page-hero-wrapper::before {
    display: none;
    /* remove heavy blur background blobs on mobile for performance */
  }

  /* Typography */
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.22;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .section-desc {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 5px 14px;
    margin-bottom: 16px;
  }

  /* Action Buttons */
  .hero-action-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-action-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.98rem;
  }

  /* Hero Stats */
  .hero-metrics-row {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  /* Brands Carousel */
  .brand-nav-controls {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 14px;
  }

  .brand-carousel-track {
    gap: 14px;
    padding: 8px 4px 22px 4px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .carousel-brand-card {
    flex: 0 0 165px;
    min-width: 165px;
    height: 95px;
    padding: 14px 12px;
    scroll-snap-align: start;
  }

  .carousel-brand-img-wrap img {
    max-height: 38px;
    max-width: 120px;
  }

  .carousel-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  /* Categorized Portfolio */
  .category-portfolio-section {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

  .portfolio-cat-card {
    padding: 16px 14px;
  }

  .portfolio-cat-title {
    font-size: 1.05rem;
  }

  .brand-pill-tag {
    font-size: 0.78rem;
    padding: 4px 10px;
  }

  /* Cards & Boxes */
  .feature-box {
    padding: 22px 18px;
    border-radius: var(--radius-md);
  }

  .feature-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .solution-img-box {
    height: 180px;
    padding: 14px;
  }

  .solution-body {
    padding: 18px 16px;
  }

  .solution-title {
    font-size: 1.15rem;
  }

  .solution-text {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .quick-brand-item {
    padding: 12px 8px;
    border-radius: 10px;
  }

  .quick-brand-item img {
    max-height: 32px;
    max-width: 95px;
    margin-bottom: 6px;
  }

  .quick-brand-item .small {
    font-size: 0.78rem;
  }

  .vendor-showcase-logo {
    height: 48px;
    margin-bottom: 12px;
  }

  .vendor-showcase-logo img {
    max-height: 40px;
    max-width: 160px;
  }

  /* CTA Banner Band */
  .cta-banner {
    padding: 28px 18px !important;
    border-radius: var(--radius-lg);
    border-left-width: 4px !important;
  }

  .cta-banner h2 {
    font-size: 1.55rem !important;
    line-height: 1.25;
  }

  .cta-banner p {
    font-size: 0.95rem !important;
    line-height: 1.5;
  }

  .cta-banner .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 1rem !important;
    padding: 12px 20px !important;
    margin-top: 14px;
  }

  /* Footprint Map & Office Cards */
  .office-hub-card {
    padding: 18px 16px;
    border-radius: var(--radius-md);
  }

  .office-hub-card h4 {
    font-size: 1.1rem;
  }

  .market-pill {
    padding: 4px 10px;
    font-size: 0.78rem;
    gap: 4px;
  }

  .value-badge-card {
    padding: 18px 12px;
  }

  .value-badge-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .value-badge-card h5 {
    font-size: 0.92rem;
  }

  /* Footer on Mobile */
  .footer-wrapper {
    padding: 35px 0 20px;
  }

  .footer-brands-marquee-wrap {
    margin-bottom: 25px;
  }

  .footer-brand-logo-item {
    width: 125px;
    min-width: 125px;
    height: 46px;
    border-radius: 10px;
    padding: 6px 12px;
  }

  .footer-brand-logo-item img {
    max-height: 24px;
    max-width: 95px;
  }

  .footer-brands-group {
    gap: 12px;
    padding-right: 12px;
  }

  .footer-col-heading {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }

  .footer-social-group {
    gap: 8px;
  }

  .footer-social-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .btn-support-pill {
    padding: 7px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
    display: inline-flex;
  }

  .footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
  }

  /* Form & Auth adjustments */
  .card.rounded-4 {
    border-radius: var(--radius-md) !important;
  }
}

/* --------------------------------------------------------------------------
   3. Breakpoint: max-width 575.98px (Portrait Phones)
   -------------------------------------------------------------------------- */
@media (max-width: 575.98px) {
  .navbar-logo-img {
    height: 36px;
    max-height: 36px;
  }

  .hero-wrapper {
    padding: 85px 0 35px;
  }

  .page-hero-wrapper {
    padding: 80px 0 30px;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.2;
  }

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

  .stat-number {
    font-size: 1.55rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .carousel-brand-card {
    flex: 0 0 145px;
    min-width: 145px;
    height: 120px;
    padding: 10px 8px;
  }

  .carousel-brand-img-wrap img {
    max-height: 36px;
    max-width: 100px;
  }

  .footer-brand-logo-item {
    width: 110px;
    min-width: 110px;
    height: 42px;
    padding: 4px 8px;
  }

  .footer-brand-logo-item img {
    max-height: 20px;
    max-width: 80px;
  }
}

/* --------------------------------------------------------------------------
   4. Breakpoint: max-width 380px (Extra Small Phones / iPhone SE)
   -------------------------------------------------------------------------- */
@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem;
  }

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

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .carousel-brand-card {
    flex: 0 0 135px;
    min-width: 135px;
    height: 115px;
  }

  .btn-orange-custom,
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   PDF DESIGN SYSTEM COMPLIANT STYLES
   ========================================================================== */

/* Modern Pill Buttons */
.btn-orange-pill {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-orange-pill:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}

.btn-navy-pill {
  background: #0f172a;
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 24px;
  border-radius: 50px;
  border: 1px solid #1e293b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-navy-pill:hover {
  background: #1e293b;
  color: #38bdf8 !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  transform: translateY(-2px);
}

.btn-blue-pill {
  background: linear-gradient(135deg, #1c64f2 0%, #06b6d4 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 14px rgba(28, 100, 242, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-blue-pill:hover {
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(28, 100, 242, 0.45);
  transform: translateY(-2px);
}

/* Light Tech Hero Background (matches PDF pages) */
.hero-pdf-light {
  background: linear-gradient(145deg, #eef6fc 0%, #f4f9fd 45%, #ffffff 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.hero-pdf-light::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(249, 115, 22, 0.08) 50%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Dark Hero variant */
.hero-pdf-dark {
  background: linear-gradient(135deg, #0b132b 0%, #1c2541 60%, #0f172a 100%);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Solution Grid Card (Page 4) */
.solution-card-pdf {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.28s ease;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.solution-card-pdf::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1c64f2 0%, #f97316 100%);
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.solution-card-pdf:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.solution-card-pdf:hover::before {
  opacity: 1;
  height: 5px;
}

.solution-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(28, 100, 242, 0.08);
  color: #1c64f2;
  margin-bottom: 18px;
}

.solution-card-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.35;
}

.solution-card-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
}

.solution-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  font-size: 0.86rem;
  color: #334155;
}

.solution-card-bullets li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.45;
}

.solution-card-bullets li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.solution-brand-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.solution-brand-tag {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Resources Page Cards (Page 5) */
.download-card-pdf {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.download-card-pdf:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

.download-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(28, 100, 242, 0.1), rgba(249, 115, 22, 0.1));
  color: #1c64f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.resource-media-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.resource-media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.resource-media-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f8fafc;
}

.resource-media-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Contact Page Direct Enquiry Cards (Page 6) */
.direct-enquiry-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.direct-enquiry-card:hover {
  background: #f8fafc;
  border-color: #1c64f2;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(28, 100, 242, 0.12);
}

.direct-enquiry-info h6 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.direct-enquiry-info span {
  font-size: 0.85rem;
  color: #64748b;
}

.direct-enquiry-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(28, 100, 242, 0.1);
  color: #1c64f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

/* ==========================================================================
   ULTRA-HIGH DEFINITION & 4K DISPLAY RESPONSIVE SYSTEM (1400px, 1600px, 1920px, 2560px, 3840px)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Breakpoint: min-width 1400px (Large Desktops & Full HD Laptops)
   -------------------------------------------------------------------------- */
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1360px;
  }

  .hero-wrapper {
    background-image: linear-gradient(90deg, #011736 0%, #011736 36%, rgba(1, 23, 54, 0.85) 54%, rgba(1, 23, 54, 0) 74%), url('../images/home_hero_bg.webp');
    background-position: left center, right center;
    background-size: 100% 100%, auto 100%;
    background-repeat: no-repeat, no-repeat;
  }
}

/* --------------------------------------------------------------------------
   2. Breakpoint: min-width 1600px (Wide Desktops & High-DPI Monitors)
   -------------------------------------------------------------------------- */
@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1520px;
  }

  .hero-wrapper {
    padding: 140px 0 95px;
    background-image: linear-gradient(90deg, #011736 0%, #011736 38%, rgba(1, 23, 54, 0.85) 56%, rgba(1, 23, 54, 0) 76%), url('../images/home_hero_bg.webp');
    background-position: left center, right center;
    background-size: 100% 100%, auto 100%;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-content-col {
    max-width: 820px;
  }

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

  .hero-lead {
    font-size: 1.25rem;
    max-width: 700px;
  }

  .carousel-brand-card {
    flex: 0 0 calc(20% - 16px);
    min-width: 230px;
  }

  .tech-portfolio-img-wrap {
    height: 200px;
  }
}

/* --------------------------------------------------------------------------
   3. Breakpoint: min-width 1920px (QHD 1080p Desktop / 2K Ultrawide Monitors)
   -------------------------------------------------------------------------- */
@media (min-width: 1920px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1760px;
  }

  /* Navbar */
  .navbar-custom {
    padding: 16px 0;
  }

  .navbar-logo-img {
    height: 56px;
    max-height: 56px;
  }

  .navbar-custom.scrolled .navbar-logo-img {
    height: 46px;
    max-height: 46px;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 10px 18px !important;
  }

  .btn-orange-custom,
  .btn-primary-custom,
  .btn-outline-custom {
    font-size: 1.05rem;
    padding: 13px 28px;
  }

  .btn-orange-sm {
    font-size: 0.95rem;
    padding: 10px 22px;
  }

  /* Hero Section */
  .hero-wrapper {
    padding: 165px 0 115px;
    min-height: 680px;
    background-image: linear-gradient(90deg, #011736 0%, #011736 40%, rgba(1, 23, 54, 0.85) 58%, rgba(1, 23, 54, 0) 78%), url('../images/home_hero_bg.webp');
    background-position: left center, right center;
    background-size: 100% 100%, auto 100%;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-content-col {
    max-width: 940px;
  }

  .hero-title {
    font-size: 4.2rem;
    line-height: 1.15;
    margin-bottom: 26px;
  }

  .hero-lead {
    font-size: 1.32rem;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 0.95rem;
    padding: 8px 20px;
    margin-bottom: 26px;
  }

  .hero-action-buttons {
    gap: 16px;
  }

  .hero-action-buttons .btn {
    font-size: 1.12rem;
    padding: 14px 30px;
  }

  .hero-metrics-row {
    margin-top: 36px;
    padding-top: 18px;
  }

  .stat-number {
    font-size: 2.7rem;
  }

  .stat-label {
    font-size: 1rem;
    margin-top: 6px;
  }

  /* Why Partners Trust Explore IT */
  .why-trust-section {
    padding: 70px 0 75px;
  }

  .why-trust-title {
    font-size: 2.75rem;
  }

  .why-trust-card {
    padding: 46px 28px 40px;
    border-radius: 18px;
  }

  .trust-card-icon-wrap {
    height: 76px;
    margin-bottom: 24px;
  }

  .trust-card-icon-wrap svg {
    width: 70px;
    height: 70px;
  }

  .trust-card-title {
    font-size: 1.35rem;
    margin-bottom: 18px;
  }

  .trust-card-text {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  /* Brands Carousel */
  .section-title {
    font-size: 2.9rem;
  }

  .section-desc {
    font-size: 1.25rem;
    max-width: 820px;
  }

  .brand-carousel-subtitle {
    font-size: 1.15rem;
  }

  .brand-carousel-track {
    gap: 24px;
    padding: 16px 8px 32px 8px;
  }

  .carousel-brand-card {
    flex: 0 0 calc(16.666% - 20px);
    min-width: 250px;
    height: 135px;
    border-radius: 16px;
    padding: 26px 22px;
  }

  .carousel-brand-img-wrap img {
    max-height: 56px;
    max-width: 175px;
  }

  .carousel-nav-btn {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }

  /* Technology Portfolio */
  .tech-portfolio-card {
    padding: 22px;
    border-radius: 20px;
  }

  .tech-portfolio-img-wrap {
    height: 235px;
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .tech-portfolio-badge {
    font-size: 1.05rem;
    padding: 6px 34px;
    top: 14px;
  }

  .tech-portfolio-body p {
    font-size: 1.02rem;
    line-height: 1.62;
    margin-bottom: 16px;
  }

  .btn-blue-pill {
    font-size: 1.08rem;
    padding: 13px 30px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 60px 48px;
    border-radius: 30px;
  }

  .cta-banner h2 {
    font-size: 2.8rem;
  }

  .cta-banner p {
    font-size: 1.35rem;
  }

  .cta-banner .btn {
    font-size: 1.2rem;
    padding: 16px 36px;
  }

  /* Footer */
  .footer-wrapper {
    padding: 65px 0 35px;
    font-size: 1.02rem;
  }

  .footer-brands-marquee-wrap {
    margin-bottom: 55px;
  }

  .footer-brand-logo-item {
    width: 185px;
    min-width: 185px;
    height: 68px;
    border-radius: 14px;
    padding: 12px 20px;
  }

  .footer-brand-logo-item img {
    max-height: 38px;
    max-width: 140px;
  }

  .footer-brands-group {
    gap: 20px;
    padding-right: 20px;
  }

  .footer-brand-logo {
    height: 58px;
  }

  .footer-company-title {
    font-size: 1.32rem;
  }

  .footer-company-sub {
    font-size: 1rem;
  }

  .footer-regions-text {
    font-size: 1.02rem;
  }

  .footer-contact-item {
    font-size: 1.02rem;
  }

  .footer-icon-circle {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .footer-icon-circle.circle-whatsapp {
    font-size: 1.05rem;
  }

  .footer-col-heading {
    font-size: 1.32rem;
    margin-bottom: 22px;
  }

  .footer-links-list li a {
    font-size: 1.05rem;
  }

  .footer-country-name {
    font-size: 1.05rem;
  }

  .footer-country-link {
    font-size: 1.02rem;
  }

  .footer-social-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .footer-support-desc {
    font-size: 0.98rem;
    max-width: 320px;
  }

  .btn-support-pill {
    padding: 11px 28px;
    font-size: 1.02rem;
  }

  .footer-bottom {
    font-size: 0.98rem;
    margin-top: 50px;
    padding-top: 25px;
  }

  /* Subpage Heros & Universal Cards */
  .page-hero-wrapper,
  .about-hero-section,
  .solutions-hero-section,
  .products-hero-section,
  .resources-hero-section,
  .contact-hero-section,
  .hero-pdf-light,
  .hero-pdf-dark {
    padding: 155px 0 90px;
    min-height: 520px;
  }

  .about-hero-title,
  .solutions-hero-title,
  .products-hero-title,
  .resources-hero-title,
  .contact-hero-title {
    font-size: 4rem;
  }

  .about-hero-desc,
  .solutions-hero-desc,
  .products-hero-desc,
  .resources-hero-desc,
  .contact-hero-desc {
    font-size: 1.35rem;
    max-width: 750px;
  }

  .solution-card-pdf,
  .download-card-pdf,
  .resource-media-card,
  .terms-card,
  .office-hub-card,
  .value-badge-card {
    padding: 34px 28px;
    border-radius: 20px;
  }

  .solution-card-icon,
  .download-card-icon,
  .value-badge-icon {
    width: 62px;
    height: 62px;
    font-size: 1.6rem;
    border-radius: 16px;
  }

  .solution-card-title {
    font-size: 1.35rem;
  }

  .solution-card-desc,
  .terms-card li,
  .solution-card-bullets li {
    font-size: 1.02rem;
  }

  .resource-media-img {
    height: 235px;
  }

  .btn-become-partner-pill,
  .btn-contact-talk {
    font-size: 1.25rem;
    padding: 15px 36px;
  }
}

/* --------------------------------------------------------------------------
   4. Breakpoint: min-width 2560px (2.5K / Quad HD / High-DPI Desktop)
   -------------------------------------------------------------------------- */
@media (min-width: 2560px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 2320px;
  }

  /* Navbar */
  .navbar-custom {
    padding: 22px 0;
  }

  .navbar-logo-img {
    height: 70px;
    max-height: 70px;
  }

  .navbar-custom.scrolled .navbar-logo-img {
    height: 58px;
    max-height: 58px;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 12px 24px !important;
    border-radius: 12px;
  }

  .btn-orange-custom,
  .btn-primary-custom,
  .btn-outline-custom {
    font-size: 1.22rem;
    padding: 15px 34px;
    border-radius: 50px;
  }

  .btn-orange-sm {
    font-size: 1.12rem;
    padding: 12px 26px;
  }

  /* Hero Section */
  .hero-wrapper {
    padding: 215px 0 155px;
    min-height: 850px;
    background-image: linear-gradient(90deg, #011736 0%, #011736 42%, rgba(1, 23, 54, 0.85) 60%, rgba(1, 23, 54, 0) 80%), url('../images/home_hero_bg.webp');
    background-position: left center, right center;
    background-size: 100% 100%, auto 100%;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-content-col {
    max-width: 1220px;
  }

  .hero-title {
    font-size: 5.2rem;
    line-height: 1.15;
    margin-bottom: 34px;
  }

  .hero-lead {
    font-size: 1.65rem;
    max-width: 1050px;
    margin-bottom: 54px;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 1.15rem;
    padding: 10px 24px;
    margin-bottom: 32px;
  }

  .hero-action-buttons {
    gap: 20px;
  }

  .hero-action-buttons .btn {
    font-size: 1.38rem;
    padding: 18px 38px;
    border-radius: 14px;
  }

  .hero-metrics-row {
    margin-top: 48px;
    padding-top: 26px;
  }

  .stat-number {
    font-size: 3.6rem;
  }

  .stat-label {
    font-size: 1.3rem;
    margin-top: 6px;
  }

  /* Why Partners Trust Explore IT */
  .why-trust-section {
    padding: 95px 0 100px;
  }

  .why-trust-title {
    font-size: 3.5rem;
  }

  .why-trust-card {
    padding: 58px 36px 50px;
    border-radius: 22px;
  }

  .trust-card-icon-wrap {
    height: 96px;
    margin-bottom: 30px;
  }

  .trust-card-icon-wrap svg {
    width: 88px;
    height: 88px;
  }

  .trust-card-title {
    font-size: 1.65rem;
    margin-bottom: 22px;
  }

  .trust-card-text {
    font-size: 1.25rem;
    line-height: 1.65;
  }

  /* Brands Carousel */
  .section-title {
    font-size: 3.6rem;
  }

  .section-desc {
    font-size: 1.55rem;
    max-width: 1050px;
  }

  .brand-carousel-subtitle {
    font-size: 1.45rem;
  }

  .brand-carousel-track {
    gap: 28px;
    padding: 20px 10px 38px 10px;
  }

  .carousel-brand-card {
    flex: 0 0 calc(14.285% - 24px);
    min-width: 290px;
    height: 165px;
    border-radius: 20px;
    padding: 32px 26px;
  }

  .carousel-brand-img-wrap img {
    max-height: 72px;
    max-width: 220px;
  }

  .carousel-nav-btn {
    width: 60px;
    height: 60px;
    font-size: 1.35rem;
  }

  /* Technology Portfolio */
  .tech-portfolio-card {
    padding: 28px;
    border-radius: 24px;
  }

  .tech-portfolio-img-wrap {
    height: 310px;
    border-radius: 20px;
    margin-bottom: 28px;
  }

  .tech-portfolio-badge {
    font-size: 1.25rem;
    padding: 8px 44px;
    top: 16px;
    border-width: 2px;
  }

  .tech-portfolio-body p {
    font-size: 1.22rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .btn-blue-pill {
    font-size: 1.35rem;
    padding: 16px 40px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 80px 65px;
    border-radius: 38px;
  }

  .cta-banner h2 {
    font-size: 3.6rem;
  }

  .cta-banner p {
    font-size: 1.65rem;
  }

  .cta-banner .btn {
    font-size: 1.5rem;
    padding: 20px 48px;
  }

  /* Footer */
  .footer-wrapper {
    padding: 85px 0 45px;
    font-size: 1.22rem;
  }

  .footer-brands-marquee-wrap {
    margin-bottom: 70px;
  }

  .footer-brand-logo-item {
    width: 225px;
    min-width: 225px;
    height: 84px;
    border-radius: 18px;
    padding: 14px 24px;
  }

  .footer-brand-logo-item img {
    max-height: 48px;
    max-width: 175px;
  }

  .footer-brands-group {
    gap: 26px;
    padding-right: 26px;
  }

  .footer-brand-logo {
    height: 76px;
  }

  .footer-company-title {
    font-size: 1.65rem;
  }

  .footer-company-sub {
    font-size: 1.22rem;
  }

  .footer-regions-text {
    font-size: 1.22rem;
  }

  .footer-contact-item {
    font-size: 1.22rem;
    gap: 12px;
  }

  .footer-icon-circle {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .footer-icon-circle.circle-whatsapp {
    font-size: 1.35rem;
  }

  .footer-col-heading {
    font-size: 1.65rem;
    margin-bottom: 28px;
  }

  .footer-links-list li a {
    font-size: 1.25rem;
  }

  .footer-country-name {
    font-size: 1.25rem;
  }

  .footer-country-link {
    font-size: 1.22rem;
  }

  .footer-social-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .footer-support-desc {
    font-size: 1.18rem;
    max-width: 420px;
  }

  .btn-support-pill {
    padding: 14px 36px;
    font-size: 1.25rem;
  }

  .footer-bottom {
    font-size: 1.2rem;
    margin-top: 65px;
    padding-top: 30px;
  }

  /* Subpage Heros & Universal Cards */
  .page-hero-wrapper,
  .about-hero-section,
  .solutions-hero-section,
  .products-hero-section,
  .resources-hero-section,
  .contact-hero-section,
  .hero-pdf-light,
  .hero-pdf-dark {
    padding: 195px 0 115px;
    min-height: 620px;
  }

  .about-hero-title,
  .solutions-hero-title,
  .products-hero-title,
  .resources-hero-title,
  .contact-hero-title {
    font-size: 5rem;
  }

  .about-hero-desc,
  .solutions-hero-desc,
  .products-hero-desc,
  .resources-hero-desc,
  .contact-hero-desc {
    font-size: 1.65rem;
    max-width: 980px;
  }

  .solution-card-pdf,
  .download-card-pdf,
  .resource-media-card,
  .terms-card,
  .office-hub-card,
  .value-badge-card {
    padding: 42px 34px;
    border-radius: 24px;
  }

  .solution-card-icon,
  .download-card-icon,
  .value-badge-icon {
    width: 78px;
    height: 78px;
    font-size: 2rem;
    border-radius: 20px;
  }

  .solution-card-title {
    font-size: 1.65rem;
  }

  .solution-card-desc,
  .terms-card li,
  .solution-card-bullets li {
    font-size: 1.22rem;
  }

  .resource-media-img {
    height: 290px;
  }

  .btn-become-partner-pill,
  .btn-contact-talk {
    font-size: 1.45rem;
    padding: 18px 45px;
  }
}

/* --------------------------------------------------------------------------
   5. Breakpoint: min-width 3840px (4K Ultra HD / 2160p / 5K Displays)
   -------------------------------------------------------------------------- */
@media (min-width: 3840px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 3300px;
  }

  /* Navbar */
  .navbar-custom {
    padding: 30px 0;
  }

  .navbar-logo-img {
    height: 92px;
    max-height: 92px;
  }

  .navbar-custom.scrolled .navbar-logo-img {
    height: 76px;
    max-height: 76px;
  }

  .nav-link {
    font-size: 1.65rem;
    padding: 16px 32px !important;
    border-radius: 16px;
  }

  .btn-orange-custom,
  .btn-primary-custom,
  .btn-outline-custom {
    font-size: 1.6rem;
    padding: 20px 45px;
    border-radius: 50px;
  }

  .btn-orange-sm {
    font-size: 1.45rem;
    padding: 16px 34px;
  }

  /* Hero Section */
  .hero-wrapper {
    padding: 290px 0 210px;
    min-height: 1100px;
    background-image: linear-gradient(90deg, #011736 0%, #011736 45%, rgba(1, 23, 54, 0.85) 62%, rgba(1, 23, 54, 0) 82%), url('../images/home_hero_bg.webp');
    background-position: left center, right center;
    background-size: 100% 100%, auto 100%;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-content-col {
    max-width: 1650px;
  }

  .hero-title {
    font-size: 6.8rem;
    line-height: 1.12;
    margin-bottom: 48px;
  }

  .hero-lead {
    font-size: 2.2rem;
    max-width: 1420px;
    margin-bottom: 70px;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 1.5rem;
    padding: 14px 34px;
    margin-bottom: 42px;
    border-radius: 60px;
  }

  .hero-action-buttons {
    gap: 26px;
  }

  .hero-action-buttons .btn {
    font-size: 1.85rem;
    padding: 24px 52px;
    border-radius: 18px;
  }

  .hero-metrics-row {
    margin-top: 65px;
    padding-top: 36px;
  }

  .stat-number {
    font-size: 4.8rem;
  }

  .stat-label {
    font-size: 1.75rem;
    margin-top: 8px;
  }

  /* Why Partners Trust Explore IT */
  .why-trust-section {
    padding: 130px 0 140px;
  }

  .why-trust-title {
    font-size: 4.6rem;
  }

  .why-trust-card {
    padding: 76px 48px 65px;
    border-radius: 30px;
  }

  .trust-card-icon-wrap {
    height: 130px;
    margin-bottom: 40px;
  }

  .trust-card-icon-wrap svg {
    width: 120px;
    height: 120px;
  }

  .trust-card-title {
    font-size: 2.25rem;
    margin-bottom: 28px;
  }

  .trust-card-text {
    font-size: 1.65rem;
    line-height: 1.7;
  }

  /* Brands Carousel */
  .section-title {
    font-size: 4.8rem;
  }

  .section-desc {
    font-size: 2.1rem;
    max-width: 1450px;
  }

  .brand-carousel-subtitle {
    font-size: 1.95rem;
  }

  .brand-carousel-track {
    gap: 36px;
    padding: 28px 14px 50px 14px;
  }

  .carousel-brand-card {
    flex: 0 0 calc(12.5% - 30px);
    min-width: 370px;
    height: 215px;
    border-radius: 26px;
    padding: 42px 34px;
  }

  .carousel-brand-img-wrap img {
    max-height: 96px;
    max-width: 290px;
  }

  .carousel-nav-btn {
    width: 80px;
    height: 80px;
    font-size: 1.8rem;
  }

  /* Technology Portfolio */
  .tech-portfolio-card {
    padding: 38px;
    border-radius: 32px;
  }

  .tech-portfolio-img-wrap {
    height: 420px;
    border-radius: 26px;
    margin-bottom: 38px;
  }

  .tech-portfolio-badge {
    font-size: 1.65rem;
    padding: 12px 58px;
    top: 22px;
    border-width: 3px;
  }

  .tech-portfolio-body p {
    font-size: 1.62rem;
    line-height: 1.7;
    margin-bottom: 26px;
  }

  .btn-blue-pill {
    font-size: 1.85rem;
    padding: 22px 55px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 110px 90px;
    border-radius: 50px;
  }

  .cta-banner h2 {
    font-size: 4.8rem;
  }

  .cta-banner p {
    font-size: 2.2rem;
  }

  .cta-banner .btn {
    font-size: 2.1rem;
    padding: 28px 64px;
  }

  /* Footer */
  .footer-wrapper {
    padding: 120px 0 65px;
    font-size: 1.65rem;
  }

  .footer-brands-marquee-wrap {
    margin-bottom: 95px;
  }

  .footer-brand-logo-item {
    width: 295px;
    min-width: 295px;
    height: 115px;
    border-radius: 24px;
    padding: 18px 30px;
  }

  .footer-brand-logo-item img {
    max-height: 66px;
    max-width: 230px;
  }

  .footer-brands-group {
    gap: 36px;
    padding-right: 36px;
  }

  .footer-brand-logo {
    height: 100px;
  }

  .footer-company-title {
    font-size: 2.25rem;
  }

  .footer-company-sub {
    font-size: 1.65rem;
  }

  .footer-regions-text {
    font-size: 1.65rem;
  }

  .footer-contact-item {
    font-size: 1.65rem;
    gap: 16px;
  }

  .footer-icon-circle {
    width: 56px;
    height: 56px;
    font-size: 1.55rem;
  }

  .footer-icon-circle.circle-whatsapp {
    font-size: 1.85rem;
  }

  .footer-col-heading {
    font-size: 2.25rem;
    margin-bottom: 38px;
  }

  .footer-links-list li a {
    font-size: 1.68rem;
  }

  .footer-country-name {
    font-size: 1.68rem;
  }

  .footer-country-link {
    font-size: 1.65rem;
  }

  .footer-social-btn {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .footer-support-desc {
    font-size: 1.58rem;
    max-width: 580px;
  }

  .btn-support-pill {
    padding: 18px 50px;
    font-size: 1.68rem;
  }

  .footer-bottom {
    font-size: 1.6rem;
    margin-top: 90px;
    padding-top: 40px;
  }

  /* Subpage Heros & Universal Cards */
  .page-hero-wrapper,
  .about-hero-section,
  .solutions-hero-section,
  .products-hero-section,
  .resources-hero-section,
  .contact-hero-section,
  .hero-pdf-light,
  .hero-pdf-dark {
    padding: 260px 0 150px;
    min-height: 820px;
  }

  .about-hero-title,
  .solutions-hero-title,
  .products-hero-title,
  .resources-hero-title,
  .contact-hero-title {
    font-size: 6.5rem;
  }

  .about-hero-desc,
  .solutions-hero-desc,
  .products-hero-desc,
  .resources-hero-desc,
  .contact-hero-desc {
    font-size: 2.2rem;
    max-width: 1350px;
  }

  .solution-card-pdf,
  .download-card-pdf,
  .resource-media-card,
  .terms-card,
  .office-hub-card,
  .value-badge-card {
    padding: 56px 46px;
    border-radius: 32px;
  }

  .solution-card-icon,
  .download-card-icon,
  .value-badge-icon {
    width: 104px;
    height: 104px;
    font-size: 2.7rem;
    border-radius: 26px;
  }

  .solution-card-title {
    font-size: 2.25rem;
  }

  .solution-card-desc,
  .terms-card li,
  .solution-card-bullets li {
    font-size: 1.65rem;
  }

  .resource-media-img {
    height: 390px;
  }

  .btn-become-partner-pill,
  .btn-contact-talk {
    font-size: 1.95rem;
    padding: 24px 60px;
  }
}