html {

  overflow-x: hidden;

  scroll-behavior: auto;

}



body {

  overflow-x: hidden;

  width: 100%;

  position: relative;

}



:root {

  --color-gold-primary: #D4AF37;

  --color-gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 35%, #B38728 55%, #FBF5B7 85%, #AA771C 100%);



  --color-gold-light: #F4E4BC;

  --color-gold-dark: #8A6E1F;

  --color-black-rich: #0A0A0A;

  --color-black-soft: #141414;

  --color-white: #FFFFFF;

  --color-glass-surface: rgba(255, 255, 255, 0.05);

  --color-glass-border: rgba(255, 255, 255, 0.2);



  --font-heading: 'Outfit', sans-serif;

  --font-body: 'Inter', sans-serif;



  --transition-smooth: cubic-bezier(0.65, 0, 0.35, 1);

}



/* Utility: Screen Reader Only */

.sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border-width: 0;

}



/* Light Theme Overrides (applied when <html data-theme="light">) */

[data-theme="light"] {

  --color-black-rich: #FFFFFF;

  --color-black-soft: #F2F2F2;

  --color-white: #0D0D0D;

  --color-glass-surface: #F2F2F2;

  --color-glass-border: #D9D9D9;

  --color-navy: #0F1B27;

  --color-taupe: #BFAFAF;

  --color-gold-primary: #C78F0A;

  --color-gold-gradient: linear-gradient(135deg, #B9770E 0%, #E0A106 35%, #C47A0A 55%, #F5C44E 85%, #A96506 100%);

}



[data-theme="light"] nav {

  background: var(--color-black-rich);

  border-bottom: 1px solid var(--color-glass-border);

}



[data-theme="light"] nav .nav-link {

  color: #FFFFFF;

}



[data-theme="light"] nav .nav-link::after {

  background: var(--color-gold-primary);

}



[data-theme="light"] nav .theme-toggle {

  background: var(--color-black-soft);

  color: var(--color-gold-primary);

  border: 1px solid var(--color-glass-border);

}



[data-theme="light"] .logo-name,

[data-theme="light"] .logo-tagline {

  color: #FFFFFF;

}



[data-theme="light"] .service-card,

[data-theme="light"] .contact-card,

[data-theme="light"] .contact-form-card,

[data-theme="light"] .adv-card,

[data-theme="light"] .image-card {

  background: var(--color-glass-surface);

  border-color: var(--color-glass-border);

}



[data-theme="light"] .service-desc,

[data-theme="light"] .package-sub,

[data-theme="light"] .package-features li {

  color: rgba(13, 13, 13, 0.85);

}



/* Light theme footer palette */

[data-theme="light"] footer {

  background: #13120F;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

}



[data-theme="light"] .footer-brand p {

  color: rgba(255, 255, 255, 0.75);

}



[data-theme="light"] .footer-links a {

  color: #F2F2F2;

}



[data-theme="light"] .footer-socials a {

  background: rgba(255, 255, 255, 0.12);

  border-color: rgba(255, 255, 255, 0.2);

  color: #F2F2F2;

}



[data-theme="light"] .copyright {

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.55);

}



/* Light theme hero headers: white background across pages */

[data-theme="light"] .hero,

[data-theme="light"] .page-hero,

[data-theme="light"] .about-hero,

[data-theme="light"] .services-hero,

[data-theme="light"] .seo-hero,

[data-theme="light"] .smm-hero,

[data-theme="light"] .ppc-hero,

[data-theme="light"] .ecommerce-hero,

[data-theme="light"] .webdev-hero,

[data-theme="light"] .logo-hero,

[data-theme="light"] .brochure-hero,

[data-theme="light"] .newspaper-hero,

[data-theme="light"] .fm-hero,

[data-theme="light"] .case-study-hero,

[data-theme="light"] .contact-hero {

  background: #FFFFFF;

  border-bottom: 1px solid #D9D9D9;

}



[data-theme="light"] .hero-content {

  mix-blend-mode: normal;

}



*,

*::before,

*::after {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

}



body {

  font-family: var(--font-body);

  background-color: var(--color-black-rich);

  color: var(--color-white);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: var(--font-heading);

  font-weight: 700;

  line-height: 1.1;

  text-transform: uppercase;

  letter-spacing: -0.02em;

}



p {

  line-height: 1.6;

  opacity: 0.8;

  max-width: 65ch;

}



a {

  color: inherit;

  text-decoration: none;

}



/* Utilities */

.container {

  width: 90%;

  max-width: 1400px;

  margin: 0 auto;

  padding: 0 20px;

}



.bg-gold {

  background: var(--color-gold-gradient);

  color: var(--color-black-rich);

  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);

}



.text-gold {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  text-shadow: none;

  /* Text shadow breaks background clip */

  font-weight: 800;

}



/* Black gradient text utility */

.text-black-gradient {

  background: linear-gradient(135deg, var(--color-black-rich) 0%, #1b1b1b 50%, var(--color-black-soft) 100%);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  font-weight: 800;

}



.bg-black {

  background-color: var(--color-black-rich);

  color: var(--color-white);

}



.flex-center {

  display: flex;

  justify-content: center;

  align-items: center;

}



/* Smooth Scroll Base */

html.lenis {

  height: auto;

}



.lenis.lenis-smooth {

  scroll-behavior: auto !important;

}



.lenis.lenis-smooth [data-lenis-prevent] {

  overscroll-behavior: contain;

}



.lenis.lenis-stopped {

  overflow: hidden;

}



.lenis.lenis-scrolling iframe {

  pointer-events: none;

}



/* Performance Optimization */

.hero-content,

.service-card,

.contact-card,

.workflow-step,

.image-card {

  will-change: transform, opacity;

  transform: translateZ(0);

  backface-visibility: hidden;

}



/* Scrollbar */

::-webkit-scrollbar {

  width: 8px;

}



::-webkit-scrollbar-track {

  background: var(--color-black-rich);

}



::-webkit-scrollbar-thumb {

  background: var(--color-gold-dark);

  border-radius: 4px;

}



::-webkit-scrollbar-thumb:hover {

  background: var(--color-gold-primary);

}



/* Page Transition Overlay */

.page-transition {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: var(--color-black-rich);

  z-index: 10000;

  transform: translateY(100%);

  pointer-events: none;

}



/* Preloader */

#preloader {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: var(--color-black-rich);

  z-index: 9999;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 1.5rem;

  pointer-events: auto;

}



#preloader.loaded {

  pointer-events: none;

}



.loader-content {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 1rem;

}



.loader-text {

  font-family: var(--font-heading);

  font-size: 3rem;

  font-weight: 700;

  letter-spacing: 0.05em;

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  /* Fallback for browsers not supporting background-clip: text */

  -webkit-text-fill-color: transparent;

}



.loader-spinner {

  width: 40px;

  height: 40px;

  border: 3px solid rgba(212, 175, 55, 0.2);

  border-radius: 50%;

  border-top-color: var(--color-gold-primary);

  animation: spin 1s ease-in-out infinite;

}



@keyframes spin {

  to {

    transform: rotate(360deg);

  }

}



/* Navigation */

nav {

  position: fixed;

  top: 0;

  width: 100%;

  padding: 0.45rem 0;

  z-index: 100;

  z-index: 100;

  background: #13120F;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  transition: padding 0.3s ease;

}



/* Light theme: keep navbar black */

[data-theme="light"] nav {

  background: #13120F;

  border-bottom-color: rgba(255, 255, 255, 0.08);

}



nav .nav-wrapper {

  display: flex;

  justify-content: space-between;

  align-items: center;

  position: relative;

}



nav .container {

  padding-left: 0;

  width: 96%;

}



/* Logo Styles */

.logo-img {

  height: 4.5rem;

  width: auto;

  object-fit: contain;

}



.footer-logo .logo-img {

  height: 8rem;

}



.logo-brand {

  display: flex;

  align-items: center;

  gap: 0;

  text-decoration: none;

  color: white;

}



/* Deprecated: .logo-symbol styles removed as we switched to img tag */





.logo-details {

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.logo-name {

  font-family: var(--font-heading);

  font-weight: 800;

  font-size: 1.5rem;

  line-height: 1;

  letter-spacing: 0.05em;

  color: var(--color-gold-primary);

}



.logo-tagline {

  font-family: var(--font-body);

  font-size: 0.6rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: var(--color-gold-light);

  opacity: 0.8;

  margin-top: 2px;

}



.logo-brand .logo-details {

  display: none;

}



.nav-wrapper .logo-img {

  height: 4.5rem;

}



.nav-actions {

  display: flex;

  align-items: center;

}



.nav-links {

  display: flex;

  gap: 3rem;

}



/* Align theme toggle to match header buttons (vertically centered inside nav) */

nav .theme-toggle {

  position: relative;

  right: auto;

  top: auto;

  transform: none;

  z-index: 101;

  width: 64px;

  height: 32px;

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: #0A0A0A;

  padding: 0;

  display: flex;

  align-items: center;

  justify-content: space-between;

  box-sizing: border-box;

  cursor: pointer;

  overflow: hidden;

  margin-left: 2rem;

}



/* Switch Thumb (New Design) */

.theme-toggle .switch-thumb {

  position: absolute;

  top: 3px;

  left: 3px;

  width: 24px;

  height: 24px;

  background: #FFFFFF;

  border-radius: 50%;

  z-index: 2;

  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);

  pointer-events: none;

}



/* Switch Icons (New Design) */

.theme-toggle .switch-icon {

  width: 50%;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 1;

  color: #D4AF37;

  pointer-events: none;

}



.theme-toggle .switch-icon.sun-icon {

  order: 2;

}



.theme-toggle .switch-icon.moon-icon {

  order: 1;

}



/* Theme States for Switch */

[data-theme="light"] .theme-toggle .switch-thumb {

  transform: translateX(0);

}



[data-theme="dark"] .theme-toggle .switch-thumb {

  transform: translateX(32px);

}



[data-theme="light"] nav .theme-toggle {

  background: var(--color-gold-primary);

  border-color: transparent;

}



[data-theme="light"] .theme-toggle .switch-icon {

  color: #FFFFFF;

}



[data-theme="dark"] .theme-toggle .switch-icon {

  color: var(--color-gold-primary);

}



/* Legacy Toggle Support (for pages with old HTML) */

/* Hide/Show direct SVG children based on theme */

[data-theme="light"] .theme-toggle>svg.sun-icon {

  display: none;

}



[data-theme="light"] .theme-toggle>svg.moon-icon {

  display: block;

}



[data-theme="dark"] .theme-toggle>svg.sun-icon {

  display: block;

}



[data-theme="dark"] .theme-toggle>svg.moon-icon {

  display: none;

}



/* Adjust legacy button size if it doesn't have the switch structure? 

   No, the CSS above sets width: 64px for ALL .theme-toggle.

   This might make old buttons look wide.

   We can check if it contains .switch-thumb to apply specific width?

   CSS :has() is supported in modern browsers, but maybe safer to rely on classes.

   But I can't change HTML of all files instantly.

   

   If I set width: 64px, the old button (which just has an icon) will be a wide pill with an icon centered (flex).

   It won't look broken, just different (wider). 

   Actually, flex justify-content: space-between might spread the single icon?

   Old button has 2 icons (one hidden).

   So flex will center the visible one if I use justify-content: center?

   But I used space-between.

   If I use space-between and there is only 1 visible child (SVG), it will be at start?

   

   Let's add a rule for legacy override if possible.

   Or just accept it will look slightly different until updated.

   Actually, the old button had `display: grid; place-items: center;`.

   The new one has `display: flex; justify-content: space-between;`.

   

   If I change to `display: flex`, the old button with 1 visible SVG:

   Flex default is row.

   justify-content: space-between.

   1 item -> start?

   

   I'll try to support both styles by checking for `.switch-thumb` presence?

   No, I can't do that easily without :has().

   

   Alternative: Give the NEW button a new class `theme-toggle--switch` in index.html.

   And target `nav .theme-toggle.theme-toggle--switch`.

   And leave `nav .theme-toggle` mostly as is, but maybe add the legacy display toggles.

   

   Yes, this is safer.

   I'll add `theme-toggle--switch` class to index.html.

   And in CSS, I'll add the new block for `nav .theme-toggle.theme-toggle--switch`.

   And I'll add the legacy display toggles for `nav .theme-toggle`.

   

   Wait, I already removed the JS logic. So legacy buttons MUST have the CSS display toggles.

*/



@media (max-width: 768px) {

  /* Removed to fix alignment */

}



.nav-link {

  position: relative;

  font-size: 0.9rem;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  font-weight: 500;

  color: var(--color-white);

  cursor: pointer;

  overflow: hidden;

}



.nav-link::after {

  content: '';

  position: absolute;

  bottom: -2px;

  left: 0;

  width: 100%;

  height: 1px;

  background: var(--color-white);

  transform: scaleX(0);

  transform-origin: right;

  transition: transform 0.4s var(--transition-smooth);

}



.nav-link:hover::after {

  transform: scaleX(1);

  transform-origin: left;

}



/* Hero Section */

.hero {

  height: 100vh;

  width: 100%;

  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;

}



.hero-background {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 0;

  pointer-events: none;

  /* Add canvas or video here via JS */

}



.hero-content {

  position: relative;

  z-index: 2;

  mix-blend-mode: difference;

}



.hero-title {

  font-size: clamp(2.5rem, 6vw, 7rem);

  line-height: 1.1;

  margin-bottom: 2rem;

  overflow: hidden;

}



.hero-title span {

  display: block;

  transform: translateY(100%);

  /* Initial state for animation */

}



.hero-subtitle {

  font-size: 1.2rem;

  font-weight: 400;

  max-width: 500px;

  margin-bottom: 3rem;

  transform: translateY(20px);

  opacity: 0;

}



.page-hero .hero-subtitle {

  margin-left: auto;

  margin-right: auto;

  text-align: center;

}



.cta-button {

  display: inline-flex;

  align-items: center;

  padding: 1rem 2rem;

  border: 1px solid var(--color-gold-primary);

  border-radius: 50px;

  font-family: var(--font-heading);

  text-transform: uppercase;

  font-size: 0.9rem;

  letter-spacing: 0.05em;

  position: relative;

  overflow: hidden;

  color: var(--color-gold-primary);

  background: rgba(255, 255, 255, 0.02);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  transition: color 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);

}



.cta-button .btn-text {

  position: relative;

  z-index: 2;

}



.cta-button::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: var(--color-gold-gradient);

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 0.4s var(--transition-smooth);

  z-index: -1;

}



.cta-button:hover {

  color: var(--color-black-rich);

  border-color: transparent;

  box-shadow:

    0 0 0 1px rgba(212, 175, 55, 0.9),

    0 0 18px rgba(212, 175, 55, 0.65);

}



.cta-button:hover::before {

  transform: scaleY(1);

  transform-origin: top;

}



@keyframes button-shake {

  0% {

    transform: translateX(0);

  }



  20% {

    transform: translateX(-2px);

  }



  40% {

    transform: translateX(2px);

  }



  60% {

    transform: translateX(-2px);

  }



  80% {

    transform: translateX(2px);

  }



  100% {

    transform: translateX(0);

  }

}



button:hover,

.cta-button:hover,

.service-link:hover,

.service-menu-link:hover {

  animation: button-shake 0.35s ease-in-out;

}



nav button:hover,

nav .cta-button:hover,

nav .service-link:hover,

nav .service-menu-link:hover,

footer button:hover,

footer .cta-button:hover,

footer .service-link:hover,

footer .service-menu-link:hover {

  animation: none;

}



.cta-button--outline {

  background: transparent;

  backdrop-filter: none;

  -webkit-backdrop-filter: none;

}



.cta-button--outline::before {

  background: var(--color-gold-gradient);

}



.cta-button--outline:hover {

  color: var(--color-black-rich);

  border-color: transparent;

  box-shadow:

    0 0 0 1px rgba(212, 175, 55, 0.9),

    0 0 18px rgba(212, 175, 55, 0.65);

}



#contact .cta-button--outline {

  background: var(--color-gold-primary);

  color: var(--color-black-rich);

  border-color: var(--color-gold-primary);

}



.cta-button--light {

  background: #fff;

  color: var(--color-black-rich);

  border: 1px solid var(--color-gold-primary);

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.06);

}



[data-theme="light"] .cta-button--light {

  background: #ffffff;

  color: var(--color-gold-primary);

  border-color: var(--color-gold-primary);

  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);

}



[data-theme="light"] .cta-button--light:hover {

  color: var(--color-black-rich);

}



.cta-button--clean {

  background: transparent;

  backdrop-filter: none;

  -webkit-backdrop-filter: none;

}



.hero-contacts {

  display: flex;

  gap: 1rem;

  justify-content: center;

  flex-wrap: wrap;

  margin-top: 1rem;

  margin-bottom: 2rem;

}



.hero-contacts .cta-button {

  padding: 0.9rem 1.4rem;

}



.hero-contacts .cta-button i {

  margin-right: 0.5rem;

}



.cta-button--block {

  width: 100%;

  justify-content: center;

}



/* Services / Marquee Section */

.marquee-section {

  padding: 5rem 0;

  background: var(--color-black-rich);

  overflow: hidden;

}



/* Stats banner variant below workflow */

.stats-banner {

  padding: 2.5rem 0;

  background: var(--color-black-rich);

  margin-top: 4rem;

}



.stats-banner .marquee-item {

  font-size: clamp(1.2rem, 3.5vw, 2rem);

  letter-spacing: 0.02em;

}



[data-theme="light"] .stats-banner {

  background: #FFFFFF;

}



.marquee-content {

  display: flex;

  width: fit-content;

  gap: 4rem;

}



.marquee-item {

  font-family: var(--font-heading);

  font-size: 8vw;

  white-space: nowrap;

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  opacity: 1;

  -webkit-text-stroke: 0px;

}



.marquee-item:hover {

  opacity: 1;

}



/* About Section */

.about-section {

  padding: 10rem 0;

  position: relative;

}



.section-label {

  font-size: 0.9rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: var(--color-gold-primary);

  margin-bottom: 2rem;

  display: block;

}



.about-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: start;

}



.about-text h2 {

  font-size: 3rem;

  margin-bottom: 2rem;

}



.stat-item {

  border-top: 1px solid rgba(255, 255, 255, 0.2);

  padding: 2rem 0;

  display: flex;

  justify-content: space-between;

  align-items: baseline;

}



.stat-number {

  font-family: var(--font-heading);

  font-size: 4rem;

  color: var(--color-gold-primary);

}



.stat-label {

  font-size: 1.2rem;

}



/* Feature/Grid Section (Millennial style) */

.features-section {

  padding: 10rem 0;

  background-color: var(--color-black-rich);

}



/* Swiper Carousel Customization */

.services-swiper {

  width: 100%;

  padding: 20px 0 20px 0;

  overflow: visible !important;

}



.projects-swiper {

  width: 100%;

  padding: 20px 0;

  overflow: visible !important;

}



/* Projects Grid Customization */

.projects-section .container {

  max-width: 1600px;

  width: 95%;

}



.projects-grid {

  display: none;

  /* Hidden in favor of marquee */

}



/* Projects Marquee Styles */

.projects-marquee {

  display: flex;

  flex-direction: column;

  gap: 1.5rem;

  overflow: hidden;

  width: 100%;

  padding: 1rem 0;

  /* Fade edges removed per request */

  /* mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); */

  /* -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); */

}



.marquee-row {

  display: flex;

  width: 100%;

  overflow: hidden;

  user-select: none;

  gap: 1.5rem;

}



.marquee-content {

  display: flex;

  gap: 1.5rem;

  flex-shrink: 0;

  min-width: 100%;

  animation: marquee-scroll 30s linear infinite;

}



/* Pause on hover for better UX */

.marquee-row:hover .marquee-content {

  animation-play-state: paused;

}



.projects-marquee .image-card {

  width: 300px;

  /* Fixed width for consistent scrolling */

  aspect-ratio: 4/5;

  flex-shrink: 0;

  border-radius: 12px;

  overflow: hidden;

  position: relative;

  border: 2px solid var(--color-gold-primary);

  background: transparent;

}



.projects-marquee .image-card img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  transform: scale(1);

  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;

}



.projects-marquee .image-card:hover img {

  transform: scale(1.05);

  filter: brightness(1.1);

}



.projects-marquee .project-caption {

  display: none;

}



/* Animation Keyframes */

@keyframes marquee-scroll {

  from {

    transform: translateX(0);

  }



  to {

    transform: translateX(calc(-100% - 1.5rem));

  }

}



@keyframes marquee-scroll-reverse {

  from {

    transform: translateX(calc(-100% - 1.5rem));

  }



  to {

    transform: translateX(0);

  }

}



.marquee-row.scroll-left .marquee-content {

  animation: marquee-scroll 40s linear infinite;

}



.marquee-row.scroll-right .marquee-content {

  animation: marquee-scroll-reverse 40s linear infinite;

}



@media (max-width: 768px) {

  .projects-marquee .image-card {

    width: 220px;

  }

}



/* Legacy Grid Styles (kept for reference but unused) */

/*

.projects-grid {

  display: grid;

  grid-template-columns: repeat(8, 1fr);

  gap: 1rem;

}



.projects-grid .image-card {

  aspect-ratio: 4/5; 

  background: transparent; 

  border: 2px solid var(--color-gold-primary); 

  box-shadow: none;

  overflow: hidden; 

  border-radius: 12px;

  position: relative;

}

...

*/





/* Partners */

.partners-grid {

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 2rem;

  align-items: center;

}



.partner-logo {

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 100px;

  border-radius: 12px;

  border: 2px solid #FFFFFF;

  background: var(--color-gold-primary);

  color: var(--color-white);

  font-weight: 600;

  letter-spacing: 0.02em;

  position: relative;

}



.partner-logo::before {

  content: '';

  position: absolute;

  inset: 0;

  border-radius: 12px;

  padding: 3px;

  background: var(--color-gold-primary);

  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);

  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;

  pointer-events: none;

}



.partner-logo img {

  max-width: 160px;

  max-height: 60px;

  object-fit: contain;

  filter: saturate(1.4) contrast(1.2) brightness(1.1);

  opacity: 1;

}



/* Light theme keeps neutral look */

[data-theme="light"] .partner-logo {

  border: 1px solid transparent;

  background: #FFFFFF;

}



[data-theme="light"] .partner-logo img {

  filter: none;

}



[data-theme="light"] .partner-logo::before {

  background: var(--color-gold-primary);

}



@media (max-width: 1000px) {

  .partners-grid {

    grid-template-columns: repeat(3, 1fr);

  }

}



@media (max-width: 640px) {

  .partners-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 900px) {

  .projects-grid {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 600px) {

  .projects-grid {

    grid-template-columns: 1fr;

  }

}



.projects-swiper .swiper-wrapper {

  transition-timing-function: linear;

}



.services-swiper .swiper-wrapper {

  transition-timing-function: linear;

}



.partners-swiper .swiper-wrapper {

  transition-timing-function: linear;

  gap: 5px;

}



.partners-swiper {

  overflow: hidden !important;

}



.swiper-slide {

  width: 220px !important;

  height: auto;

  transition: transform 0.3s;

}



.projects-swiper .swiper-wrapper.is-ticker,

.partners-swiper .swiper-wrapper.is-ticker,

.services-swiper .swiper-wrapper.is-ticker {

  will-change: transform;

  animation: marquee-linear var(--ticker-duration, 40s) linear infinite;

  display: inline-flex;

  width: max-content;

}



.services-swiper {

  overflow: hidden;

}



.services-swiper .swiper-slide {

  margin-right: 30px;

}



.nav-links a[href="./case-study.html"],

.footer-links a[href="./case-study.html"] {

  display: none;

}



/* Override for single-color dark sections */

.features-section.bg-black {

  background-color: var(--color-black-rich);

}



/* Solid gold text inside black sections (no gradient) */

.features-section.bg-black .text-gold {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



/* Important names inside team overlay use gradient text */

.features-section.bg-black .overlay-name strong {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



/* Why GAP section alignment */

.why-gap-section {

  padding: 4rem 0;

  background: var(--color-black-rich);

  color: var(--color-white);

}



.why-gap-section .container {

  text-align: center;

  max-width: 900px;

}



.why-gap-section h2 {

  font-size: clamp(2rem, 4vw, 2.6rem);

  margin-bottom: 1rem;

}



.why-gap-section p {

  max-width: 900px;

  margin: 0 auto 2rem;

  font-size: 1.05rem;

  line-height: 1.9;

}



.why-gap-section .cta-button {

  background: #fff;

  color: var(--color-black-rich);

  border: none;

}



.feature-card-link {

  text-decoration: none;

  color: inherit;

  display: block;

  height: 100%;

  pointer-events: none;

  cursor: default;

}



.feature-card {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  text-align: center;

  background: var(--color-gold-primary);

  color: var(--color-white);

  border-radius: 12px;

  padding: 1rem 0.5rem;

  height: 100%;

  min-height: 200px;

  border: none;

  transition: all 0.3s ease;

  cursor: pointer;

  position: relative;

  overflow: hidden;

}



.card-bg-image {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 0;

  pointer-events: none;

}



.card-bg-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  opacity: 0.1;

  transition: opacity 0.3s ease, transform 0.5s ease;

  mix-blend-mode: multiply;

}



.feature-card:hover .card-bg-image img,

.feature-card.active .card-bg-image img {

  opacity: 0.15;

  transform: scale(1.1);

}



.feature-card .feature-icon {

  margin-bottom: 1rem;

  color: var(--color-black-rich);

  transition: color 0.3s ease;

  position: relative;

  z-index: 1;

}



.feature-card .feature-title {

  color: var(--color-black-rich);

  font-size: 1rem;

  font-weight: 700;

  margin-top: auto;

  margin-bottom: 0;

  transition: color 0.3s ease;

  position: relative;

  z-index: 1;

}



/* Active Card Style */

.feature-card.active,

.swiper-slide-active .feature-card {

  transform: translateY(-10px);

}



.card-dots {

  display: flex;

  gap: 5px;

  margin-top: 1.5rem;

  position: relative;

  z-index: 1;

}



.card-dots span {

  width: 6px;

  height: 6px;

  background: rgba(255, 255, 255, 0.5);

  border-radius: 50%;

}



.card-dots span:nth-child(2) {

  background: #fff;

}



/* Swiper Pagination */

.swiper-pagination-bullet {

  background: var(--color-gold-primary) !important;

  opacity: 0.5;

}



.swiper-pagination-bullet-active {

  opacity: 1;

}



/* New Services Cards (dark theme, inspired by reference) */

.service-card {

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 12px;

  padding: 2rem;

  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);

}



.service-card:hover {

  transform: translateY(-6px);

  border-color: var(--color-gold-primary);

  box-shadow:

    0 0 0 1px rgba(212, 175, 55, 0.9),

    0 0 18px rgba(212, 175, 55, 0.65),

    0 12px 24px rgba(0, 0, 0, 0.35);

  background: rgba(255, 255, 255, 0.08);

}



.service-icon-badge {

  width: 44px;

  height: 44px;

  border-radius: 12px;

  background: rgba(0, 0, 0, 0.6);

  border: 1px solid rgba(212, 175, 55, 0.45);

  color: var(--color-gold-primary);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.2);

  margin-bottom: 1.25rem;

}



.service-icon-badge i {

  font-size: 1.2rem;

}



.service-title {

  font-size: 1.25rem;

  margin-bottom: 0.6rem;

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.service-desc {

  color: rgba(255, 255, 255, 0.85);

  margin-bottom: 1rem;

}



.service-link {

  display: inline-flex;

  align-items: center;

  padding: 0.8rem 1.4rem;

  border: 1px solid var(--color-gold-primary);

  border-radius: 50px;

  font-family: var(--font-heading);

  text-transform: uppercase;

  font-size: 0.8rem;

  letter-spacing: 0.06em;

  position: relative;

  overflow: hidden;

  color: var(--color-gold-primary);

  background: rgba(255, 255, 255, 0.02);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  transition: color 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);

  gap: 0.4rem;

}



.service-link::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: var(--color-gold-gradient);

  transform: scaleY(0);

  transform-origin: bottom;

  transition: transform 0.4s var(--transition-smooth);

  z-index: -1;

}



.service-link:hover {

  color: var(--color-black-rich);

  border-color: transparent;

  box-shadow:

    0 0 0 1px rgba(212, 175, 55, 0.9),

    0 0 18px rgba(212, 175, 55, 0.65);

}



.service-link:hover::before {

  transform: scaleY(1);

  transform-origin: top;

}



.package-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 1.5rem;

}



.package-card {

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 12px;

  padding: 1.5rem;

  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth);

}



.package-card:hover {

  transform: translateY(-6px);

  border-color: var(--color-gold-primary);

  box-shadow:

    0 0 0 1px rgba(212, 175, 55, 0.9),

    0 0 18px rgba(212, 175, 55, 0.65),

    0 12px 24px rgba(0, 0, 0, 0.35);

  background: rgba(255, 255, 255, 0.08);

}



.package-card .service-icon-badge {

  margin-bottom: 1rem;

}



.package-popular {

  border-color: var(--color-gold-primary);

  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.25);

}



.package-badge {

  display: inline-block;

  background: var(--color-gold-primary);

  color: var(--color-black-rich);

  padding: 0.25rem 0.6rem;

  border-radius: 999px;

  font-family: var(--font-heading);

  font-size: 0.8rem;

  margin-bottom: 0.5rem;

}



.package-name {

  font-family: var(--font-heading);

  font-weight: 800;

  margin-bottom: 0.25rem;

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.package-price {

  font-size: 1.6rem;

  color: var(--color-white);

  margin-bottom: 0.25rem;

}



.package-sub {

  color: rgba(255, 255, 255, 0.85);

  font-size: 0.95rem;

}



.package-features {

  margin: 1rem 0 1.25rem;

  display: grid;

  gap: 0.4rem;

}



.package-features li {

  color: rgba(255, 255, 255, 0.9);

}



.package-features i {

  color: var(--color-gold-primary);

  margin-right: 0.4rem;

}



.adv-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 1.5rem;

}



.image-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 1.5rem;

}



.services-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 1.5rem;

}



.image-card {

  position: relative;

  overflow: hidden;

  border-radius: 12px;

  border: 1px solid var(--color-glass-border);

  background: var(--color-glass-surface);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  transform-style: preserve-3d;

  will-change: transform;

}



.image-card img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.05);

  transition: transform 0.6s var(--transition-smooth);

}



.image-card:hover img {

  transform: scale(1.1);

}



.tilt {

  perspective: 800px;

}



/* 

   Projects grid styles are now handled by .projects-grid definitions above (around line 915).

   The following block was conflicting and is now disabled.

*/

/*

.projects-section .image-card {

  min-height: 180px;

  border: none;

  background: transparent;

  box-shadow: none;

}



.projects-section .image-card img {

  width: calc(100% - 40px);

  height: calc(100% - 120px);

  margin: 20px;

}

*/



.project-caption {

  position: absolute;

  left: 12px;

  bottom: 12px;

  padding: 0.45rem 0.7rem;

  font-size: 0.9rem;

  border-radius: 8px;

  background: rgba(0, 0, 0, 0.4);

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: var(--color-white);

}



/*

.projects-section .project-caption {

  display: none;

}

*/



[data-theme="light"] .project-caption {

  background: rgba(0, 0, 0, 0.55);

  color: #fff;

}



.anim-card {

  height: 340px;

}



.anim-card canvas {

  width: 100%;

  height: 100%;

  display: block;

}



.smm-illustration svg {

  width: 100%;

  height: auto;

  display: block;

}



.smm-illustration .pulse {

  animation: pulse 2.8s ease-in-out infinite;

  transform-origin: center;

}



.smm-illustration .float {

  animation: float 3.6s ease-in-out infinite alternate;

}



@keyframes pulse {

  0% {

    opacity: 0.6;

    transform: scale(1);

  }



  50% {

    opacity: 1;

    transform: scale(1.08);

  }



  100% {

    opacity: 0.6;

    transform: scale(1);

  }

}



@keyframes float {

  0% {

    transform: translateY(0);

  }



  100% {

    transform: translateY(-6px);

  }

}



.workflow-section {

  padding: 4rem 0;

  position: relative;

  z-index: 1;

}



.workflow-section .section-label {

  display: block;

  text-align: center;

  margin-bottom: 0.5rem;

}

.workflow-section .container {
  max-width: 1800px;
  width: 95%;
  padding: 0 40px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  justify-items: center;
  gap: 2rem;
  max-width: 100%;
  margin: 0 auto;
}

.workflow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--color-glass-surface);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  min-height: 140px;
  justify-self: stretch;
}



.home-page .workflow-step,

.smm-page .workflow-step,

.seo-page .workflow-step {

  border-radius: 4px;

}



.workflow-step h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}



.workflow-step p {

  margin: 0;

  font-size: 0.95rem;

  line-height: 1.5;

}



.workflow-step>div:last-child {

  display: flex;

  flex-direction: column;

  justify-content: center;

}



.step-circle {

  width: 56px;

  height: 56px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  background: var(--color-gold-gradient);

  color: var(--color-black-rich);

  font-weight: 800;

  font-family: var(--font-heading);

}



.workflow-connector {

  height: 4px;

  background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), var(--color-gold-primary));

  border-radius: 4px;

  transform: scaleX(0);

  transform-origin: left;

  width: 80px;

  justify-self: center;

  align-self: center;

  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0, 1);

}



.workflow-connector.is-visible {

  transform: scaleX(1);

}



@media (max-width: 768px) {

  .workflow-steps {

    grid-template-columns: 1fr;

    gap: 1rem;

  }



  .workflow-connector {

    display: none;

  }

}



.adv-card {

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 12px;

  padding: 1.25rem;

  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth), background 0.3s var(--transition-smooth);

}



.adv-card:hover {

  transform: translateY(-6px);

  border-color: var(--color-gold-primary);

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);

  background: rgba(255, 255, 255, 0.08);

}



/* Enquiry Modal */

.enquiry-modal {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  backdrop-filter: blur(2px);

  -webkit-backdrop-filter: blur(2px);

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 1000;

}



.enquiry-modal.active {

  display: flex;

}



.success-popup-overlay {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, 0.65);

  display: none;

  align-items: center;

  justify-content: center;

  z-index: 1200;

}



.success-popup-overlay.active {

  display: flex;

}



.page-transition-overlay {

  position: fixed;

  inset: 0;

  background:

    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.18) 0, transparent 40%),

    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.14) 0, transparent 45%),

    #13120F;

  z-index: 1400;

  pointer-events: none;

  transform: translateX(100%);

  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);

}



[data-theme="light"] .page-transition-overlay {

  background: #FFFFFF;

}



body.page-transition-enter .page-transition-overlay,

body.page-transition-exit .page-transition-overlay {

  transform: translateX(0);

}



.page-transition-logo {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 140px;

  height: 100px;

  background-image: url('./assets/golden_logo.png');

  background-size: contain;

  background-repeat: no-repeat;

  background-position: center;

  opacity: 0.95;

}



.success-popup {

  width: min(320px, 90vw);

  background: var(--color-black-rich);

  border-radius: 16px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);

  padding: 1.6rem 1.8rem 1.4rem;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0.75rem;

  text-align: center;

}



.success-popup-icon {

  width: 56px;

  height: 56px;

  border-radius: 999px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(46, 204, 113, 0.14);

  border: 1px solid rgba(46, 204, 113, 0.6);

  color: #2ecc71;

  font-size: 1.6rem;

}



.success-popup-message {

  font-size: 1rem;

  color: var(--color-white);

}



.success-popup-close {

  margin-top: 0.35rem;

  padding: 0.35rem 0.9rem;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  background: rgba(255, 255, 255, 0.05);

  color: var(--color-white);

  font-size: 0.86rem;

  cursor: pointer;

}



.enquiry-dialog {

  width: min(560px, 92vw);

  background: var(--color-black-rich);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 16px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);

  padding: 1.5rem;

}



.enquiry-title {

  margin-bottom: 1rem;

  font-size: 1.6rem;

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.enquiry-close {

  position: absolute;

  right: 18px;

  top: 14px;

  width: 36px;

  height: 36px;

  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.06);

  color: var(--color-white);

}



.enquiry-form,

.contact-form {

  display: grid;

  gap: 0.9rem;

}



.contact-form-card {

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 12px;

  padding: 1.5rem;

  position: relative;

  min-height: 560px;

  display: flex;

  flex-direction: column;

}



.contact-grid {

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 2rem;

  align-items: start;

}



.contact-form-card .service-title {

  margin-bottom: 0.5rem;

}



.contact-card {

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 12px;

  padding: 1.25rem;

  margin-bottom: 1rem;

}



.contact-form input,

.contact-form select,

.contact-form textarea {

  width: 100%;

  padding: 0.8rem 0.9rem;

  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.06);

  color: var(--color-white);

  box-sizing: border-box;

}



.contact-form {

  flex: 1;

}



.phone-input {

  display: grid;

  grid-template-columns: 120px 1fr;

  gap: 0.6rem;

}



.country-code {

  width: 100%;

}



.contact-form select,

.enquiry-form select {

  cursor: pointer;

}



.contact-form select option,

.enquiry-form select option,

.country-code option {

  background: var(--color-black-rich);

  color: var(--color-gold-primary);

}



.select-gradient-text {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.contact-form textarea {

  min-height: 200px;

  resize: vertical;

}



.contact-form input:focus,

.contact-form select:focus,

.contact-form textarea:focus,

.enquiry-form input:focus,

.enquiry-form select:focus,

.enquiry-form textarea:focus {

  outline: none;

  border-color: var(--color-gold-primary);

  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);

}



.contact-form .cta-button {

  justify-self: start;

  padding-left: 1.25rem;

  padding-right: 1.25rem;

  margin-top: 0.5rem;

}



.enquiry-row {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 0.9rem;

}



.enquiry-form input,

.enquiry-form select,

.enquiry-form textarea {

  width: 100%;

  padding: 0.8rem 0.9rem;

  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.06);

  color: var(--color-white);

}



.enquiry-form select {

  background: var(--color-black-rich);

}



.enquiry-form textarea {

  min-height: 110px;

  resize: vertical;

}



.enquiry-hint {

  font-size: 0.88rem;

  color: rgba(255, 255, 255, 0.7);

}



[data-theme="light"] .enquiry-hint {

  color: rgba(13, 13, 13, 0.7);

}



@media (max-width: 900px) {

  .contact-grid {

    grid-template-columns: 1fr;

  }



  .contact-form-card {

    min-height: auto;

  }

}



@media (max-width: 640px) {

  .enquiry-row {

    grid-template-columns: 1fr;

  }



  .contact-form .cta-button {

    justify-self: stretch;

  }

}



/* Footer */

footer {

  padding: 5rem 0 2rem;

  background: #13120F;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

}



[data-theme="light"] footer {

  background: #13120F;

  border-top-color: rgba(255, 255, 255, 0.12);

  color: #FFFFFF;

}



[data-theme="light"] footer a {

  color: #FFFFFF;

}



[data-theme="light"] footer .footer-socials a {

  color: #FFFFFF;

  border-color: rgba(255, 255, 255, 0.2);

}



[data-theme="light"] footer .footer-brand p {

  color: rgba(255, 255, 255, 0.7);

}



.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}



.footer-brand {

  display: flex;

  flex-direction: column;

  align-items: flex-start;

  margin-top: -2.5rem;

}



.footer-brand .logo-img {

  width: auto;

  height: 8rem;

}



.footer-brand h2 {

  font-size: 2rem;

  margin-bottom: 1rem;

}



.footer-brand p {

  color: rgba(255, 255, 255, 0.6);

  margin-top: 0.15rem !important;

}



.footer-links ul {

  list-style: none;

}



.footer-links li {

  margin-bottom: 0.8rem;

}



.footer-links a:hover {

  color: var(--color-gold-primary);

}



.contact-info p {

  margin-bottom: 0.8rem;

}



/* Footer socials and newsletter */

.footer-socials {

  display: inline-flex;

  gap: 0.5rem;

  margin-top: 1rem;

}



.footer-socials a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 32px;

  height: 32px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.12);

  border: 1px solid rgba(255, 255, 255, 0.2);

  color: var(--color-white);

  transition: all 0.3s var(--transition-smooth);

}



.footer-socials a:hover {

  background: var(--color-gold-primary);

  border-color: transparent;

  color: var(--color-black-rich);

  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);

}



/* Footer logo sizing */

.footer-logo {

  display: inline-flex;

  align-items: center;

  margin-bottom: 0.8rem;

}



.footer-logo .logo-img {

  width: auto;

  height: 8rem;

}



.footer-logo .logo-name {

  font-size: 1.3rem;

}



.footer-logo .logo-tagline {

  font-size: 0.58rem;

}



/* Spacing adjustments */

.footer-links h4,

.contact-info h4 {

  margin-bottom: 1rem;

}



.footer-links li {

  margin-bottom: 1rem;

}



/* Footer heading color */

footer .footer-links h4,

footer .contact-info h4 {

  color: var(--color-gold-primary);

}



/* Footer address color */

footer .contact-info .contact-item div p {

  color: #FFFFFF;

}



/* Light theme footer address stays white on navy */

[data-theme="light"] footer .contact-info .contact-item div p {

  color: #FFFFFF;

}



/* Contact items with icons */

.contact-item {

  display: flex;

  gap: 0.6rem;

  margin-bottom: 0.8rem;

  align-items: flex-start;

}



.contact-item i {

  color: var(--color-gold-primary);

  margin-top: 0;

  min-width: 20px;

  display: inline-flex;

  align-items: flex-start;

  justify-content: center;

}



.contact-info .contact-item div p {

  margin: 0 0 0.2rem 0;

  line-height: 1.5;

}



.contact-info .contact-item:last-child p {

  margin-bottom: 0;

}



.contact-info .contact-item div p {

  margin-bottom: 0.2rem;

  line-height: 1.4;

}



.copyright {

  text-align: center;

  padding-top: 2rem;

  border-top: 1px solid rgba(255, 255, 255, 0.05);

  font-size: 0.9rem;

  color: rgba(255, 255, 255, 0.4);

}



.chat-widget {

  position: fixed;

  right: 18px;

  bottom: 18px;

  z-index: 9999;

  display: grid;

  gap: 8px;

  transform: translate(0, 0);

  will-change: transform, opacity;

}



.chat-widget.peek {

  animation: none;

}



@keyframes botPeekCorner {

  0% {

    transform: translate(140%, 140%) scale(0.92);

    opacity: 0;

  }



  35% {

    transform: translate(40%, 40%) scale(1);

    opacity: 1;

  }



  60% {

    transform: translate(40%, 40%);

  }



  100% {

    transform: translate(0, 0);

  }

}



.chat-toggle {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: auto;

  height: auto;

  padding: 0;

  border-radius: 0;

  background: transparent;

  border: none;

  box-shadow: none;

}



.chat-toggle .avatar {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  background: var(--color-black-rich);

  color: var(--color-white);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 0.9rem;

}



.chat-toggle .avatar-img {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  object-fit: cover;

  display: inline-block;

  animation: chatbotFloat 3s ease-in-out infinite;

}



@keyframes chatbotFloat {

  0% {

    transform: translateY(0) scale(1);

  }



  50% {

    transform: translateY(-6px) scale(1.04);

  }



  100% {

    transform: translateY(0) scale(1);

  }

}



.chat-prompt {

  position: absolute;

  right: 85px;

  bottom: 32px;

  padding: 6px 10px;

  border-radius: 12px;

  background: var(--color-gold-primary);

  color: var(--color-black-rich);

  border: 1px solid rgba(0, 0, 0, 0.12);

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);

  font-weight: 700;

  font-size: 0.8rem;

  opacity: 1;

  transform: translateY(0) scale(1);

  pointer-events: auto;

  display: inline-flex;

  align-items: center;

  will-change: transform, opacity;

  transition: transform 250ms ease, opacity 250ms ease;

}



.chat-prompt.show {

  transform: translateY(-2px) scale(1.02);

}



.chat-prompt::after {

  content: '';

  position: absolute;

  right: -4px;

  bottom: 10px;

  width: 8px;

  height: 8px;

  background: var(--color-gold-primary);

  border: 1px solid rgba(0, 0, 0, 0.12);

  border-left: none;

  border-bottom: none;

  transform: rotate(45deg);

}



.chat-prompt-label {

  letter-spacing: 0.04em;

}



.chat-prompt-dots {

  display: inline-flex;

  gap: 3px;

  margin-left: 6px;

}



.chat-prompt-dots span {

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: var(--color-black-rich);

  opacity: 0.3;

  animation: chatDots 1s ease-in-out infinite;

}



.chat-prompt-dots span:nth-child(2) {

  animation-delay: 0.15s;

}



.chat-prompt-dots span:nth-child(3) {

  animation-delay: 0.3s;

}



@keyframes chatDots {



  0%,

  80%,

  100% {

    transform: translateY(0);

    opacity: 0.35;

  }



  40% {

    transform: translateY(-2px);

    opacity: 1;

  }

}



.chat-panel {

  position: fixed;

  right: 18px;

  bottom: 150px;

  z-index: 10000;

  pointer-events: auto;

  width: 340px;

  max-height: 480px;

  display: none;

  grid-template-rows: auto 1fr auto;

  background: var(--color-black-rich);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 16px;

  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);

  overflow: hidden;

}



.chat-panel.open {

  display: grid;

}



.chat-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 10px 12px;

  background: rgba(255, 255, 255, 0.06);

}



.chat-title {

  font-family: var(--font-heading);

  font-weight: 800;

  letter-spacing: 0.03em;

  color: var(--color-white);

}



.chat-close {

  width: 28px;

  height: 28px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: transparent;

  color: var(--color-white);

}



.chat-body {

  padding: 12px;

  display: grid;

  gap: 8px;

  overflow: auto;

}



.chat-msg {

  max-width: 85%;

  padding: 8px 10px;

  border-radius: 10px;

  font-size: 0.95rem;

  line-height: 1.5;

}



.chat-msg.bot {

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  color: var(--color-white);

}



.chat-msg.user {

  justify-self: end;

  background: var(--color-gold-primary);

  color: var(--color-black-rich);

  border: 1px solid rgba(0, 0, 0, 0.12);

}



.chat-suggestions {

  display: flex;

  flex-wrap: wrap;

  gap: 8px;

}



.chat-chip {

  padding: 6px 10px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 16px;

  color: var(--color-white);

  background: transparent;

  font-size: 0.85rem;

}



.chat-footer {

  display: grid;

  grid-template-columns: 1fr auto;

  gap: 8px;

  padding: 10px;

  background: rgba(255, 255, 255, 0.06);

}



.chat-input {

  padding: 10px 12px;

  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background: transparent;

  color: var(--color-white);

}



.chat-input.search {

  background: #ffffff;

  color: #000000;

  border-color: rgba(0, 0, 0, 0.2);

}



.chat-input.tel {

  background: rgba(255, 255, 255, 0.06);

  color: var(--color-white);

  border-color: rgba(255, 255, 255, 0.3);

}



.chat-input[type="search"] {

  background: #ffffff;

  color: #000000;

  border-color: rgba(0, 0, 0, 0.2);

}



.chat-input[type="tel"] {

  background: rgba(255, 255, 255, 0.06);

  color: var(--color-white);

  border-color: rgba(255, 255, 255, 0.3);

}



.chat-send {

  padding: 10px 14px;

  border-radius: 10px;

  background: var(--color-gold-primary);

  color: var(--color-black-rich);

  border: 1px solid rgba(0, 0, 0, 0.12);

  font-weight: 700;

}



@media (max-width: 640px) {

  .chat-panel {

    right: 12px;

    bottom: 120px;

    width: calc(100% - 24px);

    max-height: 60vh;

  }

}



/* Service Sidebar Navigation */

.service-layout {

  display: grid;

  grid-template-columns: 280px 1fr;

  gap: 4rem;

  align-items: start;

}



.service-sidebar {

  position: sticky;

  top: 150px;

  background: #f8f8f8;

  padding: 2rem;

  border-radius: 20px;

}



.service-menu {

  list-style: none;

}



.service-menu-link {

  display: block;

  padding: 1rem 1.5rem;

  border-radius: 12px;

  background: white;

  color: var(--color-black-rich);

  transition: all 0.3s ease;

  font-weight: 500;

  border: 1px solid rgba(0, 0, 0, 0.05);

  margin-bottom: 0.8rem;

}



.service-menu-link:hover {

  background: var(--color-gold-light);

  color: var(--color-black-rich);

  transform: translateX(5px);

}



.service-menu-link.active {

  background: var(--color-gold-primary);

  color: var(--color-black-rich);

  font-weight: 700;

  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);

}



@media (max-width: 1024px) {

  .service-layout {

    grid-template-columns: 1fr;

  }



  .service-sidebar {

    position: static;

    margin-bottom: 3rem;

  }



  .service-menu {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

    gap: 1rem;

  }



  .service-menu-link {

    margin-bottom: 0;

    text-align: center;

  }

}



@media (max-width: 768px) {

  .hero-title {

    font-size: 3.5rem;

  }



  .about-grid {

    grid-template-columns: 1fr;

  }



  .footer-content {

    grid-template-columns: 1fr;

  }



  .nav-links {

    display: none;

  }



  /* Mobile nav implementation needed later */

}

@media (max-width: 420px) {

  .hero {

    height: auto;

    min-height: 100vh;

    min-height: 100svh;

    padding-top: calc(6.5rem + env(safe-area-inset-top));

    padding-bottom: calc(2.5rem + env(safe-area-inset-bottom));

    align-items: flex-start;

  }



  .hero-title {

    font-size: clamp(2.3rem, 10vw, 3.1rem);

    line-height: 1.05;

    margin-bottom: 1.25rem;

  }



  .hero-subtitle {

    font-size: 1.05rem;

    margin-bottom: 1.75rem;

  }

  .hero-ctas {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-ctas .cta-button {
    width: 100%;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }
}



/* Page Hero (Subpages) */

.page-hero {

  height: 60vh;

  width: 100%;

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--color-black-rich);

  overflow: hidden;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

}



.page-hero-content {

  text-align: center;

  z-index: 2;

}



.page-hero h1 {

  font-size: clamp(3.5rem, 7vw, 7rem);

  color: var(--color-white);

  margin-bottom: 1rem;

}



.about-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.services-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.seo-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.smm-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.ppc-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.webdev-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.about-hero {

  background: var(--color-black-rich);

  padding-top: 6rem;

  height: 75vh;

}



.services-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 85vh;

}



.seo-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.smm-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.ppc-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.ecommerce-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.ecommerce-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.ecom-illustration svg {

  width: 100%;

  height: auto;

  display: block;

}



.webdev-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



/* Logo hero matches SEO hero sizing and gradient heading */

.logo-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.logo-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



/* Brochure hero matches SEO hero styling */

.brochure-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.brochure-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.newspaper-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.newspaper-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.case-study-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.case-study-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.contact-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.contact-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.fm-hero {

  background: var(--color-black-rich);

  padding-top: 7rem;

  height: 75vh;

}



.fm-hero .page-hero-content h1 {

  background: var(--color-gold-gradient);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.smm-hero .page-hero-content {

  text-align: center;

}



.about-hero .page-hero-content {

  position: relative;

  top: 20px;

  text-align: center;

}



.divider {

  width: 80px;

  height: 3px;

  background: var(--color-gold-primary);

  border-radius: 2px;

  margin: 0 auto 2rem;

}



.adv-panel {

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(212, 175, 55, 0.2);

  border-radius: 12px;

  padding: 1.5rem 1.75rem;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);

}



.adv-list {

  list-style: none;

  margin: 0;

  padding: 0;

  font-size: clamp(1.05rem, 1.6vw, 1.25rem);

  line-height: 1.9;

}



.adv-list li {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  padding: 0.35rem 0;

}



.adv-list li i {

  color: var(--color-gold-primary);

  font-size: 1.1rem;

  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.25));

}



.adv-list li span {

  color: var(--color-white);

  opacity: 0.98;

  font-weight: 600;

}



.who-text {

  font-size: 1.15rem;

  max-width: 900px;

  opacity: 0.9;

}



.team-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 2rem;

}



.team-card {

  background: var(--color-gold-primary);

  border: 1px solid rgba(0, 0, 0, 0.15);

  padding: 2.5rem;

  border-radius: 8px;

  transition: transform 0.35s var(--transition-smooth), box-shadow 0.35s var(--transition-smooth);

  position: relative;

  overflow: hidden;

  color: var(--color-black-rich);

  will-change: transform;

}



.team-card .text-gold {

  background: none;

  -webkit-background-clip: initial;

  background-clip: initial;

  color: var(--color-black-rich);

}



.team-card .feature-title {

  color: var(--color-black-rich);

}



.team-card p {

  color: var(--color-black-rich);

  opacity: 1;

}



.features-section.bg-black .team-card .text-gold {

  background: none;

  -webkit-background-clip: initial;

  background-clip: initial;

  color: var(--color-black-rich);

}



.team-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);

}



.avatar {

  width: 72px;

  height: 72px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--color-black-rich);

  color: var(--color-white);

  font-family: var(--font-heading);

  font-weight: 800;

  margin-bottom: 1rem;

}



.avatar i {

  font-size: 1.2rem;

}



.testimonial-quote {

  font-size: 1.2rem;

  max-width: 900px;

  opacity: 0.9;

}



.team-overlay {

  position: absolute;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding: 1.5rem;

  background: var(--color-black-rich);

  border: 1px solid rgba(255, 255, 255, 0.12);

  box-shadow: none;

  transform: translateY(100%);

  opacity: 0;

  transition: all 0.4s var(--transition-smooth);

}



.team-card:hover .team-overlay,

.team-card:focus-within .team-overlay {

  transform: translateY(0);

  opacity: 1;

}



.overlay-top p {

  color: var(--color-white);

  margin-bottom: 1rem;

  max-width: 28ch;

}



.overlay-socials {

  display: inline-flex;

  gap: 0.5rem;

}



.overlay-socials a {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 28px;

  height: 28px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.15);

  color: var(--color-white);

}



.overlay-socials a i {

  font-size: 0.9rem;

}



.overlay-bottom {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 1rem;

  padding: 0.75rem 1rem;

  background: rgba(0, 0, 0, 0.12);

  border-radius: 6px;

}



.overlay-close {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  background: var(--color-gold-primary);

  color: var(--color-black-rich);

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 800;

}



.overlay-name strong {

  color: var(--color-white);

}



.overlay-name span {

  display: block;

  color: rgba(255, 255, 255, 0.8);

  font-size: 0.85rem;

}



.testimonial-author {

  margin-top: 1rem;

  text-align: center;

  color: rgba(255, 255, 255, 0.8);

}



.testimonial-carousel {

  position: relative;

  overflow: hidden;

  padding: 2rem 0 3rem;

}



.testimonial-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 2rem;

}



.testimonial-track {

  display: flex;

  align-items: stretch;

  gap: 2rem;

  will-change: transform;

}



.testimonial-card {

  background: var(--color-gold-primary);

  border: 1px solid rgba(0, 0, 0, 0.15);

  border-radius: 12px;

  padding: 2.5rem 2.75rem;

  min-width: min(820px, 90%);

  margin: 0 auto;

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);

  color: var(--color-black-rich);

}



.testimonial-card--grid {

  min-width: auto;

  padding: 2rem;

}



.testimonial-card .testimonial-quote {

  max-width: 720px;

  color: var(--color-black-rich);

}



.testimonial-card .testimonial-author {

  margin-top: 1rem;

  color: var(--color-black-rich);

}



.testimonial-card .text-gold {

  background: none;

  -webkit-background-clip: initial;

  background-clip: initial;

  color: var(--color-black-rich);

}



.text-white-gradient {

  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.75) 100%);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.hero-tags {

  display: inline-flex;

  gap: 0.75rem;

  align-items: center;

  justify-content: center;

  margin-top: 0.25rem;

  font-family: var(--font-heading);

  text-transform: uppercase;

  letter-spacing: 0.08em;

  color: rgba(255, 255, 255, 0.85);

}



.hero-tags .tags-sep {

  color: var(--color-gold-primary);

}



.hero-cta {

  margin-top: 0.5rem;

}



/* Light theme: hero tags readable on white */

[data-theme="light"] .hero-tags {

  color: #0D0D0D;

}



[data-theme="light"] .hero-tags .tags-sep {

  color: rgba(13, 13, 13, 0.45);

}



.reveal {

  opacity: 1;

  transform: none;

  transition: none;

  will-change: auto;

}



.reveal.is-visible {

  opacity: 1;

  transform: none;

}



.marquee-content {

  will-change: transform;

  animation: marquee-linear 20s linear infinite;

}



@keyframes marquee-linear {

  0% {

    transform: translate3d(0, 0, 0);

  }



  100% {

    transform: translate3d(-50%, 0, 0);

  }

}



@media (prefers-reduced-motion: reduce) {

  * {

    animation-duration: 0.001ms !important;

    animation-iteration-count: 1 !important;

    transition-duration: 0.001ms !important;

  }



  .marquee-content {

    animation: none !important;

  }

}



/* Studies Grid - 2x2 Layout */

.studies-grid {

  grid-template-columns: repeat(2, 1fr);

}



@media (max-width: 768px) {

  .studies-grid {

    grid-template-columns: 1fr;

  }

}



.studies-grid .service-icon-badge {
  width: 100%;
  height: 250px;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}



/* --- Case Study Layout Redesign --- */

.case-study-container {

  display: grid;

  grid-template-columns: 1fr 350px;

  gap: 4rem;

  align-items: start;

  margin-bottom: 5rem;

}



@media (max-width: 992px) {

  .case-study-container {

    grid-template-columns: 1fr;

    gap: 3rem;

  }

}



.case-study-sidebar {

  /* background and border removed as they are now on .cs-info-box */

  position: sticky;

  top: 120px;

}



@media (max-width: 992px) {

  .case-study-sidebar {

    position: static;

    margin-bottom: 3rem;

  }

}



.cs-info-item {

  margin-bottom: 2rem;

}



.cs-info-item:last-child {

  margin-bottom: 0;

}



.cs-info-label {

  font-family: var(--font-heading);

  font-size: 0.9rem;

  color: var(--color-gold-primary);

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 0.5rem;

  display: block;

  font-weight: 600;

}



.cs-info-value {

  font-size: 1.1rem;

  line-height: 1.5;

  color: var(--color-white);

  font-weight: 300;

}



.case-study-main h2 {

  font-size: 2.5rem;

  line-height: 1.2;

  margin-bottom: 2rem;

  color: var(--color-white);

}



.case-study-main h3 {

  font-size: 1.8rem;

  margin-bottom: 1.5rem;

  color: var(--color-gold-primary);

  margin-top: 3rem;

}



.case-study-main h3:first-of-type {

  margin-top: 0;

}



.case-study-main p {

  font-size: 1.1rem;

  line-height: 1.8;

  margin-bottom: 1.5rem;

  color: var(--color-white);

  opacity: 0.9;

}



.case-study-results-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  margin-top: 2rem;

}



.result-card {

  background: var(--color-glass-surface);

  border-left: 4px solid var(--color-gold-primary);

  padding: 1.5rem;

  border-radius: 0 8px 8px 0;

  transition: transform 0.3s ease, background 0.3s ease;

}



.result-card:hover {

  transform: translateX(5px);

  background: var(--color-glass-border);

}



.result-card-text {

  font-size: 1.1rem;

  line-height: 1.5;

  color: var(--color-white);

}



.strategy-list {

  list-style: none;

  padding: 0;

  margin-bottom: 2rem;

}



.strategy-list li {

  margin-bottom: 1rem;

  padding-left: 2rem;

  position: relative;

  font-size: 1.1rem;

  line-height: 1.6;

  color: var(--color-white);

  opacity: 0.9;

}



.strategy-list li::before {

  content: "✓";

  position: absolute;

  left: 0;

  color: var(--color-gold-primary);

  font-weight: bold;

}



/* --- Study Banner Section --- */

.study-banner-section {

  padding: 0;

  background: var(--color-black-rich);

}



.study-banner-img {

  width: 100%;

  border-radius: 0;

  overflow: hidden;

  border: none;

  box-shadow: none;

}



.study-banner-img img {

  width: 100%;

  height: 350px; /* Fixed height for banner look */

  object-fit: cover; /* Fills the container, eliminating black bars */

  display: block;

  transition: transform 0.5s ease;

  object-position: center; /* Centers the image */

}



.study-banner-img:hover img {

  transform: scale(1.02);

}



@media (max-width: 768px) {

  .study-banner-img img {

    height: 200px; /* Smaller height for mobile */

  }

}



/* --- Case Study Sidebar Images --- */

.cs-image-grid-top,

.cs-image-grid-bottom {

  display: grid;

  grid-template-columns: 1fr; /* Changed to single column for better visibility */

  gap: 1.5rem; /* Increased gap */

  margin-bottom: 2rem;

}



.cs-image-grid-bottom {

  margin-top: 2rem;

  margin-bottom: 0;

}



.cs-image-grid-top img,

.cs-image-grid-bottom img {

  width: 100%;

  height: 250px; /* Increased height */

  object-fit: cover;

  border-radius: 8px;

  border: 1px solid rgba(255, 215, 0, 0.1);

  transition: transform 0.3s ease;

}



.cs-image-grid-top img:hover,

.cs-image-grid-bottom img:hover {

  transform: scale(1.05);

}



.cs-info-box {

  background: var(--color-glass-surface);

  border: 1px solid rgba(255, 215, 0, 0.1);

  border-radius: 12px;

  padding: 2rem;

}



/* Study CTA Section */

.study-cta-box {

  margin-top: 6rem;

  padding: 4rem;

  background: var(--color-glass-surface);

  border: 1px solid rgba(255, 215, 0, 0.1);

  border-radius: 12px;

}



.study-cta-title {

  font-size: 2.2rem;

  margin-bottom: 1.5rem;

  color: var(--color-gold-primary);

  font-family: var(--font-heading);

}



.study-cta-desc {

  font-size: 1.2rem;

  line-height: 1.6;

  margin-bottom: 2rem;

  color: var(--color-white);

}



.study-cta-points {

  margin-bottom: 2.5rem;

  font-size: 1.3rem;

  font-weight: 500;

  line-height: 1.8;

}



.study-cta-points p {

  margin-bottom: 0.5rem;

  color: var(--color-white);

}



.study-cta-footer {

  font-size: 1.1rem;

  line-height: 1.6;

  opacity: 0.8;

  color: var(--color-white);

}


[data-theme="light"] #preloader {
  background: #FFFFFF;
}

[data-theme="light"] .loader-text {
  /* Ensure text is visible if gradient fails or for better contrast */
  text-shadow: none;
}

/* =========================================
   Additional Light Theme Overrides (Merged)
   ========================================= */

/* Fix for Color Inversion (Blue issue) */
[data-theme="light"] .hero-content {
  mix-blend-mode: normal;
  color: #000000;
}

[data-theme="light"] .hero-subtitle {
  color: #333333;
}

/* Logo Override */
[data-theme="light"] .logo-img {
  background: transparent;
  box-shadow: none;
}

[data-theme="light"] .logo-name {
  color: #000000; /* Black text */
}

[data-theme="light"] .logo-tagline {
  color: #555555;
  font-weight: 600;
}

/* Buttons Override */
[data-theme="light"] .cta-button {
  border-color: var(--color-gold-primary);
  color: #000000; /* Black Text */
  background: transparent;
  font-weight: 700;
}

[data-theme="light"] .cta-button:hover {
  background: var(--color-gold-primary);
  color: #ffffff; /* White on Hover */
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  border-color: var(--color-gold-primary);
}

/* Theme Toggle Button */
[data-theme="light"] nav .theme-toggle {
  background: #0A0A0A;
  color: #D4AF37;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .theme-toggle:hover {
    color: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
}

/* Specific Section Overrides */
[data-theme="light"] .features-section {
    background-color: #f8f8f8;
}

[data-theme="light"] .stat-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .stat-number {
    color: var(--color-gold-primary);
}

[data-theme="light"] .stat-label {
    color: #000000;
}

[data-theme="light"] .card-dots span {
    background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .card-dots span:nth-child(2) {
    background: var(--color-gold-primary);
}

[data-theme="light"] .service-sidebar {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

[data-theme="light"] .service-menu-link {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    color: #000000;
}

[data-theme="light"] .service-menu-link:hover {
    background: #f8f8f8;
    border-color: var(--color-gold-primary);
    color: #000000;
}

[data-theme="light"] .service-menu-link.active {
    background: var(--color-gold-primary);
    color: #ffffff;
}

/* Text Selection Color */
[data-theme="light"] ::selection {
  background: var(--color-gold-primary);
  color: #ffffff;
}

/* Ensure Text Gold is visible and correct */
[data-theme="light"] .text-gold {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* Fallback managed by background */
  text-shadow: none;
}

[data-theme="light"] .tags-sep {
  color: rgba(0, 0, 0, 0.3);
}

/* Team Section Light Theme Overrides */
[data-theme="light"] .team-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

[data-theme="light"] .team-card h3 {
  color: #000000;
}

[data-theme="light"] .team-card p {
  color: var(--color-gold-dark);
}

[data-theme="light"] .avatar {
  background: #f8f8f8;
}

/* Testimonial Section Light Theme Overrides */
[data-theme="light"] .testimonial-card {
  background: var(--color-gold-primary);
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  color: var(--color-black-rich);
}

[data-theme="light"] .testimonial-quote {
  color: #333333;
}

[data-theme="light"] .testimonial-author {
  color: #666666;
}

/* Services Light Theme */
[data-theme="light"] .service-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .service-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

[data-theme="light"] .service-title {
    color: #000000;
}

[data-theme="light"] .service-desc {
    color: rgba(0, 0, 0, 0.7);
}

/* SEO / Service Page Overrides */

[data-theme="light"] .step-circle {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: var(--color-gold-primary);
}

[data-theme="light"] .workflow-step:hover .step-circle {
    color: #ffffff;
}

[data-theme="light"] .package-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

[data-theme="light"] .package-card:hover {
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

[data-theme="light"] .package-name {
    color: #000000;
}

[data-theme="light"] .package-sub {
    color: rgba(0,0,0,0.6);
}

[data-theme="light"] .package-features li {
    color: rgba(0,0,0,0.7);
}

[data-theme="light"] .adv-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.05);
}

[data-theme="light"] .adv-card:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   Responsive Navigation Styles
   ========================================================================== */

/* Hamburger Menu Button - Default Hidden */
#nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    margin-left: 1rem;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-gold-primary);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    #nav-toggle {
        display: flex;
    }

    /* Adjust nav-actions to align toggle */
    .nav-actions {
        gap: 0.5rem;
    }

    nav .theme-toggle {
        margin-left: 0;
    }

    /* Mobile Menu Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-black-rich);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
        padding-top: 60px;
    }

    /* Light Theme Mobile Menu Override */
    [data-theme="light"] .nav-links {
        background-color: #FFFFFF;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    [data-theme="light"] .nav-links .nav-link {
        color: #000000;
    }
    
    /* Open State */
    nav.open .nav-links {
        right: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    /* Nav Link Styles in Mobile */
    .nav-links .nav-link {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    nav.open .nav-links .nav-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    nav.open .nav-links .nav-link:nth-child(1) { transition-delay: 0.1s; }
    nav.open .nav-links .nav-link:nth-child(2) { transition-delay: 0.2s; }
    nav.open .nav-links .nav-link:nth-child(3) { transition-delay: 0.3s; }
    nav.open .nav-links .nav-link:nth-child(4) { transition-delay: 0.4s; }
    nav.open .nav-links .nav-link:nth-child(5) { transition-delay: 0.5s; }

    /* Hamburger Animation */
    nav.open #nav-toggle .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    nav.open #nav-toggle .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    nav.open #nav-toggle .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #13120F;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-content a {
    color: #CCCCCC;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    width: 100%;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-gold-primary);
    padding-left: 25px;
}

/* Light Theme Dropdown */
[data-theme="light"] .dropdown-content {
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .dropdown-content a {
    color: #333333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .dropdown-content a:hover {
    background-color: #F9F9F9;
    color: var(--color-gold-primary);
}

/* Ensure dropdown works well with nav layout */
.nav-links {
    overflow: visible !important;
}

/* Dropdown Active State (for click toggle) */
.dropdown.active .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mobile Dropdown Overrides */
@media (max-width: 768px) {
    .dropdown {
        flex-direction: column;
        width: 100%;
        height: auto; /* Reset height */
    }

    .dropdown-content {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        min-width: auto;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        padding: 0;
        margin-top: 10px;
        display: none;
        opacity: 1;
        visibility: visible;
        border-radius: 8px;
    }
    
    .dropdown.active .dropdown-content {
        display: flex;
        transform: none;
        animation: slideDown 0.3s ease forwards;
    }

    .dropdown-content a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: inherit;
    }

    [data-theme="light"] .dropdown-content {
        background: rgba(0, 0, 0, 0.03);
    }
    
    [data-theme="light"] .dropdown-content a {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
