/*-----------------------------------*\
 * style.css — Kazi Emon Portfolio
 * Royal Purple Theme
\*-----------------------------------*/

/*-----------------------------------*\
 * #CUSTOM PROPERTIES
\*-----------------------------------*/

:root {
  /**
   * Refined Soft Indigo & Royal Purple Palette
   */
  --royal-purple: #6366f1;
  --royal-purple-hover: #7c3aed;
  --royal-purple-light: #a5b4fc;
  --royal-purple-dark: #4f46e5;
  --royal-purple-glow: rgba(99, 102, 241, 0.16);
  --royal-purple-bg: rgba(99, 102, 241, 0.08);
  --royal-purple-border: rgba(99, 102, 241, 0.22);
  --royal-purple-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --royal-purple-gradient-hover: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);

  --black: #000000;
  --white: #ffffff;

  /**
   * Typography
   */
  --ff-poppins: 'Poppins', sans-serif;
  --ff-roboto: 'Roboto', sans-serif;

  --fs-1: 2rem;
  --fs-2: calc(1.85rem + 1.2vw);
  --fs-3: calc(1.35rem + 0.8vw);
  --fs-4: 1.4rem;
  --fs-5: 1.05rem;
  --fs-6: 0.875rem;
  --fs-7: 0.75rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * Transitions
   */
  --transition-1: 0.25s ease-in-out;
  --transition-2: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  /**
   * Spacing & Radius
   */
  --section-padding: 85px;
  --radius-4: 4px;
  --radius-8: 8px;
  --radius-12: 14px;
  --radius-20: 22px;
  --radius-pill: 100px;
}

/*-----------------------------------*\
 * #THEME COLORS
\*-----------------------------------*/

body.dark_theme {
  --bg-primary: #0B0F19;
  --bg-secondary: #111726;
  --color-primary: #F3F4F6;
  --color-secondary: #94a3b8;
  --color-muted: #64748b;
  --card-shadow: rgba(0, 0, 0, 0.4);
  --input-bg: #161e31;
  --border-color: rgba(255, 255, 255, 0.08);
  --shadow-1: 0 10px 30px var(--card-shadow);
  --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.12);
  --modal-bg: #111726;
}

body.light_theme {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --color-primary: #0f172a;
  --color-secondary: #475569;
  --color-muted: #64748b;
  --card-shadow: rgba(99, 102, 241, 0.06);
  --input-bg: #f1f5f9;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-1: 0 10px 30px var(--card-shadow);
  --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.12);
  --modal-bg: #ffffff;
}

/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

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

li { list-style: none; }

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

a,
img,
time,
span,
input,
label,
select,
button,
textarea,
ion-icon { display: block; }

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

button,
select { cursor: pointer; }

input,
textarea { width: 100%; }

ion-icon { pointer-events: none; }

:is(a, button, select) {
  outline-color: var(--royal-purple);
  outline-offset: 3px;
}

::selection {
  background: var(--royal-purple);
  color: var(--white);
}

html {
  font-family: var(--ff-roboto);
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--color-primary);
  transition: background var(--transition-1), color var(--transition-1);
  overflow-x: hidden;
}

body.active { overflow: hidden; }

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--royal-purple);
  border-radius: var(--radius-4);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--royal-purple-hover);
}

/*-----------------------------------*\
 * #REUSED STYLES
\*-----------------------------------*/

.container {
  padding-inline: 20px;
  max-width: 100%;
}

.h1 {
  font-size: var(--fs-1);
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--ff-poppins);
}

.h2,
.h3,
.h4 {
  color: var(--color-primary);
  font-family: var(--ff-poppins);
  line-height: 1.25;
}

.h2 { font-size: var(--fs-2); }
.h3 { font-size: var(--fs-3); }
.h4 { font-size: var(--fs-5); }

.w-100 { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: max-content;
  color: var(--color-primary);
  font-weight: var(--fw-700);
  font-family: var(--ff-poppins);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: var(--fs-6);
  padding: 13px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius-8);
  transition: var(--transition-1);
}

.btn-primary {
  border-color: var(--royal-purple);
  background: transparent;
  color: var(--color-primary);
}

.btn-primary:is(:hover, :focus) {
  background: var(--royal-purple);
  color: var(--white);
  box-shadow: 0 4px 20px var(--royal-purple-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--royal-purple-gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 15px var(--royal-purple-glow);
}

.btn-secondary:is(:hover, :focus) {
  background: var(--royal-purple-gradient-hover);
  border-color: transparent;
  box-shadow: 0 6px 22px var(--royal-purple-glow);
  transform: translateY(-2px);
}

/* SECTION HEADINGS — FIX OVERLAP BUG */
.section-content {
  margin-bottom: 35px;
  position: relative;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--royal-purple-light);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--ff-poppins);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-bottom: 16px;
  width: fit-content;
  padding: 6px 16px 6px 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14) 0%, rgba(139, 92, 246, 0.06) 100%);
  border: 1px solid rgba(99, 102, 241, 0.32);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-subtitle:hover {
  border-color: rgba(99, 102, 241, 0.55);
  box-shadow: 0 4px 18px var(--royal-purple-glow);
  transform: translateY(-1px);
}

.section-subtitle::before {
  content: "";
  display: inline-block;
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 8px #6366f1, 0 0 14px rgba(99, 102, 241, 0.8);
  flex-shrink: 0;
  animation: liveDotPulse 2s infinite ease-in-out;
}

@keyframes liveDotPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px #6366f1, 0 0 14px rgba(99, 102, 241, 0.8);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 12px #a5b4fc, 0 0 20px rgba(99, 102, 241, 0.95);
    opacity: 0.85;
  }
}

body.light_theme .section-subtitle {
  color: var(--royal-purple-dark);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.04) 100%);
  border-color: rgba(99, 102, 241, 0.24);
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

.section-title {
  max-width: 600px;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-text {
  color: var(--color-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.98rem;
  max-width: 680px;
}

.tooltip {
  position: absolute;
  top: -40px;
  background: var(--royal-purple);
  min-width: max-content;
  color: var(--white);
  font-size: 12px;
  font-weight: var(--fw-700);
  font-family: var(--ff-poppins);
  padding: 4px 10px;
  border-radius: var(--radius-4);
  box-shadow: var(--shadow-1);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
  z-index: 5;
}

/*-----------------------------------*\
 * #HEADER & NAVBAR
\*-----------------------------------*/

.header {
  padding-block: 18px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition-1);
  z-index: 20;
}

.header.active {
  padding-block: 13px;
  background: rgba(11, 15, 25, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.light_theme .header.active {
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo {
  position: relative;
  z-index: 25;
}

.logo a {
  color: var(--color-primary);
  font-family: var(--ff-poppins);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.logo span {
  display: inline-block;
  color: var(--royal-purple);
  margin-left: 1px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  z-index: 25;
}

.theme-btn {
  padding: 3px;
  width: 50px;
  height: 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  transition: var(--transition-1);
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
}

.header.active .theme-btn {
  background: var(--bg-primary);
}

.theme-btn .icon {
  position: relative;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: inset 8px -5px var(--royal-purple);
  transition: var(--transition-1);
}

.theme-btn.active .icon {
  left: 22px;
  box-shadow: inset 20px -20px var(--royal-purple-light);
}

.nav-toggle-btn {
  position: relative;
  transform: rotate(-55deg);
  transition: var(--transition-1);
  z-index: 25;
}

.nav-toggle-btn.active {
  transform: rotate(-45deg);
}

.nav-toggle-btn span {
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  margin: 5px;
  transition: var(--transition-1);
}

.nav-toggle-btn :is(.one, .three) {
  width: 12px;
}

.nav-toggle-btn .one {
  margin-left: auto;
  transform-origin: left;
}

.nav-toggle-btn .three {
  transform-origin: right;
}

.nav-toggle-btn.active .one {
  transform: rotate(90deg) translateX(-3px);
  background: var(--royal-purple);
}

.nav-toggle-btn.active .three {
  transform: rotate(90deg) translateX(3px);
  background: var(--royal-purple);
}

.navbar {
  position: fixed;
  background: var(--bg-secondary);
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  visibility: hidden;
  transition: 0.6s cubic-bezier(0.71, 0.01, 0.24, 0.99);
  transition-delay: 0.2s;
  z-index: 21;
}

.navbar.active {
  top: 0;
  visibility: visible;
  transition-delay: 0s;
}

.navbar-list > li {
  margin-block: 16px;
  padding-inline: 40px;
  overflow: hidden;
  text-align: center;
}

.navbar-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin-inline: auto;
  color: var(--color-primary);
  font-family: var(--ff-poppins);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: transparent;
  transform: translateY(50px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.navbar.active .navbar-link {
  transform: translateY(0);
  transition-delay: 0.25s;
}

/* Modern iOS Glassmorphism Frosted-Glass Pill (Mobile Drawer) */
.navbar-link:is(:hover, :focus),
.navbar-link.active {
  background: rgba(124, 104, 238, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(124, 104, 238, 0.38);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(124, 104, 238, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transform: scale(1.04);
}

body.light_theme .navbar-link:is(:hover, :focus),
body.light_theme .navbar-link.active {
  background: rgba(124, 104, 238, 0.12);
  border-color: rgba(96, 78, 194, 0.25);
  color: var(--royal-purple-dark);
  box-shadow: 0 4px 15px rgba(124, 104, 238, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 40px;
  position: relative;
  text-align: center;
}

.hero-banner {
  max-width: 320px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 30px;
  position: relative;
}

.hero-banner .profile-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-20);
  box-shadow: var(--shadow-1), var(--shadow-glow);
  border: 1px solid var(--royal-purple-border);
  transition: transform var(--transition-2);
}

.hero-banner:hover .profile-img {
  transform: scale(1.02);
}

.hero-status-pill {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(18, 21, 31, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  pointer-events: none;
}

.hero-status-pill .status-indicator {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
}

:is(.hero-social-list, .scroll-down) {
  display: none;
}

.hero-content {
  max-width: 580px;
  margin-inline: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--royal-purple-light);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--ff-poppins);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  margin-bottom: 18px;
  padding: 6px 18px 6px 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14) 0%, rgba(139, 92, 246, 0.06) 100%);
  border: 1px solid rgba(99, 102, 241, 0.32);
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 12px rgba(99, 102, 241, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: "";
  display: inline-block;
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: #818cf8;
  box-shadow: 0 0 8px #6366f1, 0 0 14px rgba(99, 102, 241, 0.8);
  flex-shrink: 0;
  animation: liveDotPulse 2s infinite ease-in-out;
}

body.light_theme .hero-badge {
  color: var(--royal-purple-dark);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.04) 100%);
  border-color: rgba(99, 102, 241, 0.24);
}

.hero-title {
  font-size: var(--fs-2);
  margin-bottom: 18px;
  line-height: 1.22;
  font-weight: 800;
}

.hero-text {
  color: var(--color-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

/*-----------------------------------*\
 * #STATS
\*-----------------------------------*/

.stats {
  padding-block: 20px var(--section-padding);
}

.stats-list {
  display: grid;
  gap: 22px;
}

.stats-card {
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
  transition: var(--transition-1);
}

.stats-card:is(:hover, :focus) {
  transform: translateY(-5px);
  border-color: var(--royal-purple);
  box-shadow: var(--shadow-1), var(--shadow-glow);
}

.stats-card .card-icon {
  background: var(--royal-purple);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 4px 15px var(--royal-purple-glow);
}

.stats-card .card-title {
  width: calc(100% - 95px);
  color: var(--royal-purple);
  font-size: 1.9rem;
  font-weight: 800;
}

.stats-card .card-title strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  margin-top: 4px;
}

.stats-card > ion-icon {
  color: var(--color-secondary);
  font-size: 22px;
  margin-left: auto;
  transition: transform var(--transition-1);
}

.stats-card:hover > ion-icon {
  transform: translateX(4px);
  color: var(--royal-purple);
}

/*-----------------------------------*\
 * #ABOUT
\*-----------------------------------*/

.about {
  padding-block: var(--section-padding);
}

/* Strategic Value Matrix Card (Replaces redundant photo) */
.about-matrix-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-20);
  padding: 32px 24px;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
  transition: var(--transition-1);
}

.about-matrix-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-purple), transparent);
}

.about-matrix-card:hover {
  border-color: var(--royal-purple-border);
  box-shadow: var(--shadow-1), var(--shadow-glow);
}

.about-matrix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.about-matrix-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--royal-purple);
}

.about-matrix-badge .live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.7);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.about-matrix-location {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-weight: 500;
}

.about-pillars-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.about-pillar-item {
  background: var(--input-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-12);
  padding: 15px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition-1);
}

.about-pillar-item:hover {
  border-color: var(--royal-purple-border);
  transform: translateY(-2px);
}

.about-pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-8);
  background: var(--royal-purple-bg);
  color: var(--royal-purple);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-step-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--royal-purple);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.about-pillar-title {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.about-pillar-desc {
  font-size: 0.84rem;
  color: var(--color-secondary);
  line-height: 1.5;
}

.about-philosophy-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 20px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-left: 3px solid var(--royal-purple);
  border-radius: var(--radius-12);
  transition: var(--transition-1);
  margin-top: 18px;
}

.about-philosophy-box:hover {
  border-color: rgba(99, 102, 241, 0.38);
  background: rgba(99, 102, 241, 0.09);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}

.philosophy-icon {
  color: var(--royal-purple);
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.9;
}

.philosophy-content {
  flex: 1;
}

.philosophy-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--color-primary);
  font-style: italic;
  margin-bottom: 8px;
}

.philosophy-author {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--royal-purple-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--ff-poppins);
}

body.light_theme .philosophy-author {
  color: var(--royal-purple-dark);
}

body.light_theme .about-philosophy-box {
  background: rgba(99, 102, 241, 0.05);
  border-color: rgba(99, 102, 241, 0.18);
  border-left-color: var(--royal-purple);
}

.about .btn-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.about .btn {
  max-width: unset;
  width: 100%;
}

/*-----------------------------------*\
 * #BLUEPRINT (Action Plan)
\*-----------------------------------*/

.blueprint {
  padding-block: var(--section-padding);
}

.blueprint-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.blueprint-card {
  background: var(--bg-secondary);
  padding: 28px;
  border-radius: var(--radius-12);
  border-top: 4px solid var(--royal-purple);
  box-shadow: var(--shadow-1);
  border-inline: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-1);
  position: relative;
  overflow: hidden;
}

.blueprint-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-1), var(--shadow-glow);
  border-color: var(--royal-purple-border);
  border-top-color: var(--royal-purple);
}

.blueprint-card .phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--royal-purple-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 12px 4px 8px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: var(--radius-pill);
  width: fit-content;
}

.blueprint-card .phase-tag::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--royal-purple);
  box-shadow: 0 0 6px var(--royal-purple);
  flex-shrink: 0;
}

body.light_theme .blueprint-card .phase-tag {
  color: var(--royal-purple-dark);
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
}

.blueprint-card .card-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.blueprint-card .card-text {
  color: var(--color-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

/*-----------------------------------*\
 * #SKILLS & TOOLS
\*-----------------------------------*/

.skills {
  padding-block: var(--section-padding);
}

.skills-content {
  margin-bottom: 35px;
}

.skills-toggle {
  position: relative;
  background: var(--bg-secondary);
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-1);
  margin-inline: auto;
  z-index: 1;
  width: 230px;
  max-width: 100%;
  overflow: hidden;
}

.skills-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--royal-purple);
  border-radius: var(--radius-pill);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px var(--royal-purple-glow);
  z-index: 1;
  pointer-events: none;
}

.skills-toggle.active::before {
  transform: translateX(100%);
}

.toggle-btn {
  position: relative;
  z-index: 2;
  flex: 1 1 50%;
  width: 50%;
  color: var(--color-muted);
  font-family: var(--ff-poppins);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 0;
  min-width: unset;
  text-align: center;
  border-radius: var(--radius-pill);
  transition: color var(--transition-1);
  cursor: pointer;
  background: transparent;
  border: none;
}

.toggle-btn.active {
  color: var(--white);
}

.skills-box.active .skills-list,
.skills-box .tools-list {
  display: none;
}

.skills-box .skills-list,
.skills-box.active .tools-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.skill-card {
  position: relative;
  background: var(--bg-secondary);
  width: 94px;
  height: 94px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-1);
}

.skill-card:hover {
  transform: translateY(-5px);
  border-color: var(--royal-purple);
  box-shadow: var(--shadow-1), var(--shadow-glow);
}

.skill-card ion-icon,
.skill-card i {
  font-size: 32px;
  color: var(--royal-purple);
  transition: transform var(--transition-1);
}

.skill-card:hover ion-icon,
.skill-card:hover i {
  transform: scale(1.1);
}

.skill-card .skill-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--ff-poppins);
  text-align: center;
  line-height: 1.15;
  padding-inline: 4px;
}

.skill-card:hover .tooltip {
  transform: translateY(0);
  opacity: 1;
}

/*-----------------------------------*\
 * #SERVICES
\*-----------------------------------*/

.services {
  padding-block: var(--section-padding);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--bg-secondary);
  padding: 32px 28px;
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-1);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--royal-purple);
  box-shadow: var(--shadow-1), var(--shadow-glow);
}

.service-card .card-num {
  font-size: 1.9rem;
  font-weight: 800;
  font-family: var(--ff-poppins);
  color: var(--royal-purple);
  margin-bottom: 12px;
  display: inline-block;
}

.service-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.service-card .card-text {
  color: var(--color-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card .card-link {
  color: var(--royal-purple);
  font-size: var(--fs-6);
  font-weight: 700;
  font-family: var(--ff-poppins);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-1);
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.service-card .card-link:hover {
  color: var(--royal-purple-hover);
  transform: translateX(4px);
}

/*-----------------------------------*\
 * #FAQ ACCORDION
\*-----------------------------------*/

.faq {
  padding-block: var(--section-padding);
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-12);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: var(--transition-1);
}

.faq-card:hover {
  border-color: var(--royal-purple-border);
}

.faq-header {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-align: left;
}

.faq-header .h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-icon {
  color: var(--royal-purple);
  font-size: 18px;
  transition: transform var(--transition-1);
  flex-shrink: 0;
}

.faq-card.active {
  border-color: var(--royal-purple);
  box-shadow: var(--shadow-1), var(--shadow-glow);
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  display: none;
  padding: 0 24px 22px;
  color: var(--color-secondary);
  font-size: 0.94rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-color);
  padding-top: 18px;
}

.faq-card.active .faq-body {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

/*-----------------------------------*\
 * #CONTACT
\*-----------------------------------*/

.contact {
  padding-block: var(--section-padding);
}

.contact-content {
  margin-bottom: 40px;
}

.contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-item-icon {
  font-size: 26px;
  color: var(--royal-purple);
  margin-top: 2px;
}

.contact-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-list-item .contact-info {
  color: var(--color-secondary);
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.6;
  transition: var(--transition-1);
}

.contact-info:not(address):is(:hover, :focus) {
  color: var(--royal-purple);
}

.contact-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.contact-social-link {
  position: relative;
  background: var(--bg-secondary);
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  font-size: 19px;
}

.contact-social-link:is(:hover, :focus) {
  background: var(--royal-purple);
  color: var(--white);
  border-color: var(--royal-purple);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px var(--royal-purple-glow);
}

.contact-social-link:is(:hover, :focus) .tooltip {
  transform: translateY(0);
  opacity: 1;
}

.contact-form {
  background: var(--bg-secondary);
  padding: 32px 28px;
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
}

.form-wrapper {
  margin-bottom: 22px;
}

.form-label {
  color: var(--color-primary);
  font-size: var(--fs-7);
  font-family: var(--ff-poppins);
  font-weight: 600;
  margin-bottom: 8px;
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
}

.input-field {
  background: var(--input-bg);
  color: var(--color-primary);
  padding: 13px 14px 13px 44px;
  border-radius: var(--radius-8);
  border: 1px solid var(--border-color);
  transition: var(--transition-1);
  font-size: 0.92rem;
}

.input-wrapper ion-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--royal-purple);
  font-size: 20px;
  transition: var(--transition-1);
}

textarea.input-field {
  min-height: 110px;
  max-height: 220px;
  resize: vertical;
}

.input-field:focus {
  border-color: var(--royal-purple);
  box-shadow: 0 0 0 3px var(--royal-purple-bg);
  outline: none;
}

.input-field:focus + ion-icon {
  color: var(--royal-purple-hover);
}

.contact .btn-primary {
  max-width: unset;
  width: 100%;
  background: var(--royal-purple);
  border-color: var(--royal-purple);
  color: var(--white);
  margin-top: 12px;
}

.contact .btn-primary:hover {
  background: var(--royal-purple-hover);
  border-color: var(--royal-purple-hover);
  box-shadow: 0 6px 20px var(--royal-purple-glow);
}

/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer {
  background: var(--bg-secondary);
  padding-block: 32px;
  text-align: center;
  box-shadow: var(--shadow-1);
  border-top: 1px solid var(--border-color);
}

.footer .logo {
  margin-bottom: 12px;
  justify-content: center;
}

.copyright {
  color: var(--color-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.copyright a {
  display: inline-block;
  color: var(--royal-purple);
  font-weight: 600;
}

.copyright a:hover {
  text-decoration: underline;
}

/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--white);
  background: var(--royal-purple);
  border: 1px solid var(--royal-purple-border);
  border-radius: 50%;
  box-shadow: 0 4px 15px var(--royal-purple-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: var(--transition-1);
  z-index: 15;
}

.go-top:hover {
  background: var(--royal-purple-hover);
  transform: translateY(-2px);
}

.go-top.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/*-----------------------------------*\
 * #MODALS (Service Overviews)
\*-----------------------------------*/

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--modal-bg);
  border: 1px solid var(--royal-purple-border);
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-1), var(--shadow-glow);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: scale(0.95);
  transition: var(--transition-1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 18px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-color);
  transition: var(--transition-1);
}

.modal-close-btn:hover {
  background: var(--royal-purple);
  color: var(--white);
}

.modal-body {
  color: var(--color-primary);
  line-height: 1.75;
}

.modal-body h2,
.modal-body h3,
.modal-body h4 {
  font-family: var(--ff-poppins);
  margin-top: 20px;
  margin-bottom: 10px;
}

.modal-body p {
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.modal-body .quote-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--royal-purple);
  padding: 16px 20px;
  border-radius: 0 var(--radius-8) var(--radius-8) 0;
  margin-block: 18px;
  font-style: italic;
  color: var(--color-primary);
}

.modal-body ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 18px;
  color: var(--color-secondary);
}

.modal-body ul li {
  margin-bottom: 8px;
}

/*-----------------------------------*\
 * #MEDIA QUERIES (Responsive Polish)
\*-----------------------------------*/

/**
 * Mobile-specific adjustments (< 550px)
 */
@media (max-width: 549px) {
  .container {
    padding-inline: 16px;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 35px;
  }

  .hero-banner {
    max-width: 270px;
    margin-bottom: 22px;
  }

  .hero-banner .profile-img {
    height: 310px;
    border-radius: 16px;
  }

  .hero-title {
    font-size: clamp(1.65rem, 6.5vw, 2.15rem);
    line-height: 1.22;
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero .btn-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero .btn {
    width: 100%;
    max-width: 100%;
  }

  .stats-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .stats-card .card-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

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

  .stats-card .card-title strong {
    font-size: 0.82rem;
  }

  .about-matrix-card {
    padding: 20px 15px;
    border-radius: 16px;
    margin-bottom: 32px;
  }

  .about-matrix-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .about-pillar-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .about-pillar-title {
    font-size: 0.88rem;
  }

  .about-pillar-desc {
    font-size: 0.8rem;
  }

  .about-philosophy-box {
    padding: 14px 14px;
    gap: 12px;
    margin-top: 14px;
  }

  .philosophy-text {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .blueprint-card {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .skills-toggle {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .skills-toggle .toggle-btn {
    flex: 1;
    text-align: center;
  }

  .skill-card {
    width: 88px;
    height: 88px;
  }

  .service-card {
    padding: 22px 16px;
    border-radius: 12px;
  }

  .service-card .card-title {
    font-size: 1.15rem;
  }

  .service-card .card-text {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .faq-header {
    padding: 16px;
    font-size: 0.95rem;
  }

  .faq-body {
    padding: 0 16px 16px;
    font-size: 0.88rem;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .contact-list-item {
    gap: 12px;
  }

  .contact-item-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .navbar-link {
    font-size: 1.25rem;
    padding: 8px 22px;
  }
}

/**
 * 550px breakpoint (Tablets & Large Mobiles)
 */
@media (min-width: 550px) {
  .container {
    max-width: 540px;
    margin-inline: auto;
  }

  .blueprint-list {
    grid-template-columns: 1fr 1fr;
  }

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

/**
 * 768px breakpoint (Tablets)
 */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

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

  .about .btn-group {
    flex-direction: row;
  }

  .about .btn {
    max-width: max-content;
  }

  .contact-form {
    max-width: 540px;
    margin-inline: auto;
  }
}

/**
 * 992px breakpoint (Laptops & Desktop Viewports)
 */
@media (min-width: 992px) {
  :root {
    --fs-2: 2.85rem;
    --section-padding: 100px;
  }

  .container {
    max-width: 940px;
  }

  /* Header Desktop */
  .header {
    padding-block: 22px;
  }

  .header.active {
    padding-block: 15px;
  }

  .navbar-actions {
    order: 1;
    margin-left: 0;
  }

  .nav-toggle-btn {
    display: none;
  }

  .navbar {
    all: unset;
  }

  .navbar-list > li {
    margin: 0;
    padding: 0;
    overflow: visible;
  }

  .navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  body.light_theme .navbar-list {
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .navbar-link {
    transform: translateY(0);
    font-size: 0.95rem;
    padding: 8px 18px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Desktop Frosted-Glass Pill Hover & Active State */
  .navbar-link:is(:hover, :focus),
  .navbar-link.active {
    background: rgba(124, 104, 238, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(124, 104, 238, 0.35);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(124, 104, 238, 0.18), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
  }

  body.light_theme .navbar-link:is(:hover, :focus),
  body.light_theme .navbar-link.active {
    background: rgba(124, 104, 238, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(96, 78, 194, 0.22);
    color: var(--royal-purple-dark);
    box-shadow: 0 4px 12px rgba(124, 104, 238, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.7);
    transform: translateY(-1px);
  }

  /* Hero Desktop */
  .hero {
    min-height: 100vh;
    padding-top: 80px;
    flex-direction: row-reverse;
    justify-content: space-between;
    text-align: left;
    gap: 45px;
  }

  .hero-banner {
    max-width: 420px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .hero-banner .profile-img {
    height: 480px;
  }

  .hero-content {
    max-width: 500px;
    margin-inline: 0;
  }

  .hero .btn-group {
    justify-content: flex-start;
  }

  .hero-social-list {
    display: block;
    position: absolute;
    bottom: 80px;
    left: -25px;
  }

  .hero-social-list::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 14px;
    width: 2px;
    height: 30px;
    background: var(--color-secondary);
    opacity: 0.4;
  }

  .hero-social-link {
    position: relative;
    color: var(--color-secondary);
    margin-block: 6px;
    padding: 6px;
    font-size: 20px;
    transition: var(--transition-1);
  }

  .hero-social-link:is(:hover, :focus) {
    color: var(--royal-purple);
    transform: scale(1.15);
  }

  .hero-social-link .tooltip {
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(10px);
  }

  .hero-social-link:is(:hover, :focus) .tooltip {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }

  .scroll-down {
    display: block;
    position: absolute;
    bottom: 80px;
    right: -25px;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--ff-poppins);
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: rotate(90deg);
    transform-origin: top right;
    transition: var(--transition-1);
  }

  .scroll-down:hover {
    color: var(--royal-purple);
  }

  .scroll-down::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -50px;
    width: 30px;
    height: 2px;
    background: var(--color-secondary);
    opacity: 0.4;
  }

  /* About Desktop */
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .about-matrix-card {
    margin-bottom: 0;
  }

  /* Blueprint Desktop: 4 Columns */
  .blueprint-list {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Skills Desktop: 2 Columns */
  .skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .skills-content {
    margin-bottom: 0;
  }

  .skills-toggle {
    margin-inline: 0;
  }

  /* Services Desktop: 3 Columns */
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact Desktop */
  .contact {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 45px;
  }

  .contact-content {
    margin-bottom: 0;
  }

  .contact-form {
    max-width: unset;
    width: 100%;
  }

  .contact-social-list {
    padding-left: 0;
  }

  /* Footer Desktop */
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer .logo {
    margin-bottom: 0;
  }
}

/**
 * 1200px breakpoint (Large Desktops & Widescreens)
 */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .hero-social-list {
    left: -55px;
  }

  .scroll-down {
    right: -55px;
  }

  .about-matrix-card {
    padding: 38px 30px;
  }
}

/*-----------------------------------*\
 * #PHONE COUNTRY CODE SELECT
\*-----------------------------------*/

.phone-input-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.country-select {
  background: var(--input-bg);
  color: var(--color-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-8);
  padding: 13px 12px;
  font-family: var(--ff-roboto);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  cursor: pointer;
  outline: none;
  transition: var(--transition-1);
  max-width: 175px;
  flex-shrink: 0;
}

.country-select:focus {
  border-color: var(--royal-purple);
  box-shadow: 0 0 0 3px var(--royal-purple-glow);
}

.country-select option {
  background: var(--bg-secondary);
  color: var(--color-primary);
}

@media (max-width: 520px) {
  .phone-input-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .country-select {
    max-width: 100%;
    width: 100%;
  }
}

