:root {
  --ink: #151820;
  --ink-soft: #585f6e;
  --paper: #ffffff;
  --paper-2: #f6f7fb;
  --line: #e8e9ef;
  --navy: #0d1b2f;
  --orange: #0376f6;
  --orange-dark: #dd4b16;
  --orange-tint: #fff1ec;

  --font-head: "Sora", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  letter-spacing: -0.01em;
}
a {
  text-decoration: none;
  color: inherit;
}
html {
  scroll-behavior: smooth;
}

.section {
  padding: 90px 0;
}
.section-head {
  margin-bottom: 5px;
}
.section-sub {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow-light {
  color: #b4d0ff;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
}

/* -------- buttons -------- */
.btn-primary-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  background: linear-gradient(45deg, #016af5, #10bbfc);
  color: #fff;
  box-shadow: 0 10px 24px rgb(17 194 252 / 17%);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  justify-content: center;
  border: none;
}
.btn-primary-brand:hover {
  background: linear-gradient(181deg, #015ffd, #31c7fd);
  color: #fff;
  transform: translateY(-2px);
  border: none;
}
.btn-outline-light-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}
.btn-outline-light-brand:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary-brand .arrow,
.btn-outline-light-brand .arrow {
  transition: transform 0.18s ease;
}
.btn-primary-brand:hover .arrow,
.btn-outline-light-brand:hover .arrow {
  transform: translateX(4px);
}

/* ===================================================
   HEADER
   =================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 1030;
}
.header-row {
  height: 80px;
}
.brand {
  gap: 10px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--orange), #ffab5c);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  line-height: 1.05;
  color: var(--ink);
  margin-left: 2px;
}
.brand-name span {
  color: var(--orange);
}
.brand-footer .brand-name {
  color: #fff;
}

.main-nav {
  gap: 32px;
}
.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #0ba2fa;
  border-radius: 2px;
}

.header-cta {
  padding: 12px 22px;
  font-size: 0.9rem;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: none;
  background: none;
  padding: 0;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav-mobile {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.main-nav-mobile.open {
  max-height: 320px;
  padding-bottom: 16px;
}
.main-nav-mobile a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.main-nav-mobile a.active {
  color: var(--orange);
  font-weight: 600;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(45deg, #000000e0, #00000000),
    url(../images/banner-img.png) center / cover no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 78% 20%,
      rgba(248, 93, 35, 0.35),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 15% 85%,
      rgba(43, 90, 140, 0.5),
      transparent 55%
    ),
    linear-gradient(135deg, #0a1526 0%, #0d1b2f 45%, #12233b 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 40%,
    black 80%,
    transparent
  );
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9, 15, 26, 0.72) 0%,
    rgba(9, 15, 26, 0.35) 55%,
    rgba(9, 15, 26, 0.15) 100%
  );
}
.hero-inner {
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero-lead {
  color: #fff;
  font-size: 1.08rem;
  max-width: 480px;
  margin-bottom: 36px;
}

/* ===================================================
   SERVICES
   =================================================== */
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 30px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
  height: 270px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 1px rgba(15, 20, 30, 0.1);
  border-color: transparent;
  background: linear-gradient(45deg, #0479f7, #0ca8fa);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #0ba0f9;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===================================================
   FEATURED WORK
   =================================================== */
.work {
  background: var(--paper-2);
}
.filter-bar {
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  transition: all 0.18s ease;
}
.filter-btn:hover {
  color: var(--ink);
}
.filter-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.work-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/2.7;
  box-shadow: 0 2px 10px rgba(15, 20, 30, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 20, 30, 0.1);
}
.work-thumb {
  position: absolute;
  inset: 0;
}
.work-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.08) 55%,
    transparent 75%
  );
  z-index: 1;
}
.work-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.work-title {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
}
.work-tag {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
}
.work-col.hide {
  display: none;
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.why-item p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 0;
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0ba0f9;
  color: #ffffff;
}
.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-photo img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(15, 20, 30, 0.1);
  height: 600px;
  object-fit: cover;
}

.contact-photo img {
    width: 100%;
    border-radius: 9px;
}

.office-art {
  width: 100%;
  height: auto;
  display: block;
}
.stat-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 47, 0.92);
  backdrop-filter: blur(6px);
}
.stat {
  padding: 20px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat:last-child {
  border-right: none;
}
.stat strong {
  display: block;
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
}
.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  margin-top: 4px;
}

/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
  background: var(--navy);
  padding: 0px 0px 20px 0px;
}
.cta-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-icon svg {
  width: 24px;
  height: 24px;
}
.cta-left h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 4px;
}
.cta-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #0b1526;
  color: rgba(255, 255, 255, 0.72);
  padding-top: 72px;
}
.footer-row {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer .brand {
  margin-bottom: 18px;
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.site-footer ul li {
  margin-bottom: 12px;
}
.site-footer ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s ease;
}
.site-footer ul li a:hover {
  color: var(--orange);
}
.contact-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}
.contact-list span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}
.socials a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.socials svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.footer-bottom-wrap {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal a:hover {
  color: var(--orange);
}

/* ===================================================
   BACK TO TOP
   =================================================== */
.back-to-top {
  position: fixed;
  right: 50px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgb(15 179 251);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 1040;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* ===================================================
   GET IN TOUCH MODAL
   =================================================== */
.contact-modal .modal-content {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(13, 27, 47, 0.35);
}
.contact-modal .modal-header {
  align-items: flex-start;
  gap: 16px;
  padding: 30px 30px 22px;
  border-bottom: 1px solid var(--line);
}
.contact-modal .modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.contact-modal .modal-sub {
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.contact-modal .btn-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--paper-2);
  background-size: 12px;
  opacity: 1;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}
.contact-modal .btn-close:hover {
  background-color: var(--orange-tint);
}
.contact-modal .modal-body {
  padding: 26px 30px 30px;
}

.contact-modal .form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-modal .form-control {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  background: #fff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.contact-modal .form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-tint);
  background: #fff;
}
.contact-modal .form-control.is-invalid {
  border-color: #e5484d;
}
.contact-modal .form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.12);
}
.contact-modal .invalid-feedback {
  font-size: 0.8rem;
}

.contact-modal .form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #eefaf1;
  color: #1c7a3c;
}
.contact-modal .form-success-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #1c7a3c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-modal .form-success-icon svg {
  width: 16px;
  height: 16px;
}
.contact-modal .form-success strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.contact-modal .form-success p {
  font-size: 0.85rem;
  color: #1c7a3c;
  opacity: 0.85;
}

.contact-modal .btn-primary-brand:disabled {
  opacity: 0.7;
  transform: none;
  cursor: not-allowed;
}

/* ===================================================
   RESPONSIVE TWEAKS (beyond Bootstrap's own grid breaks)
   =================================================== */
@media (max-width: 767.98px) {
  .section {
    padding: 64px 0;
  }
  .stat-bar {
    position: static;
  }
  .hero {
    min-height: 560px;
  }
}

.site-header img.logo {
  width: 200px;
}

.site-footer img.footer-logo {
  width: 280px;
}

.portfolio-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.5s;
  object-position: top;
}

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

.portfolio-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h5 {
  color: #fff;
  margin-bottom: 5px;
}

.filter-btn {
  padding: 10px 25px;
  border: 1px solid #0376f6;
  background: #fff;
  border-radius: 30px;
  margin: 5px;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: #0376f6;
  color: #fff;
}

.ecom .portfolio-card img {
  height: auto;
}

.service-card:hover p {
  color: #fff;
}

.service-card:hover h3 {
  color: #fff;
}

.service-card:hover .service-icon {
  background: #fff;
  color: #0376f6;
}

section#contact {
    background: var(--paper-2);
    padding: 60px 0px 60px;
}

.services-row .slick-slide {
  padding: 0 12px;
}

.services-row {
  margin: 0 -12px;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: inherit;
}

.slick-slide > div {
  height: 100%;
}

.service-card {
  height: 100%;
}

.services-row .slick-prev:before {
    color: #057ef7;
    font-size: 30px !important;
}

.services-row .slick-prev {
    left: -35px;
}

.services-row .slick-next:before {
    color: #057ef7;
    font-size: 30px !important;
}

section#contact .contact-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}
