:root {
  --dark-green: #0A3323;
  --moss-green: #839958;
  --beige: #F7F4D5;
  --rosy-brown: #D3968C;
  --midnight-green: #105666;
  --ink: #10251d;
  --muted: #6d766f;
  --white: #ffffff;
  --soft-white: #fffdf2;
  --border: rgba(10, 51, 35, .12);
  --shadow: 0 24px 70px rgba(10, 51, 35, .15);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, .23);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --transition: all .35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", "IBM Plex Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft-white);
  overflow-x: hidden;
}

body::selection {
  background: var(--rosy-brown);
  color: var(--white);
}

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

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

.section-padding {
  padding: 110px 0;
}

.section-dark {
  background: radial-gradient(circle at top right, rgba(131, 153, 88, .18), transparent 35%), linear-gradient(135deg, var(--dark-green), var(--midnight-green));
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--beige);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(247, 244, 213, .09);
  border: 1px solid rgba(247, 244, 213, .18);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 18px;
}

.eyebrow.dark {
  color: var(--midnight-green);
  background: rgba(16, 86, 102, .08);
  border-color: rgba(16, 86, 102, .12);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.hero-content h1,
.cta-card h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.7px;
  line-height: 1.28;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.section-heading p,
.section-desc {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.9;
}

.section-heading .dark + h2,
.section-desc.dark,
.services-section .section-heading p,
.process-section .section-heading p {
  color: var(--ink);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding-inline: 25px;
  transition: var(--transition);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-accent {
  background: var(--rosy-brown);
  border-color: var(--rosy-brown);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(211, 150, 140, .25);
}

.btn-accent:hover {
  background: #bd8078;
  border-color: #bd8078;
  color: var(--white);
  transform: translateY(-3px);
}

.btn-primary-soft {
  background: rgba(247, 244, 213, .12);
  border: 1px solid rgba(247, 244, 213, .2);
  color: var(--beige);
}

.btn-primary-soft:hover {
  background: var(--beige);
  color: var(--dark-green);
  transform: translateY(-2px);
}

.btn-primary-dark {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(10, 51, 35, .18);
}

.btn-primary-dark:hover {
  background: var(--midnight-green);
  border-color: var(--midnight-green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-light {
  border-color: rgba(247, 244, 213, .5);
  color: var(--beige);
}

.btn-outline-light:hover {
  background: var(--beige);
  color: var(--dark-green);
  transform: translateY(-3px);
}

/* Navbar */
.site-navbar {
  padding: 18px 0;
  transition: var(--transition);
  z-index: 999;
}

.site-navbar.scrolled,
.site-navbar.menu-open {
  padding: 10px 0;
  background: rgba(10, 51, 35, .86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
  border-bottom: 1px solid rgba(247, 244, 213, .10);
}

.brand-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--beige);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  color: var(--beige);
  font-weight: 900;
  letter-spacing: .2px;
}

.navbar-nav {
  gap: 6px;
}

.nav-link {
  color: rgba(247, 244, 213, .76);
  font-weight: 700;
  padding: 8px 14px !important;
  border-radius: 999px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--beige);
  background: rgba(247, 244, 213, .10);
}

.navbar-toggler {
  width: 48px;
  height: 44px;
  border: 1px solid rgba(247, 244, 213, .18);
  border-radius: 14px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: none !important;
}

.navbar-toggler span {
  width: 20px;
  height: 2px;
  background: var(--beige);
  border-radius: 99px;
}

/* Hero */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(247, 244, 213, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(247, 244, 213, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 85%);
}

.hero-content h1 {
  font-size: clamp(39px, 6vw, 76px);
  max-width: 720px;
}

.hero-lead {
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(247, 244, 213, .82);
  line-height: 1.9;
  max-width: 680px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-pills span {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--beige);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(247, 244, 213, .13);
  font-size: 14px;
  font-weight: 700;
}

.hero-note {
  color: rgba(247, 244, 213, .82);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.hero-note i {
  color: var(--moss-green);
}

.hero-visual {
  position: relative;
  min-height: 585px;
  display: grid;
  place-items: center;
}

.glass-card {
  border: 1px solid rgba(247, 244, 213, .15);
  background: rgba(247, 244, 213, .08);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-dark);
}

.brand-card {
  position: absolute;
  top: 42px;
  right: 50%;
  transform: translateX(48%);
  width: min(420px, 82vw);
  aspect-ratio: 1/1;
  border-radius: 42px;
  padding: 22px;
  overflow: hidden;
  animation: floatY 5.6s ease-in-out infinite;
}

.brand-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.dashboard-card {
  position: absolute;
  left: 14px;
  bottom: 44px;
  width: min(480px, 90vw);
  border-radius: 30px;
  padding: 18px;
  animation: floatY 7s ease-in-out infinite reverse;
}

.dashboard-top {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rosy-brown);
}

.dashboard-top span:nth-child(2) { background: var(--moss-green); }
.dashboard-top span:nth-child(3) { background: var(--beige); }

.dashboard-grid {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
}

.dash-sidebar,
.dash-main {
  background: rgba(247, 244, 213, .09);
  border: 1px solid rgba(247, 244, 213, .10);
  border-radius: 20px;
  min-height: 190px;
  padding: 16px;
}

.dash-sidebar span,
.dash-line {
  display: block;
  height: 10px;
  background: rgba(247, 244, 213, .28);
  border-radius: 999px;
  margin-bottom: 14px;
}

.dash-sidebar span:nth-child(1) { width: 70%; }
.dash-sidebar span:nth-child(2) { width: 85%; }
.dash-sidebar span:nth-child(3) { width: 55%; }
.dash-sidebar span:nth-child(4) { width: 76%; }

.dash-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.dash-cards span {
  height: 55px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(211,150,140,.72), rgba(131,153,88,.45));
}

.dash-chart {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 62px;
}

.dash-chart i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: rgba(247, 244, 213, .32);
}

.dash-chart i:nth-child(1) { height: 45%; }
.dash-chart i:nth-child(2) { height: 78%; }
.dash-chart i:nth-child(3) { height: 55%; }
.dash-chart i:nth-child(4) { height: 88%; }
.dash-chart i:nth-child(5) { height: 66%; }

.visual-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(247, 244, 213, .13);
}

.orbit-1 {
  width: 520px;
  height: 520px;
  top: 30px;
  right: 50%;
  transform: translateX(50%);
}

.orbit-2 {
  width: 650px;
  height: 650px;
  top: -25px;
  right: 50%;
  transform: translateX(50%);
}

.mini-floating {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--dark-green);
  background: var(--beige);
  border-radius: 18px;
  padding: 12px 15px;
  font-weight: 900;
  box-shadow: var(--shadow-dark);
}

.mini-floating i {
  color: var(--midnight-green);
  font-size: 20px;
}

.card-one {
  top: 98px;
  left: 2px;
}

.card-two {
  bottom: 125px;
  right: 8px;
}

/* About */
.about-section {
  background: linear-gradient(180deg, var(--beige), #fffdf2);
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow);
}

.about-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 16px;
}

.signature-line {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(131, 153, 88, .13);
  color: var(--dark-green);
  font-weight: 900;
  border: 1px solid rgba(131, 153, 88, .18);
}

/* Services */
.services-section {
  background: var(--soft-white);
}

.service-card,
.feature-card,
.project-card,
.why-card,
.skills-card,
.contact-info,
.contact-form {
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 16px 50px rgba(10, 51, 35, .07);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset-inline-start: -50px;
  top: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(211, 150, 140, .18);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  transform: scale(1.6);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--beige);
  background: linear-gradient(135deg, var(--dark-green), var(--midnight-green));
  font-size: 25px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.service-card h3,
.feature-card h3,
.project-body h3,
.process-item h3,
.why-card h2,
.skills-card h2,
.contact-info h2 {
  font-weight: 900;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p,
.feature-card p,
.project-body p,
.process-item p,
.why-card p,
.skills-card p,
.contact-info p {
  color: var(--muted);
  line-height: 1.9;
}

.service-card .tag {
  display: inline-block;
  color: var(--midnight-green);
  background: rgba(16, 86, 102, .08);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
}

/* Features */
.features-section {
  position: relative;
  overflow: hidden;
}

.features-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(211, 150, 140, .16);
  filter: blur(20px);
  left: -180px;
  top: -200px;
}

.feature-card {
  background: rgba(247, 244, 213, .08);
  border: 1px solid rgba(247, 244, 213, .14);
  padding: 25px;
  min-height: 230px;
  backdrop-filter: blur(14px);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(247, 244, 213, .12);
}

.feature-card i {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--beige);
  color: var(--dark-green);
  font-size: 23px;
  margin-bottom: 18px;
}

.feature-card h3 {
  color: var(--beige);
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p {
  color: rgba(247, 244, 213, .76);
  margin: 0;
}

/* Process */
.process-section {
  background: linear-gradient(180deg, #fffdf2, var(--beige));
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 18px 50px rgba(10, 51, 35, .08);
  position: relative;
}

.process-item span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--dark-green);
  color: var(--beige);
  font-weight: 900;
  margin-bottom: 22px;
}

.process-item h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.process-item p {
  margin: 0;
}

/* Work */
.work-section {
  background: var(--soft-white);
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(10, 51, 35, .08);
}

.project-mockup {
  min-height: 270px;
  padding: 26px;
  position: relative;
  background: linear-gradient(135deg, var(--midnight-green), var(--dark-green));
}

.mock-window {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.mock-window span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rosy-brown);
}

.mock-window span:nth-child(2) { background: var(--moss-green); }
.mock-window span:nth-child(3) { background: var(--beige); }

.mock-content,
.product-grid,
.mock-hero,
.service-layout {
  background: rgba(247, 244, 213, .10);
  border: 1px solid rgba(247, 244, 213, .15);
  border-radius: 24px;
  min-height: 185px;
  padding: 18px;
}

.mock-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 13px;
}

.mock-content i {
  background: rgba(247, 244, 213, .18);
  border-radius: 18px;
}

.mock-content i:nth-child(1) { grid-row: span 2; background: rgba(211, 150, 140, .42); }
.mock-content i:nth-child(4) { background: rgba(131, 153, 88, .42); }

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

.product-grid i {
  border-radius: 18px;
  background: rgba(247, 244, 213, .18);
}

.product-grid i:nth-child(2),
.product-grid i:nth-child(3) { background: rgba(211, 150, 140, .42); }

.mock-hero {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 16px;
}

.mock-hero i {
  border-radius: 18px;
  background: rgba(247, 244, 213, .18);
}

.mock-hero i:nth-child(2) { background: rgba(131, 153, 88, .42); }

.service-layout {
  display: grid;
  grid-template-rows: 1.1fr .6fr .6fr;
  gap: 13px;
}

.service-layout i {
  border-radius: 16px;
  background: rgba(247, 244, 213, .18);
}

.service-layout i:nth-child(1) { background: rgba(211, 150, 140, .42); }

.project-body {
  padding: 28px;
}

.project-type {
  display: inline-block;
  color: var(--midnight-green);
  background: rgba(16, 86, 102, .08);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.project-body h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.project-body ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.project-body li {
  position: relative;
  padding-inline-start: 24px;
  color: var(--ink);
  font-weight: 700;
}

.project-body li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rosy-brown);
}

.carousel-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.carousel-control-next,
.carousel-control-prev {
  position: static;
  width: 54px;
  height: 54px;
  opacity: 1;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--beige);
  border: 0;
  display: grid;
  place-items: center;
  transition: var(--transition);
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background: var(--rosy-brown);
  color: var(--white);
  transform: translateY(-3px);
}

/* Why */
.why-section {
  background: linear-gradient(180deg, var(--beige), #fffdf2);
}

.why-card,
.skills-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.why-card p {
  margin: 18px 0 24px;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list span {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.check-list i {
  color: var(--moss-green);
  font-size: 20px;
}

.skills-grid {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.skills-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(16, 86, 102, .06);
  border: 1px solid rgba(16, 86, 102, .10);
}

.skills-grid h3 {
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 6px;
}

.skills-grid p {
  margin: 0;
}

/* CTA */
.cta-section {
  padding: 85px 0;
}

.cta-card {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 244, 213, .08);
  border: 1px solid rgba(247, 244, 213, .15);
  border-radius: 38px;
  padding: clamp(30px, 5vw, 54px);
  box-shadow: var(--shadow-dark);
}

.cta-card h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.cta-card p {
  color: rgba(247, 244, 213, .78);
  line-height: 1.9;
  margin: 15px 0 0;
  max-width: 760px;
}

/* Contact */
.contact-section {
  background: var(--soft-white);
}

.contact-info,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(10, 51, 35, .08);
  padding: clamp(28px, 4vw, 42px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(10, 51, 35, .05);
  border: 1px solid rgba(10, 51, 35, .08);
  color: var(--dark-green);
  font-weight: 900;
  transition: var(--transition);
}

.contact-list a:hover {
  transform: translateX(-5px);
  background: var(--dark-green);
  color: var(--beige);
}

.contact-list i {
  font-size: 22px;
}

.contact-form label {
  font-weight: 900;
  color: var(--dark-green);
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border-radius: 18px;
  border: 1px solid rgba(10, 51, 35, .12);
  padding: 14px 16px;
  color: var(--ink);
  box-shadow: none !important;
  background-color: #fffef7;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--moss-green);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
.footer {
  padding: 38px 0;
}

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

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 20px;
  background: var(--beige);
}

.footer-brand h3 {
  font-weight: 900;
  margin: 0 0 5px;
  font-size: 20px;
}

.footer-brand p,
.copyright {
  margin: 0;
  color: rgba(247, 244, 213, .70);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
}

.footer-links a {
  color: rgba(247, 244, 213, .76);
  font-weight: 800;
  transition: var(--transition);
}

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

.back-to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--rosy-brown);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 90;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cursor-soft {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(211,150,140,.18), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: .6;
  transition: opacity .2s ease;
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@keyframes floatY {
  0%, 100% { transform: translateX(48%) translateY(0); }
  50% { transform: translateX(48%) translateY(-14px); }
}

.dashboard-card.glass-card {
  transform: none;
}

@media (max-width: 1199.98px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 85px 0;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(10, 51, 35, .96);
    border: 1px solid rgba(247, 244, 213, .12);
  }

  .nav-cta {
    width: 100%;
    margin-top: 10px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .brand-card {
    top: 18px;
    width: min(360px, 84vw);
  }

  .dashboard-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
  }

  .card-one { left: 8px; top: 74px; }
  .card-two { right: 8px; bottom: 100px; }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 38px;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
    padding-top: 130px !important;
    padding-bottom: 70px;
  }

  .hero-pills span {
    font-size: 13px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .dashboard-grid {
    grid-template-columns: 72px 1fr;
  }

  .dash-sidebar,
  .dash-main {
    min-height: 160px;
  }

  .dash-cards span {
    height: 42px;
  }

  .mini-floating {
    font-size: 13px;
    padding: 10px 12px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .project-mockup {
    min-height: 230px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cursor-soft {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .brand-logo-wrap {
    width: 44px;
    height: 44px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .btn-lg {
    width: 100%;
  }

  .dashboard-card {
    width: 96%;
  }

  .card-one,
  .card-two {
    display: none;
  }

  .about-card,
  .why-card,
  .skills-card,
  .contact-info,
  .contact-form {
    padding: 24px;
  }

  .section-heading h2 {
    font-size: 30px;
  }
}
.project-image-slider {
  position: relative;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: rgba(247, 244, 213, 0.08);
}

.project-swiper {
  width: 100%;
  height: 280px;
  position: relative;
}

.project-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.project-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-swiper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 51, 35, 0.04) 0%,
    rgba(10, 51, 35, 0.28) 100%
  );
}

.project-swiper-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 244, 213, 0.88);
  color: #0A3323;
  font-size: 15px;
  transition: 0.3s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.project-swiper-btn:hover {
  background: #D3968C;
  color: #0A3323;
}

.project-swiper-prev {
  right: 14px;
}

.project-swiper-next {
  left: 14px;
}

.project-swiper-pagination {
  bottom: 12px !important;
  z-index: 5;
}

.project-swiper-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  opacity: 1;
  background: rgba(247, 244, 213, 0.6);
}

.project-swiper-pagination .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 20px;
  background: #D3968C;
}

.project-card {
  overflow: hidden;
}

/* Mobile */
@media (max-width: 767px) {
  .project-swiper {
    height: 220px;
  }

  .project-swiper-btn {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .project-swiper-prev {
    right: 10px;
  }

  .project-swiper-next {
    left: 10px;
  }
}

@media (max-width: 420px) {
  .project-swiper {
    height: 190px;
  }
}
