@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;700;900&display=swap');

:root {
  /* The core requested color */
  --oji-brand: #7E3C83;
  /* Harmonious Palette based on #7E3C83 */
  --oji-brand-light: #A855D4;
  --oji-brand-dark: #5D2B63;

  --oji-bg: #2D1B38;
  --oji-surface: #3D2B48;
  --oji-surface-hover: #4D3B58;

  --oji-text: #ffffff;
  --oji-text-muted: #D4B5E0;

  --oji-glass: rgba(126, 60, 131, 0.65);
  --oji-border: rgba(126, 60, 131, 0.25);
  --oji-border-strong: rgba(126, 60, 131, 0.6);

  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --glow-brand: 0 0 30px rgba(126, 60, 131, 0.4);
}

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

html,
body {
  font-family: 'Alexandria', sans-serif;
  background-color: var(--oji-bg);
  color: var(--oji-text);
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: none !important;
  /* Force custom cursor */
}

/* Custom Cursor - High Performance */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--oji-brand-light);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  transform: translate3d(-50%, -50%, 0);
  box-shadow: 0 0 10px var(--oji-brand-light);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  will-change: transform;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--oji-brand);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  will-change: transform;
}

body.cursor-hover .cursor-dot {
  width: 0;
  height: 0;
  background-color: transparent;
}

body.cursor-hover .cursor-ring {
  width: 65px;
  height: 65px;
  background-color: rgba(126, 60, 131, 0.15);
  border-color: var(--oji-brand-light);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

p,
li {
  line-height: 1.8;
  color: var(--oji-text-muted);
}

a,
button {
  cursor: none !important;
  font-family: inherit;
}

.text-highlight {
  background: linear-gradient(135deg, #ffffff, var(--oji-brand-light), var(--oji-brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 900;
}

/* Background Atmosphere */
.bg-blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--oji-brand) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--oji-brand-dark) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation: floatOrb2 12s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-50px, 50px) scale(1.1);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1000;
}

/* Floating Navbar */
.glass-nav {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: var(--oji-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--oji-border);
  border-radius: 100px;
  padding: 0.7rem 2rem;
  z-index: 500;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo-img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo-img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--oji-text);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--oji-brand-light);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--oji-brand-light);
}

/* Buttons */
.btn-primary,
.btn-primary-small,
.btn-primary-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--oji-brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid var(--oji-brand-light);
  box-shadow: 0 4px 15px rgba(126, 60, 131, 0.4);
}

.btn-primary:hover,
.btn-primary-small:hover,
.btn-primary-large:hover {
  background: var(--oji-brand-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(126, 60, 131, 0.6);
}

.btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
}

.btn-primary-large {
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid var(--oji-text-muted);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--oji-brand-light);
  color: var(--oji-brand-light);
  background: rgba(126, 60, 131, 0.1);
}

.btn-outline {
  display: block;
  text-align: center;
  padding: 1rem;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--oji-border-strong);
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--oji-brand);
  border-color: var(--oji-brand-light);
}

.w-100 {
  width: 100%;
  text-align: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* Radical Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 5% 50px 5%;
  position: relative;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(126, 60, 131, 0.15);
  border: 1px solid var(--oji-border);
  border-radius: 50px;
  color: var(--oji-brand-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-subline {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Hero 3D Objects */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-mockup {
  position: relative;
  z-index: 2;
  animation: floatMain 6s ease-in-out infinite alternate;
}

@keyframes floatMain {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

.floating-badge {
  position: absolute;
  background: var(--oji-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--oji-border);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}

.floating-badge strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.floating-badge span {
  font-size: 0.8rem;
  color: var(--oji-text-muted);
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--oji-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.badge-1 {
  top: 20%;
  right: -20px;
  animation: floatSub 5s ease-in-out infinite alternate 1s;
}

.badge-2 {
  bottom: 20%;
  left: -30px;
  animation: floatSub 7s ease-in-out infinite alternate 0.5s;
}

@keyframes floatSub {
  0% {
    transform: translateY(0) rotate(2deg);
  }

  100% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

/* Global Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Sections */
.services-section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.svc-card {
  background: var(--oji-surface);
  border: 1px solid var(--oji-border);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  transition: all 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-10px);
  background: var(--oji-surface-hover);
  border-color: var(--oji-brand-light);
  box-shadow: var(--glow-brand);
}

.svc-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, var(--oji-brand-light), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.svc-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

/* Pricing / Packages - Radical Redesign */
.packages-section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.pkg-card {
  background: var(--oji-surface);
  border: 1px solid var(--oji-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
}

.pkg-card:hover {
  border-color: var(--oji-border-strong);
  transform: translateY(-5px);
}

.highlight-pkg {
  background: var(--oji-surface-hover);
  border: 2px solid var(--oji-brand);
  transform: scale(1.05);
  box-shadow: var(--glow-brand);
  z-index: 2;
}

.highlight-pkg:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 0 50px rgba(126, 60, 131, 0.5);
}

.pkg-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--oji-brand-light);
  border-radius: 24px 24px 0 0;
}

.pkg-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(126, 60, 131, 0.2);
  color: var(--oji-brand-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.pulse-badge {
  background: var(--oji-brand);
  color: #fff;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 60, 131, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(126, 60, 131, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(126, 60, 131, 0);
  }
}

.pkg-header {
  text-align: center;
  border-bottom: 1px solid var(--oji-border);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.pkg-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.pkg-duration {
  color: var(--oji-brand-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pkg-price {
  margin-top: 1rem;
}

.old-price {
  display: block;
  text-decoration: line-through;
  color: #666;
  font-size: 1.1rem;
}

.new-price {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
}

.new-price small {
  font-size: 1rem;
  color: var(--oji-text-muted);
  font-weight: 400;
}

.pkg-features {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.pkg-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-right: 1.8rem;
  font-size: 0.95rem;
}

.pkg-features li:last-child {
  border-bottom: none;
}

.pkg-features li::before {
  content: "✔";
  position: absolute;
  right: 0;
  top: 0.8rem;
  color: var(--oji-brand-light);
  font-weight: bold;
}

.pkg-features li.bold {
  font-weight: 700;
  color: #fff;
}

.pkg-features li small {
  color: #888;
  display: block;
  font-size: 0.8rem;
  margin-top: 3px;
}

/* Footers and Contact CTA */
.modern-footer {
  margin-top: 100px;
  position: relative;
  border-top: 1px solid var(--oji-border);
  background: linear-gradient(to bottom, #2D1B38, #0b0412);
}

.footer-contact-box {
  background: rgba(126, 60, 131, 0.1);
  border: 1px solid var(--oji-brand);
  max-width: 900px;
  margin: -60px auto 60px auto;
  padding: 4rem 2rem;
  border-radius: 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.footer-contact-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.footer-contact-box p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 3rem 5%;
  text-align: center;
}

.footer-brand .footer-logo {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--oji-border);
  text-align: center;
  padding: 1.5rem 0;
  background: #040106;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--oji-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--oji-brand-dark);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--oji-brand-light);
}

/* Selections */
::selection {
  background: var(--oji-brand-light);
  color: #fff;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 3.5rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .highlight-pkg {
    transform: scale(1);
  }

  .highlight-pkg:hover {
    transform: translateY(-5px);
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .disable-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .glass-nav {
    width: 95%;
    padding: 0.5rem 1rem;
  }

  .footer-contact-box {
    margin: -40px 5% 40px 5%;
    padding: 3rem 1.5rem;
  }

  .footer-contact-box h2 {
    font-size: 1.8rem;
  }
}
/* Added missing grids */
.stats-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
  gap: 2rem !important;
  text-align: center !important;
  margin-top: 3rem;
}

.stat-item {
  background: var(--oji-surface) !important;
  border: 1px solid var(--oji-border) !important;
  border-radius: 24px !important;
  padding: 2.5rem 1rem !important;
  transition: all 0.4s ease !important;
}
.stat-item:hover {
  transform: translateY(-5px) !important;
  border-color: var(--oji-brand-light) !important;
  box-shadow: 0 0 20px rgba(126, 60, 131, 0.3) !important;
}
.stat-number { color: var(--oji-text) !important; }
.stat-label { color: var(--oji-text-muted) !important; font-size: 1.1rem !important; margin-top:0.5rem; }

.testimonials-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 2rem !important;
  margin-top: 3rem;
}
.testimonial-card {
  text-align: right !important;
}

/* Dropdown Navbar Update */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 250px;
  background: var(--oji-surface);
  border: 1px solid var(--oji-border);
  border-radius: 12px;
  padding: 0.5rem 0;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.dropdown:hover .dropdown-menu {
  display: flex;
}
.dropdown-menu a {
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem !important;
  display: block;
}
.dropdown-menu a:hover {
  background: rgba(126, 60, 131, 0.1);
  color: #fff !important;
}
.dropdown-menu a::after {
  display: none !important;
}

/* Additional fixes for missing grids */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem;
}
.svc-card {
    background: var(--oji-surface) !important;
    border: 1px solid var(--oji-border) !important;
    border-radius: 24px !important;
    padding: 2.5rem 2rem !important;
    transition: all 0.4s ease !important;
    text-align: center;
}
.svc-card:hover {
    transform: translateY(-8px) !important;
    border-color: var(--oji-brand-light) !important;
    box-shadow: 0 0 20px rgba(126, 60, 131, 0.3) !important;
}
.svc-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Portfolio overrides */
.projects-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 3rem !important;
    margin-top: 4rem;
}
.project-card {
    background: var(--oji-surface) !important;
    border: 1px solid var(--oji-border) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
}
.project-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--oji-brand-light) !important;
    box-shadow: 0 15px 35px rgba(126, 60, 131, 0.4) !important;
}
.project-slider {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.project-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.project-card:hover .project-slider img {
    transform: scale(1.05);
}
.project-content {
    padding: 2rem !important;
    text-align: right;
}
.project-title {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem;
    color: #fff;
}
.project-period {
    color: var(--oji-brand-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.project-description {
    color: var(--oji-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.project-achievements {
    margin-bottom: 1.5rem;
}
.achievement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}
.achievement-icon {
    color: var(--oji-brand-light);
    font-weight: bold;
}
.project-stats {
    display: flex;
    justify-content: space-around;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}
.project-stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}
.project-stat-label {
    font-size: 0.8rem;
    color: var(--oji-text-muted);
}
.project-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(126, 60, 131, 0.1);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    margin-left: 10px;
}
.project-link:hover {
    background: var(--oji-brand);
}
.project-link span {
    margin-right: 5px;
}

/* CSS fixes per user request */

/* 1. Center why choose us */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center;
}

/* 2. Center CTA buttons */
.cta-buttons {
    display: flex;
    justify-content: center !important;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.cta-content {
    text-align: center !important;
    margin: 0 auto;
    width: 100%;
}

/* 3. Global animated background elements */
.bg-blur-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    animation: floatOrb 20s infinite alternate ease-in-out;
    opacity: 0.6;
}
.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 60, 131, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}
.orb-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(65, 20, 100, 0.6) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation-delay: -10s;
}
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, 100px) scale(1.2); }
}
.bg-noise {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    pointer-events: none;
}

/* 4. Countdown Stylings */
.offer-countdown {
    text-align: center;
    padding: 30px;
    background: rgba(126, 60, 131, 0.1);
    border: 1px solid var(--oji-brand-light);
    border-radius: 20px;
    max-width: 600px;
    margin: 40px auto !important;
}
.countdown-text {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    direction: ltr;
}
.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--oji-surface);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 80px;
}
.time-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--oji-brand-light);
}
.time-label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

/* 5. Success Stories Enhancements */
.story-header, .success-header {
    margin-bottom: 1.5rem;
    display: block;
}
.story-title, .success-title {
    font-size: 1.5rem !important;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Global Animated Background with #7E3C83 */
body {
    background: linear-gradient(-45deg, #0d0614, #2a0b4e, #0d0614, #1a0b2e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fix Portfolio Stats Grid */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem auto;
    max-width: 1200px;
    padding: 0 5%;
}

.stat-card {
    background: rgba(126, 60, 131, 0.15) !important;
    border: 1px solid rgba(126, 60, 131, 0.4) !important;
    border-radius: 20px !important;
    padding: 2.5rem 1rem !important;
    text-align: center;
    transition: all 0.4s ease !important;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-10px) !important;
    border-color: var(--oji-brand-light) !important;
    box-shadow: 0 10px 30px rgba(126, 60, 131, 0.3) !important;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(126, 60, 131, 0.8);
}

.stat-label {
    color: #e0e0e0;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Fix CTA Buttons on Services Pages */
.cta-section {
    text-align: center !important;
    padding: 5rem 5% !important;
    background: rgba(126, 60, 131, 0.05);
    border-radius: 40px;
    margin: 4rem auto;
    max-width: 1200px;
    border: 1px solid rgba(126, 60, 131, 0.1);
}

.cta-section .container {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: 2.5rem !important;
    color: #fff;
    margin-bottom: 1.5rem !important;
    font-weight: 800;
}

.cta-description {
    color: var(--oji-text-muted);
    font-size: 1.2rem !important;
    max-width: 600px;
    margin: 0 auto 2.5rem auto !important;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block !important;
    margin: 0 auto !important;
    padding: 1.2rem 3rem !important;
    background: linear-gradient(135deg, var(--oji-brand), var(--oji-brand-light)) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.cta-btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(126, 60, 131, 0.4) !important;
}

body {
    background: linear-gradient(-45deg, #0d0614, #7E3C83, #0d0614, #3a155c) !important;
    background-size: 400% 400% !important;
    animation: gradientBG 15s ease infinite !important;
}

/* --- ULTRA MOBILE SIDEBAR MENU --- */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 4, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--oji-border-strong);
    z-index: 99999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: auto;
}

.mobile-sidebar-link {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
    display: block;
}

.mobile-sidebar-link:hover, .mobile-sidebar-link.active {
    color: var(--oji-brand-light);
    transform: translateX(-10px);
}

.mobile-sidebar .dropdown-menu {
    position: static;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 10px 20px 0 0;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.mobile-sidebar .dropdown-menu a {
    color: var(--oji-text-muted);
    padding: 8px 0;
    border-bottom: none;
    font-size: 1rem;
    font-weight: 500;
}

.mobile-sidebar .dropdown-menu a:hover {
    color: var(--oji-brand-light);
    transform: translateX(-5px);
}

.mobile-sidebar-footer {
    margin-top: 40px;
}

.mobile-sidebar-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, var(--oji-brand), var(--oji-brand-light));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: var(--glow-brand);
}

.close-sidebar-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 2rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100000;
    transition: transform 0.3s;
}

.close-sidebar-btn:hover {
    color: var(--oji-brand-light);
    transform: rotate(90deg);
}

/* Base states: Hide mobile elements on desktop */
.mobile-menu-btn, .mobile-sidebar, .mobile-overlay {
    display: none;
}

/* Mobile specific queries */
@media (max-width: 900px) {
    /* Hide desktop nav elements completely on mobile */
    .glass-nav .nav-links {
        display: none !important; 
    }
    .glass-nav .btn-primary-small {
        display: none !important; 
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: flex !important; 
        margin-right: auto;
        background: transparent;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
        z-index: 10;
        padding: 10px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 30px;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    /* Make sure sidebar and overlay display correctly on mobile */
    .mobile-sidebar {
        display: flex;
    }
    .mobile-overlay {
        display: block;
    }
}
