/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  background: #060818;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  min-height: 100vh;
  background: #060818;
  position: relative;
  overflow: hidden;
}

/* =========================
   DECORATIVE ORBS
========================= */

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 620px;
  height: 620px;
  top: -100px;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(79, 44, 250, 0.55) 0%,
    transparent 65%
  );
  animation: pulse-orb 7s ease-in-out infinite alternate;
}

.orb-2 {
  width: 460px;
  height: 460px;
  top: -80px;
  right: -60px;
  background: radial-gradient(
    circle,
    rgba(196, 50, 220, 0.3) 0%,
    transparent 60%
  );
  animation: pulse-orb 9s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: 38%;
  background: radial-gradient(
    circle,
    rgba(20, 180, 210, 0.2) 0%,
    transparent 60%
  );
  animation: pulse-orb 6s ease-in-out infinite alternate;
}

@keyframes pulse-orb {
  from {
    transform: scale(1);
    opacity: 0.75;
  }

  to {
    transform: scale(1.18);
    opacity: 1;
  }
}

.star-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
  pointer-events: none;
}

/* =========================
   NAVBAR
========================= */

/* Hide Bootstrap toggler */
.navbar-toggler { display: none !important; }

/* Hamburger Button */
.hb-custom {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: relative;
}
.hb-custom span {
    display: block;
    height: 2px;
    background: rgba(255,255,255,0.88);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
}
.hb-custom span:nth-child(1) { width: 26px; }
.hb-custom span:nth-child(2) { width: 18px; }
.hb-custom span:nth-child(3) { width: 26px; }
.hb-custom:hover span { background: #c432dc; }
.hb-custom.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 24px; background: #c432dc; }
.hb-custom.open span:nth-child(2) { opacity: 0; width: 0; }
.hb-custom.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 24px; background: #c432dc; }

@media (max-width: 991px) {
    .hb-custom { display: flex; }
    .navbar-collapse { display: none !important; }
}

/* Fullscreen Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6,8,24,0.97);
    backdrop-filter: blur(18px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.nav-overlay.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.nav-overlay .ov-orb1 {
    position: absolute;
    width: 420px; height: 420px; border-radius: 50%;
    top: -100px; left: -80px;
    background: radial-gradient(circle, rgba(79,44,250,0.22) 0%, transparent 65%);
    pointer-events: none;
}
.nav-overlay .ov-orb2 {
    position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    bottom: -60px; right: -60px;
    background: radial-gradient(circle, rgba(196,50,220,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.nav-overlay-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    padding: 0 24px;
}
.ov-brand-tag {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(150,128,255,0.5);
    margin-bottom: 20px;
}
.ov-nav-link {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 17px 22px;
    border: 1px solid rgba(150,128,255,0.15);
    border-radius: 14px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 16px; font-weight: 700;
    background: rgba(79,44,250,0.07);
    transition: all 0.22s ease;
    font-family: 'Outfit', sans-serif;
}
.ov-nav-link:hover {
    background: rgba(79,44,250,0.18);
    border-color: rgba(196,50,220,0.45);
    color: #fff;
    transform: translateX(5px);
}
.ov-nav-link i { font-size: 18px; color: #9680ff; transition: color 0.2s; }
.ov-nav-link:hover i { color: #c432dc; }
.ov-cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(90deg, #4f2cfa 0%, #c432dc 100%);
    color: #fff; font-weight: 700; font-size: 15px;
    padding: 15px 28px; border-radius: 12px;
    text-decoration: none; margin-top: 8px; width: 100%;
    box-shadow: 0 4px 24px rgba(79,44,250,0.45);
    transition: opacity 0.2s, transform 0.2s;
    font-family: 'Outfit', sans-serif;
}
.ov-cta:hover { opacity: 0.88; transform: translateY(-2px); color: #fff; }
.navbar {
  position: relative;
  z-index: 10;
  padding-top: 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 767px) {
  .brand-logo {
    height: 60px;
  }
}

@media (max-width: 575px) {
  .brand-logo {
    height: 50px;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    height: 80px;
  }
}

@media (max-width: 575px) {
  .brand-logo {
    height: 70px;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s;
}

.nav-link:hover {
  color: #fff !important;
}

.btn-contact {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 0;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.2s;
}

.btn-contact:hover {
  background: #fff;
  color: #c432dc;
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 30px;
  padding-bottom: 80px;
}

.col-sliders {
  order: 2;
}

.col-text {
  order: 1;
}

@media (min-width: 992px) {
  .col-sliders {
    order: 0;
  }

  .col-text {
    order: 0;
  }
}

/* =========================
   LOGO SLIDERS
========================= */

.logo-slider {
  overflow: hidden;
  width: 100%;
  margin-bottom: 28px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
}

.logo-track img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 0 2px rgba(150, 130, 255, 0.6),
    0 6px 28px rgba(79, 44, 250, 0.4);
}

.slide-right {
  animation: scrollRight 30s linear infinite;
}

.slide-left {
  animation: scrollLeft 28s linear infinite;
}

.slide-right-slow {
  animation: scrollRight 40s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes scrollLeft {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   RIGHT CONTENT
========================= */

.hero-right {
  position: relative;
  z-index: 5;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(150, 130, 255, 0.12);
  border: 1px solid rgba(150, 130, 255, 0.3);
  color: rgba(200, 190, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #9680ff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px rgba(150, 128, 255, 0.9);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 58px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.title-highlight {
  color: #c432dc;
}

/* =========================
   FEATURE LIST
========================= */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(79, 44, 250, 0.1);
  border-left: 3px solid #7b5fff;
  border-radius: 0 8px 8px 0;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.feature-list li:hover {
  background: rgba(150, 128, 255, 0.18);
  border-color: #c432dc;
}

.feature-list li i {
  font-size: 18px;
  color: #9680ff;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.feature-list li:hover i {
  transform: scale(1.15);
  color: #c432dc;
}

/* =========================
   CTA BUTTON
========================= */

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #4f2cfa 0%, #c432dc 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition:
    opacity 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 4px 28px rgba(79, 44, 250, 0.5);
}

.btn-hero:hover {
  opacity: 0.88;
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(196, 50, 220, 0.55);
  color: #fff;
}

.btn-hero svg {
  transition: transform 0.2s;
}

.btn-hero:hover svg {
  transform: translateX(4px);
}

/* =========================
   PORTFOLIO SECTION
========================= */

.portfolio-section {
  background: #060818;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.portfolio-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(79, 44, 250, 0.18) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.portfolio-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(196, 50, 220, 0.12) 0%,
    transparent 70%
  );
  bottom: 0;
  left: -80px;
  pointer-events: none;
}

.port-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(150, 128, 255, 0.85);
  margin-bottom: 12px;
}

.port-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}

.port-title span {
  color: #c432dc;
}

.port-sub {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 36px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.stat-pill {
  background: rgba(79, 44, 250, 0.1);
  border: 1px solid rgba(150, 128, 255, 0.22);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.stat-pill strong {
  color: #c432dc;
  font-weight: 800;
}

/* TAB BAR */

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1.5px solid rgba(150, 128, 255, 0.25);
  background: rgba(79, 44, 250, 0.07);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.01em;
}

.tab-btn i {
  font-size: 16px;
}

.tab-btn:hover {
  border-color: rgba(150, 128, 255, 0.5);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(79, 44, 250, 0.15);
}

.tab-btn.active {
  background: linear-gradient(90deg, #4f2cfa 0%, #c432dc 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 22px rgba(79, 44, 250, 0.5);
}

/* TAB CONTENT */

.tab-content-port {
  display: none;
}

.tab-content-port.active {
  display: block;
  animation: fadeUp 0.3s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GRID LAYOUTS */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* WORK CARD */

.work-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(150, 128, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 50, 220, 0.5);
  box-shadow: 0 12px 40px rgba(79, 44, 250, 0.28);
}

.card-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: rgba(79, 44, 250, 0.12);
  transition: transform 0.35s ease;
}

.work-card:hover .card-thumb {
  transform: scale(1.04);
}

.thumb-wrap {
  overflow: hidden;
  width: 100%;
  height: 190px;
  position: relative;
}

.video-card .thumb-wrap {
  height: 200px;
}

.video-card .card-thumb {
  height: 200px;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  opacity: 1;
  /* Always visible */
  transition: 0.3s;
  cursor: pointer;
}

.video-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.35);
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.play-btn i {
  color: #fff;
  font-size: 34px;
  margin-left: 4px;
}

.design-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(150, 128, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.design-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 50, 220, 0.5);
  box-shadow: 0 12px 40px rgba(79, 44, 250, 0.28);
}

.design-card .thumb-wrap {
  height: 310px;
  background: #14103a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.design-card .card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.design-card:hover .card-thumb {
  transform: scale(1.04);
}

.card-body {
  padding: 16px 18px;
}

.card-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(150, 128, 255, 0.14);
  color: rgba(200, 180, 255, 0.88);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 9px;
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.card-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .hero-title {
    font-size: 48px;
  }

  .logo-track img {
    width: 85px;
    height: 85px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    padding-top: 50px;
  }

  .hero-right {
    text-align: center;
  }

  .hero-title {
    font-size: 44px;
  }

  .feature-list {
    text-align: left;
  }

  .badge-pill {
    margin-bottom: 14px;
  }

  .port-title {
    font-size: 34px;
  }

  .grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    font-size: 26px;
  }

  .hero-title {
    font-size: 36px;
  }

  .logo-track img {
    width: 75px;
    height: 75px;
    padding: 10px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .portfolio-section {
    padding: 60px 0 80px;
  }

  .port-title {
    font-size: 28px;
  }

  .tab-btn {
    font-size: 12px;
    padding: 8px 14px;
  }

  .grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }

  .thumb-wrap,
  .card-thumb {
    height: 350px !important;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 30px;
  }

  .logo-track img {
    width: 65px;
    height: 65px;
  }

  .feature-list li {
    font-size: 13px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  pointer-events: none;
}

.video-modal.active {
  display: flex;
  pointer-events: all;
}

.video-modal-content {
  width: 90%;
  max-width: 1100px;
}

.video-modal video {
  width: 100%;
  border-radius: 14px;
  max-height: 85vh;
}

.video-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  z-index: 100000;
}

.about-section {
  background: #060818;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-orb-1 {
  width: 500px;
  height: 500px;
  top: -80px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(196, 50, 220, 0.2) 0%,
    transparent 65%
  );
  animation: pulse-orb 8s ease-in-out infinite alternate;
}

.about-orb-2 {
  width: 380px;
  height: 380px;
  bottom: 0;
  left: -60px;
  background: radial-gradient(
    circle,
    rgba(79, 44, 250, 0.22) 0%,
    transparent 65%
  );
  animation: pulse-orb 6s ease-in-out infinite alternate-reverse;
}

/* About Visual */
.about-visual {
  position: relative;
  z-index: 2;
}

.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  display: block;
  margin: 0 auto;
  background: rgba(79, 44, 250, 0.1);
  padding: 30px;
  border: 1px solid rgba(150, 128, 255, 0.18);
}

.about-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 30, 0.9);
  border: 1px solid rgba(150, 128, 255, 0.3);
  border-radius: 14px;
  padding: 12px 20px;
  backdrop-filter: blur(10px);
  min-width: 110px;
}

.about-badge-1 {
  bottom: 30px;
  left: -10px;
}

.about-badge-2 {
  top: 30px;
  right: -10px;
}

.ab-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ab-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(200, 180, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  text-align: center;
}

/* About Text */
.about-title {
  font-family: "Outfit", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.about-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.astat {
  background: rgba(79, 44, 250, 0.1);
  border: 1px solid rgba(150, 128, 255, 0.18);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
}

.astat-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.astat-label {
  font-size: 11px;
  color: rgba(200, 180, 255, 0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Values */
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aval-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 44, 250, 0.1);
  border: 1px solid rgba(150, 128, 255, 0.22);
  border-radius: 100px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.aval-item i {
  font-size: 16px;
  color: #9680ff;
}

.aval-item:hover {
  background: rgba(150, 128, 255, 0.18);
  border-color: #c432dc;
  color: #fff;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1199px) {
  .about-title {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-title {
    font-size: 34px;
    text-align: center;
  }

  .about-desc {
    text-align: center;
  }

  .about-stats {
    margin: 0 auto 1.5rem;
  }

  .about-values {
    justify-content: center;
  }

  .about-badge-1 {
    left: 0;
    bottom: 10px;
  }

  .about-badge-2 {
    right: 0;
    top: 10px;
  }
}

@media (max-width: 767px) {
  .about-title {
    font-size: 28px;
  }

  .astat-num {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.reviews-section {
  background: #060818;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(150, 128, 255, 0.1);
}

.review-orb-1 {
  width: 600px;
  height: 600px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(
    circle,
    rgba(79, 44, 250, 0.18) 0%,
    transparent 65%
  );
  animation: pulse-orb 9s ease-in-out infinite alternate;
}

.rev-tab-content {
  display: none;
}

.rev-tab-content.active {
  display: block;
  animation: fadeUp 0.3s ease;
}

/* ---- Slider ---- */
.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---- Review Card ---- */
.review-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(150, 128, 255, 0.16);
  border-radius: 16px;
  padding: 24px 22px;
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  box-sizing: border-box;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.review-card:hover {
  border-color: rgba(196, 50, 220, 0.4);
  box-shadow: 0 10px 36px rgba(79, 44, 250, 0.22);
}

.rc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.rc-stars i {
  font-size: 16px;
  color: #f0a500;
}

.rc-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.rc-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(79, 44, 250, 0.2);
  color: #9680ff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.rc-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-top: 2px;
}

.rc-service {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(150, 128, 255, 0.7);
  border-top: 1px solid rgba(150, 128, 255, 0.12);
  padding-top: 12px;
}

/* ---- Controls ---- */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(150, 128, 255, 0.3);
  background: rgba(79, 44, 250, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.slider-btn i {
  font-size: 18px;
}

.slider-btn:hover {
  background: linear-gradient(90deg, #4f2cfa, #c432dc);
  border-color: transparent;
  color: #fff;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(150, 128, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}

.sdot.active {
  background: #c432dc;
  width: 22px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(196, 50, 220, 0.6);
}

/* ---- Rating Summary ---- */
.rating-summary {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  background: rgba(79, 44, 250, 0.08);
  border: 1px solid rgba(150, 128, 255, 0.18);
  border-radius: 16px;
  padding: 20px 32px;
  max-width: 380px;
  margin: 0 auto;
}

.rating-big {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.rating-stars-big {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.rating-stars-big i {
  font-size: 20px;
  color: #f0a500;
}

.rating-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .review-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 575px) {
  .review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .rating-summary {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .rating-big {
    font-size: 44px;
  }
}

.slider-controls {
  position: relative;
  z-index: 10;
}

.slider-btn {
  position: relative;
  z-index: 10;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  background: #060818;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(150, 128, 255, 0.1);
}

.contact-orb-1 {
  width: 500px;
  height: 500px;
  top: -80px;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(79, 44, 250, 0.2) 0%,
    transparent 65%
  );
  animation: pulse-orb 8s ease-in-out infinite alternate;
}

.contact-box {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(150, 128, 255, 0.22);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 260px;
}

.ci-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.ci-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 28px;
}

.ci-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(79, 44, 250, 0.15);
  border: 1px solid rgba(150, 128, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #9680ff;
  font-size: 18px;
}

.ci-text a,
.ci-text span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.ci-text a:hover {
  color: #c432dc;
}

.ci-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}

.social-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(200, 180, 255, 0.65);
  margin: 28px 0 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 44, 250, 0.1);
  border: 1px solid rgba(150, 128, 255, 0.22);
  border-radius: 100px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.social-link i {
  font-size: 17px;
}

.social-link:hover {
  background: rgba(150, 128, 255, 0.18);
  border-color: #c432dc;
  color: #fff;
}

.contact-cta {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-whatsapp {
  background: linear-gradient(90deg, #1a8a3c 0%, #25d366 100%) !important;
  box-shadow: 0 4px 28px rgba(37, 211, 102, 0.35) !important;
}

.btn-contact-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  font-family: "Outfit", sans-serif;
}

.btn-contact-outline:hover {
  border-color: rgba(150, 128, 255, 0.6);
  color: #fff;
  background: rgba(79, 44, 250, 0.12);
}

.cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .contact-box {
    padding: 32px 24px;
    gap: 32px;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #060818;
  border-top: 1px solid rgba(150, 128, 255, 0.1);
  padding: 20px 24px;
  text-align: center;
}

.site-footer p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.site-footer a {
  color: rgba(150, 128, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: #c432dc;
}
/* =========================
   FLOATING ACTION BUTTONS
========================= */

.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

.fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.fab-btn i {
  font-size: 28px;
  color: #fff;
}

.fab-whatsapp {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55);
}

.fab-whatsapp:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
}

.fab-call {
  background: linear-gradient(135deg, #4f2cfa 0%, #c432dc 100%);
  box-shadow: 0 4px 20px rgba(79, 44, 250, 0.55);
}

.fab-call:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 32px rgba(196, 50, 220, 0.65);
}

/* Pulse ring animation */
.fab-btn::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  animation: fab-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

.fab-whatsapp::before {
  background: rgba(37, 211, 102, 0.35);
}

.fab-call::before {
  background: rgba(79, 44, 250, 0.3);
}

@keyframes fab-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* Tooltip labels */
.fab-btn .fab-label {
  position: absolute;
  right: 68px;
  background: rgba(10, 8, 30, 0.92);
  border: 1px solid rgba(150, 128, 255, 0.25);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  font-family: "Outfit", sans-serif;
}

.fab-btn:hover .fab-label {
  opacity: 1;
}

@media (max-width: 575px) {
  .fab-wrap {
    bottom: 18px;
    right: 18px;
  }
  .fab-btn {
    width: 52px;
    height: 52px;
  }
  .fab-btn i {
    font-size: 24px;
  }
  .fab-btn::before {
    width: 52px;
    height: 52px;
  }
}
