
:root {

  /**
   * colors
   */

  --maximum-yellow-red: hsl(37, 100%, 68%);
  --royal-blue-dark: hsl(231, 61%, 22%);
  --silver-chalice: hsl(0, 0%, 70%);
  --oxford-blue: hsl(231, 100%, 8%);
  --bittersweet: hsl(2, 100%, 69%);
  --french-rose: hsl(342, 90%, 61%);
  --davys-gray: hsl(180, 3%, 28%);
  --cool-gray: hsl(240, 13%, 62%);
  --platinum: hsl(0, 0%, 92%);
  --white-2: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --rythm: hsl(240, 9%, 53%);
  --brand-blue: hsl(220, 90%, 56%);
  --brand-purple: hsl(258, 85%, 63%);
  --brand-coral: hsl(8, 92%, 67%);
  --brand-cyan: hsl(190, 92%, 52%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-sarif;

  --fs-1: 32px;
  --fs-2: 26px;
  --fs-3: 22px;
  --fs-4: 18px;
  --fs-5: 15px;
  --fs-6: 14px;

  --fw-700: 700;
  --fw-600: 600;
  --fw-500: 500;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 100%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 0%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(0deg); }
  75% { transform: translateY(-20px) rotate(-1deg); }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(30px, -40px) scale(1.1); opacity: 0.6; }
  50% { transform: translate(-20px, -60px) scale(0.9); opacity: 0.5; }
  75% { transform: translate(40px, -30px) scale(1.05); opacity: 0.45; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  33% { transform: translate(-40px, 30px) scale(1.15); opacity: 0.5; }
  66% { transform: translate(30px, -40px) scale(0.95); opacity: 0.4; }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.2); }
}

@keyframes moveStars {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100px); }
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1) translateY(-50%); }
  50% { opacity: 0.7; transform: scale(1.15) translateY(-50%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}





/*-----------------------------------*\ 
 * #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
button,
span,
ion-icon,
label,
input,
textarea { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

textarea,
input {
  font: inherit;
  background: none;
  border: none;
  width: 100%;
}

:is(input, textarea):focus { outline: none; }

:focus { outline-offset: 4px; }

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background: var(--white); }

::-webkit-scrollbar-thumb { background: hsl(0, 0%, 50%); }





/*-----------------------------------*\ 
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding: 0 15px; }

.h1,
.h2,
.h3 {
  font-weight: var(--fw-600);
  line-height: 1.3;
  text-transform: capitalize;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2 { font-size: var(--fs-2); }

.h3 {
  color: var(--oxford-blue);
  font-size: var(--fs-3);
}

.h4 {
  color: var(--royal-blue-dark);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
}

.btn {
  font-size: var(--fs-6);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  padding: 10px 40px;
  border: 1px solid;
  border-radius: 6px;
}

.btn-primary {
  background: var(--bittersweet);
  border-color: var(--bittersweet);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) { --bittersweet: hsl(2, 90%, 65%); }

.btn-secondary:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

.btn-gradient {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: gradientShift 8s ease infinite;
  position: relative;
  overflow: hidden;
}

.btn-gradient:is(:hover, :focus) {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(99, 102, 241, 0.6), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all var(--transition);
}

.btn-outline:is(:hover, :focus) {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-ghost-light {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.btn-ghost-light:is(:hover, :focus) {
  background: hsla(0, 0%, 100%, 0.15);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}





/*-----------------------------------*\ 
 * #HEADER
\*-----------------------------------*/

header {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 0;
  margin: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

@keyframes navGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.topbar {
  position: relative;
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
}

.topbar::before {
  content: '01001110 01000111 01001110 00110111 • console.log("NGN7") • <div class="code"> • {data: true} • SELECT * FROM • async await • npm install • git push • API.fetch() • 01001110 01000111 01001110 00110111 • console.log("NGN7") • <div class="code"> • {data: true} • SELECT * FROM • async await •';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: rgba(99, 102, 241, 0.35);
  white-space: nowrap;
  animation: codeScroll 30s linear infinite;
  pointer-events: none;
  letter-spacing: 2px;
}

.topbar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, #020617 0%, transparent 15%, transparent 85%, #020617 100%),
    radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes codeScroll {
  0% { transform: translateY(-50%) translateX(0); }
  100% { transform: translateY(-50%) translateX(-50%); }
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.topbar-inner::before {
  content: '';
  width: 150px;
  flex-shrink: 0;
}

.topbar-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.lang-selector {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  position: relative;
  z-index: 100;
  width: 150px;
  flex-shrink: 0;
  justify-content: flex-end;
}

.topbar-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: var(--fw-500);
  opacity: 0.9;
  white-space: nowrap;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: var(--fw-500);
  opacity: 0.9;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.topbar-link:hover { 
  opacity: 1;
}


.lang-selector ion-icon {
  font-size: 18px;
  opacity: 0.9;
}

#google_translate_element {
  display: inline-block !important;
  min-width: 100px;
  min-height: 28px;
}

#google_translate_element .skiptranslate,
#google_translate_element select,
.goog-te-combo {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 100px;
  height: 28px;
}

/* Override Google Translate Styles */
.goog-te-gadget {
  font-family: var(--ff-poppins) !important;
  font-size: 12px !important;
  color: transparent !important;
}

.goog-te-gadget .goog-te-combo {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 6px;
  color: var(--white) !important;
  padding: 6px 12px;
  font-size: 12px !important;
  font-family: var(--ff-poppins);
  cursor: pointer;
  min-width: 100px;
  outline: none;
  transition: all 0.2s ease;
  -webkit-appearance: menulist;
  appearance: menulist;
}

.goog-te-gadget .goog-te-combo:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.goog-te-gadget .goog-te-combo option {
  background: #1e293b;
  color: var(--white);
}

/* Hide Google Translate banner */
.goog-te-banner-frame,
.skiptranslate > iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-te-gadget img {
  display: none !important;
}

/* Hide 'Powered by' text but keep select visible */
.goog-te-gadget > span {
  display: none !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd {
  display: none !important;
}

header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 2px 0;
  margin: 4px 0 0 0;
  gap: 60px;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  max-height: 26px;
  vertical-align: middle;
}

.logo:hover img {
  transform: scale(1.02);
}

.navbar-menu-btn {
  font-size: 26px;
  padding: 6px;
  border-radius: 8px;
  color: var(--royal-blue-dark);
  transition: all 0.3s ease;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.navbar-menu-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.navbar-menu-btn:is(:hover, :focus) {
  background: rgba(79, 140, 255, 0.12);
  transform: translateY(-1px);
}

.navbar {
  display: none;
}

.navbar-list {
  padding: 0;
  display: flex;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item:not(:last-child) {
  border-bottom: none;
}

.nav-link {
  font-size: var(--fs-6);
  color: var(--royal-blue-dark);
  font-weight: var(--fw-600);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  background: rgba(79, 140, 255, 0.08);
}

.nav-item.dropdown { position: relative; }

.dropdown-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.dropdown-toggle::after {
  content: "▾";
  font-size: 12px;
  margin-left: 6px;
  color: var(--cool-gray);
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.14);
  padding: 10px;
  display: none;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown:focus-within .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown-item {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: var(--fs-6);
  color: var(--royal-blue-dark);
  font-weight: var(--fw-500);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(79, 140, 255, 0.08);
}

.dropdown-item.featured-item {
  color: var(--brand-purple);
}

.dropdown-item.featured-item ion-icon {
  color: var(--brand-purple);
}


.nav-link:is(:hover, :focus) { background: rgba(79, 140, 255, 0.08); }

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-purple));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-link:is(:hover, :focus)::after { transform: scaleX(1); }

.navbar.active .nav-link {
  transition-delay: 0.2s;
  opacity: 1;
}

.navbar .btn-primary { display: none; }





/*-----------------------------------*\ 
 * #HERO
\*-----------------------------------*/

.hero {
  position: relative;
  padding: 100px 0 110px;
  z-index: 1;
  background: 
    linear-gradient(135deg, 
      #020617 0%, 
      #0a1628 15%, 
      #0f172a 30%, 
      #1e1b4b 50%, 
      #172554 70%, 
      #0c1a3d 85%, 
      #020617 100%);
  background-size: 400% 400%;
  animation: heroGradient 20s ease infinite;
  overflow: hidden;
}

/* Circuit Board Pattern */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%236366f1' fill-opacity='0.03' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V0h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L googletag.pubads().refresh(); 296.41 50h-18.51zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2h19.51L Seeds 66 217.41V googletag.cmd.push(function()240h-12.1zm53.8-34a5 5 0 1 1 0-2h.01l42 42h-2.12l-40.9-40H117.9z'/%3E%3C/svg%3E"),
    linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.02) 50%, transparent 100%);
  animation: circuitMove 30s linear infinite;
  z-index: 0;
}

/* Floating Tech Orbs */
.hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  background: 
    radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.2) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 0;
  animation: techOrb 15s ease-in-out infinite;
}

@keyframes heroGradient {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 50%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

@keyframes circuitMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 304px 304px, 100% 0; }
}

@keyframes techOrb {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 0.8; }
  50% { transform: translateY(-50%) scale(1.1); opacity: 1; }
}

/* Animated Star Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Floating Code Snippets */
.hero-particles::before {
  content: '<html> function() { } const data = [] async await return true npm install git commit API.call() SELECT * FROM console.log() import export class Component { } if (success) { } try { } catch(e) { } fetch("/api") .then() .map() .filter() useState() useEffect() router.push() <div> </div> JSON.parse() Object.keys() Array.from() Promise.all() async function* yield await';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: rgba(99, 102, 241, 0.12);
  white-space: nowrap;
  word-spacing: 30px;
  line-height: 3;
  animation: floatCode 40s linear infinite;
  pointer-events: none;
}

/* Binary Rain Effect */
.hero-particles::after {
  content: '01001110 01000111 01001110 00110111 10101010 11001100 01010101 00110011 10011001 01100110 11110000 00001111 10101010 01001110 01000111 01001110 00110111 10101010 11001100 01010101 00110011 10011001';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200%;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: rgba(139, 92, 246, 0.1);
  white-space: nowrap;
  word-spacing: 20px;
  line-height: 2.5;
  animation: floatBinary 35s linear infinite reverse;
  pointer-events: none;
}

@keyframes floatCode {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-50%) translateY(20px); }
}

@keyframes floatBinary {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-50%) translateY(-20px); }
}

/* Third Animated Orb */
.hero .container::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: 30%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.15) 50%, transparent 70%);
  filter: blur(70px);
  z-index: 0;
  animation: orbFloat2 10s ease-in-out infinite;
  pointer-events: none;
}

/* ============================================
   IT ANIMATED BACKGROUND VISUALS
   ============================================ */

.hero-bg-animation {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

/* Hexagonal Grid Pattern */
.hex-grid {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.08'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  animation: gridPulse 6s ease-in-out infinite;
}

/* Network Topology SVG */
.network-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.network-line {
  stroke: rgba(99, 102, 241, 0.3);
  stroke-width: 1;
  stroke-dasharray: 8 4;
  animation: networkPulse 3s ease-in-out infinite;
}

.network-line:nth-child(odd) {
  stroke: rgba(139, 92, 246, 0.25);
  animation-delay: 0.5s;
}

.network-line:nth-child(3n) {
  stroke: rgba(59, 130, 246, 0.3);
  animation-delay: 1s;
}

/* Data Packets */
.data-packet {
  fill: #60a5fa;
  filter: drop-shadow(0 0 6px #60a5fa) drop-shadow(0 0 12px #60a5fa);
}

.data-packet.packet-alt {
  fill: #a78bfa;
  filter: drop-shadow(0 0 6px #a78bfa) drop-shadow(0 0 12px #a78bfa);
}

.data-packet.packet-alt2 {
  fill: #34d399;
  filter: drop-shadow(0 0 6px #34d399) drop-shadow(0 0 12px #34d399);
}

/* Network Nodes */
.network-node circle:first-child {
  fill: #60a5fa;
  filter: drop-shadow(0 0 8px #60a5fa);
}

.network-node .node-ring {
  fill: none;
  stroke: #60a5fa;
  stroke-width: 1;
  opacity: 0.5;
  animation: nodeRingPulse 2s ease-in-out infinite;
}

.network-node.node-server circle:first-child { fill: #8b5cf6; filter: drop-shadow(0 0 10px #8b5cf6); }
.network-node.node-server .node-ring { stroke: #8b5cf6; }

.network-node.node-router circle:first-child { fill: #06b6d4; filter: drop-shadow(0 0 12px #06b6d4); }
.network-node.node-router .node-ring { stroke: #06b6d4; }

.network-node.node-cloud circle:first-child { fill: #f472b6; filter: drop-shadow(0 0 10px #f472b6); }
.network-node.node-cloud .node-ring { stroke: #f472b6; }

.network-node.node-database circle:first-child { fill: #34d399; filter: drop-shadow(0 0 10px #34d399); }
.network-node.node-database .node-ring { stroke: #34d399; }

@keyframes nodeRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 0; }
}

@keyframes networkPulse {
  0%, 100% { opacity: 0.3; stroke-dashoffset: 0; }
  50% { opacity: 0.6; stroke-dashoffset: 24; }
}

/* Pulse Waves */
.pulse-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pulse-wave {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(99, 102, 241, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseWave 4s ease-out infinite;
}

.pulse-wave:nth-child(2) { animation-delay: 1.3s; border-color: rgba(139, 92, 246, 0.3); }
.pulse-wave:nth-child(3) { animation-delay: 2.6s; border-color: rgba(236, 72, 153, 0.3); }

@keyframes pulseWave {
  0% { width: 100px; height: 100px; opacity: 1; }
  100% { width: 800px; height: 800px; opacity: 0; }
}

/* Scan Effect */
.scan-effect {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 45%,
    rgba(99, 102, 241, 0.08) 50%,
    transparent 55%,
    transparent 100%
  );
  animation: scanMove 6s linear infinite;
  pointer-events: none;
}

@keyframes scanMove {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Code Rain */
.code-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.code-line {
  position: absolute;
  top: -50px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: bold;
  color: rgba(52, 211, 153, 0.7);
  text-shadow: 0 0 10px rgba(52, 211, 153, 0.9), 0 0 20px rgba(52, 211, 153, 0.5);
  animation: codeFall 12s linear infinite;
}

.code-line:nth-child(1) { left: 5%; animation-delay: 0s; }
.code-line:nth-child(2) { left: 15%; animation-delay: 2s; color: rgba(99, 102, 241, 0.7); text-shadow: 0 0 10px rgba(99, 102, 241, 0.9); }
.code-line:nth-child(3) { left: 30%; animation-delay: 4s; }
.code-line:nth-child(4) { left: 45%; animation-delay: 1s; color: rgba(139, 92, 246, 0.7); text-shadow: 0 0 10px rgba(139, 92, 246, 0.9); }
.code-line:nth-child(5) { left: 60%; animation-delay: 3s; }
.code-line:nth-child(6) { left: 75%; animation-delay: 5s; color: rgba(6, 182, 212, 0.7); text-shadow: 0 0 10px rgba(6, 182, 212, 0.9); }
.code-line:nth-child(7) { left: 90%; animation-delay: 2.5s; }

@keyframes codeFall {
  0% { transform: translateY(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(calc(100vh + 100%)); opacity: 0; }
}

/* Tech Particles */
.tech-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tech-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #60a5fa;
  border-radius: 50%;
  box-shadow: 0 0 10px #60a5fa, 0 0 20px #60a5fa;
  animation: particleFloat 8s ease-in-out infinite;
}

.tech-particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.tech-particles span:nth-child(2) { top: 20%; left: 80%; animation-delay: 1s; background: #a78bfa; box-shadow: 0 0 10px #a78bfa, 0 0 20px #a78bfa; }
.tech-particles span:nth-child(3) { top: 40%; left: 10%; animation-delay: 2s; }
.tech-particles span:nth-child(4) { top: 60%; left: 90%; animation-delay: 0.5s; background: #f472b6; box-shadow: 0 0 10px #f472b6, 0 0 20px #f472b6; }
.tech-particles span:nth-child(5) { top: 80%; left: 30%; animation-delay: 1.5s; }
.tech-particles span:nth-child(6) { top: 15%; left: 50%; animation-delay: 3s; background: #34d399; box-shadow: 0 0 10px #34d399, 0 0 20px #34d399; }
.tech-particles span:nth-child(7) { top: 50%; left: 60%; animation-delay: 2.5s; }
.tech-particles span:nth-child(8) { top: 70%; left: 40%; animation-delay: 0.8s; background: #06b6d4; box-shadow: 0 0 10px #06b6d4, 0 0 20px #06b6d4; }
.tech-particles span:nth-child(9) { top: 90%; left: 70%; animation-delay: 1.8s; }
.tech-particles span:nth-child(10) { top: 35%; left: 85%; animation-delay: 3.5s; background: #fbbf24; box-shadow: 0 0 10px #fbbf24, 0 0 20px #fbbf24; }

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
  25% { transform: translateY(-20px) scale(1.2); opacity: 1; }
  50% { transform: translateY(-10px) scale(0.8); opacity: 0.8; }
  75% { transform: translateY(-30px) scale(1.1); opacity: 0.7; }
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-wrap {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-content { 
  text-align: center;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6, #60a5fa);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px #22c55e, 0 0 20px rgba(34, 197, 94, 0.5);
}

.hero-title,
.hero-text { 
  margin-bottom: 32px;
}

.hero .h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero-text {
  font-size: var(--fs-4);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--fw-600);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.2));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(99, 102, 241, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-inline: auto;
}

.hero-stat {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero-stat:hover::before {
  transform: translateX(100%);
}

.hero-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.12));
}

.hero-stat .stat-value {
  display: block;
  font-size: 28px;
  font-weight: var(--fw-700);
  background: linear-gradient(135deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.hero-stat .stat-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.hero .btn-primary { margin-inline: auto; }

.hero-banner { display: none; }

.shape-content {
  position: absolute;
  width: 900px;
  top: -230px;
  right: -300px;
  z-index: -1;
}

.mission-card {
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(135deg, rgba(79, 140, 255, 0.6), rgba(255, 139, 107, 0.6)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  padding: 28px;
  display: grid;
  gap: 20px;
  align-items: center;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.mission-media {
  max-width: 200px;
  margin-inline: auto;
}

.mission-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--davys-gray);
  font-size: var(--fs-5);
}

.mission-list li {
  position: relative;
  padding-left: 18px;
}

.mission-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--brand-blue), var(--brand-coral));
}

.about-card {
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.features .section-title,
.features .section-text {
  animation: fadeUp 0.8s ease both;
}

.hero-content {
  animation: fadeUp 0.8s ease both;
}

.hero-stats {
  animation: fadeUp 0.9s ease 0.2s both;
}

.mission-card {
  animation: fadeUp 0.9s ease 0.3s both;
}

/*-----------------------------------*\
 * #MOBILE RESPONSIVE
\*-----------------------------------*/

/* Mobile-First: Base styles above are already mobile-friendly */

/* Extra Small Devices - Phone Portrait (<576px) */
@media (max-width: 575px) {
  /* Topbar - Compact layout for very small screens */
  .topbar {
    padding: 8px 0;
  }
  
  .topbar-inner {
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    padding: 0 10px;
  }
  
  .topbar-inner::before {
    display: none;
  }
  
  .topbar-contact {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
  }
  
  .topbar-text {
    display: none !important;
  }
  
  .topbar-link[href*="tel"] {
    display: none !important;
  }
  
  .topbar-link[href*="mailto"] {
    display: flex !important;
    align-items: center;
    gap: 6px;
    color: #fff;
  }
  
  .topbar-link[href*="mailto"] span {
    display: inline !important;
    font-size: 12px;
  }
  
  .topbar-link[href*="mailto"] ion-icon {
    font-size: 16px;
    color: #fff;
  }
  
  .lang-selector {
    margin-left: auto !important;
    margin-right: 0 !important;
    width: auto;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-shrink: 0;
  }
  
  .lang-selector ion-icon {
    font-size: 18px;
    cursor: pointer;
    color: #fff;
  }
  
  .lang-selector #google_translate_element {
    display: inline-block !important;
  }
  
  .goog-te-gadget .goog-te-combo {
    padding: 4px 8px;
    font-size: 11px;
    min-width: 100px;
  }
  
  /* Logo */
  .logo img {
    max-height: 28px;
  }
  
  /* Hero Section */
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero .h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-text {
    font-size: 14px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  /* Page Hero */
  .page-hero {
    padding: 80px 0 50px;
  }
  
  .page-hero-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  
  .page-hero-text {
    font-size: 14px;
  }
  
  /* Buttons */
  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .btn-lg {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Section Spacing */
  .services-section,
  .why-choose-section,
  .clients-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-text {
    font-size: 14px;
  }
  
  /* Service Cards */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card {
    padding: 24px 20px;
  }
  
  /* CTA Section */
  .cta-card {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  /* Hero CTA Group */
  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
  
  /* Contact Form */
  .modern-form .form-row {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* BRIX365 Page */
  .differentiator-grid,
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .commitment-wrapper {
    padding: 40px 24px;
  }
  
  .commitment-list {
    grid-template-columns: 1fr;
  }
}

/* Small Devices - Phone Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  /* Topbar - Simplified layout */
  .topbar {
    padding: 8px 0;
  }
  
  .topbar-inner {
    justify-content: space-between;
    gap: 15px;
    font-size: 12px;
    padding: 0 10px;
  }
  
  .topbar-inner::before {
    display: none;
  }
  
  .topbar-contact {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 0 0 auto;
  }
  
  .topbar-text {
    display: none !important;
  }
  
  .topbar-link[href*="tel"] {
    display: none !important;
  }
  
  .topbar-link[href*="mailto"] {
    display: flex !important;
    align-items: center;
    gap: 6px;
    color: #fff;
  }
  
  .topbar-link[href*="mailto"] span {
    display: inline !important;
    font-size: 12px;
  }
  
  .topbar-link[href*="mailto"] ion-icon {
    font-size: 16px;
    color: #fff;
  }
  
  .lang-selector {
    margin-left: auto !important;
    margin-right: 0 !important;
    width: auto;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }
  
  .lang-selector ion-icon {
    font-size: 18px;
    cursor: pointer;
    color: #fff;
  }
  
  .lang-selector #google_translate_element {
    display: inline-block !important;
  }
  
  .goog-te-gadget .goog-te-combo {
    padding: 4px 10px;
    font-size: 11px;
    min-width: 110px;
  }
  
  /* Hero */
  .hero .h1 {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Page Hero */
  .page-hero-title {
    font-size: 2rem;
  }
}

/* Tablets - Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Topbar - Show abbreviated info */
  .topbar-inner {
    font-size: 11px;
    gap: 10px 15px;
  }
  
  .topbar-text ion-icon {
    display: none;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
  }
  
  /* Hero Stats */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Services Grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Universal Mobile Navigation Fix */
@media (max-width: 1023px) {
  .topbar-inner::before {
    content: none;
    width: 0;
  }

  .topbar-inner {
    justify-content: flex-end;
    gap: 10px;
  }

  .lang-selector {
    margin-left: auto;
    width: auto;
    justify-content: flex-end;
  }

  #google_translate_element {
    min-width: 120px;
  }
  .topbar-inner {
    justify-content: space-between;
  }

  .lang-selector {
    margin-left: auto;
  }
  header .container {
    justify-content: space-between;
    gap: 12px;
  }

  .navbar-wrapper {
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  /* Hamburger Menu */
  .navbar-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e1b4b 0%, #172554 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
  }
  
  /* Mobile Navigation */
  .navbar {
    display: block;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    max-height: 100vh;
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 50%, #172554 100%);
    padding: 0;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    transition: right 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    border-radius: 0;
    border: none;
    visibility: hidden;
  }
  
  .navbar.active {
    right: 0;
    max-height: 100vh;
    visibility: visible;
  }
  
  /* Mobile Nav Header */
  .navbar::before {
    content: 'Menu';
    display: block;
    padding: 24px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
  }
  
  .navbar-list {
    flex-direction: column;
    gap: 0;
    padding: 10px;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
    z-index: 1201;
    overflow: visible;
  }
  
  .nav-link {
    padding: 14px 16px;
    width: 100%;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    opacity: 1;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(59, 130, 246, 0.18));
    color: #fff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
    transform: translateX(2px);
  }

  .nav-link:active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(59, 130, 246, 0.25));
    transform: translateX(2px) scale(0.98);
  }

  .nav-link:focus-visible {
    outline: 2px solid rgba(148, 163, 255, 0.8);
    outline-offset: 2px;
  }
  
  .dropdown-toggle {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .dropdown-toggle:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(59, 130, 246, 0.18));
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25);
  }
  
  .dropdown-toggle::after {
    color: rgba(255, 255, 255, 0.5);
  }
  
  .dropdown-menu {
    position: relative;
    display: none;
    box-shadow: none;
    border: 1px solid rgba(148, 163, 255, 0.15);
    background: rgba(15, 23, 42, 0.75);
    padding: 10px;
    margin: 6px 0 10px 0;
    border-radius: 10px;
    min-width: 100%;
    width: 100%;
    box-sizing: border-box;
    transform: none !important;
    opacity: 1;
    left: 0 !important;
    right: 0 !important;
    margin-left: 0;
    margin-right: 0;
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-item {
    padding: 10px 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    white-space: normal;
    word-wrap: break-word;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  
  .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(59, 130, 246, 0.22));
    color: #fff;
    transform: translateX(0);
  }
  
  .dropdown-item.featured-item {
    color: #a78bfa;
  }
  
  .dropdown-item.featured-item:hover {
    background: rgba(167, 139, 250, 0.2);
  }
  
  /* Mobile Overlay */
  .navbar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
      z-index: 1100;
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  
  .navbar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  
  /* Hide Contact Button in Mobile Nav */
  .navbar .btn-primary {
    display: none;
  }
  
  /* Container Padding */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Landscape phones - content optimization */
@media (max-width: 767px) and (orientation: landscape) {
  .page-hero,
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}


/*-----------------------------------*\
 * #RESPONSIVE MEDIA QUERIES
\*-----------------------------------*/

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}





/*-----------------------------------*\ 
 * #ABOUT
\*-----------------------------------*/

.about {
  position: relative;
  z-index: 1;
  background: url("../images/about-bg.png") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0;
  text-align: center;
}

.about-top { margin-bottom: 120px; }

.about .h2 { color: var(--white); }

.about-top .section-title { margin-bottom: 20px; }

.about-top .section-text {
  color: var(--white);
  font-size: var(--fs-4);
  margin-bottom: 60px;
}

/* .about-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
} */


.about-list {
    list-style: none;           /* remove bullets */
    margin: 0 auto;             /* centers the whole list horizontally */
    padding: 0 1rem;            /* small side padding on mobile */

    display: flex;
    flex-wrap: wrap;            /* cards go to next line on smaller screens */
    justify-content: center;    /* ← this is what centers the cards */
    gap: 1.8rem 2rem;           /* vertical + horizontal spacing between cards */
}

/* Make cards look consistent and nice (optional but recommended) */
.about-list .about-card {
    flex: 0 1 340px;            /* min ~340px, can grow a bit */
    max-width: 380px;           /* don't let them get too wide */
    text-align: center;         /* center icon + text inside card */
    padding: 1.8rem 1.5rem;
    border-radius: 12px;
  background: var(--white);       /* dark example — change to your design */
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.about-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.1);
}

.card-icon {
  color: var(--bittersweet);
  font-size: 45px;
  width: max-content;
  margin-inline: auto;
  margin-bottom: 15px;
}

.about-card .card-title { margin-bottom: 15px; }

.about-card .card-text { color: var(--davys-gray); }

.about-bottom-banner { margin-bottom: 120px; }

.about-bottom-banner img {
  width: 100%;
  height: 100%;
}

.about-bottom .section-title { margin-bottom: 20px; }

.about-bottom .section-text {
  color: var(--white);
  font-size: var(--fs-4);
  margin-bottom: 40px;
}

.about-bottom .btn-secondary {
  color: var(--white);
  margin-inline: auto;
}





/*-----------------------------------*\ 
 * #FEATURES
\*-----------------------------------*/

.features {
  padding: 120px 0;
  text-align: center;
}


/*-----------------------------------*\ 
 * #SERVICES SECTION
\*-----------------------------------*/

.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  color: #6366f1;
  font-size: 12px;
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-header .section-title {
  color: var(--oxford-blue);
  margin-bottom: 16px;
}

.section-header .section-text {
  color: var(--rythm);
  font-size: var(--fs-5);
  margin-bottom: 0;
}

.team-section-card {
  max-width: 1100px;
  margin: 32px auto 48px;
  padding: 40px 32px 48px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.1s forwards;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  max-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.team-member:nth-child(1) { animation-delay: 0.2s; }
.team-member:nth-child(2) { animation-delay: 0.35s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }
.team-member:nth-child(4) { animation-delay: 0.65s; }

.team-avatar {
  width: 180px;
  height: 180px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #ffffff, #e5e7eb);
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.team-avatar::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(99, 102, 241, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.team-member:hover .team-avatar::before {
  opacity: 1;
  transform: rotate(180deg);
}

.team-member:hover .team-avatar {
  transform: translateY(-8px) scale(1.05) rotate(2deg);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.32);
  border-color: rgba(99, 102, 241, 0.4);
}

.team-avatar ion-icon {
  font-size: 80px;
  color: #9ca3af;
  transition: all 0.4s ease;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.team-member:hover .team-avatar ion-icon {
  color: #6366f1;
  transform: scale(1.1);
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--oxford-blue);
  margin-bottom: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.team-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  transition: width 0.3s ease, left 0.3s ease;
}

.team-member:hover .team-name {
  color: #4f46e5;
  transform: translateY(-2px);
}

.team-member:hover .team-name::after {
  width: 100%;
  left: 0;
}

.team-role {
  font-size: 15px;
  color: var(--rythm);
  transition: all 0.3s ease;
}

.team-member:hover .team-role {
  color: var(--oxford-blue);
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(99, 102, 241, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon ion-icon {
  font-size: 28px;
  color: var(--white);
}

.service-icon.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.service-icon.icon-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.service-icon.icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.service-icon.icon-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.service-icon.icon-pink { background: linear-gradient(135deg, #ec4899, #db2777); }

.service-title {
  font-size: 20px;
  font-weight: var(--fw-600);
  color: var(--oxford-blue);
  margin-bottom: 12px;
}

.service-text {
  color: var(--rythm);
  font-size: var(--fs-6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6366f1;
  font-size: 14px;
  font-weight: var(--fw-600);
  transition: all 0.2s ease;
}

.service-link ion-icon {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.service-link:hover {
  color: #4f46e5;
}

.service-link:hover ion-icon {
  transform: translateX(4px);
}


/*-----------------------------------*\ 
 * #WHY CHOOSE US SECTION
\*-----------------------------------*/

.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #172554 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
  top: -200px;
  right: -200px;
  filter: blur(60px);
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

.badge-light {
  background: rgba(255, 255, 255, 0.1);
  color: #a5b4fc;
}

.why-choose-content .section-title {
  color: var(--white);
  margin-bottom: 20px;
}

.why-choose-content .section-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-5);
  margin-bottom: 40px;
}

.features-list {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item .feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item .feature-icon ion-icon {
  font-size: 22px;
  color: #a5b4fc;
}

.feature-content h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: var(--fw-600);
  margin-bottom: 4px;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}

.why-choose-visual {
  position: relative;
}

.visual-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  display: grid;
  gap: 32px;
}

.visual-stat {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.visual-stat:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: scale(1.02);
}

.big-number {
  display: block;
  font-size: 56px;
  font-weight: var(--fw-700);
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.big-number .plus {
  font-size: 40px;
}

.stat-text {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 8px;
}


/*-----------------------------------*\ 
 * #CLIENTS SECTION
\*-----------------------------------*/

.clients-section {
  padding: 100px 0;
  background: #f8fafc;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.client-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
}

.client-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-icon ion-icon {
  font-size: 26px;
  color: var(--white);
}

.client-icon.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.client-icon.icon-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.client-icon.icon-green { background: linear-gradient(135deg, #10b981, #059669); }
.client-icon.icon-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.client-icon.icon-pink { background: linear-gradient(135deg, #ec4899, #db2777); }

.client-info h4 {
  font-size: 16px;
  font-weight: var(--fw-600);
  color: var(--oxford-blue);
  margin-bottom: 6px;
}

.client-location {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--rythm);
  font-size: 13px;
  margin-bottom: 8px;
}

.client-location ion-icon {
  font-size: 14px;
}

.client-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  font-size: 11px;
  font-weight: var(--fw-600);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/*-----------------------------------*\ 
 * #CTA SECTION
\*-----------------------------------*/

.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-section .cta-card {
  background: linear-gradient(135deg, #020617 0%, #0f172a 35%, #1e1b4b 70%, #172554 100%);
  border-radius: 24px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.cta-section .cta-card::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  right: -100px;
}

.cta-section .cta-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  bottom: -100px;
  left: -50px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section .cta-title {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(15, 23, 42, 0.35);
}

.cta-section .cta-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-5);
  margin: 0;
  text-shadow: 0 2px 12px rgba(15, 23, 42, 0.3);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: var(--white);
  color: #1e1b4b;
  border-color: var(--white);
  font-weight: var(--fw-600);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.25);
}

.btn-outline-white {
  background: rgba(15, 23, 42, 0.18);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.btn-outline-white ion-icon {
  font-size: 18px;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
}


/* Responsive */
@media (min-width: 768px) {
  .why-choose-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .visual-card {
    grid-template-columns: 1fr;
  }
  
  .cta-section .cta-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 60px;
  }
  
  .cta-actions {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-list {
    grid-template-columns: 1fr 1fr;
  }
}


/*-----------------------------------*\ 
 * #PAGE HERO
\*-----------------------------------*/

.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background: 
    linear-gradient(135deg, 
      #020617 0%, 
      #0a1628 20%, 
      #0f172a 35%, 
      #1e1b4b 55%, 
      #172554 75%, 
      #0c1a3d 90%, 
      #020617 100%);
  background-size: 300% 300%;
  animation: pageHeroGradient 18s ease infinite;
  text-align: center;
  overflow: hidden;
}

@keyframes pageHeroGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' width='100' height='100'%3E%3Ccircle fill='%236366f1' fill-opacity='0.03' cx='50' cy='50' r='1'/%3E%3Ccircle fill='%236366f1' fill-opacity='0.02' cx='20' cy='20' r='1'/%3E%3Ccircle fill='%236366f1' fill-opacity='0.03' cx='80' cy='30' r='1'/%3E%3Ccircle fill='%236366f1' fill-opacity='0.02' cx='30' cy='70' r='1'/%3E%3Ccircle fill='%236366f1' fill-opacity='0.03' cx='70' cy='80' r='1'/%3E%3Cpath stroke='%236366f1' stroke-opacity='0.04' stroke-width='0.5' d='M20 20L50 50L80 30M50 50L30 70M50 50L70 80'/%3E%3C/svg%3E"),
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  animation: networkPulse 10s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes networkPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2), transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(60px);
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 70%);
  bottom: -100px;
  right: -100px;
  filter: blur(60px);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-badge {
  margin-bottom: 20px;
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-hero-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 140px 0 100px;
  }
  
  .page-hero-title {
    font-size: 3.5rem;
  }
}


/*-----------------------------------*\ 
 * #SERVICE CARD ENHANCEMENTS
\*-----------------------------------*/

.services-grid-full {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.service-card-lg {
  padding: 36px 32px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rythm);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features ion-icon {
  color: #10b981;
  font-size: 16px;
  min-width: 16px;
}

@media (min-width: 1024px) {
  .services-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}


/*-----------------------------------*\ 
 * #CONTACT PAGE
\*-----------------------------------*/

.page-hero-sm {
  padding: 100px 0 60px;
}

@media (min-width: 768px) {
  .page-hero-sm {
    padding: 120px 0 80px;
  }
}

.contact-section {
  padding: 80px 0;
  background: var(--white-2);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.06);
}

.form-header {
  margin-bottom: 32px;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal-blue-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--rythm);
  font-size: 14px;
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 640px) {
  .modern-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.modern-form .form-group {
  margin-bottom: 0;
}

.modern-form .form-group:only-child {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--oxford-blue);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--white-2);
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  color: var(--oxford-blue);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-input::placeholder {
  color: var(--cool-gray);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-lg ion-icon {
  font-size: 18px;
}

.contact-info-wrapper {
  position: sticky;
  top: 100px;
}

.contact-info-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  padding: 40px;
  border-radius: 20px;
  color: var(--white);
}

.info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.method-icon {
  width: 44px;
  height: 44px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon ion-icon {
  font-size: 20px;
  color: #a5b4fc;
}

.method-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.method-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
}

a.method-value:hover {
  color: #a5b4fc;
}

.office-locations {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.office-location {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.location-header ion-icon {
  font-size: 18px;
  color: #a5b4fc;
}

.location-header h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.office-location p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--brand-blue);
  transform: translateY(-3px);
}


/*-----------------------------------*\ 
 * #SERVICE PAGE TEMPLATE
\*-----------------------------------*/

.service-detail-section {
  padding: 80px 0;
}

.service-detail-section:nth-child(even) {
  background: var(--white-2);
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .service-content-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-content-grid.reverse {
    direction: rtl;
  }
  
  .service-content-grid.reverse > * {
    direction: ltr;
  }
}

.service-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--royal-blue-dark);
  margin-bottom: 16px;
}

.service-content p {
  color: var(--rythm);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list ion-icon {
  color: #10b981;
  font-size: 20px;
  margin-top: 2px;
}

.service-list span {
  color: var(--davys-gray);
  font-size: 15px;
}

.service-visual {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.service-visual-icon {
  font-size: 120px;
  color: var(--brand-blue);
  opacity: 0.3;
}


/*-----------------------------------*\ 
 * #PORTFOLIO PAGE
\*-----------------------------------*/

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);
}

.portfolio-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.portfolio-icon ion-icon {
  font-size: 28px;
  color: var(--white);
}

.portfolio-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--royal-blue-dark);
  margin-bottom: 10px;
}

.portfolio-card p {
  color: var(--rythm);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.portfolio-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}


/*-----------------------------------*\ 
 * #PARTNERS PAGE
\*-----------------------------------*/

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partner-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.partner-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.features .section-title {
  color: var(--royal-blue-dark);
  margin-bottom: 20px;
}

.features .section-text {
  color: var(--rythm);
  font-size: var(--fs-4);
  margin-bottom: 120px;
}

.features-item:first-child { margin-bottom: 100px; }

.features-item-banner {
  max-width: 350px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.features-item-banner img { width: 100%; }

.features-item .item-title {
  color: var(--royal-blue-dark);
  margin-bottom: 20px;
}

.features-item .item-text {
  color: var(--rythm);
  font-size: var(--fs-4);
}





/*-----------------------------------*\ 
 * #CTA
\*-----------------------------------*/

.cta { padding: 120px 0; }

.cta-card {
  background: linear-gradient(to top, var(--bittersweet) 0, var(--french-rose));
  padding: 80px 36px;
  border-radius: 20px;
  text-align: center;
}

.cta-title {
  color: var(--white);
  font-size: var(--fs-1);
  font-weight: var(--fw-600);
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-text {
  color: var(--white);
  font-size: var(--fs-6);
  margin-bottom: 50px;
}

.cta input {
  color: var(--white);
  padding: 10px 15px;
  border-bottom: 1px solid;
  margin-bottom: 30px;
}

.cta input::placeholder { color: inherit; }

.cta .btn-secondary {
  color: var(--white);
  margin-inline: auto;
}





/*-----------------------------------*\ 
 * #CONTACT
\*-----------------------------------*/

.contact { margin-bottom: 120px; }

.contact-content { margin-bottom: 50px; }

.contact-title {
  color: var(--royal-blue-dark);
  margin-bottom: 60px;
  text-align: center;
  font-weight: var(--fw-500) !important;
}

.contact-banner img { width: 100%; }

.input-wrapper { margin-bottom: 30px; }

.input-label {
  color: var(--oxford-blue);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-bottom: 10px;
}

.input-field {
  border-bottom: 1px solid var(--platinum);
  padding: 7px 0;
  font-size: var(--fs-6);
}

.input-field::placeholder { color: var(--silver-chalice); }

textarea {
  max-height: 300px;
  min-height: 100px;
  height: 100px;
  resize: vertical;
}

.contact-hero .section-text { margin-bottom: 20px; }

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-card .input-field {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(203, 213, 225, 0.7);
}

.contact-card .input-field:focus {
  border-color: rgba(79, 140, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.18);
}

.office-grid {
  display: grid;
  gap: 18px;
}

.office-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: grid;
  gap: 10px;
}

.office-card a {
  color: var(--royal-blue-dark);
  font-weight: var(--fw-600);
}

.office-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--royal-blue-dark);
}

.office-header ion-icon {
  font-size: 20px;
  color: var(--brand-blue);
}





/*-----------------------------------*\ 
 * #FOOTER
\*-----------------------------------*/

footer { background: var(--white-2); }

.footer-top { padding: 80px 0 50px; }

.footer-brand { margin-bottom: 20px; }

footer .logo { margin-bottom: 30px; }

.footer-text {
  color: var(--rythm);
  font-size: var(--fs-6);
  margin-bottom: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.social-link {
  color: var(--rythm);
  font-size: var(--fs-4);
  margin-bottom: 10px;
}

.social-link:is(:hover, :focus) { color: var(--french-rose); }

.footer-link-list:not(:last-child) { margin-bottom: 30px; }

.footer-link-list .link-title { margin-bottom: 15px; }

.footer-link {
  color: var(--cool-gray);
  font-size: var(--fs-6);
  margin-bottom: 10px;
  max-width: 150px;
}

.footer-link:is(:hover, :focus) { color: var(--french-rose); }

.footer-bottom {
  padding: 20px 15px;
  border-top: 1px solid hsla(0, 0%, 18%, 0.2);
}

.copyright {
  color: var(--cool-gray);
  text-align: center;
  font-size: var(--fs-6);
}

.copyright a {
  display: inline-block;
  color: var(--cool-gray);
}

.copyright a:is(:hover, :focus) { color: var(--french-rose); }





/*-----------------------------------*\ 
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 5;
  width: 50px;
  height: 50px;
  background: linear-gradient(-45deg, var(--maximum-yellow-red), var(--french-rose));
  box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.25);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}





/*-----------------------------------*\ 
 * #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive for larger than 450px 
 */

@media (min-width: 450px) {

  /**
   * CUSTOM PROPERTY 
   */

  :root {

    /**
     * typography
     */

    --fs-1: 60px;

  }



  /**
   * REUESED STYLE 
   */

  .h1,
  .h2 { font-weight: var(--fw-700); }

  .btn { padding-block: 15px; }



  /**
   * HEADER 
   */

  .navbar {
    left: auto;
    width: 300px;
  }



  /**
   * HERO 
   */

  .hero { padding: 120px 0 130px; }
  
  .hero .h1 { font-size: 4rem; }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
  }



  /**
   * ABOUT 
   */

  .about-card .card-title { padding-inline: 40px; }

  .about-bottom-banner {
    max-width: 400px;
    margin-inline: auto;
    margin-bottom: 40px;
  }

  .about-bottom-content { padding-inline: 50px; }



  /**
   * FEATURES
   */

  .features .h2 { --fs-2: 32px; }



  /**
   * CTA
   */

  .cta-title { --fs-1: 42px; }

  .cta-form {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
  }

  .cta input { margin-bottom: 0; }

  .cta .btn-secondary { min-width: max-content; }



  /**
   * CONTACT
   */

  .contact-title { --fs-2: 32px; }

  .contact-banner {
    max-width: 300px;
    margin-inline: auto;
  }

}





/**
 * responsive for larger than 560px 
 */

@media (min-width: 560px) {

  /**
   * REUESED STYLE 
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .navbar-wrapper { position: relative; }

  .navbar {
    top: calc(100% + 15px);
    right: 0;
  }



  /**
   * HERO, ABOUT
   */

  .hero-content,
  .about-bottom-content { text-align: left; }

  .hero .btn-primary,
  .about-bottom .btn-secondary { margin-inline: 0; }

  .hero-actions { justify-content: flex-start; }

  .hero-text { max-width: 560px; }

  .shape-content {
    top: -156px;
    right: -152px;
  }



  /**
   * FOOTER
   */

  .footer-brand { margin-bottom: 40px; }

  .footer-link-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

}





/**
 * responsive for larger than 768px 
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY 
   */

  :root {

    /**
     * typography
     */

    --fs-2: 35px;
    --fs-4: 20px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 740px; }



  /**
   * HERO
   */

  .hero .h1 { font-size: 3.5rem; }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }



  /**
   * ABOUT
   */

  .about-list { grid-template-columns: 1fr 1fr; }

  .about-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .about-card .card-title { padding-inline: 0; }



  /**
   * CONTACT
   */

  .contact-title { --fs-2: 42px; }

  .mission-card { grid-template-columns: 220px 1fr; }

  .mission-media { margin-inline: 0; }

  .office-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}





/**
 * responsive for larger than 1024px 
 */

@media (min-width: 1024px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 950px; }



  /**
   * HEADER
   */

  .navbar-menu-btn { display: none; }

  .navbar {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    pointer-events: all;
    overflow: visible;
    display: flex;
    align-items: center;
    padding: 0;
    right: 0;
  }

  .navbar-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-right: 24px;
    height: auto;
    padding: 0;
  }

  .nav-item {
    width: auto;
  }

  .nav-link {
    padding: 8px 14px;
    border-radius: 999px;
    line-height: 1;
    display: flex;
    align-items: center;
    color: var(--royal-blue-dark);
    font-size: var(--fs-6);
  }

  .nav-link:hover,
  .nav-link:focus {
    background: rgba(79, 140, 255, 0.08);
    color: var(--royal-blue-dark);
  }

  .dropdown-toggle {
    width: auto;
    text-align: center;
    padding: 8px 14px;
    color: var(--royal-blue-dark);
  }

  .dropdown-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 6px);
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 14px;
    box-shadow: 0 18px 32px rgba(15, 23, 42, 0.14);
    padding: 10px;
    margin: 0;
    transform: translate(-50%, 8px);
    opacity: 0;
    display: block;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .dropdown-item {
    color: var(--royal-blue-dark);
    padding: 10px 12px;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background: rgba(79, 140, 255, 0.08);
    color: var(--royal-blue-dark);
  }

  .dropdown-item.featured-item {
    color: var(--brand-purple);
  }

  .nav-item.dropdown:focus-within .dropdown-menu,
  .nav-item.dropdown:hover .dropdown-menu {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
  }

  .navbar .btn-primary { display: block; }

  .navbar .btn-primary {
    padding: 10px 22px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.25);
  }



  /**
   * HERO
   */

  .hero-content { max-width: 550px; }

  .hero-banner {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 500px;
    padding-top: 500px;
    background: url("../images/hero-banner.png") no-repeat;
    background-size: contain;
  }



  /**
   * ABOUT
   */

  .about-top .section-text {
    max-width: 650px;
    margin-inline: auto;
  }

  .about-list { grid-template-columns: repeat(3, 1fr); }

  .about-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .about-bottom-banner {
    margin-bottom: 0;
    height: 330px;
  }

  .about-bottom-content {
    padding-inline: 0;
    width: 50%;
  }



  /**
   * FEATURES
   */

  .features :is(.section-title, .section-text) {
    max-width: 650px;
    margin-inline: auto;
  }

  .features-item {
    display: flex;
    align-items: center;
    gap: 50px;
  }

  .features-item-banner {
    margin-inline: 0;
    margin-bottom: 0;
  }

  .feature-item-content {
    width: 50%;
    text-align: left;
  }

  .features-item:last-child { flex-direction: row-reverse; }



  /**
   * CTA
   */

  .cta-card > * {
    max-width: 500px;
    margin-inline: auto;
  }



  /**
   * CONTACT
   */

  .contact .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  .contact-content { max-width: 400px; }

  .contact-title { text-align: left; }

  .contact-form { width: 50%; }



  /**
   * FOOTER
   */

  .footer-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  .footer-brand,
  .footer-link-list:not(:last-child) { margin-bottom: 0; }

  .footer-link-box {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }

}





/**
 * responsive for larger than 1200px 
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY 
   */

  :root {

    /**
     * typography
     */

    --fs-2: 42px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1150px; }



  /**
   * HERO
   */

  .hero-banner { right: 100px; }



  /**
   * ABOUT
   */

  .about-bottom-banner { height: 400px; }



  /**
   * FEATURES
   */

  .features .h2 { --fs-2: 42px; }

  .features :is(.section-title, .section-text) { max-width: 850px; }

}


/*-----------------------------------*\ 
 * #BRIX365 PARTNER PAGE
\*-----------------------------------*/

.page-hero-lg {
  padding: 140px 0 100px;
}

@media (min-width: 768px) {
  .page-hero-lg {
    padding: 160px 0 120px;
  }
}

.hero-partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.partner-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a5b4fc;
}

.partner-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Differentiator Grid */
.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.differentiator-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 25px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
  overflow: hidden;
}

.differentiator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.diff-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(99, 102, 241, 0.1);
  position: absolute;
  top: 20px;
  right: 24px;
}

.differentiator-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal-blue-dark);
  margin-bottom: 12px;
}

.differentiator-card > p {
  color: var(--rythm);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diff-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--davys-gray);
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.diff-list li:last-child {
  border-bottom: none;
}

.diff-list ion-icon {
  color: #10b981;
  font-size: 16px;
  margin-top: 2px;
}

/* Capabilities Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.capability-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
}

.capability-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.capability-icon ion-icon {
  font-size: 28px;
  color: var(--white);
}

.capability-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--royal-blue-dark);
  margin-bottom: 16px;
}

.capability-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-card ul li {
  font-size: 14px;
  color: var(--rythm);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.capability-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background: #6366f1;
  border-radius: 50%;
}

/* Industries Visual */
.industries-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: center;
  justify-content: center;
}

.industry-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--royal-blue-dark);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.industry-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  background: var(--white);
}

.industry-tag ion-icon {
  font-size: 20px;
  color: #6366f1;
}

/* Commitment Section */
.commitment-wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
}

.commitment-content {
  max-width: 700px;
  margin: 0 auto;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.commitment-item ion-icon {
  font-size: 24px;
  color: #a5b4fc;
  min-width: 24px;
}

/* Featured Menu Item */
.dropdown-item.featured-item {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: #6366f1;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-item.featured-item ion-icon {
  font-size: 14px;
  color: #f59e0b;
}

.dropdown-item.featured-item:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}


/*-----------------------------------*\
 * #ENHANCED LOOK AND FEEL
\*-----------------------------------*/

/* Enhanced Buttons */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

/* Enhanced Service Cards */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15) !important;
}

/* Enhanced Service Icons */
.service-icon {
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Gradient Text Enhancement */
.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  background-size: 200% auto;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Enhanced Section Badges */
.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 50px;
  color: #6366f1;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.section-badge:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
  transform: translateY(-2px);
}

/* Enhanced Shadows */
.hero,
.page-hero {
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
}

/* Card Hover Glow Effect */
.why-choose-card,
.client-card,
.portfolio-card {
  transition: all 0.4s ease;
}

.why-choose-card:hover,
.client-card:hover,
.portfolio-card:hover {
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12);
  transform: translateY(-5px);
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced Input Fields */
.form-input,
.form-textarea,
.form-select {
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  transform: translateY(-1px);
}

/* Enhanced CTA Section */
.cta-card {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #7c3aed 100%);
  box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30%, -30%); }
}

/* Mobile Header Enhancement */
@media (max-width: 1023px) {
  header .container {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  }
  
  .navbar {
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  }
}

/* Loading Animation for Images */
img {
  transition: opacity 0.3s ease;
}

img:not([src]) {
  opacity: 0;
}

/* Enhanced Link Hover */
a {
  transition: all 0.3s ease;
}

/* Frosted Glass Effect for Overlays */
.navbar-overlay {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
