
/*
 * LICENSE: This file is part of the SideQuest Tech theme.
 * Copyright (c) SideQuest Philippines. All rights reserved.
 */

@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/space-grotesk.ttf') format('truetype');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/plus-jakarta-sans.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('assets/fonts/plus-jakarta-sans-italic.ttf') format('truetype');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --primary-color: #9247d7;
  --secondary-color: #07072d;
  --accent-color: #e6c1ff;
  --text-color: #333333;
  --bg-color: #ffffff;
  --light-gray: #f4f4f4;

  --font-main: "Plus Jakarta Sans", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Space Grotesk", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


#fluid-bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  pointer-events: none; 
  
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
}

body.home,
body.front-page {
  background-color: #000000;
  color: white;
}

body.home h1,
body.home h2,
body.home h3,
body.home h4,
body.home h5,
body.home h6 {
  color: white;
}

body.front-page h1,
body.front-page h2,
body.front-page h3,
body.front-page h4,
body.front-page h5,
body.front-page h6 {
  color: white;
}

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

a:hover {
  color: var(--secondary-color);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.text-left {
  text-align: left;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.hero-background-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.8;
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 50%;
}

.hero-title {
  font-size: 4.7rem;
  line-height: 1.1;
  color: white;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}

.hero-btn-primary {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn-primary:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.services-section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: transform 0.3s;
}

.service-title {
  color: var(--primary-color);
}

.trust-section {
  background-color: var(--light-gray);
  padding: 80px 0;
}

.trust-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.trust-content {
  flex: 1;
  min-width: 300px;
  padding-right: 2rem;
}

.trust-list {
  list-style: none;
  padding: 0;
}

.trust-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.check-icon {
  color: var(--primary-color);
  margin-right: 10px;
}

.trust-card {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  color: white;
}

.cta-title {
  color: white;
}

.cta-text-large {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-btn-white {
  background-color: white;
  color: var(--primary-color);
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
  h1 {
    font-size: 2rem;
  }

  .hero-section {
    height: auto;
    padding: 80px 0;
  }
  .hero-content-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }

  .service-floating-card {
    flex: 0 0 85vw;
    width: 85vw;
    padding: 2rem;
  }

  .carousel-controls-bar {
    justify-content: center;
  }
}

.service-details-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.service-details-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 900px;
  margin: 40px auto 60px;
}

.service-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0a0a0;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  text-align: center;
}

.service-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.service-tab-btn.active {
  background: #1e1b4b;
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 0 15px rgba(146, 71, 215, 0.3);
}

.service-tab-pane {
  display: none;
}

.service-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-details-image {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden; 
  border-radius: 12px; 
}

.service-detail-img {
  max-width: 100%;
  height: auto;
  display: block;
  transform-origin: center center;
}

.abstract-ui-visual {
  width: 100%;
  max-width: 500px;
  height: 320px;
  background: linear-gradient(
    135deg,
    rgba(30, 30, 60, 0.5),
    rgba(10, 10, 20, 0.8)
  );
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.ui-card-main {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ui-play-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid white;
  margin-left: 4px;
}

.ui-check-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  background: #1e1b4b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.ui-check-badge svg {
  width: 40px;
  height: 40px;
  color: white;
}

.visual-alt-1 .ui-card-main {
  background: linear-gradient(135deg, #ec4899, #be185d);
}
.visual-alt-2 .ui-card-main {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}
.visual-alt-3 .ui-card-main {
  background: linear-gradient(135deg, #10b981, #059669);
}

.details-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.details-desc {
  color: #b0b0b0;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.details-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.details-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: white;
  font-weight: 500;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #4f46e5;
  margin-right: 12px;
  font-weight: 900;
}

.details-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #4f46e5;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.details-btn:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
  color: white;
}

@media (max-width: 991px) {
  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .service-details-image {
    order: -1;
  }

  .abstract-ui-visual {
    margin: 0 auto;
  }

  .details-list li {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 96%;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

  .hero-content-wrapper.container {
    max-width: 1800px;
  }
}

.site-main.container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

article {
  margin-bottom: 3rem;
}

.entry-title a {
  color: var(--secondary-color);
  text-decoration: none;
}

.entry-title a:hover {
  color: var(--primary-color);
}

.site-header {
  background-color: transparent;
  padding: 1rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-name {
  white-space: nowrap;
}

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

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: white;
  font-family: var(--font-heading);
  font-weight: 500;
  opacity: 0.9;
}

.main-navigation a:hover {
  color: var(--accent-color);
  opacity: 1;
}

.menu-toggle {
  display: none;
}

@media (max-width: 767.98px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
  }
  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .main-navigation.active {
    display: block;
  }
  .main-navigation ul {
    flex-direction: column;
    gap: 1rem;
  }
  .main-navigation a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.site-footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 3rem 0;
  margin-top: 0;
}

.site-footer a {
  color: #ffffff;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.footer-brand-name {
  color: #ffffff !important;
}

.site-footer {
  background: linear-gradient(
    to top left,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    #000000 100%
  );
}
.site-footer .container {
  max-width: 900px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.footer-menu a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-menu a:hover {
  color: var(--accent-color);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.85);
}
.footer-list a:hover {
  color: var(--accent-color);
}

.footer-contact-list li {
  position: relative;
}

.footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

@media (min-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-company {
  padding-left: 24px;
  align-items: flex-start;
}
.footer-company .footer-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
  display: grid;
  gap: 0.6rem;
}
.footer-company .footer-menu li {
  list-style: none;
}
.footer-company .footer-menu a {
  display: inline-block;
}

.footer-company ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-company ul li {
  list-style: none;
}
.footer-company ul li::marker {
  content: "";
}

.who-we-are-section {
  padding: 3rem 0;
  min-height: auto;
  display: block;
}

.who-we-are-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4rem;
}

.who-text-column {
  flex: 1;
  min-width: 300px;
}

.who-content-block {
  margin-bottom: 3rem;
}

.who-content-block:last-child {
  margin-bottom: 0;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  background-color: rgba(146, 71, 215, 0.1);
}

.who-cards-column {
  flex: 1.5;
  min-width: 300px;
}

.who-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.who-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}

.who-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-color);
}

.who-card-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  opacity: 0.8;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.who-card-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-card-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.who-card-desc {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.process-subtitle {
  margin-bottom: 2rem;
  max-width: 600px;
  color: #cccccc;
}

@media (max-width: 991.98px) {
  .who-we-are-container {
    flex-direction: column;
  }

  .who-text-column,
  .who-cards-column {
    width: 100%;
    flex: auto;
  }
}

@media (max-width: 575.98px) {
  .who-cards-grid {
    grid-template-columns: 1fr;
  }
}

.services-floating-section {
  padding: 100px 0;
  position: relative;
}

.services-floating-section .services-masonry-grid {
  display: block;
  margin-top: 4rem;
}

.services-masonry-grid .service-glass-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px 0 rgba(0, 0, 0, 0.3),
    inset 0 0 32px rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 32px;
  width: calc(33.333% - 22px);
  height: auto;
  min-height: 400px;
}


.js .services-masonry-grid .service-glass-card {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
}

.services-masonry-grid .service-glass-card:nth-child(2n) {
  min-height: 500px;
}

.services-masonry-grid .service-glass-card:hover {
  transform: translateY(-10px) !important;
  background: linear-gradient(
    135deg,
    rgba(146, 71, 215, 0.2) 0%,
    rgba(146, 71, 215, 0.05) 100%
  ) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 30px rgba(146, 71, 215, 0.15) !important;
}

.service-glass-card.featured {
  background: linear-gradient(
    135deg,
    rgba(146, 71, 215, 0.2) 0%,
    rgba(146, 71, 215, 0.05) 100%
  );
  border-color: var(--primary-color);
  box-shadow: 0 0 30px rgba(146, 71, 215, 0.15);
}

.service-card-content {
  position: relative;
  z-index: 2;
}

.service-glass-card .service-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-glass-card .service-desc {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-glass-card.featured .service-desc {
  color: #e6e6e6;
}

.service-btn {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.services-header-block {
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 10px var(--primary-color);
}

.services-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.services-subtitle {
  font-size: 1.25rem;
  color: #b0b0b0;
  margin-bottom: 3rem;
  font-weight: 400;
}

.services-explore-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(146, 71, 215, 0.4);
}

.services-explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(146, 71, 215, 0.6);
  background-color: #a45aec;
}

@media (max-width: 768px) {
  .services-main-title {
    font-size: 2.5rem;
  }

  .services-subtitle {
    font-size: 1.1rem;
  }
}

.service-icon-placeholder {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}

.icon-shape {
  position: absolute;
}

.shape-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  bottom: 30px;
  right: 30px;
}

.shape-circle-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  top: 20px;
  left: 20px;
}

.shape-circle-outline {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  bottom: 20px;
  right: 50px;
}

.shape-rect {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  top: 20px;
  right: 20px;
}

.shape-rect-long {
  width: 100px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(-15deg);
  bottom: 40px;
  right: 20px;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(146, 71, 215, 0.3);
  transform: rotate(15deg);
  bottom: 30px;
  right: 30px;
}

.shape-chart {
  width: 80px;
  height: 60px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1) 10px,
    transparent 10px,
    transparent 20px
  );
  bottom: 40px;
  right: 30px;
}

.shape-shield {
  width: 70px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0 0 50% 50%;
  bottom: 30px;
  right: 30px;
}

.shape-brain {
  width: 80px;
  height: 60px;
  border-radius: 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  bottom: 40px;
  right: 30px;
}

.shape-brain::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 60px;
  height: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 991.98px) {
  .services-masonry-grid .service-glass-card {
    width: calc(50% - 16px);
  }
}

@media (max-width: 575.98px) {
  .services-masonry-grid .service-glass-card {
    width: 100%;
    min-height: auto;
  }
}

.text-center {
  text-align: center;
}

.starter-pack-bg {
  display: none;
}

.portfolio-section {
  color: white;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.portfolio-container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.portfolio-title {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.portfolio-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.6;
}

.portfolio-header-right {
  display: flex;
  gap: 15px;
}

.btn-portfolio-action {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-portfolio-action.btn-primary {
  background: #1f1f1f;
  color: #4ade80;
  border: 1px solid #333;
}

.btn-portfolio-action.btn-secondary {
  background: transparent;
  color: #a3a3a3;
  border: 1px solid transparent;
}

.btn-portfolio-action:hover {
  background: #333;
  color: white;
}

.portfolio-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  padding-top: 20px;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.marquee-left {
  animation: scroll-left 40s linear infinite;
}

.marquee-left-delayed {
  animation: scroll-left 45s linear infinite reverse;
  animation: scroll-left 50s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 20px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.portfolio-card {
  background: #11113b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  height: 180px;
}

.portfolio-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(146, 71, 215, 0.6);
  transform: translateY(-5px);
  z-index: 2;
}

.card-wide {
  width: 350px;
}

.card-square {
  width: 250px;
}

.card-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  opacity: 1;
}

.card-text {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 768px) {
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .portfolio-title {
    font-size: 2rem;
  }

  .portfolio-card {
    height: 140px;
  }

  .card-wide {
    width: 280px;
  }

  .card-square {
    width: 180px;
  }
}

.contact-section {
  padding: 100px 0;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(
    circle at bottom right,
    black 0%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    circle at bottom right,
    black 0%,
    transparent 70%
  );
}

.contact-container {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(146, 71, 215, 0.1);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border-radius: 0;
}

.contact-title {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.contact-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 550px;
}

.contact-manual-contact p {
  margin-bottom: 0.5rem;
  color: #666;
}

.contact-email-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-email-link:hover {
  animation: email-glow 1.5s infinite alternate;
}

@keyframes email-glow {
  from {
    text-shadow: 0 0 5px var(--primary-color), 0 0 10px var(--primary-color);
  }
  to {
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px #e6c1ff, 0 0 30px var(--primary-color);
  }
}

.contact-form-column {
  padding-top: 1rem;
  display: flex;
  justify-content: center;
  margin-left: auto;
  width: 100%;
}

.contact-form {
  width: 100%;
  max-width: 750px;
  background-color: var(--secondary-color);
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.form-row {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  font-family: var(--font-main);
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-group select option {
  color: black;
  background-color: white;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.cf-turnstile {
  width: 100%;
  margin-bottom: 1.5rem;
}

.btn-submit:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-color);
}

.patch-notes-section {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.patch-header {
  margin-bottom: 2rem;
}

.patch-notes-carousel-container {
  width: 100%;
  margin-top: 60px;
  overflow: visible;
}

.patch-notes-track {
  display: flex;
  gap: 40px;
  width: fit-content;
  will-change: transform;
}

.patch-card {
  width: 400px;
  height: 600px;
  position: relative;
  flex-shrink: 0;
  background-color: var(--secondary-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.patch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.patch-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.patch-card:hover::before {
  opacity: 1;
}

.patch-card-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.patch-card:hover .patch-card-badge {
  background-color: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
}

.patch-card-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-align: left;
  letter-spacing: -1px;
}

.patch-card-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.btn-patch-read {
  margin-top: auto;
  display: inline-block;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  background: transparent;
  border: 1px solid var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.btn-patch-read:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.patch-card:hover .btn-patch-read {
  background: transparent;
  border-color: white;
  color: white;
}

.patch-card:hover .btn-patch-read:hover {
  background: white;
  color: var(--secondary-color);
  border-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.patch-card-image,
.patch-card-content {
  display: none;
}


.patch-notes-track.patch-track-empty {
  width: 100%;
  justify-content: center;
  align-items: center;
}

.patch-empty-state {
  text-align: center;
  padding: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.patch-empty-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -2px;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 768px) {
  .patch-empty-title {
    font-size: 3rem;
  }
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  overflow: hidden;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-color);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-item-content,
.contact-link-wrapper {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(146, 71, 215, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.contact-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.contact-item:hover .contact-text {
  color: #fff;
}

@media (max-width: 768px) {
  .service-details-tabs {
    grid-template-columns: 1fr;
  }
}

.cookie-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(7, 7, 45, 0.95);
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-consent-bar.cookie-visible {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text-wrapper {
  flex: 1;
}

.cookie-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookie-text {
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.cookie-policy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.cookie-policy-link:hover {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-btn-primary {
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.cookie-btn-primary:hover {
  background-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(146, 71, 215, 0.3);
}

.cookie-btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-outline:hover {
  border-color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}



.newsletter-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(146, 71, 215, 0.4));
}

.newsletter-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.newsletter-text {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.newsletter-subtext {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.newsletter-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-input {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(146, 71, 215, 0.2);
}

.newsletter-submit-btn {
  width: 100%;
  padding: 14px 20px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(146, 71, 215, 0.3);
}

.newsletter-submit-btn:hover {
  background: #a45aec;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(146, 71, 215, 0.5);
}

.newsletter-dismiss-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.newsletter-dismiss-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 576px) {
  .newsletter-popup-content {
    padding: 2rem 1.5rem;
  }

  .newsletter-title {
    font-size: 1.5rem;
  }
}

.newsletter-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  padding: 20px;
}

.newsletter-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.newsletter-popup-content {
  background: linear-gradient(
    145deg,
    rgba(18, 18, 28, 0.95) 0%,
    rgba(10, 10, 20, 0.98) 100%
  );
  border: 1px solid rgba(146, 71, 215, 0.3);
  border-top: 1px solid rgba(146, 71, 215, 0.6);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(146, 71, 215, 0.15);
  border-radius: 24px;
  padding: 3rem;
  width: 100%;
  max-width: 850px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.8s ease;
  overflow: hidden;
}

.newsletter-popup-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(146, 71, 215, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.newsletter-popup-overlay.active .newsletter-popup-content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.newsletter-content-col {
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 1rem;
}

.newsletter-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.newsletter-icon {
  font-size: 2rem;
  color: var(--primary-color);
  filter: drop-shadow(0 0 10px rgba(146, 71, 215, 0.4));

  display: flex;
  align-items: center;
}

.newsletter-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0;
}

.newsletter-text {
  color: #e0e0e0;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.newsletter-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b0b0b0;
  font-size: 0.95rem;
}

.newsletter-benefits li i {
  color: #4caf50;
}

.newsletter-form-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form .input-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.page-transition-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.page-transition-overlay.is-loading {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.transition-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.transition-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.transition-text {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-shadow: 0 0 20px rgba(146, 71, 215, 0.8);
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  from {
    text-shadow: 0 0 10px rgba(146, 71, 215, 0.5);
    opacity: 0.8;
  }
  to {
    text-shadow: 0 0 30px rgba(146, 71, 215, 1);
    opacity: 1;
  }
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(146, 71, 215, 0.2);
}

.newsletter-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(146, 71, 215, 0.3);

  text-align: center;
}

.newsletter-submit-btn:hover {
  background: #a45aec;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(146, 71, 215, 0.5);
}

.newsletter-subtext {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-align: center;
  margin: 0;
}

.newsletter-dismiss-link {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: center;
}

.newsletter-dismiss-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.newsletter-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 10;
}

.newsletter-close-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .newsletter-content-col {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }

  .newsletter-header {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .newsletter-benefits {
    align-items: center;
  }

  .newsletter-popup-content {
    padding: 2.5rem 1.5rem;
  }
}

.transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #05051e;
  z-index: 99999;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.transition-curtain.is-hidden {
  opacity: 0;
}

body.js-exiting {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}
.newsletter-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #12121c;
  margin-left: -8px;
  display: block;
}

.proof-avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.9rem;
  color: #e0e0e0;
}

.proof-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

.newsletter-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .newsletter-title {
    font-size: 1.75rem;
  }
}

.service-details-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.service-details-image::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(79, 70, 229, 0.4) 0%, rgba(124, 58, 237, 0.2) 50%, transparent 80%);
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
}

.service-detail-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.legal-main-title {
    background: linear-gradient(to right, #fff, #e6c1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.legal-subtitle {
    color: #ffffff;
}

.legal-header-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/*
 * LICENSE: This file is part of the SideQuest Tech theme.
 * Copyright (c) SideQuest Philippines. All rights reserved.
 */
.transition-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #02020a; 
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.transition-curtain.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    width: 300px;
    font-family: "Space Grotesk", sans-serif;
    color: #9d4edd; 
}

.loader-text {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
    font-weight: bold;
}

.loader-progress-wrapper {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(157, 78, 221, 0.3);
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background-color: #9d4edd; 
    box-shadow: 0 0 15px #9d4edd;
    transition: width 0.1s linear;
}

.loader-status {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.transition-curtain::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 16, 16, 0) 50%,
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 2;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6,
.newsletter-title,
.section-title,
.hero-title,
.bento-title,
.service-title,
.cta-title,
.footer-col-title {
  scrollbar-width: none !important;
}


h1::-webkit-scrollbar, h2::-webkit-scrollbar, h3::-webkit-scrollbar, 
h4::-webkit-scrollbar, h5::-webkit-scrollbar, h6::-webkit-scrollbar,
.newsletter-title::-webkit-scrollbar,
.section-title::-webkit-scrollbar,
.hero-title::-webkit-scrollbar,
.bento-title::-webkit-scrollbar,
.service-title::-webkit-scrollbar,
.cta-title::-webkit-scrollbar,
.footer-col-title::-webkit-scrollbar {
  display: none !important;
}
