/* =========================================================
   Mohammad Abdelfattah Al-Sqoor - Official Landing Page Styles
   Theme: Executive Dark Slate & Refined Sapphire Blue
   Fully Responsive (Mobile / Tablet / Desktop)
   Bilingual RTL & LTR Support with CSS Logical Properties
   ========================================================= */

:root {
  /* Core Color Palette */
  --bg-main: #0a0f1d;
  --bg-alt: #0f172a;
  --bg-card: rgba(26, 36, 56, 0.72);
  --bg-card-hover: rgba(33, 46, 72, 0.88);
  --border-subtle: rgba(148, 163, 184, 0.14);
  --border-focus: rgba(56, 189, 248, 0.5);

  --primary: #0284c7;
  --primary-light: #38bdf8;
  --primary-dark: #0369a1;
  --accent: #2563eb;
  --accent-warm: #d97706;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Typography */
  --font-ar: 'Cairo', system-ui, -apple-system, sans-serif;
  --font-en: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout Dimensions */
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Transitions & Shadows */
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 35px rgba(2, 132, 199, 0.22);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
  font-family: var(--font-ar);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* LTR Font Override */
html[dir="ltr"] body {
  font-family: var(--font-en);
}

/* Background Atmosphere Glows */
body::before {
  content: "";
  position: fixed;
  top: -150px;
  right: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.12) 0%, rgba(10, 15, 29, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(10, 15, 29, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* Container Utility */
.section-container, .hero-container, .nav-container, .footer-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* =========================================================
   Buttons & Interactive Elements
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  box-shadow: 0 6px 24px rgba(56, 189, 248, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(30, 41, 59, 0.85);
  border-color: var(--border-subtle);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: rgba(51, 65, 85, 0.9);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.25);
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text-main);
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: var(--primary-light);
}

.btn-outline:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--primary-light);
}

/* =========================================================
   Header & Navigation
   ========================================================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.brand-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding-block: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-light);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-light);
  transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle-btn:hover {
  background: rgba(56, 189, 248, 0.12);
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero-section {
  padding-block: 70px 90px;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.hero-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 20px;
  color: #ffffff;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 10%, var(--primary-light) 65%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.hero-subtitle strong {
  color: var(--text-main);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 45px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.metric-card {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-light);
  font-family: var(--font-en);
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

/* Profile Photo Framing */
.hero-media {
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.image-backdrop {
  position: absolute;
  inset: -10px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.4) 0%, rgba(37, 99, 235, 0.1) 100%);
  filter: blur(20px);
  z-index: 0;
  opacity: 0.6;
}

.profile-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.image-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

html[dir="ltr"] .image-tag {
  right: auto;
  left: 20px;
}

.image-tag i {
  color: var(--primary-light);
  font-size: 1.3rem;
}

.image-tag div {
  display: flex;
  flex-direction: column;
}

.image-tag strong {
  font-size: 0.92rem;
  color: #fff;
}

.image-tag span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================================================
   Section Headers (Shared)
   ========================================================= */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* =========================================================
   About Section
   ========================================================= */
.about-section {
  padding-block: 80px;
  background: var(--bg-alt);
  border-block: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.about-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.35);
  transform: translateY(-4px);
}

.highlight-card {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.12);
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  width: fit-content;
}

/* =========================================================
   Projects Section
   ========================================================= */
.projects-section {
  padding-block: 90px;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}

.project-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: var(--shadow-sm);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tag-pill {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(2, 132, 199, 0.12);
  color: var(--primary-light);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.project-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.project-overview {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.project-role-box {
  background: rgba(10, 15, 29, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.project-role-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-role-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-role-box li {
  font-size: 0.92rem;
  color: #cbd5e1;
  position: relative;
  padding-inline-start: 20px;
}

.project-role-box li::before {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--primary-light);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

html[dir="ltr"] .project-role-box li::before {
  right: auto;
  left: 0;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--primary-light);
}

.link-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.link-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-subtle);
  color: var(--text-muted);
}

.link-btn.secondary:hover {
  color: #fff;
  border-color: var(--text-muted);
}

/* =========================================================
   Skills Section
   ========================================================= */
.skills-section {
  padding-block: 80px;
  background: var(--bg-alt);
  border-block: 1px solid var(--border-subtle);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.skill-category {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: var(--transition);
}

.skill-category:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.3);
}

.skill-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.skill-head i {
  color: var(--primary-light);
  font-size: 1.3rem;
}

.skill-head h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.skill-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skill-items li {
  font-size: 0.94rem;
  color: var(--text-muted);
  position: relative;
  padding-inline-start: 18px;
}

.skill-items li::before {
  content: "—";
  position: absolute;
  right: 0;
  color: var(--primary-light);
}

html[dir="ltr"] .skill-items li::before {
  right: auto;
  left: 0;
}

/* =========================================================
   FAQ Section (AEO & Answer Engines)
   ========================================================= */
.faq-section {
  padding-block: 90px;
}

.faq-accordion {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: rgba(56, 189, 248, 0.4);
  background: var(--bg-card-hover);
}

.faq-question {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  color: var(--primary-light);
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 14px;
}

/* =========================================================
   Contact Section
   ========================================================= */
.contact-section {
  padding-block: 90px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info .section-subtitle {
  margin-bottom: 8px;
}

.contact-title {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.channel-icon {
  font-size: 1.4rem;
  color: var(--primary-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 132, 199, 0.12);
  border-radius: var(--radius-sm);
}

.channel-title {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.channel-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
}

.channel-value:hover {
  color: var(--primary-light);
}

/* Form Styling */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.contact-form-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #cbd5e1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 15, 29, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.94rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  padding-block: 50px 35px;
  background: #070a14;
  border-top: 1px solid var(--border-subtle);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.footer-role {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* =========================================================
   Responsive Media Queries
   ========================================================= */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .status-pill {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-media {
    order: -1;
  }

  .image-wrapper {
    max-width: 320px;
    margin-inline: auto;
  }

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

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

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(10, 15, 29, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-subtle);
    gap: 18px;
  }

  .nav-menu.mobile-active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-item {
    padding: 24px 20px;
  }

  .contact-form-card {
    padding: 24px 20px;
  }
}
