*,
body {
  margin: 0;
}
.orange-btn,
a {
  text-decoration: none;
}
:root {
  --orange: #ff5a14;
  --orange-dark: #ed4205;
  --dark: #050c18;
  --dark-2: #091426;
  --text: #111827;
  --muted: #64748b;
  --line: #e7ecf4;
  --white: #ffffff;
  --green: #05a85a;
  --purple: #7c3cff;
  --shadow: 0 22px 55px rgba(10, 20, 40, 0.12);
  --radius: 20px;
}
* {
  box-sizing: border-box;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Outfit,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  font-family: Outfit, sans-serif;
  background: #050b14;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-container {
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 70px;
}
.portfolio-hero {
  padding: 145px 0 78px;
  min-height: 560px;
  color: #fff;
  background:
    radial-gradient(
      circle at 65% 45%,
      rgba(255, 90, 20, 0.22),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 30%,
      rgba(124, 60, 255, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #050c18 0, #06101f 48%, #08172a 100%);
  overflow: hidden;
  position: relative;
}
.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 90, 20, 0.45) 1.5px,
    transparent 1.5px
  );
  background-size: 36px 36px;
  opacity: 0.25;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 45%,
    #000 80%,
    transparent
  );
}
.portfolio-hero .page-container {
  position: relative;
  z-index: 2;
}
.orange-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #ff5a14, #ff7a00);
  color: #fff !important;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  box-shadow: 0 10px 22px rgba(255, 90, 20, 0.28);
  transition: 0.3s;
}
.project-card,
.project-content a i {
  transition: 0.25s;
}
.orange-btn:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 90, 20, 0.35);
}
.orange-btn i {
  font-size: 17px;
  line-height: 1;
}
.breadcrumb-line {
  font-size: 18px;
  font-weight: 500;
  color: #d6deea;
}
.breadcrumb-line i {
  font-size: 18px;
  margin-inline: 8px;
}
.breadcrumb-line span {
  color: #fff;
}
.portfolio-hero h1 {
  font-size: clamp(48px, 5vw, 78px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero-script {
  color: var(--orange);
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 26px;
}
.hero-desc {
  max-width: 560px;
  color: #f3f6fb;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 38px;
}
.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.hero-stat-card i {
  font-size: 30px;
  color: #ff9a17;
}
.hero-stat-card strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
.hero-stat-card span,
.metric-row strong,
.project-content h3,
.project-content p {
  font-size: 18px;
  font-weight: 500;
}
.hero-stat-card span {
  display: block;
  color: #d9e2ef;
}
.hero-image-wrap {
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.38));
}
.project-area {
  padding: 42px 0 34px;
  background: #fff;
}
.filter-tabs {
  position: relative;
  z-index: 3;
}
.filter-btn {
  height: 48px;
  min-width: 135px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.04);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 12px 25px rgba(255, 90, 20, 0.28);
}
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.07);
  height: 100%;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.project-img {
  height: 230px;
  background: #f6f8fc;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.green {
  background: #18b56a;
}
.orange {
  background: #ff5a14;
}
.purple {
  background: #7c3cff;
}
.pink {
  background: #ea4aa4;
}
.blue {
  background: #2366ff;
}
.teal {
  background: #10b6ac;
}
.project-content {
  padding: 22px 24px 24px;
}
.project-content h3 {
  margin-bottom: 9px;
  color: #111827;
  letter-spacing: -0.3px;
}
.project-content p {
  color: #344054;
  line-height: 1.55;
  min-height: 46px;
  margin-bottom: 22px;
}
.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  border-top: 1px solid #eef2f7;
  padding-top: 19px;
  margin-bottom: 20px;
}
.metric-row strong {
  display: block;
  color: #05a85a;
  line-height: 1;
}
.metric-row span {
  display: block;
  color: #475467;
  font-size: 15px;
  font-weight: 500;
  margin-top: 7px;
}
.project-content a {
  font-size: 18px;
  font-weight: 500;
  color: #6d35ff;
}
.project-content a:hover i {
  transform: translateX(4px);
}
.project-item.hide {
  display: none;
}
.numbers-section {
  padding: 22px 0 36px;
  background: #fff;
}
.numbers-card {
  background: linear-gradient(135deg, #050c18, #081123 60%, #0b1023);
  border-radius: 25px;
  padding: 34px 52px;
  box-shadow: 0 18px 45px rgba(5, 12, 24, 0.22);
}
.number-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #fff;
}
.number-item i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange);
  font-size: 31px;
}
.number-item strong,
.quote {
  font-size: 34px;
  line-height: 1;
}
.number-item strong {
  display: block;
  font-weight: 500;
  color: var(--orange);
}
.number-item span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.testimonial-section {
  padding: 26px 0 46px;
  background: #fff;
}
.section-heading h2 {
  font-size: 31px;
  font-weight: 500;
  margin-bottom: 42px;
  position: relative;
  display: inline-block;
}
.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 52px;
  height: 4px;
  border-radius: 20px;
  background: var(--orange);
}
.testimonial-card {
  min-height: 205px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 34px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
}
.quote {
  color: #ff9a17;
}
.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #344054;
  margin: 8px 0 22px;
  font-weight: 500;
}
.client,
.counter-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #111827, #334155);
  color: #fff;
  font-weight: 500;
}
.avatar-2 {
  background: linear-gradient(135deg, #ffb199, #ff0844);
}
.client b {
  display: block;
  font-size: 15px;
}
.client small {
  display: block;
  color: #64748b;
  font-weight: 500;
}
.cta-section {
  padding: 0 0 28px;
  background: #fff;
}
.cta-card {
  min-height: 100px;
  border-radius: 25px;
  padding: 7px 27px;
  background: linear-gradient(120deg, #9b20ff 0, #4f1bdc 45%, #ff5a14 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(124, 60, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-card h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 6px;
}
.cta-card p {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
}
.cta-card .btn,
.cta-card a {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 25px;
}
.cta-card img {
  max-height: 130px;
  width: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .cta-card {
    min-height: auto;
    padding: 24px 20px;
    text-align: center;
    flex-direction: column;
    gap: 18px;
  }
  .cta-card h2 {
    font-size: 24px;
  }
  .cta-card img {
    max-height: 110px;
    margin: 0 auto;
  }
}
.site-footer h4,
.site-footer li,
.site-footer p {
  font-size: 18px;
  font-weight: 500;
}
.site-footer {
  background: #050c18;
  color: #dbe5f3;
  padding: 58px 0 18px;
  position: relative;
}
.footer-logo {
  width: 210px;
  margin-bottom: 22px;
}
.site-footer p {
  line-height: 1.65;
  color: #cbd5e1;
}
.site-footer h4 {
  color: #fff;
  margin-bottom: 18px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: 9px;
  color: #dbe5f3;
}
.contact-list i {
  color: var(--orange);
  margin-right: 10px;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.social-links a,
.whatsapp-btn {
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.social-links a {
  width: 36px;
  height: 36px;
  background: #1d4ed8;
  color: #fff;
}
.social-links a:nth-child(2) {
  background: #e1306c;
}
.social-links a:nth-child(3) {
  background: #0a66c2;
}
.social-links a:nth-child(4) {
  background: #111;
}
.social-links a:nth-child(5) {
  background: red;
}
.site-footer .form-control {
  height: 50px;
  border-radius: 8px;
  border: 0;
  font-weight: 500;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  margin-top: 48px;
  font-size: 14px;
  color: #b8c2d0;
  font-weight: 500;
}
.whatsapp-btn {
  position: fixed;
  right: 34px;
  bottom: 34px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: #fff;
  font-size: 32px;
  z-index: 20;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.38);
  border: 4px solid rgba(255, 255, 255, 0.65);
}
@media (max-width: 1399px) {
  .page-container {
    padding-inline: 44px;
  }
  .navbar-brand img {
    width: 190px;
  }
  .navbar-nav {
    gap: 14px;
  }
  .navbar .nav-link {
    font-size: 14px;
  }
  .project-img {
    height: 205px;
  }
}
@media (max-width: 1199px) {
  .navbar {
    padding: 14px 0;
  }
  .navbar .nav-link {
    padding: 12px 0 !important;
  }
  .navbar .nav-link.active::after {
    display: none;
  }
  .header-actions {
    align-items: flex-start !important;
    flex-direction: column;
    padding-bottom: 18px;
  }
  .portfolio-hero {
    padding-top: 130px;
  }
  .page-container {
    padding-inline: 30px;
  }
  .hero-stat-row {
    max-width: 620px;
  }
  .project-img {
    height: 230px;
  }
}
.breadcrumb-box,
.container-box {
  align-items: center;
  display: flex;
}
.breadcrumb-box,
.breadcrumb-box i {
  font-size: 18px;
  color: #fff;
}
.portfolio-banner {
  width: 100%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, rgba(255, 88, 0, 0.25), transparent 20%),
    radial-gradient(circle at 88% 20%, rgba(255, 88, 0, 0.12), transparent 18%),
    linear-gradient(90deg, #060d18 0, #07111f 45%, #060d18 100%);
}
.orange-top-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: #ff5b00;
  border-radius: 10px;
  z-index: 5;
}
.portfolio-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 91, 0, 0.8) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.18;
  mask-image: linear-gradient(
    90deg,
    transparent 35%,
    black 68%,
    transparent 100%
  );
}
.portfolio-banner::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 2px dotted rgba(255, 91, 0, 0.35);
  top: -100px;
  right: 330px;
  opacity: 0.7;
  box-shadow:
    0 0 0 35px rgba(255, 91, 0, 0.03),
    0 0 0 70px rgba(255, 91, 0, 0.025),
    0 0 0 105px rgba(255, 91, 0, 0.02);
}
.container-box {
  width: 100%;
  max-width: 1400px;
  min-height: 420px;
  margin: 0 auto;
  padding: 84px 78px 25px;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.banner-left {
  width: 46%;
  color: #fff;
}
.breadcrumb-box {
  gap: 9px;
  margin-bottom: 20px;
  font-weight: 500;
}
.badge-label,
.badge-label.blue,
.badge-label.green,
.badge-label.orange,
.badge-label.pink,
.badge-label.purple,
.badge-label.teal {
  color: #fff !important;
}
.breadcrumb-box b {
  color: #f60;
  font-weight: 500;
}
.banner-left h1 {
  font-size: 34px;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 10px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}
.banner-left h2 {
  font-family: Kalam, cursive;
  font-size: 31px;
  line-height: 1.2;
  color: #f60;
  font-weight: 500;
  margin-bottom: 18px;
}
.banner-left p {
  font-size: 18px;
  line-height: 1.55;
  color: #e8edf5;
  font-weight: 500;
  margin-bottom: 30px;
}
.counter-card {
  width: 180px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}
.counter-card i {
  font-size: 30px;
  color: #ff9800;
  flex-shrink: 0;
}
.counter-card h3 {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}
.counter-card span {
  display: block;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  color: #fff;
}
.banner-right {
  width: 54%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.banner-right img {
  width: 100%;
  max-width: 470px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.5));
}
@media (max-width: 1200px) {
  .container-box {
    padding: 65px 45px;
  }
  .banner-left h1 {
    font-size: 54px;
  }
  .counter-card {
    width: 165px;
  }
}
@media (max-width: 991px) {
  .portfolio-hero {
    text-align: center;
  }
  .hero-desc {
    margin-inline: auto;
  }
  .breadcrumb-box,
  .counter-row,
  .hero-stat-card {
    justify-content: center;
  }
  .numbers-card {
    padding: 28px;
  }
  .number-item {
    text-align: left;
  }
  .cta-card {
    text-align: center;
    padding: 34px 24px;
  }
  .cta-card img {
    margin: auto;
  }
  .portfolio-banner,
  .project-content p {
    min-height: auto;
  }
  .container-box {
    flex-direction: column;
    text-align: center;
    padding: 45px 24px;
  }
  .banner-left,
  .banner-right {
    width: 100%;
  }
  .banner-left h1 {
    font-size: 46px;
  }
  .banner-left h2 {
    font-size: 27px;
  }
  .banner-left p {
    font-size: 16px;
  }
  .counter-row {
    flex-wrap: wrap;
  }
  .banner-right {
    height: auto;
    margin-top: 25px;
    justify-content: center;
  }
  .banner-right img {
    max-width: 650px;
  }
  .portfolio-banner::after {
    right: -150px;
    top: 50px;
  }
}
@media (max-width: 575px) {
  .page-container {
    padding-inline: 18px;
  }
  .navbar-brand img {
    width: 170px;
  }
  .portfolio-hero {
    padding: 120px 0 56px;
  }
  .hero-stat-card,
  .number-item {
    justify-content: flex-start;
  }
  .filter-btn {
    min-width: auto;
    width: 100%;
    height: 44px;
  }
  .project-img {
    height: 210px;
  }
  .project-content {
    padding: 20px;
  }
  .numbers-card {
    padding: 26px 18px;
  }
  .cta-card h2 {
    font-size: 27px;
  }
  .whatsapp-btn {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    font-size: 28px;
  }
  .site-footer {
    padding-top: 42px;
  }
  .container-box {
    padding: 35px 18px;
  }
  .banner-left h1 {
    font-size: 38px;
  }
  .banner-left h2 {
    font-size: 24px;
  }
  .banner-left p {
    font-size: 18px;
  }
  .counter-row {
    gap: 20px;
  }
  .counter-card {
    width: 100%;
    max-width: 270px;
    justify-content: flex-start;
  }
  .banner-right img {
    max-width: 100%;
  }
}
.badge-label.orange {
  background: linear-gradient(135deg, #ff7a1a, #ff4d00) !important;
}
.badge-label.purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
}
.badge-label.pink {
  background: linear-gradient(135deg, #ec4899, #db2777) !important;
}
.badge-label.blue {
  background: linear-gradient(135deg, #2563eb, #0ea5e9) !important;
}
.badge-label.teal {
  background: linear-gradient(135deg, #14b8a6, #0f766e) !important;
}
.pricing-card,
.project-img {
  position: relative;
  overflow: hidden;
}
.badge-label {
  letter-spacing: 0.2px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.badge-label.green {
  background: linear-gradient(135deg, #10b981, #059669) !important;
}
.project-item {
  animation: 0.4s projectFade;
  display: block;
}
@keyframes projectFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.filter-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #ff5a14;
  color: #fff;
  border-color: #ff5a14;
  box-shadow: 0 14px 30px rgba(255, 90, 20, 0.28);
}
.project-item.hide-project {
  display: none !important;
}
.pricing-card .choose-btn,
.pricing-card .plan-desc,
.pricing-card .plan-subtitle,
.pricing-card .popular-badge,
.pricing-card h2,
.pricing-card h3,
.pricing-card ul {
  position: relative;
  z-index: 5;
}
.pricing-card.enterprise {
  background: linear-gradient(
    160deg,
    #3b0764 0,
    #5b21b6 45%,
    #7c3aed 100%
  ) !important;
  color: #fff !important;
  border: 3px solid #fff;
  box-shadow:
    0 35px 80px rgba(124, 58, 237, 0.45),
    0 0 0 8px rgba(124, 58, 237, 0.15);
  transform: translateY(-18px);
}
.pricing-card.enterprise::before {
  content: "";
  position: absolute;
  top: -65px;
  right: -65px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  z-index: 1;
}
.pricing-card.enterprise .plan-desc,
.pricing-card.enterprise .plan-subtitle,
.pricing-card.enterprise h2,
.pricing-card.enterprise h2 small,
.pricing-card.enterprise h3,
.pricing-card.enterprise ul li {
  color: #fff !important;
}
.pricing-card.enterprise .popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 10;
  padding: 12px 28px;
  border-radius: 50px;
  background: #fff;
  color: #7c3aed !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.16),
    0 16px 35px rgba(0, 0, 0, 0.25);
  animation: 1.8s ease-in-out infinite premiumPulse;
}
.pricing-card.enterprise .choose-btn,
.pricing-card.enterprise ul li::before {
  background: #fff !important;
  color: #7c3aed !important;
}
.pricing-card.enterprise .choose-btn {
  border: 2px solid #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  font-weight: 800;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 10;
}
@keyframes premiumPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.45),
      0 16px 35px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 0 0 12px rgba(255, 255, 255, 0.12),
      0 20px 45px rgba(0, 0, 0, 0.28);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0),
      0 16px 35px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 991px) {
  .pricing-card.enterprise {
    transform: none;
  }
}
