/* =========================
   DESIGN TOKENS (LIGHT)
========================= */

:root {
  --primary: #2065aa;
  --primary-hover: #185590;
  --primary-soft: rgba(32, 101, 170, 0.1);
  --text-primary: #1f2937;
  --text-secondary: #5b6472;
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-muted: #f1f3f6;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 200ms;
  --focus-ring: 0 0 0 3px rgba(32, 101, 170, 0.28);
  --nav-height: 72px;
}

/* =========================
   ROOT & GLOBAL
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg);
  position: relative;
  padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  transition: color var(--duration) var(--ease),
    background-color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-wrapper {
  min-height: calc(100vh - var(--nav-height));
}

/* =========================
   UTILITIES
========================= */

.pt-100 {
  padding-top: 88px;
}

.pb-100 {
  padding-bottom: 88px;
}

.row-gap {
  gap: 24px;
}

.primary-text {
  color: var(--text-primary);
}

.secondary-text {
  color: var(--text-secondary);
}

/* =========================
   ALERT / FIXED ELEMENTS
========================= */

.under-construction {
  background-color: #c53030;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9;
  padding: 10px 20px;
}

.button-dark,
.button-light {
  border-radius: var(--radius-pill);
  width: 52px;
  height: 52px;
  position: fixed;
  bottom: 22px;
  left: 22px;
  border: 1px solid var(--border-strong);
  background: #0b0f1a;
  color: #fff;
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    background-color var(--duration) var(--ease);
}

.button-dark:hover,
.button-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button-dark:focus-visible,
.button-light:focus-visible {
  box-shadow: var(--focus-ring), var(--shadow-md);
}

/* =========================
   TYPOGRAPHY
========================= */

.title-name {
  font-family: "Poppins", sans-serif;
}

.title-tag {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.aboutme {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  max-width: 42rem;
  color: var(--text-secondary);
}

.hero-wrapper h1 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  gap: 0.4rem;
  align-items: center;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.proj-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.proj-desc {
  color: var(--text-secondary);
  max-width: 52rem;
}

.lead.proj-desc {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-custom {
  color: #fff !important;
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  transition: background-color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.btn-primary:hover,
.btn-custom:hover {
  color: #fff !important;
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:focus-visible,
.btn-custom:focus-visible,
.btn-primary.focus,
.btn-primary:focus {
  color: #fff !important;
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: var(--focus-ring) !important;
}

.btn-primary:active,
.btn-custom:active,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff !important;
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  transform: translateY(0);
}

.portfolio-btn {
  background: var(--primary);
  padding: 10px 18px;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  gap: 0.35rem;
}

.portfolio-btn:hover {
  color: #fff !important;
  text-decoration: none;
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.portfolio-btn:focus-visible {
  box-shadow: var(--focus-ring);
}

.chip-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}

.chip-btn:hover {
  background: var(--primary-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.chip-btn:focus-visible {
  box-shadow: var(--focus-ring);
}

.portfolio-btn.is-active {
  box-shadow: var(--focus-ring);
}

/* =========================
   FORMS
========================= */

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.form-control {
  border: 1px solid var(--border-strong);
  background-color: var(--surface);
  color: var(--text-primary);
  transition: border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    background-color var(--duration) var(--ease);
}

.form-control::placeholder {
  color: #8b93a1;
}

.form-control:focus {
  color: var(--text-primary);
  background-color: var(--surface);
  border-color: var(--primary) !important;
  outline: 0;
  box-shadow: var(--focus-ring);
}

.custom-input {
  height: 50px;
  border-radius: var(--radius-pill);
  padding-left: 18px;
  padding-right: 18px;
}

.custom-input-area {
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  min-height: 140px;
  resize: vertical;
}

/* =========================
   AVATAR / IMAGES
========================= */

.avatar-img img {
  border-radius: 50%;
  border: 3px solid var(--surface);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.badge-img {
  width: 42px;
  margin: 4px;
  border-radius: 6px;
}

#projectCarousel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0b0f1a;
  box-shadow: var(--shadow-md);
}

#projectCarousel .carousel-item {
  height: 500px;
}

#projectCarousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0b0f1a;
}

.carousel img {
  border-radius: var(--radius-md);
  object-fit: cover;
}

/* =========================
   BADGES & SKILLS
========================= */

.pBadge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pSkill {
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.pSkill:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
}

.tech-badge,
.tech-badge-2 {
  display: inline-block;
  background: var(--surface-muted);
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  margin: 3px;
}

.project-inprogress,
.project-inprogress-single {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #fff4e5;
  color: #9a3412;
  border: 1px solid rgba(234, 88, 12, 0.25);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.project-inprogress {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
}

.project-inprogress-single {
  display: inline-block;
  width: auto;
  margin-bottom: 12px;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  background: rgba(247, 248, 250, 0.82);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  transition: background-color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
  z-index: 999;
}

.custom-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.navbar-toggler {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 6px 8px;
}

.navbar-toggler:focus {
  box-shadow: var(--focus-ring);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-brand {
  font-size: 1.25rem;
  color: var(--text-primary) !important;
  letter-spacing: -0.02em;
}

.brand-accent {
  color: var(--primary);
}

.nav-link {
  position: relative;
  color: var(--text-secondary) !important;
  font-weight: 500;
  font-size: 0.925rem;
  padding: 0.4rem 0.2rem !important;
}

.nav-link:hover {
  color: var(--primary) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width var(--duration) var(--ease);
}

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

.nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav .nav-item {
  margin-bottom: 0 !important;
}

@media (max-width: 991.98px) {
  .navbar-nav {
    gap: 10px;
    padding: 12px 0 8px;
  }

  .navbar-nav .nav-item {
    margin-bottom: 4px !important;
  }

  .portfolio-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   ABOUT SECTION
========================= */

.aboutcard {
  background: var(--primary);
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 40px);
  position: relative;
  box-shadow: var(--shadow-md);
  max-width: 56rem;
  margin-inline: auto;
}

.aboutcard p {
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

.aboutcard p:last-child {
  margin-bottom: 0;
}

.aboutcard:after {
  background-color: var(--primary);
  content: "";
  height: 16px;
  width: 16px;
  left: 8%;
  position: absolute;
  top: -8px;
  transform: rotate(45deg);
}

/* =========================
   WORK / PROFILE CARDS
========================= */

.work-wrapper {
  padding: 88px 0;
}

.work-title {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  margin-top: 4px;
}

.upwork-github-title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.35;
}

.work-wrapper .row > div {
  display: flex;
}

.profile-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.profile-content {
  flex-grow: 1;
}

.jss-percentage {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.jss-title {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.my-work-wrapper img {
  transition: transform var(--duration) var(--ease);
}

.my-work-wrapper .col-12:hover img {
  transform: translateY(-3px);
}

/* =========================
   REVIEW SECTION
========================= */

.review-wrapper {
  background: var(--surface-muted);
  padding: 88px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.review-title {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.review-subtitle {
  color: var(--text-secondary);
  margin-top: 6px;
}

.swiper {
  padding: 36px 8px 48px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.reviewer-meta {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  width: 36px;
  height: 36px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

/* =========================
   GOOGLE REVIEWS
========================= */

.g-reviews-section .g-reviews-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.g-reviews-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.g-logo {
  flex-shrink: 0;
}

.g-reviews-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
}

.g-summary-score {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.g-summary-count {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.g-stars {
  display: inline-flex;
  gap: 1px;
  line-height: 1;
}

.g-star {
  font-size: 1.05rem;
}

.g-star-full,
.g-star-half {
  color: #fbbc04;
}

.g-star-empty {
  color: #dadce0;
}

.g-review-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.g-review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.g-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.g-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.g-review-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a73e8;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.g-review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1.3;
}

a.g-review-name:hover {
  color: #1a73e8;
  text-decoration: underline;
}

.g-review-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.g-review-rating {
  margin-bottom: 8px;
}

.g-review-text {
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.g-review-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a73e8;
  text-decoration: none;
  margin-top: auto;
}

.g-review-link:hover {
  text-decoration: underline;
}

.g-reviews-footer {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.g-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: #1a73e8;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.g-see-all:hover {
  background: rgba(26, 115, 232, 0.06);
  transform: translateY(-1px);
}

.g-attribution {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin: 0;
}

.g-reviews-empty {
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  color: var(--text-secondary);
}

.g-reviews-empty code {
  font-size: 0.85em;
  color: var(--text-primary);
}

/* =========================
   SOCIAL / GET STARTED
========================= */

.get-started-wrapper hr,
hr {
  border: 0;
  border-top: 1px solid var(--border);
  opacity: 1;
  margin: 0;
}

.get-started-title {
  color: var(--text-primary);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.get-started-title span {
  color: var(--primary);
}

.social-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.social-card a:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 101, 170, 0.35);
  box-shadow: var(--shadow-md);
  background: var(--primary-soft);
}

.social-card a:focus-visible {
  box-shadow: var(--focus-ring);
}

.social-card svg {
  width: 28px;
  height: 28px;
}

/* =========================
   FOOTER
========================= */

.footer-wrapper {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.copyright-text,
.developed-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.developed-text {
  text-align: right;
}

.copyright-text span {
  color: var(--text-primary);
  font-weight: 600;
}

/* =========================
   PORTFOLIO
========================= */

.portfolio-card {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  height: 100%;
  transition: transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong) !important;
}

.portfolio-img {
  height: 200px;
  object-fit: cover;
  transition: transform 280ms var(--ease);
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.03);
}

.portfolio-card .card-body {
  padding: 20px 20px 22px;
}

.portfolio-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================
   CASE STUDY / CODE HELPERS
========================= */

.ios-note {
  color: var(--text-secondary);
  font-size: 0.925rem;
}

/* =========================
   ANIMATIONS
========================= */

.bounce {
  animation: bounce 2.4s ease-in-out infinite;
  display: inline-block;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  #projectCarousel .carousel-item {
    height: 320px;
  }
}

@media only screen and (max-width: 600px) {
  .pt-100 {
    padding-top: 56px;
  }

  .pb-100 {
    padding-bottom: 56px;
  }

  .work-wrapper,
  .review-wrapper {
    padding: 56px 0;
  }

  .avatar-img {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
  }

  .avatar-img img {
    width: 48% !important;
  }

  .hero-wrapper h1 {
    justify-content: center;
    text-align: center;
  }

  .aboutme {
    text-align: center;
    margin-inline: auto;
  }

  .work-title {
    font-size: 1rem;
  }

  .get-started-title {
    font-size: 1.6rem;
  }

  .social-card {
    margin-bottom: 12px;
  }

  .review-card {
    margin-bottom: 12px;
  }

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

  .copyright-text,
  .developed-text {
    text-align: center;
  }

  .button-dark,
  .button-light {
    width: 46px;
    height: 46px;
    bottom: 16px;
    left: 16px;
  }
}
