.payment.section {
  padding: 60px 0 40px;
  background: color-mix(in srgb, var(--background-color), white 10%);
}

.payment .section-title p {
  max-width: 540px;
  margin: 0 auto;
  color: rgba(16, 32, 53, 0.68);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.payment-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 28px 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(30, 115, 185, 0.15);
  box-shadow: 0 22px 48px rgba(12, 29, 52, 0.12);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.payment-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.2px;
  background: linear-gradient(135deg, rgba(30, 115, 185, 0.35), rgba(244, 195, 32, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.payment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px rgba(12, 29, 52, 0.18);
}

.payment-card__media {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.payment-card__media img {
  width: 168px;
  height: 84px;
  object-fit: contain;
  z-index: 1;
}

.payment-card__glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(30, 115, 185, 0.24), transparent 70%);
  filter: blur(14px);
  transform: translateY(-16px);
  z-index: 0;
}

.payment-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.payment-card__brand {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0d1c30;
  text-transform: uppercase;
}

.payment-card__brand--bank {
  color: #b30638;
}

.payment-card__title {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0;
  color: #0f1d32;
}

.payment-card__subtitle {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(15, 29, 50, 0.6);
}

.payment-card__account {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(30, 115, 185, 0.08);
  color: #0f1d32;
  font-weight: 600;
  justify-content: center;
}

.payment-card__account i {
  font-size: 1rem;
  color: rgba(30, 115, 185, 0.85);
}

.payment-card__account-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.payment-card__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 29, 50, 0.5);
}

.payment-card__value {
  font-size: 0.96rem;
  color: #06162c;
  word-break: break-all;
}

.payment-card__copy {
  border: none;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 115, 185, 0.95);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-card__copy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(30, 115, 185, 0.25);
}

.payment-card__note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(15, 29, 50, 0.68);
}

.payment-card__note i {
  color: rgba(30, 115, 185, 0.85);
}

.payment-card__note--bank {
  color: rgba(11, 31, 28, 0.75);
}

.payment-card__details {
  display: grid;
  gap: 10px;
  text-align: left;
}

.payment-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(6, 22, 44, 0.04);
  border: 1px solid rgba(6, 22, 44, 0.06);
}

.payment-detail__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(6, 22, 44, 0.45);
}

.payment-detail__value {
  font-size: 0.94rem;
  font-weight: 600;
  color: #071326;
}

.payment-card--bank {
  border: 1px solid rgba(179, 6, 56, 0.2);
  box-shadow: 0 24px 56px rgba(179, 6, 56, 0.12);
}

.payment-card--bank .payment-card__account {
  background: rgba(179, 6, 56, 0.08);
  color: #2a0a17;
}

.payment-card--bank .payment-card__account i,
.payment-card--bank .payment-card__note i {
  color: rgba(179, 6, 56, 0.85);
}

.payment-card--bac {
  border: 1px solid rgba(208, 0, 45, 0.28);
  box-shadow: 0 26px 58px rgba(208, 0, 45, 0.14);
}

.payment-card__brand--bac {
  color: #d0002d;
}

.payment-card__account--bac {
  background: rgba(208, 0, 45, 0.08);
  color: #2a0a12;
}

.payment-card--bac .payment-card__account i,
.payment-card__note--bac i {
  color: rgba(208, 0, 45, 0.88);
}

.payment-card__note--bac {
  color: rgba(32, 9, 14, 0.78);
}

.payment-toast {
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 18px;
  background: rgba(30, 115, 185, 0.95);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(30, 115, 185, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 1100;
}

.payment-toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.payment-toast i {
  font-size: 1.2rem;
}

@media (max-width: 575.98px) {
  .payment-card {
    padding: 24px;
    border-radius: 18px;
  }

  .payment-card__media img {
    width: 140px;
    height: 70px;
  }

  .payment-card__details {
    gap: 8px;
  }

  .payment-card__account {
    flex-wrap: wrap;
  }

  .payment-toast {
    bottom: 32px;
    padding: 12px 18px;
  }
}
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Jost",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root { 
  --color-primary: #1e73b9;
  --color-secondary: #f4c320;
  --color-success: #3cb54a;
  --color-dark: #000000;
  --color-light: #f4f7fb;
  --background-color: #f4f7fb;
  --default-color: #1a2535;
  --heading-color: #0d1c2b;
  --accent-color: var(--color-primary);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: var(--color-secondary);
  --nav-mobile-background-color: #111723;
  --nav-dropdown-background-color: #0d1c2b;
  --nav-dropdown-color: #f4f7fb;
  --nav-dropdown-hover-color: var(--color-secondary);
}


.light-background {
  --background-color: #e7edf7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0b1522;
  --default-color: #e5eefc;
  --heading-color: #fefefe;
  --surface-color: #142338;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--surface-color), transparent 15%);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(30, 115, 185, 0.1);
}

.loading-placeholder::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 35%);
  border-top-color: var(--accent-color);
  animation: placeholder-spin 0.75s linear infinite;
}

@keyframes placeholder-spin {
  to {
    transform: rotate(360deg);
  }
}

.cliente-video-link {
  position: relative;
  display: inline-block;
}

.cliente-video-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-success);
  color: #ffffff;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(30, 115, 185, 0.25);
}

.cliente-video-badge i {
  color: #ffffff;
}

.cliente-video-link:hover .cliente-video-badge {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(244, 195, 32, 0.35);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  z-index: 9998;
}

.floating-whatsapp img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.floating-whatsapp:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 24px 52px rgba(37, 211, 102, 0.45);
}

@media (max-width: 575.98px) {
  .floating-whatsapp {
    right: 18px;
    bottom: 86px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp img {
    width: 28px;
    height: 28px;
  }
}

.services .service-item {
  width: 100%;
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-content {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(55, 81, 126, 0.12);
  background: var(--surface-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio .portfolio-item .portfolio-content img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.portfolio .portfolio-item .portfolio-meta {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
  box-shadow: 0 10px 25px rgba(55, 81, 126, 0.14);
}

.portfolio .portfolio-item .portfolio-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(55, 81, 126, 0.18);
}

.services .service-item {
  width: 100%;
}

.services .service-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(30, 115, 185, 0.12);
  color: var(--color-secondary);
  font-size: 1.7rem;
  box-shadow: 0 12px 26px rgba(30, 115, 185, 0.18);
}

.services .service-item .icon .icon {
  font-size: inherit;
}

.project-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(15, 33, 58, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.project-card::before {
  content: none;
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 0, 0, 0.55);
  box-shadow: 0 22px 54px rgba(15, 33, 58, 0.14);
}

.project-media {
  position: relative;
  height: 240px;
  background: rgba(15, 37, 64, 0.08);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
  filter: brightness(1) contrast(1.05);
}

.project-card:hover .project-media img {
  transform: scale(1.03);
  filter: brightness(1.12) contrast(1.08) saturate(1.12);
}

.project-content {
  padding: 24px;
  background: #ffffff;
}

.project-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.project-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: #0b1d33;
  margin-bottom: 0.5rem;
  text-shadow: none;
}

.project-heading .project-title {
  margin-bottom: 0;
}

.project-heading .project-price {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-success);
  border: none;
  padding: 0;
  box-shadow: none;
  white-space: nowrap;
  margin-left: auto;
  text-align: right;
}

.project-desc {
  color: rgba(11, 29, 51, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(15, 33, 58, 0.08);
  padding-top: 1.2rem;
  flex-wrap: nowrap;
}

.project-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: none;
  white-space: nowrap;
}

.project-price-alt {
  background: none;
  color: rgba(30, 115, 85, 0.85);
}

.project-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.project-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.project-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

@media (max-width: 575.98px) {
  .project-footer {
    gap: 6px;
  }

  .project-price {
    padding: 0;
    font-size: 0.9rem;
  }

  .project-btn {
    padding: 7px 12px;
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
  .project-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .project-price {
    width: auto;
    min-width: 160px;
  }

  .project-actions {
    justify-content: flex-end;
  }

  .project-actions .project-btn {
    flex: 0 0 auto;
  }
}

.project-btn:hover::before,
.project-btn:focus-visible::before {
  transform: scale(1.4);
  opacity: 1;
}

.project-btn-primary {
  background: var(--color-primary);
  color: #fefefe;
  border: 1px solid rgba(30, 115, 185, 0.58);
  box-shadow: 0 14px 30px rgba(30, 115, 185, 0.35);
}

.project-btn-secondary {
  background: var(--color-secondary);
  color: #221703;
  border: 1px solid rgba(244, 195, 32, 0.45);
  box-shadow: 0 12px 28px rgba(244, 195, 32, 0.28);
}

.project-btn:hover,
.project-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(71, 178, 228, 0.3);
}

.project-btn-secondary:hover,
.project-btn-secondary:focus-visible {
  box-shadow: 0 18px 40px rgba(244, 195, 32, 0.35);
}

.project-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 8, 15, 0.82);
  backdrop-filter: blur(14px);
  z-index: 9999;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.project-modal--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.project-modal__card {
  width: min(420px, 92vw);
  background: #0b1623;
  border: 1px solid rgba(30, 115, 185, 0.35);
  border-radius: 22px;
  box-shadow: 0 26px 80px rgba(4, 12, 23, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  padding: 34px 30px 30px;
  position: relative;
  color: #ffffff;
  animation: project-modal-zoom 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 115, 185, 0.12);
  border: 1px solid rgba(30, 115, 185, 0.4);
  color: rgba(213, 235, 255, 0.85);
  font-size: 1.05rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.project-modal__close:hover,
.project-modal__close:focus-visible {
  background: rgba(244, 195, 32, 0.25);
  color: #03080f;
  transform: rotate(90deg);
}

.project-modal__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(244, 195, 32, 0.25);
  border: 1px solid rgba(244, 195, 32, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(244, 195, 32, 0.95);
  margin-bottom: 16px;
  box-shadow: 0 14px 36px rgba(71, 178, 228, 0.25);
}

.project-modal__title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: center;
}

.project-modal__subtitle {
  text-align: center;
  color: rgba(229, 239, 251, 0.78);
  font-weight: 600;
  margin-bottom: 18px;
}

.project-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-modal__form--hidden {
  display: none;
}

.project-modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-modal__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(229, 239, 251, 0.82);
}

.project-modal__input,
.project-modal__textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(30, 115, 185, 0.32);
  background: rgba(255, 255, 255, 0.05);
  color: #f4f8ff;
  font-size: 0.95rem;
  padding: 12px 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  font-family: inherit;
}

.project-modal__textarea {
  min-height: 90px;
  resize: vertical;
}

.project-modal__input:focus,
.project-modal__input:focus-visible,
.project-modal__textarea:focus,
.project-modal__textarea:focus-visible {
  outline: none;
  border-color: rgba(244, 195, 32, 0.55);
  box-shadow: 0 0 0 3px rgba(244, 195, 32, 0.18);
}

.project-modal__submit {
  border: none;
  border-radius: 12px;
  background: var(--color-success);
  color: #0b1522;
  box-shadow: 0 20px 36px rgba(60, 181, 74, 0.3);
}

.project-modal__success {
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(60, 181, 74, 0.45);
  background: rgba(60, 181, 74, 0.2);
  color: rgba(214, 255, 221, 0.96);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(60, 181, 74, 0.2);
}

.project-modal__success--hidden {
  display: none;
}

@keyframes project-modal-zoom {
  0% {
    transform: scale(0.88) translateY(20px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .project-media {
    height: 200px;
  }

  .project-content {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .project-card {
    border-radius: 18px;
  }

  .project-media {
    height: 150px;
  }

  .project-content {
    padding: 18px;
  }

  .project-title {
    font-size: 1.08rem;
  }

  .project-desc {
    font-size: 0.88rem;
  }

  .project-price {
    padding: 8px 14px;
    font-size: 0.95rem;
  }

  .project-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #3d4d6a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img.logo-symbol {
  width: 0;
  height: 0;
  opacity: 0;
  margin-right: 0;
  transform: translateX(-16px) scale(0.6);
  transform-origin: center;
  transition: width 0.45s ease, height 0.45s ease, opacity 0.45s ease, margin-right 0.45s ease, transform 0.45s ease;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.logo-transition .header .logo img.logo-symbol,
.logo .logo-symbol.visible {
  width: 46px;
  height: 46px;
  opacity: 1;
  margin-right: 12px;
  transform: translateX(0) scale(1);
}

.header .logo img.logo-symbol {
  object-fit: contain;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn-getstarted--desktop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 1199px) {
  .btn-getstarted--desktop {
    display: none;
  }
}

#navmenu .navmenu__login {
  display: none;
}

@media (max-width: 1199px) {
  #navmenu .navmenu__login {
    display: block;
    padding: 10px 20px;
  }

  #navmenu .navmenu__login-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 14px;
    background: rgba(30, 115, 185, 0.14);
    color: var(--nav-dropdown-hover-color);
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  #navmenu .navmenu__login-link i {
    font-size: 1rem;
  }

  #navmenu .navmenu__login-link:hover,
  #navmenu .navmenu__login-link:focus {
    background: rgba(30, 115, 185, 0.24);
    transform: translateX(2px);
    color: var(--nav-dropdown-hover-color);
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(40, 58, 90, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(14, 33, 51, 0.28), rgba(9, 21, 35, 0.34)), url("../img/overlay.png") center/cover no-repeat fixed;
  color: #fefefe;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--contrast-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero-img img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.hero .hero-logo {
  transition: transform 0.6s ease, opacity 0.6s ease;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
}

.logo-transition .hero .hero-logo {
  transform: translateY(-40px) scale(0.55);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  padding: 0 14px;
  display: block;
  margin: 0 auto;
  height: auto;
  max-height: 82px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .clients .swiper-slide img {
    max-height: 96px;
    padding: 0 18px;
  }
}

@media (min-width: 1200px) {
  .clients .swiper-slide img {
    max-height: 112px;
    padding: 0 22px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 30px 0;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.why-us .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.why-us .faq-container .faq-item h3 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
  font-weight: 600;
}

.why-us .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.why-us .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.why-us .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.why-us .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.why-us .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.why-us .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.why-us .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.why-us .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.why-us .why-us-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us .why-us-img img {
  max-height: 70%;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.skills .skills-visual {
  position: relative;
}

.skills .skills-visual img.img-fluid {
  border-radius: 26px;
  box-shadow: 0 22px 45px rgba(9, 16, 26, 0.4);
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.skills .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--default-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--color-success);
  box-shadow: 0 8px 18px rgba(60, 181, 74, 0.25);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #0a1624;
  box-shadow: 0 18px 36px rgba(9, 16, 26, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 100%;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.services .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 115, 185, 0.12);
  box-shadow: inset 0 0 0 1px rgba(244, 195, 32, 0.12);
  opacity: 0.7;
  transition: opacity 0.45s ease;
}

.services .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(9, 16, 26, 0.34);
}

.services .service-card:hover::before {
  opacity: 0.82;
}

.services .service-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  isolation: isolate;
}

.services .service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services .service-card:hover .service-card__media img {
  transform: scale(1.08);
}

.services .service-card__body {
  position: relative;
  z-index: 1;
  padding: 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services .service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: #fefefe;
}

.services .service-card__desc {
  margin: 0;
  color: rgba(234, 244, 255, 0.82);
  line-height: 1.5;
  font-size: 0.85rem;
  white-space: normal;
}

.services .service-card__footer {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.services .service-card__price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(60, 181, 74, 0.14);
  border: 1px solid rgba(60, 181, 74, 0.35);
  color: #c8ffd4;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 8px 18px rgba(60, 181, 74, 0.16);
}

.services .service-card__btn {
  border: none;
  border-radius: 10px;
  background: #ffffff;
  color: #0b1522;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 22px rgba(15, 32, 53, 0.18);
}

.services .service-card__btn i {
  font-size: 1rem;
}

.services .service-card__btn:hover,
.services .service-card__btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 32, 53, 0.22);
}

.project-modal.service-modal {
  z-index: 9999;
}

.modal-card--light {
  width: min(360px, 92vw);
  background: #ffffff;
  color: #102035;
  border: 1px solid rgba(30, 115, 185, 0.18);
  box-shadow: 0 26px 70px rgba(15, 20, 35, 0.28);
}

.modal-card--light .project-modal__title {
  color: #0b1d33;
}

.modal-card--light .project-modal__subtitle {
  color: rgba(11, 29, 51, 0.75);
}

.modal-card--light .project-modal__label {
  color: #102035;
}

.modal-card--light .project-modal__input,
.modal-card--light .project-modal__textarea {
  background: rgba(15, 37, 64, 0.05);
  border: 1px solid rgba(15, 37, 64, 0.15);
  color: #102035;
}

.modal-card--light .project-modal__input::placeholder,
.modal-card--light .project-modal__textarea::placeholder {
  color: rgba(16, 32, 53, 0.5);
}

.modal-card--light .project-modal__input:focus,
.modal-card--light .project-modal__input:focus-visible,
.modal-card--light .project-modal__textarea:focus,
.modal-card--light .project-modal__textarea:focus-visible {
  border-color: rgba(30, 115, 185, 0.45);
  box-shadow: 0 0 0 3px rgba(30, 115, 185, 0.18);
}

.modal-card--light .project-modal__close {
  color: #1a1a1a;
  background: rgba(15, 37, 64, 0.08);
  border-color: rgba(15, 37, 64, 0.12);
}

.modal-card--light .project-modal__close:hover,
.modal-card--light .project-modal__close:focus-visible {
  background: rgba(15, 37, 64, 0.18);
  color: #000000;
}

.modal-card--light .project-modal__submit {
  background: var(--color-primary);
  color: #ffffff;
}

.modal-card--light .project-modal__submit:hover,
.modal-card--light .project-modal__submit:focus-visible {
  box-shadow: 0 18px 34px rgba(30, 115, 185, 0.3);
}

.modal-card--light .project-modal__success {
  background: rgba(60, 181, 74, 0.12);
  border-color: rgba(60, 181, 74, 0.28);
  color: rgba(25, 115, 54, 0.92);
}

.service-modal__price {
  display: none;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-success);
}

.service-modal__price--visible {
  display: block;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 120px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 35%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 38px 32px 34px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(30, 115, 185, 0.08), rgba(60, 181, 74, 0.04)), #ffffff;
  border: 1px solid rgba(15, 33, 58, 0.08);
  box-shadow: 0 26px 60px rgba(15, 33, 58, 0.14);
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  height: 100%;
}

.team .team-member::before {
  content: "";
  position: absolute;
  inset: -45% -30% auto -30%;
  height: 68%;
  background: radial-gradient(circle at top, rgba(30, 115, 185, 0.25), transparent 65%);
  opacity: 0.6;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.team .team-member:hover {
  transform: translateY(-12px);
  border-color: rgba(30, 115, 185, 0.28);
  box-shadow: 0 36px 80px rgba(15, 33, 58, 0.2);
}

.team .team-member:hover::before {
  opacity: 0.9;
  transform: translateY(-14px);
}

.team .team-member > * {
  position: relative;
  z-index: 1;
}

.team .team-member .pic {
  width: 148px;
  height: 148px;
  border-radius: 32px;
  padding: 5px;
  background: linear-gradient(135deg, rgba(30, 115, 185, 0.6), rgba(244, 195, 32, 0.45));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 33, 58, 0.24);
  transition: transform 0.45s ease;
}

.team .team-member .pic img {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.team .team-member:hover .pic img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.team .team-member .member-info {
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team .team-member h4 {
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0;
  color: #0c1d34;
}

.team .team-member span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  color: rgba(12, 29, 52, 0.62);
  position: relative;
  padding-bottom: 12px;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(30, 115, 185, 0.9), rgba(244, 195, 32, 0.9));
}

.team .team-member p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(15, 33, 58, 0.78);
}

.team .team-member .social {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team .team-member .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 10px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.team .team-member .social a i {
  font-size: 1rem;
}

.team .team-member .social a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
  transition: transform 0.35s ease;
}

.team .team-member .social a:hover {
  background: rgba(30, 115, 185, 0.12);
  transform: translateY(-4px);
}

.team .team-member .social a:hover img {
  transform: scale(1.08);
}

.team .team-member .social a+a {
  margin-left: 0;
}

@media (min-width: 992px) {
  .team .team-member {
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .team .team-member {
    padding: 32px 26px;
  }

  .team .team-member .pic {
    width: 126px;
    height: 126px;
  }

  .team .team-member span::after {
    width: 52px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-2 .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  position: relative;
  background: #ffffff;
  height: 100%;
  padding: 32px 30px;
  border-radius: 18px;
  border: 1px solid rgba(11, 29, 51, 0.08);
  box-shadow: 0 18px 42px rgba(11, 29, 51, 0.16);
  overflow: hidden;
  isolation: isolate;
}

.contact .php-email-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 115, 185, 0.4), rgba(244, 195, 32, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.contact .php-email-form::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(30, 115, 185, 0.2), transparent 70%);
  top: -60px;
  right: -40px;
  pointer-events: none;
  z-index: 0;
}

.contact .php-email-form .row > [class*="col-"] {
  position: relative;
  z-index: 1;
}

.contact .php-email-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #102035;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 0.9rem;
  padding: 12px 15px;
  border-radius: 12px;
  color: #0e2034;
  background: rgba(15, 33, 58, 0.04);
  border: 1px solid rgba(15, 33, 58, 0.12);
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: rgba(30, 115, 185, 0.85);
  background: rgba(30, 115, 185, 0.08);
  box-shadow: 0 0 0 4px rgba(30, 115, 185, 0.18);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(16, 32, 53, 0.45);
}

.contact .php-email-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact .php-email-form .loading,
.contact .php-email-form .error-message,
.contact .php-email-form .sent-message {
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 16px;
}

.contact .php-email-form .loading {
  background: rgba(30, 115, 185, 0.1);
  color: #1e73b9;
}

.contact .php-email-form .sent-message {
  background: rgba(60, 181, 74, 0.12);
  color: #239046;
}

.contact .php-email-form .error-message {
  background: rgba(223, 21, 41, 0.12);
  color: #b11424;
}

.contact .php-email-form button[type=submit] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  padding: 12px 26px;
  border-radius: 999px;
  border: 0;
  color: #0b1d33;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #fdfdfd 0%, #f6f8fc 45%, #e0f2ff 100%);
  box-shadow: 0 14px 30px rgba(12, 29, 52, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1;
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(12, 29, 52, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f1f6ff 55%, #d4ecff 100%);
}

.contact .php-email-form button[type=submit]::after {
  content: "\2192";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.contact .php-email-form button[type=submit]:hover::after {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .contact .php-email-form {
    padding: 28px 24px;
  }
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 24px 18px;
  }
}

.contact .php-email-form .text-center {
  margin-top: 8px;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}