/********** Template CSS **********/
/********** Global Styles - Theme Nebula **********/
:root {
  /* Core Palette: Deep Space */
  --bg-deep: #030014;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);

  /* Accents - Logo Inspired Colors */
  --primary: #975ab6;
  --secondary: #4f1964;
  --accent-glow: #70338a;

  /* Text */
  --text-white: #ffffff;
  --text-gray: #aebaeb;

  /* Dimensions */
  --nav-height: 80px;
}

/* Global Styles */
* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 992px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
}

body {
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: 'Outfit', 'Inter', sans-serif;
  /* Assuming Outfit is linked, fallback Inter */
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(157, 0, 255, 0.15), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(255, 0, 128, 0.15), transparent 25%);
  background-attachment: fixed;
}

/* Typography - Creative Fluid Scaling */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-white);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 7vw, 4.5rem);
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
}

.display-1 {
  font-size: clamp(2.5rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Fluid Aurora Animation Background */
.aurora-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatBlob 20s infinite alternate;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: var(--primary);
  animation-delay: 0s;
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: var(--secondary);
  animation-delay: -5s;
}

.blob-3 {
  top: 40%;
  left: 40%;
  width: 40vw;
  height: 40vw;
  background: #00e0ff;
  opacity: 0.2;
  animation-delay: -10s;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

/* Glass Feature Cards & Effects */
.glass-glow-bg {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(157, 0, 255, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
}

.glass-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.glass-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
}

/* Achievement Float Card */
.achievement-float-card {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 10;
  min-width: 200px;
  transform: translate(15%, 35%);
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translate(15%, 35%);
  }

  50% {
    transform: translate(15%, 30%);
  }
}

.achievement-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to bottom, #ffffff 0%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.achievement-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .achievement-float-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    transform: none;
    min-width: 160px;
    padding: 12px 15px;
    animation: floatCardMobile 4s ease-in-out infinite;
  }

  @keyframes floatCardMobile {

    0%,
    100% {
      transform: none;
    }

    50% {
      transform: translateY(-10px);
    }
  }

  .achievement-number {
    font-size: 1.5rem;
  }

  .achievement-text {
    font-size: 0.8rem;
  }
}

.glass-icon-box {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: white;
  margin-bottom: 1rem;
}

.bg-grad-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.bg-grad-secondary {
  background: linear-gradient(135deg, var(--secondary), var(--accent-glow));
}

.bg-grad-accent {
  background: linear-gradient(135deg, #00e0ff, var(--primary));
}

.bg-grad-white {
  background: linear-gradient(135deg, var(--accent-glow), #ffffff);
  color: black !important;
}

@media (max-width: 768px) {
  .glass-glow-bg {
    width: 300px;
    height: 300px;
  }
}

/* Base back-to-top utilities removed to avoid conflicts with standardized sticky bar */


/*** Cosmic Pulse Loader ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
  background-color: #030014;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.cosmic-loader {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Logo */
.cosmic-logo {
  width: 80px;
  height: auto;
  z-index: 2;
  animation: cosmicPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(151, 90, 182, 0.6));
}

/* Glowing Rings */
.cosmic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(151, 90, 182, 0.8);
  border-bottom-color: rgba(50, 200, 255, 0.5);
  box-shadow: 0 0 10px rgba(151, 90, 182, 0.2);
}

.ring-1 {
  width: 100%;
  height: 100%;
  animation: cosmicSpin 3s linear infinite;
}

.ring-2 {
  width: 70%;
  height: 70%;
  border-top-color: rgba(50, 200, 255, 0.8);
  border-bottom-color: rgba(151, 90, 182, 0.5);
  animation: cosmicSpin 5s linear infinite reverse;
}

/* Background Glow */
.cosmic-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(151, 90, 182, 0.2) 0%, transparent 70%);
  z-index: 1;
  animation: cosmicBreathe 3s ease-in-out infinite;
}

/* Loading Text */
.cosmic-text {
  position: absolute;
  bottom: -40px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1px;
  animation: textPulse 2s ease-in-out infinite;
  white-space: nowrap;
  background: linear-gradient(to bottom, #ffffff 0%, #b0b0b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.5));
}

/* Animations */
@keyframes cosmicSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes cosmicPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 15px rgba(151, 90, 182, 0.6));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(151, 90, 182, 0.9));
  }
}

@keyframes cosmicBreathe {

  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes textPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1) drop-shadow(0 0 10px var(--primary));
  }

  50% {
    transform: scale(1.1);
    filter: brightness(1.2) drop-shadow(0 0 20px var(--primary));
  }
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateRingRev {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}


/*** Button ***/
.btn {
  font-weight: 500;
  transition: all var(--transition-normal);
  border-radius: 8px;
}

.btn.btn-primary {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #FFFFFF;
}

.btn.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(186, 73, 221, 0.4);
}

.btn.btn-secondary {
  background: var(--bg-dark-card);
  border-color: var(--border-color);
  color: #FFFFFF;
}

.btn.btn-secondary:hover {
  background: var(--bg-dark-hover);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text-primary);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}



/*** Slideer ***/



/*** Header ***/
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centered h1 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .centered h1 {
    font-size: 3.75rem;
  }
}

.centered p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .centered p {
    font-size: 1.5rem;
  }
}

.cta-button {
  background: #ba49dd;
  color: white;
  font-weight: bold;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background: #ba49dd;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(135deg, #e8e4ec, #cc87df, #9333ea);
  pointer-events: none;
}


/*** Service ***/
.service-item {
  transition: all var(--transition-normal);
  background: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.service-item:hover {
  margin-top: -10px;
  box-shadow: 0 12px 32px rgba(186, 73, 221, 0.25);
  border-color: var(--accent-primary);
  background: var(--bg-dark-hover);
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  background: var(--accent-primary);
  color: white;
  border-radius: 40px;
  white-space: nowrap;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.service-item:hover .btn {
  width: 140px;
  background: var(--accent-hover);
}


/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + .75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + .75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + .75rem);
  }
}


/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: .5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item {
  position: relative;
  height: 100px;
  transition: .5s;
}


/*** Exports  ***/
#app {
  max-width: 1500px;
  margin: 0 auto;
  padding: 2rem;
}

.m-tabs {
  padding: 1rem;
}

.tabs-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0 2rem;
  position: relative;
}

.tabs-nav::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 2rem;
  height: 2px;
  width: calc((100% - 4rem) / 3);
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.tabs-nav[data-active-tab="2"]::after {
  transform: translateX(100%);
}

.tabs-nav[data-active-tab="3"]::after {
  transform: translateX(200%);
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.3s;
  text-align: center;
  min-width: 120px;
}

.tab-btn img {
  width: 24px;
  height: 24px;
}

.tab-btn:hover {
  color: #ffffff;
}

.tab-btn.active {
  color: #ffffff;
}

.tab-section {
  display: none;
}

.tab-section.active {
  display: block;
}

.accordion-header {
  display: none;
  margin: 0;
  padding: 1rem;
  background: none;
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.accordion-header img {
  width: 24px;
  height: 24px;
}

.content {
  padding: 1rem 0;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.marketing-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 0 2rem;
  text-align: center;
  color: white;
}

.point-btn {
  background: none;
  border: none;
  color: white;
  padding: 0.75rem;
  font-size: 1.1rem;
  text-align: left;
  transition: color 0.3s;
}


.logo-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: none;
  border: none;
  color: white;
  text-align: center;
}


.logo-btn img {
  width: 48px;
  height: 48px;
}

.logo-btn span {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .tabs-nav {
    display: none;
  }

  .accordion-header {
    display: flex;
  }

  .tab-section {
    display: block;
    margin-bottom: 1rem;
  }

  .tab-section .content {
    display: none;
  }

  .tab-section.active .content {
    display: block;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .marketing-points {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 1.5rem;
  }
}

@media (prefers-color-scheme: light) {
  :root {
    color: #ffffff;
    background-color: #000000;
  }

  .tab-btn {
    color: rgba(255, 255, 255, 0.6);
  }

  .tab-btn:hover,
  .tab-btn.active,
  .logo-btn:hover,
  .point-btn:hover {
    color: #ffffff;
  }

  .accordion-header {
    color: rgba(255, 255, 255, 0.6);
  }
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: rgb(183, 43, 226);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: rgb(183, 43, 226);
}


/*** Process Section ***/
.process-section {
  padding: 5rem 1rem;
  background-color: var(--white);
}

.process-timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: white;
}

.process-step {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
  flex-wrap: wrap;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 40px;
  height: 40px;
  color: #9333ea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background-color: white;
}

.step-content {
  width: 45%;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  position: relative;
}

.process-step:nth-child(odd) .step-content {
  margin-left: 0;
  margin-right: auto;
}

.step-icon {
  background-color: #9333ea;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.step-icon i {
  color: white;
  width: 1.5rem;
  height: 1.5rem;
}

/*** Responsive Styles ***/
@media (max-width: 992px) {
  .step-content {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 8%;
  }

  .step-number {
    left: 8%;
    transform: none;
  }

  .step-content {
    width: 90%;
    margin: 0 auto;
    padding-left: 4rem;
  }

  .process-step:nth-child(odd) .step-content,
  .process-step:nth-child(even) .step-content {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .step-content {
    width: 100%;
    padding: 1.5rem 1rem 1.5rem 4rem;
  }

  .step-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .step-icon i {
    width: 1rem;
    height: 1rem;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}

/*** Testimonial ***/
.testimonial-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgb(64, 7, 110) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to left, rgb(64, 7, 110) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

@media (min-width: 768px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {

  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}

.testimonial-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(.8);
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary);
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
  transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: white !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: .5s;
  z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
  width: 300px;
  opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #FFFFFF;
  transition: .3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

/*** FAQ ***/

/* Custom styles for FAQ page */
.faq-item {
  margin-bottom: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(186, 73, 221, 0.2);
  transform: translateY(-2px);
  border-color: var(--accent-primary);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-primary);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-icon {
  display: inline-block;
  transition: transform var(--transition-normal);
  font-size: 1.2rem;
  color: var(--accent-primary);
}

.faq-icon.rotate {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem 1.5rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-button:not(.collapsed) {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-weight: 500;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(13, 110, 253, 0.25);
}

.faq-category-badge {
  text-transform: capitalize;
  font-size: 0.75rem;
  padding: 0.35em 0.65em;
  border-radius: 0.5rem;
}

/* Animation for accordion */
.accordion-collapse {
  transition: all 0.3s ease-out;
}

/* Search bar styles */
.input-group-text {
  background-color: white;
  border-right: none;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: none;
}


/* Header styling */
header {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 250px;
  display: flex;
  align-items: center;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Category buttons */
.category-filters .btn {
  border-radius: 20px;
  padding: 0.375rem 1.2rem;
  transition: all 0.2s;
  margin: 0.25rem;
}

.category-filters .btn-outline-primary:hover {
  transform: translateY(-2px);
}

.category-filters .btn-primary {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(13, 110, 253, 0.2);
}

/* Footer styling */
footer {
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

footer .social-icons a {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

footer .social-icons a:hover {
  opacity: 0.7;
  transform: translateY(-3px);
}

/* No results message */
.alert-info {
  border-left: 5px solid #0dcaf0;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0d6efd;
  color: white;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #0b5ed7;
  transform: translateY(-3px);
}

.scroll-to-top i {
  font-size: 1.5rem;
}

/* Loading spinner */
.loading-spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.loading-spinner-container .spinner-border {
  width: 3rem;
  height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .lead {
    font-size: 1rem;
  }

  .category-filters .btn {
    font-size: 0.85rem;
    padding: 0.25rem 0.85rem;
  }

  .accordion-button {
    font-size: 0.95rem;
  }

  .scroll-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top i {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .category-filters .d-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .category-filters .btn {
    margin-bottom: 0.5rem;
  }
}

/* chat bot ai */
.chat-icon {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  /* Changed from fixed */
}

.ai-chatbot-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 25px rgba(151, 90, 182, 0.3);
  position: relative;
  animation: robot-bob 3s ease-in-out infinite;
}

.ai-chatbot-icon i,
.chatbot-logo {
  position: relative;
  z-index: 2;
}

.chatbot-logo {
  width: 35px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(151, 90, 182, 0.5));
  transition: transform 0.3s ease;
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #975ab6;
  animation: pulse-animation 2s infinite;
  opacity: 0.7;
}

.pulse-ring-2 {
  animation-delay: 1s;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes robot-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.chat-icon:hover {
  transform: scale(1.1);
}

.chat-icon:hover .ai-chatbot-icon {
  box-shadow: 0 15px 35px rgba(255, 0, 222, 0.7);
}

.chat-box {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  height: 500px;
  max-height: 80vh;
  background: rgba(10, 5, 25, 0.95);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: none;
  flex-direction: column;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(151, 90, 182, 0.1);
  border-radius: 32px;
  z-index: 1001;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom right;
}

.chat-box[style*="display: flex"] {
  animation: chatOpen 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes chatOpen {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.chat-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
}

.chat-header .title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header .header-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  margin-bottom: 16px;
  width: fit-content;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #975ab6;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  40% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

@keyframes statusPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.chat-header button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-header button:hover {
  background: rgba(255, 0, 222, 0.2);
  border-color: rgba(255, 0, 222, 0.4);
  transform: rotate(90deg);
}

.chat-body {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: radial-gradient(circle at top right, rgba(151, 90, 182, 0.05), transparent 60%);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.chat-body::-webkit-scrollbar {
  width: 4px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.chat-body p {
  padding: 12px 18px;
  border-radius: 20px;
  max-width: 85%;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: messageSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes messageSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
  border-bottom-left-radius: 4px !important;
  border-left: 3px solid #975ab6;
}

.user-message {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(151, 90, 182, 0.3), rgba(79, 25, 100, 0.3));
  border: 1px solid rgba(151, 90, 182, 0.4);
  color: white;
  border-bottom-right-radius: 4px !important;
  backdrop-filter: blur(5px);
}

.chat-footer {
  padding: 20px;
  background: transparent;
  display: flex;
  gap: 10px;
  align-items: center;
}

.chat-footer .input-wrapper {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 6px 4px 16px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.chat-footer .input-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: #975ab6;
  box-shadow: 0 0 15px rgba(151, 90, 182, 0.2);
}

.chat-footer input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px 0;
  color: white;
  outline: none;
  font-size: 0.9rem;
}

.chat-footer button {
  background: #975ab6;
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 15px rgba(151, 90, 182, 0.4);
}

.chat-footer button:hover {
  background: #b72be2;
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 8px 20px rgba(151, 90, 182, 0.6);
}

.chat-footer button i {
  font-size: 0.9rem;
  margin-left: 2px;
}


/* FAQ Responsiveness */
@media (max-width: 768px) {
  .faq-wrapper {
    padding: 40px 15px;
  }

  .faq-section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }
}

/* Sticky Bar Adjustments */
@media (max-width: 576px) {
  .sticky-contact-bar {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }

  .whatsapp-float,
  .chat-icon,
  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .ai-chatbot-icon img {
    width: 20px;
  }
}

/* Legacy Sticky Bar Styles Removed - Consolidated at the end of the file */
}

/* Reduced animation intensity for mobile */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
}

/* For small mobile devices */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

/* For mobile in landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}


/* Popup message styling */
.help-popup {
  position: fixed;
  right: 95px;
  bottom: 105px;
  background-color: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 200px;
  transform: scale(0);
  transform-origin: bottom right;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 999;
  border: 1px solid #ddd;
  color: black;
}

.help-popup.show {
  transform: scale(1);
  opacity: 1;
}

.help-popup:after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left-color: white;
  border-right: 0;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

@keyframes slideIn {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Footer Styles */
/* Large Agency Footer */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta {
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 4rem;
}

.footer-cta h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-cta p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2rem;
}

.footer h5 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer .btn.btn-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 12px;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  font-weight: 400;
  text-transform: none;
}

.footer .btn.btn-link::before {
  display: none;
}

.footer .btn.btn-link:hover {
  color: var(--accent-primary);
  transform: translateX(5px);
  letter-spacing: 0;
  padding-left: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-social a:hover {
  background: var(--accent-primary);
  transform: translateY(-3px);
}

.copyright {
  padding: 2rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright a {
  color: #888;
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.2s ease;
}

.copyright a:hover {
  color: var(--accent-primary);
}

/* Smooth Scroll Animations */
.fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.fadeInLeft {
  animation: fadeInLeft 0.6s ease-out;
}

.fadeInRight {
  animation: fadeInRight 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Legacy back-to-top styles removed */

/* Enhanced Typography - Beyond Style */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
}

p.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Clean Professional Card Design */
.feature-card,
.card,
.service-card {
  position: relative;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.feature-card:hover,
.card:hover,
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(186, 73, 221, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--accent-primary);
  color: white;
}

.service-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
  color: var(--accent-hover);
}

/* Remove rainbow borders */
.feature-card::before,
.feature-card::after,
.card::before,
.card::after {
  display: none;
}

/* Section Spacing - Beyond Style */
.container-xxl {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Text Colors */
.text-light {
  color: var(--text-secondary) !important;
}

.text-white {
  color: var(--text-primary) !important;
}

/* Border Pill Badges */
.border.rounded-pill {
  background: rgba(186, 73, 221, 0.1);
  border-color: var(--accent-primary) !important;
  color: var(--accent-primary);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* Card Enhancements */
.card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--text-primary);
  font-weight: 700;
}

.card-text {
  color: var(--text-secondary) !important;
}

/* Icon Backgrounds */
.rounded-circle {
  background: rgba(186, 73, 221, 0.1) !important;
}

/* Divider */
.divider-primary {
  width: 60px;
  height: 4px;
  background: var(--accent-primary);
  border-radius: 2px;
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p.lead {
    font-size: 1.1rem;
  }
}

/* Smooth Reveal on Scroll */
.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
}

/* Enhanced Hover States */
a {
  transition: all var(--transition-fast);
}

a:hover {
  color: var(--accent-primary);
}

/* Image Enhancements */
img {
  max-width: 100%;
  height: auto;
}

.img-fluid {
  border-radius: 12px;
}

/* Section Headers - Agency Align */
.section-header {
  margin-bottom: 3rem;
  text-align: left !important;
}

.section-header h2 {
  margin-bottom: 1rem;
  text-align: left;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0;
  text-align: left;
}

/* Minimalist Clean Sections */
section {
  position: relative;
  overflow: hidden;
}

/* Clean Grid Layouts */
.row.g-3>*,
.row.g-4>*,
.row.g-5>* {
  margin-bottom: 2rem;
}

/* Process/Steps Section Styling */
.process-step {
  padding: 2rem;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.process-step:hover {
  border-color: var(--accent-primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(186, 73, 221, 0.2);
}

.process-step h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Number Badges */
.step-number-badge {
  width: 50px;
  height: 50px;
  background: rgba(186, 73, 221, 0.1);
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent-primary);
  margin-bottom: 1.5rem;
}

/* Clean Checkmarks */
.checkmark {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 1.2rem;
}

/* --- LOGO THEME ADDITIONS --- */

/* Logo Loader */
.logo-loader {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  width: 60px;
  animation: pulse 2s infinite;
}

.loader-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Logo Watermark */
.logo-watermark {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  opacity: 0.03;
  width: 80vh;
  pointer-events: none;
  z-index: 0;
}

/* Hero Visuals */
.hero-visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(186, 73, 221, 0.2);
  box-shadow: 0 0 50px rgba(186, 73, 221, 0.1);
  animation: rotate 20s linear infinite;
}

.hero-logo-showcase {
  position: relative;
  z-index: 2;
  width: 250px;
  filter: drop-shadow(0 0 30px rgba(186, 73, 221, 0.4));
}

.floating-logo {
  animation: float 6s ease-in-out infinite;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 600;
  z-index: 3;
}

.card-seo {
  top: 20%;
  right: 0;
  animation: float 5s ease-in-out infinite 1s;
}

.card-growth {
  bottom: 20%;
  left: 0;
  animation: float 7s ease-in-out infinite 0.5s;
}

.floating-card i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, white 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Improved Spacing */
.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

/* Clean Borders */
.border-light {
  border-color: var(--border-color) !important;
}

/* Text Alignment Improvements */
.text-center h2,
.text-center h3 {
  margin-bottom: 1.5rem;
}

/* Link Styling */
.read-more-link,
.web-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more-link:hover,
.web-link:hover {
  color: var(--accent-hover);
  gap: 0.75rem;
}

/* Improved Container Spacing */
.container,
.container-fluid,
.container-xxl {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1200px) {

  .container,
  .container-xxl {
    max-width: 1200px;
  }
}

/* Clean Feature Icons */
.feature-icon {
  width: 80px;
  height: 80px;
  background: rgba(186, 73, 221, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: rgba(186, 73, 221, 0.2);
  transform: scale(1.1);
}

/* Subtle Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Clean Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 5px;
}

/* =========================================
   NEBULA THEME COMPONENTS
   ========================================= */

/* Creative Typography */
.text-outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  color: transparent;
}

.text-gradient-creative {
  background: linear-gradient(135deg, #fff 0%, var(--accent-glow) 50%, #00e0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(79, 25, 100, 0.5));
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  letter-spacing: -2px;
}

@media(min-width: 992px) {
  .hero-title {
    font-size: 6rem;
  }
}

/* Magnetic Buttons */
.btn-magnetic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  border-radius: 50px;
  background: white;
  color: black;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.btn-magnetic:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  color: black;
}

.btn-magnetic-primary {
  background: white;
  color: black;
}

.btn-magnetic-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-magnetic-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: white;
}

/* Nebula Bento Grid End */

/* Nebula Floating Navbar */
.navbar-island {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 1150px;
  background: rgba(10, 5, 30, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  z-index: 1030;
  padding: 12px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-island.scrolled {
  top: 15px;
  background: rgba(3, 0, 15, 0.95);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.navbar-island .navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.4rem;
}

.navbar-island .navbar-brand img {
  filter: brightness(0) invert(1);
}

.navbar-island .nav-link {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  /* Reduced from 0.95rem */
  padding: 8px 12px !important;
  /* Reduced from 8px 20px */
  margin: 0 10px;
  /* Increased from 0 1px for better spacing */
  border-radius: 30px;
  transition: all 0.3s ease;
  position: relative;
  /* overflow: hidden; Removed to prevent text clipping */
  white-space: nowrap;
}

.navbar-island .nav-link:hover,
.navbar-island .nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.navbar-toggler-island {
  border: none;
  color: white;
  background: transparent;
  font-size: 1.2rem;
}

@media (max-width: 1199.98px) {
  .navbar-island {
    width: 95%;
    top: 10px;
    padding: 10px 20px;
    border-radius: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    min-height: 60px;
  }

  .navbar-island .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    /* Critical for vertical collapse */
  }

  .navbar-island .navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    line-height: 1;
  }

  .navbar-island .navbar-toggler-island {
    padding: 8px;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
  }

  .navbar-island .navbar-collapse {
    background: rgba(3, 0, 10, 0.98);
    border-radius: 20px;
    padding: 15px 10px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 75vh;
    overflow-y: auto;
    width: 100%;
    /* Force full width on new line */
    transform-origin: top;
  }

  .navbar-island .navbar-collapse.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .navbar-island .navbar-collapse.collapsing {
    /* Maintain flex layout during animation */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: height 0.3s ease, opacity 0.3s ease;
  }

  /* Slide down animation */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar-island .navbar-nav {
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navbar-island .nav-item {
    width: 100%;
    display: flex;
    justify-content: center;
    /* Staggered animation */
    animation: fadeInUp 0.4s ease-out backwards;
    flex-wrap: wrap;
  }

  .navbar-island .nav-item:nth-child(1) {
    animation-delay: 0.05s;
  }

  .navbar-island .nav-item:nth-child(2) {
    animation-delay: 0.1s;
  }

  .navbar-island .nav-item:nth-child(3) {
    animation-delay: 0.15s;
  }

  .navbar-island .nav-item:nth-child(4) {
    animation-delay: 0.2s;
  }

  .navbar-island .nav-item:nth-child(5) {
    animation-delay: 0.25s;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar-island .nav-link {
    margin: 5px auto !important;
    width: 100%;
    max-width: 300px;
    padding: 12px 20px !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: white !important;
  }

  .navbar-island .nav-link:hover {
    background: rgba(151, 90, 182, 0.1);
    transform: translateX(5px);
  }

  .navbar-island .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    max-width: 280px;
    margin: 10px auto 0 !important;
    border-radius: 12px;
    display: none;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    /* Slightly lighter bg for contrast */
  }

  .navbar-island .dropdown-menu.show {
    display: block;
    animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 10px !important;
  }

  @keyframes dropdownSlide {
    from {
      opacity: 0;
      max-height: 0;
      margin-top: 0;
    }

    to {
      opacity: 1;
      max-height: 500px;
      margin-top: 10px;
    }
  }

  .navbar-island .nav-item.dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-island .dropdown-item {
    text-align: center;
    padding: 12px 20px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    /* Ensure visible text */
    white-space: normal;
    /* Allow wrapping */
  }

  .navbar-island .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
  }

  /* Smooth scrollbar for overflow - Mobile Only */
  .navbar-island .navbar-collapse::-webkit-scrollbar {
    width: 6px;
  }

  .navbar-island .navbar-collapse::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .navbar-island .navbar-collapse::-webkit-scrollbar-thumb {
    background: rgba(151, 90, 182, 0.5);
    border-radius: 10px;
  }

  .navbar-island .navbar-collapse::-webkit-scrollbar-thumb:hover {
    background: rgba(151, 90, 182, 0.7);
  }
}

/* Influencer Discovery & AI Tool Hero Styles */
.influencer-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.influencer-card:hover {
  transform: translateY(-5px);
  border-color: #975ab6;
  background: rgba(255, 255, 255, 0.08);
}

.match-score {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: #975ab6;
  color: white;
  margin-bottom: 12px;
}

.pulse-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-demo {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.demo-pane {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

@media (max-width: 991px) {
  .split-demo {
    flex-direction: column;
  }

  /* Network Hero (Influencer Discovery) Mobile Fixes */
  .network-hero {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
    min-height: auto !important;
  }

  .network-hero .display-3 {
    font-size: 2rem !important;
    text-align: center;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
  }

  .network-hero .lead {
    text-align: center;
    font-size: 1rem !important;
    padding: 0 15px;
    margin-bottom: 2rem !important;
  }

  .network-hero .input-group {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }

  .network-hero .input-group input {
    font-size: 0.9rem !important;
    padding: 10px 15px !important;
  }

  .network-hero .input-group button {
    font-size: 0.85rem !important;
    padding: 8px 16px !important;
  }

  /* Hide influencer cards on mobile for cleaner layout */
  .network-hero .col-lg-6:last-child {
    display: none;
  }

  /* Pulse Hero (AI Content Generation) Mobile Fixes */
  .pulse-hero {
    min-height: auto !important;
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }

  .pulse-hero .badge {
    font-size: 0.75rem !important;
    padding: 6px 12px !important;
  }

  .pulse-hero .display-1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 2rem !important;
  }

  .pulse-hero .split-demo {
    margin-top: 20px !important;
    padding: 0 15px;
  }

  .pulse-hero .demo-pane {
    padding: 15px !important;
    font-size: 0.85rem !important;
  }

  .pulse-hero .demo-pane span {
    font-size: 0.7rem !important;
  }

  .pulse-hero .prompt-text,
  .pulse-hero .demo-pane p {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 768px) {

  /* Extra small devices - further refinements */
  .network-hero .display-3 {
    font-size: 1.75rem !important;
  }

  .network-hero .lead {
    font-size: 0.9rem !important;
  }

  .pulse-hero .display-1 {
    font-size: 1.75rem !important;
  }

  .pulse-hero .demo-pane {
    padding: 12px !important;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.prompt-text {
  font-family: 'Courier New', Courier, monospace;
  color: #975ab6;
  line-height: 1.6;
}
}

/* Beyond Glass Dropdown Menu */
.navbar-island .dropdown-menu {
  border: none;
  background: radial-gradient(circle at 0% 0%, rgba(151, 90, 182, 0.15), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(79, 25, 100, 0.15), transparent 50%),
    rgba(10, 5, 30, 0.9);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 12px;
  margin-top: 15px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(151, 90, 182, 0.15);
  /* Aura Glow */
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  /* Essential for transition */
}

.navbar-island .nav-item.dropdown:hover .dropdown-menu,
.navbar-island .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-island .dropdown-item {
  color: rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.navbar-island .dropdown-item:last-child {
  margin-bottom: 0;
}

/* Glass Divider */
.navbar-island .dropdown-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.navbar-island .dropdown-item:hover,
.navbar-island .dropdown-item:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(8px);
}

/* Left Accent Indicator on Hover */
.navbar-island .dropdown-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: #975ab6;
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}

.navbar-island .dropdown-item:hover::before {
  height: 60%;
}

/* Nebula Hero */
.hero-nebula {
  min-height: 100vh;
  padding-top: 80px;
}

.hero-badge span {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-gray);
}

.hero-desc {
  color: var(--text-gray);
  max-width: 600px;
}

/* Floating Glass Cards - Hero */
.floating-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.floating-glass-card i {
  font-size: 1.5rem;
  color: var(--primary);
}

.card-1 {
  top: 25%;
  right: 15%;
  transform: rotate(5deg);
  animation: floatCard1 6s infinite ease-in-out;
}

.card-2 {
  bottom: 20%;
  left: 15%;
  transform: rotate(-5deg);
  animation: floatCard2 7s infinite ease-in-out;
}

@media (max-width: 1200px) {
  .card-1 {
    right: 5%;
    top: 20%;
    scale: 0.9;
  }

  .card-2 {
    left: 5%;
    bottom: 15%;
    scale: 0.9;
  }
}

@media (max-width: 992px) {
  .card-1 {
    top: 15%;
    right: 2%;
    scale: 0.8;
  }

  .card-2 {
    bottom: 10%;
    left: 2%;
    scale: 0.8;
  }
}

@media (max-width: 768px) {
  .floating-glass-card {
    display: none;
    /* Hide for cleaner mobile hero */
  }
}

@keyframes floatCard1 {

  0%,
  100% {
    transform: translateY(0) rotate(5deg);
  }

  50% {
    transform: translateY(-20px) rotate(8deg);
  }
}

@keyframes floatCard2 {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-15px) rotate(-8deg);
  }
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media(min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .item-large {
    grid-column: span 2;
  }

  .item-tall {
    grid-row: span 2;
  }

  .item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .item-large,
  .item-tall,
  .item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.bento-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.bento-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.item-large .bento-content {
  justify-content: center;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 20px;
}

.bento-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.bento-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.link-arrow {
  margin-top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.bento-item:hover .link-arrow {
  background: white;
  color: black;
  transform: rotate(-45deg);
}

.bento-visual {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.item-large .bento-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(157, 0, 255, 0.1) 100%);
}

/*** About Page Redesign ***/
.about-hero-section {
  padding: 120px 0 80px;
  position: relative;
}

.hero-text-start {
  text-align: left;
}

.about-hero-img {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
  animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Glass Stat Box */
.glass-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.glass-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1.1rem;
  font-weight: 500;
}

/* Zig Zig Layout */
.zig-zag-section {
  padding: 80px 0;
}

.zig-zag-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 100px;
}

.zig-zag-row:last-child {
  margin-bottom: 0;
}

.zig-zag-row.reverse {
  flex-direction: row-reverse;
}

.zig-content {
  flex: 1;
}

.zig-visual {
  flex: 1;
  position: relative;
}

.zig-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zig-img-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.zig-img-wrapper:hover img {
  transform: scale(1.05);
}

.zig-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 20px;
  left: 20px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.zig-zag-row.reverse .zig-decoration {
  left: -20px;
  border-color: var(--secondary);
}

.zig-img-wrapper:hover+.zig-decoration {
  top: 10px;
  left: 10px;
  opacity: 1;
}

.zig-zag-row.reverse .zig-img-wrapper:hover+.zig-decoration {
  left: -10px;
}

@media (max-width: 991px) {

  .zig-zag-row,
  .zig-zag-row.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .about-hero-section {
    text-align: center;
    padding-top: 100px;

    .about-hero-img {
      margin-top: 40px;
    }
  }
}

/*** About Iteration 4: Structured Grid ***/
.grid-layout-section {
  padding: 80px 0;
}

.glass-grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 24px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 30px;
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glass-panel:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Specific Panels */
.panel-stats {
  grid-column: span 4;
  text-align: center;
}

.panel-story {
  grid-column: span 8;
  justify-content: flex-start;
}

.panel-vision {
  grid-column: span 5;
  background-size: cover;
  background-position: center;
}

.panel-vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.panel-vision-content {
  position: relative;
  z-index: 2;
}

.panel-values {
  grid-column: span 7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

@media (max-width: 991px) {
  .glass-grid-container {
    display: flex;
    flex-direction: column;
  }
}

/*** Contact Page Redesign ***/
.contact-hero {
  padding: 100px 0;
}

.glass-form-wrapper {
  background: rgba(25, 25, 35, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 50px rgba(157, 0, 255, 0.1);
}

.form-floating label {
  color: var(--text-gray);
}

.form-control-glass {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px 4px 0 0;
  color: white;
}

.form-control-glass:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border-bottom-color: var(--secondary);
  color: white;
}

.contact-info-card {
  background: transparent;
  border: none;
  padding: 0;
  color: white;
}

.contact-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.4);
}

.map-island {
  border-radius: 30px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: rotate(-1deg);
  transition: all 0.3s ease;
}

.map-island:hover {
  transform: rotate(0deg) scale(1.02);
  border-color: var(--primary);
}

/*** Timeline Design (Iteration 3) ***/
.timeline-section {
  position: relative;
  padding: 100px 0;
}

/* Vertical Line */
.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--primary), var(--secondary), transparent);
  box-shadow: 0 0 15px var(--primary);
}

.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Node (Dot) */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 20px var(--primary);
  z-index: 2;
  border: 4px solid var(--bg-deep);
}

.timeline-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Connecting lines */
.timeline-content::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 50px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

/* Left side specifics */
.timeline-row:nth-child(odd) .timeline-content {
  margin-right: auto;
  text-align: right;
}

.timeline-row:nth-child(odd) .timeline-content::after {
  right: -50px;
}

/* Right side specifics */
.timeline-row:nth-child(even) .timeline-content {
  margin-left: auto;
  text-align: left;
}

.timeline-row:nth-child(even) .timeline-content::after {
  left: -50px;
}

.timeline-date {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  line-height: 1;
  z-index: 0;
}

.timeline-row:nth-child(odd) .timeline-date {
  left: 10px;
}

.timeline-row:nth-child(even) .timeline-date {
  right: 10px;
}

.timeline-body {
  position: relative;
  z-index: 1;
}


@media (max-width: 991px) {
  .timeline-section::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-row {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 50px;
  }

  .timeline-content {
    width: 100%;
    margin: 0 !important;
    text-align: left !important;
  }

  .timeline-content::after {
    display: none;
  }

  .timeline-date {
    display: none;
  }
}





/*** BEYOND AGENCY THEME: CORE UTILITIES ***/
.bg-deep {
  background-color: #050505;
  color: white;
}

.text-outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
  transition: all 0.3s ease;
}

.text-outline:hover {
  -webkit-text-stroke: 1px #fff;
  color: #fff;
}

/* MARQUEE ANIMATION */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 50px 0;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-size: 8rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  margin-right: 50px;
  line-height: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}


/*** SERVICE: WEB DEVELOPMENT (KINETIC LIST) ***/
.kinetic-list-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.kinetic-list-item:hover {
  background: white;
}

.kinetic-list-item:hover h2 {
  color: black;
  transform: translateX(20px);
}

.kinetic-list-item:hover .list-icon {
  color: black;
  transform: rotate(45deg);
}

.kinetic-list-item h2 {
  font-size: 4rem;
  font-weight: 300;
  margin: 0;
  transition: all 0.4s ease;
}

.list-reveal-img {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%) scale(0);
  width: 300px;
  height: 200px;
  object-fit: cover;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
  pointer-events: none;
  border-radius: 10px;
}

.kinetic-list-item:hover .list-reveal-img {
  transform: translateY(-50%) scale(1) rotate(-5deg);
  opacity: 1;
}


/*** SERVICE: GRAPHIC DESIGN (STICKY STACK) ***/
.sticky-wrapper {
  position: relative;
  padding-bottom: 100px;
}

.sticky-card {
  position: sticky;
  top: 100px;
  height: 500px;
  width: 100%;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  transform-origin: top center;
  transition: transform 0.5s ease;
}

.sticky-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.sticky-card:hover img {
  opacity: 1;
}

.sticky-card-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
}


/*** SERVICE: DIGITAL MARKETING (TICKER TAPE) ***/
.ticker-tape {
  background: #975ab6;
  color: white;
  padding: 15px 0;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1.2rem;
  transform: rotate(-2deg) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 0, 85, 0.4);
}

.huge-stat {
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -5px;
  background: linear-gradient(to bottom, #fff, #666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*** SERVICE: PHOTO/VIDEO (VIEWPORT REVEAL) ***/
.viewport-hero {
  height: 100vh;
  background: #000;
  position: relative;
  overflow: hidden;
  cursor: none;
  /* Hide default cursor */
}

.viewport-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/videography.avif');
  /* Make sure this path is correct relative to CSS */
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  /* Dim background */
}

.cursor-flashlight {
  position: absolute;
  width: 300px;
  height: 300px;
  background-image: url('../img/videography.avif');
  /* Same bg */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Key for flashlight effect */
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.95);
  /* Darken everything else */
  border: 2px solid white;
}


@media (max-width: 991px) {
  .marquee-item {
    font-size: 4rem;
  }

  .kinetic-list-item h2 {
    font-size: 2rem;
  }

  .list-reveal-img {
    display: none;
  }

  .huge-stat {
    font-size: 5rem;
  }

  .cursor-flashlight {
    display: none;
    cursor: auto;
  }
}


/*** NEW: STRATEGY GRID (Digital Marketing) ***/
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  /* border color */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .strategy-grid {
    grid-template-columns: 1fr;
  }
}

.strategy-item {
  background: #050505;
  padding: 60px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.strategy-item:hover {
  background: #0a0a0a;
}

.strategy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 0, 85, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.strategy-item:hover::before {
  opacity: 1;
}

/*** NEW: GROWTH ROADMAP (Digital Marketing) ***/
.roadmap-step {
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 40px;
  padding-bottom: 60px;
  position: relative;
}

.roadmap-step::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  background: #975ab6;
  border-radius: 50%;
  box-shadow: 0 0 10px #975ab6;
}

/*** NEW: PORTFOLIO REEL (Photo/Video) ***/
.portfolio-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
}

.portfolio-scroller::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  min-width: 280px;
  width: 100%;
  max-width: 400px;
  height: 500px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover img {
  transform: scale(1.1);
}

/*** NEW: PHOTOGRAPHY MASONRY GRID ***/
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .masonry-grid {
    column-count: 1;
  }
}

/*** NEW: VIDEOGRAPHY CINEMA GRID ***/
.cinema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.cinema-item {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cinema-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.cinema-item:hover img {
  opacity: 1;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.cinema-item:hover .play-button {
  transform: translate(-50%, -50%) scale(1.2);
  color: #975ab6;
}


/*** NEW: CINEMATIC GLASS THEME (Photo/Video) ***/

/* Horizontal Glass Parallax (Photography) */
.glass-parallax-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 50px 0;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
}

.glass-parallax-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.glass-card-large {
  display: inline-block;
  width: 600px;
  height: 70vh;
  margin-right: 40px;
  background: rgba(255, 255, 255, 0.05);
  /* Glass base */
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Frost border */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  vertical-align: middle;
}

.glass-card-large:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
  /* Neon glow */
}

.glass-card-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.glass-card-large:hover img {
  opacity: 1;
}

.glass-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(100px);
  transition: transform 0.4s ease;
}

.glass-card-large:hover .glass-card-caption {
  transform: translateY(0);
}


/* Interactive Glass Grid (Videography) */
.glass-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
}

.glass-video-card {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-video-card:hover {
  transform: translateY(-10px);
  border-color: #975ab6;
  /* Neon Green Border */
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.glass-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.glass-video-card:hover .glass-play-btn {
  transform: translate(-50%, -50%) scale(1);
  background: #975ab6;
  color: black;
  border-color: #975ab6;
}

@media (max-width: 991px) {
  .glass-card-large {
    width: 85vw;
    height: 50vh;
  }

  .glass-video-grid {
    grid-template-columns: 1fr;
  }
}

/*** NEW: MOSAIC & STREAM THEME (Photo/Video) ***/

/* Mosaic Bento Grid (Photography) */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px 0;
}

.mosaic-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mosaic-item:hover img {
  transform: scale(1.1);
}

/* Bento Sizes */
.mosaic-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.mosaic-item.wide {
  grid-column: span 2;
}

.mosaic-item.tall {
  grid-row: span 2;
}

.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}


/* Vertical Stream (Videography) */
.stream-section {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stream-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
  transition: transform 0.7s ease;
}

.stream-section:hover .stream-bg {
  transform: scale(1.05);
  opacity: 0.7;
}

.stream-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.stream-play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.stream-section:hover .stream-play-btn {
  background: #975ab6;
  color: black;
  border-color: #975ab6;
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mosaic-item.large,
  .mosaic-item.wide {
    grid-column: span 2;
  }

  .stream-section {
    height: 60vh;
  }
}

/*** NEW: DISTINCT SERVICE THEMES (Iteration 4) ***/

/* 1. Graphic Design: Neon Magazine Grid */
/* 1. Graphic Design: Cyber-Editorial 2.0 */
/* 1. Graphic Design: Neon Magazine Grid (Cyber-Brutalist Edition) */
.neon-grid-brutalist {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 80px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.neon-brutal-item {
  position: relative;
  background: #000;
  border: 1px solid #333;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 300px;
}

/* Grid Spans */
.span-col-8 {
  grid-column: span 8;
}

.span-col-4 {
  grid-column: span 4;
}

.span-row-2 {
  grid-row: span 2;
  min-height: 620px;
}

/* Image Wrapper */
.neon-img-wrap {
  position: absolute;
  inset: 0;
  mix-blend-mode: luminosity;
  transition: all 0.5s ease;
}

.neon-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Changed from cover to contain to fit image fully */
  transition: transform 0.8s ease;
  filter: grayscale(100%) contrast(1.2);
}

/* Hover Effects: Glitch & Color */
.neon-brutal-item:hover {
  border-color: #975ab6;
  box-shadow: 0 0 30px rgba(151, 90, 182, 0.15);
  transform: translateY(-5px);
  z-index: 10;
}

.neon-brutal-item:hover .neon-img-wrap {
  mix-blend-mode: normal;
}

.neon-brutal-item:hover .neon-img-wrap img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.05);
}

/* Overlay & Tech Deco */
.neon-overlay {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
}

.neon-tech-header {
  display: flex;
  justify-content: space-between;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.neon-brutal-item:hover .neon-tech-header {
  transform: translateY(0);
  opacity: 1;
}

.tech-status {
  color: #975ab6;
  text-shadow: 0 0 5px #975ab6;
}

/* Typography */
.neon-content {
  transform: translateY(20px);
  padding-bottom: 20px;
  /* Space for deco */
  transition: transform 0.4s ease;
}

.neon-brutal-item:hover .neon-content {
  transform: translateY(0);
}

.neon-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.9;
  margin-bottom: 10px;
  color: white;
  text-transform: uppercase;
  /* Stroke Effect */
  -webkit-text-stroke: 1px transparent;
  transition: all 0.3s ease;
}

.neon-title-sm {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
  color: white;
  text-transform: uppercase;
}

.neon-subtitle {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  color: #975ab6;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

/* Corner Decorations */
.neon-corner-deco {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.neon-corner-deco.top-left {
  top: 20px;
  left: 20px;
  border-top-color: #975ab6;
  border-left-color: #975ab6;
}

.neon-corner-deco.top-right {
  top: 20px;
  right: 20px;
  border-top-color: #975ab6;
  border-right-color: #975ab6;
}

.neon-corner-deco.bottom-left {
  bottom: 20px;
  left: 20px;
  border-bottom-color: #975ab6;
  border-left-color: #975ab6;
}

.neon-corner-deco.bottom-right {
  bottom: 20px;
  right: 20px;
  border-bottom-color: #975ab6;
  border-right-color: #975ab6;
}

.neon-brutal-item:hover .neon-corner-deco {
  width: 40px;
  height: 40px;
  box-shadow: 0 0 10px rgba(151, 90, 182, 0.4);
}

/* Glitch Animation Keyframes (Optional addition for extreme hover) */
@keyframes textGlitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

.neon-brutal-item:hover .neon-title {
  animation: textGlitch 0.4s cubic-bezier(.25, .46, .45, .94) both infinite;
  color: #fff;
  text-shadow: 2px 2px #975ab6, -2px -2px #00ffff;
}

/* Responsiveness */
@media (max-width: 992px) {
  .neon-grid-brutalist {
    grid-template-columns: repeat(2, 1fr);
  }

  .span-col-8,
  .span-col-4 {
    grid-column: span 1;
  }

  .span-row-2 {
    grid-row: auto;
    min-height: 400px;
  }

  /* Make the first item explicit full width on tablet if desired, or keep as grid */
  .neon-brutal-item:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .neon-grid-brutalist {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .span-col-8,
  .span-col-4,
  .neon-brutal-item:first-child {
    grid-column: span 1;
  }

  .neon-title {
    font-size: 2.5rem;
  }
}


/* 2. Photography: Horizontal Accordion */
.accordion-gallery {
  display: flex;
  height: 70vh;
  width: 100%;
  gap: 15px;
  padding: 20px 0;
}

.accordion-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background: rgba(10, 5, 25, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  filter: grayscale(40%);
}

.accordion-panel:hover {
  flex: 5;
  border-color: rgba(151, 90, 182, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(151, 90, 182, 0.1);
}

.accordion-panel:hover img {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0%);
}

.accordion-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  white-space: nowrap;
  z-index: 2;
}

.accordion-text h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -2px;
}

.accordion-panel:hover .accordion-text {
  opacity: 1;
  transform: translateY(0);
}


/* 3. Videography: Numbered Cinematic List */
.cinema-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cinema-list-item {
  position: relative;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
  /* Important for previews */
}

.cinema-list-item:hover {
  background: rgba(255, 255, 255, 0.02);
  padding: 70px 0;
}

.cinema-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  margin-right: 60px;
  font-family: 'Outfit', sans-serif;
  transition: all 0.4s ease;
  line-height: 1;
}

.cinema-list-item:hover .cinema-number {
  color: rgba(151, 90, 182, 0.2);
  transform: scale(1.1);
}

.cinema-title h2 {
  font-size: 5rem;
  font-weight: 900;
  color: white;
  margin: 0;
  line-height: 1;
  letter-spacing: -3px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinema-list-item:hover .cinema-title h2 {
  transform: translateX(30px);
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cinema-preview {
  position: absolute;
  right: 150px;
  top: 50%;
  transform: translateY(-50%) scale(0.6) rotate(10deg);
  width: 400px;
  height: 225px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(151, 90, 182, 0.2);
}

.cinema-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.cinema-list-item:hover .cinema-preview {
  opacity: 1;
  transform: translateY(-50%) scale(1) rotate(0deg);
  right: 10%;
}

.cinema-list-item:hover .cinema-preview img {
  transform: scale(1.1);
}

/* 4. Nebula Bento Portfolio Grid */
.bento-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  padding: 40px 0;
}

.media-bento-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(10, 5, 25, 0.4);
  border: 1px solid rgba(151, 90, 182, 0.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.media-bento-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.media-bento-card.tall {
  grid-row: span 2;
}

.media-bento-card.wide {
  grid-column: span 2;
}

.media-bento-card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.8) contrast(1.1);
}

.media-bento-card:hover .card-img {
  transform: scale(1.1);
  filter: brightness(1) contrast(1);
}

.media-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 0, 30, 0.9), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-bento-card:hover .media-bento-overlay {
  opacity: 1;
  transform: translateY(0);
}

.media-bento-overlay h3 {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.media-bento-overlay p {
  color: #975ab6;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.media-bento-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(151, 90, 182, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(151, 90, 182, 0.3);
  border-radius: 100px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .bento-portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .bento-portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }

  .media-bento-card.featured,
  .media-bento-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .bento-portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 400px;
  }

  .media-bento-card.featured,
  .media-bento-card.wide,
  .media-bento-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 991px) {
  .neon-grid {
    grid-template-columns: 1fr;
  }

  .neon-item.featured,
  .neon-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .accordion-gallery {
    flex-direction: column;
    height: 100vh;
  }

  .accordion-panel {
    border-radius: 20px;
  }
}

.cinema-title h2 {
  font-size: 2rem;
}

.cinema-number {
  font-size: 1.5rem;
  margin-right: 15px;
}

.cinema-preview {
  display: none;
}

/* Hide preview on mobile */
}

/*** NEW: CONTENT EXPANSION STYLES ***/

/* Process Steps (Graphic Design / General) */
.process-section {
  padding: 80px 0;
}

.process-step {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 30px;
  margin-bottom: 40px;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  width: 9px;
  height: 9px;
  background: #975ab6;
  border-radius: 50%;
  box-shadow: 0 0 10px #975ab6;
}

.process-step h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
}

/* Pricing Table (Photography) */
.pricing-card {
  background: rgba(10, 5, 25, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  background: rgba(151, 90, 182, 0.05);
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(151, 90, 182, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(151, 90, 182, 0.1);
}

.pricing-card h3 {
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.price-tag {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  margin-bottom: 30px;
  display: block;
  letter-spacing: -2px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.pricing-features li {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* Tech Strip (General) */
.tech-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.tech-item {
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 30px;
  }
}

/* Tech Spec Grid (Gear Locker / Powered By) */
.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  padding: 30px 0;
}

.tech-spec-card {
  background: rgba(10, 5, 25, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.tech-spec-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(151, 90, 182, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tech-spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #975ab6;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.tech-spec-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 15px #975ab6;
}

.tech-label {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 5px;
}

.tech-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: 1px;
}

.tech-status {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.tech-spec-card:hover .tech-status {
  background: #975ab6;
  box-shadow: 0 0 5px #975ab6;
}

/*** HOME PAGE REFINEMENTS ***/

/* 1. Hero Text Glow Animation */
.text-gradient-creative {
  background: linear-gradient(to right, #ffffff, #975ab6, #4f1964, #ffffff);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite, glowPulse 3s ease-in-out infinite alternate;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px rgba(79, 25, 100, 0.1);
  }

  to {
    text-shadow: 0 0 30px rgba(79, 25, 100, 0.6), 0 0 60px rgba(255, 0, 222, 0.4);
  }
}

/* 2. Expertise Section: Floating Glass Tiles */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 30px 0;
  perspective: 1000px;
}

@media (max-width: 992px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}

.expertise-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px 28px;
  position: relative;
  overflow: visible;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
}

/* Light glow effect overlay */
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 0, 222, 0.15),
      rgba(79, 25, 100, 0.08) 40%,
      transparent 80%);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.expertise-card:hover::before {
  opacity: 1;
}

/* Staggered positioning for depth */
.expertise-card:nth-child(1) {
  transform: translateY(0px);
}

.expertise-card:nth-child(2) {
  transform: translateY(20px);
}

.expertise-card:nth-child(3) {
  transform: translateY(40px);
}

.expertise-card:nth-child(4) {
  transform: translateY(10px);
}

.expertise-card:nth-child(5) {
  transform: translateY(30px);
}

/* Glass reflection effect */
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Floating shadow */
.expertise-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(79, 25, 100, 0.4) 0%, transparent 70%);
  filter: blur(15px);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}

.expertise-card:hover {
  transform: translateY(-25px) rotateX(5deg) scale(1.03);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 0, 222, 0.4);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 0 40px rgba(79, 25, 100, 0.2);
}

.expertise-card:hover::before {
  opacity: 1;
}

.expertise-card:hover::after {
  opacity: 1;
  bottom: -30px;
}

.expertise-card .icon-box {
  width: 64px;
  height: 64px;
  background: rgba(255, 0, 222, 0.08);
  border: 1.5px solid rgba(255, 0, 222, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #975ab6;
  margin-bottom: 22px;
  position: relative;
  transition: all 0.5s ease;
  transform: translateZ(20px);
}

.expertise-card .icon-box i {
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.expertise-card:hover .icon-box {
  background: rgba(255, 0, 222, 0.15);
  border-color: #975ab6;
  box-shadow:
    0 0 20px rgba(255, 0, 222, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateZ(40px);
}

.expertise-card:hover .icon-box i {
  transform: scale(1.2) rotateY(360deg);
  color: #975ab6;
  filter: drop-shadow(0 0 8px rgba(255, 0, 222, 0.6));
}

.expertise-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
  transition: all 0.3s ease;
  transform: translateZ(10px);
}

.expertise-card:hover h3 {
  color: #975ab6;
  letter-spacing: 0.5px;
}

.expertise-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.expertise-card .link-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  align-self: flex-end;
  transition: all 0.4s ease;
  transform: translateZ(15px);
}

.expertise-card:hover .link-arrow {
  background: #975ab6;
  border-color: #975ab6;
  color: white;
  transform: translateZ(30px) translateX(5px);
  box-shadow: 0 4px 12px rgba(255, 0, 222, 0.4);
}

/*** ABOUT PAGE STYLES ***/

/* Stat Cards */
.stat-card-about {
  background: rgba(151, 90, 182, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(151, 90, 182, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card-about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 0, 222, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card-about:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 222, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-card-about:hover::before {
  opacity: 1;
}

/* Value Cards */
.value-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 20%;
  right: 20%;
  height: 20px;
  background: radial-gradient(ellipse, rgba(255, 0, 222, 0.3), transparent);
  filter: blur(10px);
  opacity: 0;
  transition: all 0.5s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 0, 222, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(79, 25, 100, 0.2);
}

.value-card:hover::after {
  opacity: 1;
  bottom: -25px;
}

.value-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 0, 222, 0.1), rgba(79, 25, 100, 0.1));
  border: 2px solid rgba(255, 0, 222, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #975ab6;
  margin: 0 auto 20px;
  transition: all 0.5s ease;
}

.value-card:hover .value-icon-box {
  background: linear-gradient(135deg, #975ab6, #4f1964);
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 30px rgba(255, 0, 222, 0.5);
}

/* Vision & Mission Cards */
.vision-mission-card {
  background: linear-gradient(145deg, rgba(20, 10, 30, 0.8), rgba(10, 10, 20, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  transition: all 0.5s ease;
}

.vision-mission-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 222, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.vision-mission-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 222, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(79, 25, 100, 0.2);
}

.vision-mission-card:hover::before {
  opacity: 1;
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 222, 0.1);
  border: 2px solid rgba(255, 0, 222, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #975ab6;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.vision-mission-card:hover .vm-icon {
  background: #975ab6;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 0, 222, 0.6);
}

/* CTA Box */
.cta-about-box {
  background: linear-gradient(135deg, #975ab6, #4f1964);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-about-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 60%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-about-box * {
  position: relative;
  z-index: 2;
}

/*** AI TOOL PAGE COMPONENTS ***/
.neural-hero {
  position: relative;
  background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #030014 100%);
  overflow: hidden;
}

.neural-node {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #975ab6;
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 10px #975ab6;
  animation: floatNodes linear infinite;
}

@keyframes floatNodes {
  from {
    transform: translateY(0);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  to {
    transform: translateY(-100vh);
    opacity: 0;
  }
}

.stat-card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.stat-card-glass:hover {
  transform: translateY(-10px);
  background: rgba(151, 90, 182, 0.05);
  border-color: #975ab6;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-number-neon {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 15px rgba(151, 90, 182, 0.6);
  font-family: 'Outfit', sans-serif;
}

.journey-timeline {
  position: relative;
  padding-left: 50px;
  border-left: 2px dashed rgba(255, 255, 255, 0.1);
}

.journey-node {
  position: relative;
  margin-bottom: 50px;
}

.journey-node::before {
  content: '';
  position: absolute;
  left: -61px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: #030014;
  border: 3px solid #975ab6;
  border-radius: 50%;
  box-shadow: 0 0 15px #975ab6;
  z-index: 2;
}

/* Duplication removed - handled by earlier definition or consolidated here */
.tech-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.tech-spec-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-left: 4px solid #975ab6;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.tech-spec-card:hover {
  background: rgba(151, 90, 182, 0.05);
  transform: scale(1.05);
}

.tech-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 5px;
}

.tech-name {
  color: white;
  font-weight: 700;
  margin: 0;
  font-size: 1.1rem;
}

/*** BEYOND STYLE FOOTER ***/
.b-footer {
  background: #030014;
  padding: 100px 0 80px;
  /* Increased bottom padding to prevent overlap with sticky bar */
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.b-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 50%, rgba(151, 90, 182, 0.15), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.b-footer-brand {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 25px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -3px;
  font-family: 'Outfit', sans-serif;
  text-align: left;
  /* Ensure explicit left alignment */
}

.b-footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 30px;
}

.b-footer-socials {
  display: flex;
  gap: 20px;
}

.b-footer-social-link {
  color: white !important;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0.8;
  text-decoration: none;
}

.b-footer-social-link:hover {
  color: #975ab6 !important;
  opacity: 1;
  transform: translateY(-3px);
}

.b-footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
  font-family: 'Outfit', sans-serif;
}

.b-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.b-footer-links li {
  margin-bottom: 15px;
}

.b-footer-links a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.b-footer-links a:hover {
  color: white !important;
  transform: translateX(10px);
}

.b-footer-contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.b-footer-contact-icon {
  font-size: 1.5rem;
  color: white;
  margin-top: 5px;
}

.b-footer-contact-label {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: block;
  color: white;
}

.b-footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.5;
}

.b-footer-copyright {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}

@media (max-width: 992px) {
  .b-footer-brand {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .b-footer-brand {
    text-align: left;
    /* Keep left alignment even on mobile */
  }
}

@media (max-width: 576px) {
  .b-footer-brand {
    font-size: 3rem;
  }

  .b-footer {
    padding: 60px 0 30px;
  }
}

/* 5. Total Immersion Overhaul Styles */
.immersion-wrapper {
  overflow-x: hidden;
}

.immersion-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 0;
  overflow: hidden;
}

.immersion-section.full-height {
  height: 100vh;
  padding: 0;
}

/* Kinetic Headers */
.kinetic-header {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -4px;
  position: relative;
  z-index: 2;
}

.kinetic-header .title-main {
  font-size: clamp(4rem, 15vw, 12rem);
  color: white;
  display: block;
}

.kinetic-header .title-outline {
  font-size: clamp(3rem, 12vw, 10rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  display: block;
  margin-top: -10px;
}

/* Parallax Elements */
.parallax-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.parallax-img {
  position: absolute;
  width: 40%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.1s ease-out;
}

.parallax-img.p-1 {
  top: 10%;
  right: 5%;
  width: 30%;
}

.parallax-img.p-2 {
  bottom: 15%;
  left: 5%;
  width: 25%;
}

.parallax-img.p-3 {
  top: 50%;
  left: 15%;
  width: 20%;
  transform: translateY(-50%);
}

/* Split Reveal Sections */
.split-reveal {
  display: flex;
  width: 100%;
  height: 100%;
}

.split-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

.split-side.image-side {
  padding: 0;
  overflow: hidden;
}

.split-side.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Narrative Timeline (Videography) */
.narrative-timeline {
  position: relative;
  padding-left: 50px;
  border-left: 2px solid rgba(151, 90, 182, 0.2);
  margin-left: 20px;
}

.timeline-step {
  position: relative;
  margin-bottom: 150px;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -61px;
  top: 0;
  width: 20px;
  height: 20px;
  background: #030014;
  border: 4px solid #975ab6;
  border-radius: 50%;
  box-shadow: 0 0 20px #975ab6;
  z-index: 2;
}

.timeline-step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 15px;
}

/* Filmstrip Reel */
.filmstrip-reel {
  display: flex;
  gap: 50px;
  padding: 80px 40px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filmstrip-item {
  flex: 0 0 450px;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.filmstrip-item:hover {
  flex: 0 0 600px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

.filmstrip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.filmstrip-item:hover img {
  transform: scale(1.1);
}

.filmstrip-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.filmstrip-item:hover .filmstrip-content {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .split-reveal {
    flex-direction: column;
  }

  .split-side {
    padding: 40px 20px;
  }

  .split-side.image-side {
    height: 40vh;
  }

  .kinetic-header .title-main {
    font-size: 4rem;
  }

  .kinetic-header .title-outline {
    font-size: 3rem;
  }

  .filmstrip-item {
    flex: 0 0 300px;
    height: 400px;
  }
}

/* 6. Luminous Mosaic Overhaul Styles */
.mosaic-wrapper {
  background: #030014;
  overflow: hidden;
}

/* The Singularity Hero */
.singularity-hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(151, 90, 182, 0.15) 0%, transparent 70%);
}

.singularity-core {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.singularity-ring {
  position: absolute;
  border: 1px solid rgba(151, 90, 182, 0.3);
  border-radius: 50%;
  animation: rotateRing 20s linear infinite;
}

.singularity-ring.r1 {
  width: 500px;
  height: 500px;
  animation-duration: 30s;
}

.singularity-ring.r2 {
  width: 400px;
  height: 400px;
  animation-duration: 20s;
  animation-direction: reverse;
}

.singularity-ring.r3 {
  width: 300px;
  height: 300px;
  animation-duration: 15s;
}

.singularity-text {
  position: absolute;
  color: #975ab6;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Luminous Masonry Grid */
/* Panoramic Expandable Accordion */
.pano-accordion {
  display: flex;
  height: 70vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.pano-item {
  position: relative;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
  cursor: pointer;
  filter: grayscale(1) brightness(0.7);
}

.pano-item:last-child {
  border-right: none;
}

.pano-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  transform: scale(1.1);
  /* Slight zoom initially */
}

/* Hover/Active State */
.pano-item:hover,
.pano-item.active {
  flex: 4;
  /* Expands to take more space */
  filter: grayscale(0) brightness(1);
}

.pano-item:hover img,
.pano-item.active img {
  transform: scale(1);
  /* Reset zoom on expansion */
}

/* Overlay & Content */
.pano-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.5s ease 0.1s;
}

.pano-item:hover .pano-overlay,
.pano-item.active .pano-overlay {
  opacity: 1;
}

.pano-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  opacity: 0.5;
}

.pano-content {
  transform: translateY(20px);
  transition: transform 0.5s ease 0.2s;
}

.pano-item:hover .pano-content,
.pano-item.active .pano-content {
  transform: translateY(0);
}

.pano-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: white;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.pano-year {
  font-family: 'Courier New', monospace;
  color: #975ab6;
  letter-spacing: 3px;
  font-size: 1rem;
}

/* Responsiveness */
@media (max-width: 992px) {
  .pano-accordion {
    flex-direction: column;
    height: auto;
  }

  .pano-item {
    height: 300px;
    flex: none;
    /* Disable flex scaling on mobile */
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(0) brightness(0.9);
    /* Visible by default on mobile */
  }

  .pano-item:hover,
  .pano-item.active {
    flex: none;
    height: 300px;
    /* Keep consistent height */
  }

  .pano-overlay {
    opacity: 1;
    /* Always show overlay on mobile */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  }

  .pano-content {
    transform: translateY(0);
  }

  .pano-title {
    font-size: 2rem;
  }

  .pano-number {
    font-size: 2.5rem;
  }
}


@media (max-width: 991px) {
  .mosaic-flux-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .singularity-ring {
    transform: scale(0.7);
  }
}

@media (max-width: 576px) {
  .mosaic-flux-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .crystal-shard {
    clip-path: none;
    border-radius: 20px;
    padding: 40px;
  }
}


@media (max-width: 992px) {
  .immersion-section {
    padding: 100px 0;
    min-height: auto;
  }

  .filmstrip-reel {
    padding: 40px 20px;
    gap: 20px;
  }

  .narrative-timeline {
    padding-left: 30px;
    margin-left: 0;
    border-left-width: 2px;
  }

  .timeline-step {
    margin-bottom: 80px;
  }

  .timeline-step h3 {
    font-size: 1.8rem;
  }

  .timeline-step::before {
    left: -41px;
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 576px) {
  .mosaic-flux-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  /* Reset grid spans for mobile */
  .mosaic-item.w-2,
  .mosaic-item.w-3,
  .mosaic-item.h-2,
  .mosaic-item.h-3 {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .crystal-shard {
    clip-path: none;
    border-radius: 20px;
    padding: 40px;
  }

  /* Videography Hero Fixes - Iteration 2 */
  .immersion-section {
    padding: 60px 0;
  }

  .immersion-section.full-height {
    height: auto !important;
    min-height: 60vh;
    /* Reduced height constraint */
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .kinetic-header {
    width: 100%;
    margin: 0 auto;
  }

  .kinetic-header .title-main {
    font-size: 2.5rem;
    /* Slightly larger but controlled */
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 15px;
  }

  .kinetic-header .title-outline {
    font-size: 2rem;
    -webkit-text-stroke-width: 0.5px;
    line-height: 1;
    display: block;
    /* Ensure it breaks to new line */
  }

  /* Restore parallax images to mimic desktop layout on mobile */
  .parallax-img {
    display: block !important;
    opacity: 0.5;
    /* Increased visibility */
    position: absolute;
    z-index: 0;
    pointer-events: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  /* Top Right */
  .parallax-img.p-1 {
    top: 12%;
    right: 5%;
    width: 35%;
    transform: none;
  }

  /* Bottom Left */
  .parallax-img.p-2 {
    bottom: 12%;
    left: 5%;
    width: 30%;
    transform: none;
  }

  /* Center Left (Vision) */
  .parallax-img.p-3 {
    display: block;
    top: 50%;
    left: 40%;
    /* Adjusted to center-ish relative to text */
    width: 25%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    /* Slightly lower to not conflict with center text */
  }
}

/* FAQ Section */
/* Redesigned FAQ Styles */
.faq-wrapper {
  background-color: #030014;
  /* Deep space background */
  padding: 100px 0;
  counter-reset: faq-counter;
}

.faq-section-title {
  text-align: center;
  margin-bottom: 50px;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  max-width: 1000px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px 30px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.faq-item::before {
  counter-increment: faq-counter;
  content: counter(faq-counter, decimal-leading-zero);
  position: absolute;
  right: 30px;
  top: 15px;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  color: rgba(151, 90, 182, 0.05);
  /* Very subtle background number */
  pointer-events: none;
  font-family: 'Outfit', sans-serif;
  transition: all 0.4s ease;
  z-index: 0;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(151, 90, 182, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(151, 90, 182, 0.1);
}

.faq-item:hover::before {
  color: rgba(151, 90, 182, 0.1);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: #975ab6;
  border-color: #975ab6;
  color: white;
  transform: rotate(180deg);
  box-shadow: 0 0 15px rgba(151, 90, 182, 0.4);
}

.faq-answer {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 90%;
  margin-top: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  height: auto;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 1;
}

/* Ensure footer spans full width */
.footer.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
  width: 100% !important;
  max-width: 100% !important;
}

/* ========================================
   STICKY CONTACT BAR - Comprehensive Styles
   ======================================== */

/* Main Sticky Contact Bar Container */
.sticky-contact-bar {
  position: fixed;
  bottom: 25px;
  /* Slightly lowered for better alignment */
  right: 25px;
  /* Slightly moved to edge */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Reverted to flex-end for better alignment with page edge */
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-contact-bar.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
}

/* Back to Top Button */
.back-to-top {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border: 2px solid #9333ea;
  border-radius: 50%;
  display: flex !important;
  /* Force flex for centering */
  visibility: hidden;
  /* Start hidden */
  opacity: 0;
  /* Start invisible */
  align-items: center !important;
  justify-content: center !important;
  color: #9333ea;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
  position: relative;
  overflow: hidden;
  padding: 0 !important;
}

.back-to-top.show {
  visibility: visible;
  opacity: 1;
}

.back-to-top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
  border-color: #7c3aed;
}

.back-to-top:hover::before {
  width: 100%;
  height: 100%;
}

.back-to-top i {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  position: relative;
  text-decoration: none;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

/* Pulse Animation for WhatsApp */
.whatsapp-float.animation-1 {
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* Chatbot Icon Container */
.chat-icon {
  width: 65px;
  height: 65px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-chatbot-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #975ab6 0%, #7c3aed 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(151, 90, 182, 0.4);
}

.chatbot-logo {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.ai-chatbot-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(151, 90, 182, 0.6);
}

.ai-chatbot-icon:hover .chatbot-logo {
  transform: rotate(15deg);
}

/* Pulse Rings for Chatbot */
.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid rgba(151, 90, 182, 0.6);
  border-radius: 50%;
  animation: pulsate 2s ease-out infinite;
  z-index: 1;
}

.pulse-ring-2 {
  animation-delay: 1s;
}

@keyframes pulsate {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }

  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

/* Chat Box */
.chat-box {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 380px;
  max-width: calc(100vw - 60px);
  height: 550px;
  max-height: calc(100vh - 150px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
  animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Page Specifics */
.about-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0;
    min-height: auto;
  }
}

.stat-card-about {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card-about:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
}

.stat-card-stagger {
  margin-top: 30px;
}

@media (max-width: 992px) {
  .stat-card-stagger {
    margin-top: 0;
  }
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.value-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(151, 90, 182, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.vision-mission-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.vision-mission-card:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
}

.cta-about-box {
  background: linear-gradient(135deg, rgba(151, 90, 182, 0.2), rgba(79, 25, 100, 0.2));
  padding: 5rem 2rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Contact Bento Grid */
.contact-bento-section {
  padding-top: clamp(80px, 15vw, 120px);
}

/* Consolidated with earlier definition to avoid collisions */

.bento-tile {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(151, 90, 182, 0.4);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tile-form {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-map {
  grid-column: span 2;
  grid-row: span 1;
  padding: 0 !important;
}

.tile-info {
  grid-column: span 1;
  grid-row: span 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.tile-info-wide {
  grid-column: span 2;
}

.tile-social {
  grid-column: span 2;
  grid-row: span 1;
  justify-content: center;
  align-items: center;
}

.tile-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1rem;
  box-shadow: 0 8px 16px rgba(151, 90, 182, 0.3);
}

.bento-input-group {
  margin-bottom: 1rem;
}

.bento-input-group label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  margin-left: 5px;
}

.bento-input-group input,
.bento-input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  color: white;
  transition: all 0.3s ease;
}

.bento-input-group input:focus,
.bento-input-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(151, 90, 182, 0.05);
}

.btn-bento {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 16px;
  padding: 1rem;
  width: 100%;
  font-weight: 700;
  transition: all 0.3s ease;
}

.social-btn-bento {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn-bento:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile-form,
  .tile-map {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .tile-form,
  .tile-map,
  .tile-info,
  .tile-social {
    grid-column: span 1;
  }

  .bento-tile {
    padding: 1.5rem;
  }
}

/* Service Page Standard Styles */
.service-header {
  padding: clamp(60px, 10vw, 100px) 0;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 4rem;
}

.service-card-premium {
  background: white;
  border: none;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid transparent;
}

.service-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.service-card-premium .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(151, 90, 182, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card-premium h4 {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card-premium p {
  color: #666;
  line-height: 1.6;
}

.service-card-premium ul {
  padding-left: 1.2rem;
  margin-top: 1.5rem;
  color: #444;
}

.service-card-premium li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.benefit-box-premium {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 24px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.benefit-box-premium:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.benefit-icon-box {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  margin: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.platform-badge:hover {
  transform: translateY(-3px);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(151, 90, 182, 0.3);
}

/* Chat Header */
.chat-header {
  background: linear-gradient(135deg, #975ab6 0%, #7c3aed 100%);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px 20px 0 0;
}

.title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  animation: statusBlink 2s infinite;
}

@keyframes statusBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.chat-header button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chat-header button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Chat Body */
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
  background: rgba(151, 90, 182, 0.3);
  border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: rgba(151, 90, 182, 0.5);
}

/* Chat Messages */
.bot-message,
.user-message {
  padding: 12px 16px;
  border-radius: 12px;
  max-width: 80%;
  word-wrap: break-word;
  animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 15px;
  background-color: #975ab6;
  margin-left: 2px;
  animation: blink 0.8s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.bot-message {
  background: white;
  color: #333;
  align-self: flex-start;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.user-message {
  background: linear-gradient(135deg, #975ab6 0%, #7c3aed 100%);
  color: white;
  align-self: flex-end;
  margin-left: auto;
}

/* Chat Suggestions */
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 15px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.suggestion-chip {
  padding: 6px 14px;
  background: #f0f2f5;
  border: 1px solid #e0e0e0;
  border-radius: 18px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.suggestion-chip:hover {
  background: #975ab6;
  color: white;
  border-color: #975ab6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(151, 90, 182, 0.2);
}

/* Chat Footer */
.chat-footer {
  padding: 15px;
  background: white;
  border-top: 1px solid #e0e0e0;
}

.input-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.input-wrapper input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #f8f9fa;
  color: #333;
  /* Dark text for visibility */
}

.input-wrapper input:focus {
  border-color: #975ab6;
  background: white;
}

.input-wrapper button {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #975ab6 0%, #7c3aed 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 16px;
}

.input-wrapper button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(151, 90, 182, 0.4);
}

/* Help Popup */
.help-popup {
  position: fixed;
  bottom: 110px;
  right: 110px;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9997;
}

.help-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.help-popup strong {
  color: #975ab6;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.help-popup p {
  color: #666;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Adjustments - Premium Refinements */

/* Laptop & Large Tablets (1024px - 1440px) */
@media (max-width: 1440px) {
  .chat-box {
    width: 360px;
    height: 520px;
    bottom: 105px;
    right: 25px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
  .chat-box {
    width: 340px;
    height: 500px;
    bottom: 100px;
    right: 20px;
  }

  .sticky-contact-bar {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .ai-chatbot-icon,
  .whatsapp-float,
  .back-to-top {
    width: 55px;
    height: 55px;
  }

  .chatbot-logo {
    width: 30px;
    height: 30px;
  }
}

/* Small Tablets & Large Phones (481px - 767px) */
@media (max-width: 768px) {
  .sticky-contact-bar {
    bottom: 15px;
    right: 15px;
    gap: 8px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .chat-icon,
  .ai-chatbot-icon {
    width: 58px;
    height: 58px;
  }

  .chatbot-logo {
    width: 30px;
    height: 30px;
  }

  .chat-box {
    bottom: 85px;
    right: 15px;
    width: calc(100vw - 30px);
    height: calc(100vh - 130px);
    border-radius: 15px;
  }

  .help-popup {
    bottom: 85px;
    right: 85px;
    max-width: 180px;
    padding: 10px 15px;
  }
}

/* Small Mobile Devices (Up to 480px) */
@media (max-width: 480px) {
  .sticky-contact-bar {
    bottom: 12px;
    right: 12px;
    gap: 6px;
  }

  .back-to-top {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .chat-icon,
  .ai-chatbot-icon {
    width: 52px;
    height: 52px;
  }

  .chatbot-logo {
    width: 26px;
    height: 26px;
  }

  .chat-box {
    bottom: 75px;
    right: 10px;
    width: calc(100vw - 20px);
    height: calc(100vh - 100px);
  }

  .help-popup {
    display: none;
  }

  .chat-header {
    padding: 15px;
  }

  .chat-body {
    padding: 15px;
  }
}

/* Mobile Hero Section Alignment Fix */
@media (max-width: 991px) {
  .hero-nebula {
    min-height: auto;
    padding-top: 140px;
    padding-bottom: 80px;
    height: auto;
  }

  .hero-title.display-1 {
    font-size: 3.5rem;
    margin-bottom: 20px !important;
  }

  .hero-desc.lead {
    font-size: 1.1rem;
    margin-bottom: 30px !important;
    padding: 0 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px !important;
    padding: 0 20px;
  }

  .btn-magnetic {
    width: 100%;
    justify-content: center;
  }

  /* AI Marketing Hero Mobile Refinements */
  .neural-hero {
    min-height: auto !important;
    padding-top: 140px !important;
    padding-bottom: 80px !important;
  }

  .neural-hero h1.display-1 {
    font-size: 3.2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .neural-hero .lead {
    font-size: 1.1rem !important;
    padding: 0 15px;
    margin-bottom: 2.5rem !important;
  }

  .neural-hero .d-flex.justify-content-center.gap-3 {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 30px;
  }

  .neural-hero .btn {
    width: 100%;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}

@media (max-width: 575px) {
  .hero-nebula {
    padding-top: 120px;
  }

  .hero-title.display-1 {
    font-size: 2.8rem;
  }

  .neural-hero h1.display-1 {
    font-size: 2.4rem !important;
  }
}

/* Global Mobile Spacing Optimization */
@media (max-width: 991px) {
  section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .container.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  /* Specific fix for hero-nebula which needs its own padding */
  .hero-nebula {
    padding-top: 140px !important;
    padding-bottom: 60px !important;
  }
}

/* Navbar Island Global Fix */
.navbar-island {
  position: relative;
  z-index: 1050 !important;
  /* Higher than hero content (default 1) and other elements */
}

/* ========================================
   NAVBAR DROPDOWN MENU STYLING
   ======================================== */

/* Dropdown Menu Container */
.dropdown-menu {
  background: rgba(10, 5, 30, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(151, 90, 182, 0.3) !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  margin-top: 8px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(151, 90, 182, 0.2) !important;
  min-width: 220px !important;
}

/* Dropdown Items */
.dropdown-item {
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 10px 20px !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  border-radius: 8px !important;
  margin: 2px 8px !important;
  opacity: 0;
  animation: dropdownItemFadeIn 0.4s ease-out forwards;
}

/* Staggered animation delays for each item */
.dropdown-item:nth-child(1) {
  animation-delay: 0.05s;
}

.dropdown-item:nth-child(2) {
  animation-delay: 0.1s;
}

.dropdown-item:nth-child(3) {
  animation-delay: 0.15s;
}

.dropdown-item:nth-child(4) {
  animation-delay: 0.2s;
}

.dropdown-item:nth-child(5) {
  animation-delay: 0.25s;
}

@keyframes dropdownItemFadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Dropdown Item Hover */
.dropdown-item:hover,
.dropdown-item:focus {
  background: linear-gradient(135deg,
      rgba(151, 90, 182, 0.2),
      rgba(79, 25, 100, 0.2)) !important;
  color: #ffffff !important;
  transform: translateX(4px);
  border-left: 3px solid #975ab6;
  padding-left: 17px !important;
}

/* Active Dropdown Item */
.dropdown-item.active {
  background: linear-gradient(135deg,
      rgba(151, 90, 182, 0.3),
      rgba(79, 25, 100, 0.3)) !important;
  color: #ffffff !important;
  border-left: 3px solid #975ab6;
  padding-left: 17px !important;
}

/* Dropdown Divider (if used) */
.dropdown-divider {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin: 8px 0 !important;
}

/* Fade-up animation for dropdown */
.dropdown-menu.fade-up {
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Dropdown Adjustments */
@media (max-width: 1199px) {
  .dropdown-menu {
    background: rgba(10, 5, 30, 0.98) !important;
    border: 1px solid rgba(151, 90, 182, 0.4) !important;
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin-top: 0 !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }

  .dropdown-item {
    padding: 12px 24px !important;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    transform: translateX(8px);
  }
}