/* ============================================================
   OLUWADEMILADE A. ONIFADE — Portfolio CSS
   Replicates uzorsydney.tech layout with cybersecurity theme
   ============================================================ */

/* ── Google Fonts loaded in HTML ── */

/* ══════════════════════════════════════════════
   0. ROOT VARIABLES
══════════════════════════════════════════════ */
:root {
  --primary:       #bef264;
  --primary-dark:  #a3e635;
  --primary-light: #d9f99d;
  --dark:          #ffffff;
  --darker:        #000000;
  --text:          #94a3b8; /* Uzor uses a slightly more muted text color */
  --text-muted:    #64748b;
  --white:         #0a0a0a;
  --section-bg:    #000000; /* Uzor's sections are mostly pure black */
  --section-dark:  #000000;
  --border:        rgba(255, 255, 255, 0.05);
  --font-head:     'Inter Tight', sans-serif;
  --font-body:     'Jost', sans-serif;
  --tr:            all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow:        0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:     0 14px 48px rgba(0,0,0,.13);
  --radius:        16px;
}


/* ══════════════════════════════════════════════
   1. BASE RESET & BODY
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a { text-decoration: none; color: inherit; transition: var(--tr); }

ul { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.section-padding { 
  padding: 120px 0; 
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 Q 50 150 200 100 T 400 150 T 600 100 T 800 150 T 1000 100' fill='none' stroke='rgba(255, 255, 255, 0.03)' stroke-width='1'/%3E%3Cpath d='M10 110 Q 50 250 200 200 T 400 250 T 600 200 T 800 250 T 1000 200' fill='none' stroke='rgba(255, 255, 255, 0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 1000px 1000px;
  pointer-events: none;
  z-index: 0;
}

.fix { overflow: hidden; }

/* ══════════════════════════════════════════════
   BACKGROUND DECORATIONS
══════════════════════════════════════════════ */
.bg-decorations {
  position: fixed;
  inset: 0;
  z-index: 0; /* Base layer */
  pointer-events: none;
  overflow: hidden;
  background: #000000; /* Move body background here */
}

/* Noise Overlay (Optimized: Static repeating pattern is injected via main.js to avoid expensive dynamic SVG filters) */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000; /* Topmost, even above preloader if needed */
  opacity: 0.04;
  pointer-events: none;
  background-repeat: repeat;
}

/* Floating Glows */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
  contain: layout style;
}

.glow-1 {
  width: 50vw;
  height: 50vw;
  background: var(--primary);
  top: -10%;
  left: -10%;
}

.glow-2 {
  width: 40vw;
  height: 40vw;
  background: #3b82f6;
  bottom: 10%;
  right: -5%;
}

.glow-3 {
  width: 30vw;
  height: 30vw;
  background: #8b5cf6;
  top: 40%;
  left: 30%;
}

/* Content should be above bg-decorations */
header, main, section, footer, .preloader, .loader-curtain {
  position: relative;
  z-index: 2;
}

/* body background and overflow-x already set in section 1 above */

/* GPU acceleration only on background, not body (would break position:fixed) */
.bg-decorations {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}




/* Marquee styles defined in section 8 below */


/* Footer styles defined in sections 16 and 18 below */

.footer-top {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo img { height: 50px; margin-bottom: 20px; }

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: var(--tr);
  letter-spacing: 0.5px;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(190,242,100,0.05);
}

.footer-widget h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list-items li {
  margin-bottom: 14px;
}

.footer-list-items li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-list-items li a::before {
  content: '→';
  color: var(--primary);
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--tr);
}

.footer-list-items li a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.footer-list-items li a:hover::before { opacity: 1; transform: translateX(0); }

.footer-bottom {
  padding: 24px 0;
}

.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-wrapper p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.footer-bottom-wrapper p span { color: var(--primary); }

.footer-list {
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.footer-list li a {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  transition: var(--tr);
}

.footer-list li a:hover { color: var(--primary); }





/* ══════════════════════════════════════════════
   2. PRELOADER & OPENING EFFECT
══════════════════════════════════════════════ */

.preloader, #preloader {
  position: fixed;
  inset: 0;
  z-index: 100002;
  background: transparent; /* Transparent so the loader sliding panels are visible underneath */
  display: flex;
  align-items: center;
  justify-content: center;
}

.animation-preloader {
  text-align: center;
  z-index: 100003;
  position: relative;
}

/* Arc Spinner */
.spinner {
  width: 90px;
  height: 90px;
  border: 2px solid rgba(190, 242, 100, 0.1);
  border-top: 2px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  margin: 0 auto 30px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ════════════════════════════════════════
   Uzor-Style Symmetrical Split Curtain Panels
════════════════════════════════════════ */
.preloader .loader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.preloader .loader .row {
  height: 100%;
  margin: 0;
}

.preloader .loader .loader-section {
  padding: 0;
  height: 100%;
}

.preloader .loader .loader-section .bg {
  height: 100%;
  width: 100%;
  background: #000000;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Symmetrical Staggered delays for the 4 panels */
.preloader .loader .loader-section:nth-child(1) .bg { transition-delay: 0.1s; }
.preloader .loader .loader-section:nth-child(2) .bg { transition-delay: 0.3s; }
.preloader .loader .loader-section:nth-child(3) .bg { transition-delay: 0.3s; }
.preloader .loader .loader-section:nth-child(4) .bg { transition-delay: 0.1s; }

/* Slipped Loaded Translation States (Slide to sides) */
.loaded .preloader .loader .loader-section.section-left .bg {
  transform: translateX(-101%);
}

.loaded .preloader .loader .loader-section.section-right .bg {
  transform: translateX(101%);
}

/* ════════════════════════════════════════
   Sleek & Optimized letters-loading Text
════════════════════════════════════════ */
.animation-preloader .txt-loading {
  font-family: 'Syne', 'Inter Tight', sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.08); /* Base letter color (dim/cyber text) */
  user-select: none;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.animation-preloader .txt-loading .letters-loading {
  position: relative;
  display: inline-block;
}

/* Animated sweeping text highlight - cyber glow lime */
.animation-preloader .txt-loading .letters-loading::before {
  content: attr(data-text-preloader);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary);
  opacity: 0;
  transform: rotateY(-90deg);
  animation: letters-loading 4s infinite;
  text-shadow:
    0 0 10px rgba(190, 242, 100, 0.8),
    0 0 20px rgba(190, 242, 100, 0.4);
}

/* Timed stagger for D_ZEROTRACE (11 letters) */
.animation-preloader .txt-loading .letters-loading:nth-child(1)::before  { animation-delay: 0.0s; }
.animation-preloader .txt-loading .letters-loading:nth-child(2)::before  { animation-delay: 0.15s; }
.animation-preloader .txt-loading .letters-loading:nth-child(3)::before  { animation-delay: 0.3s; }
.animation-preloader .txt-loading .letters-loading:nth-child(4)::before  { animation-delay: 0.45s; }
.animation-preloader .txt-loading .letters-loading:nth-child(5)::before  { animation-delay: 0.6s; }
.animation-preloader .txt-loading .letters-loading:nth-child(6)::before  { animation-delay: 0.75s; }
.animation-preloader .txt-loading .letters-loading:nth-child(7)::before  { animation-delay: 0.9s; }
.animation-preloader .txt-loading .letters-loading:nth-child(8)::before  { animation-delay: 1.05s; }
.animation-preloader .txt-loading .letters-loading:nth-child(9)::before  { animation-delay: 1.2s; }
.animation-preloader .txt-loading .letters-loading:nth-child(10)::before { animation-delay: 1.35s; }
.animation-preloader .txt-loading .letters-loading:nth-child(11)::before { animation-delay: 1.5s; }

@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* === -DIGITAL SHADOWS- Subtitle === */
.preloader-subtitle {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(0.75rem, 2.5vw, 1rem);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #7a6fcf;
  text-shadow: 0 0 8px rgba(122, 111, 207, 0.4);
  opacity: 0.8;
  animation: subtitle-fade 3s ease-in-out infinite;
}

@keyframes subtitle-fade {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1;   }
}

/* === -UNSEEN, UNHEARD, UNTRACEABLE- Tagline === */
.preloader-tagline {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(0.65rem, 2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: 0 0 8px rgba(190, 242, 100, 0.4);
  opacity: 0.6;
  animation: tagline-fade 2.8s ease-in-out infinite;
}

@keyframes tagline-fade {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.9;   }
}

.loading-status {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Typed.js Cursor Styling */
.typed-cursor {
  color: var(--primary) !important;
  font-weight: 200;
  margin-left: 2px;
  will-change: opacity;
}


/* ══════════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════════ */
.pricing-section { background: #000000; }

.price-item {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 40px;
  border-radius: 32px;
  height: 100%;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}

.price-item.active {
  border-color: var(--primary);
  background: #080808;
}

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

.popular-tag {
  background: var(--primary);
  color: #000000;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}

.price-header h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.price-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.price-header h3 span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-header p {
  font-size: 0.9rem;
  margin-bottom: 30px;
  color: var(--text-muted);
}

.price-list {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.price-list li i {
  color: var(--primary);
  font-size: 0.8rem;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: #000000;
}

.btn-lime {
  background: var(--primary);
  color: #000000;
}




/* ══════════════════════════════════════════════
   3. MOUSE CURSOR
══════════════════════════════════════════════ */
.mouse-cursor {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999999; /* Highest possible */
  will-change: transform;
}


.cursor-outer {
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--primary);
  margin-left: -12px;
  margin-top: -12px;
  transition: width .3s ease, height .3s ease, opacity .3s ease, border-color .3s ease;
}

.cursor-inner {
  width: 4px;
  height: 4px;
  background: var(--primary);
  margin-left: -2px;
  margin-top: -2px;
}


.cursor-outer.cursor-hover { 
  width: 64px; 
  height: 64px; 
  margin-left: -32px; 
  margin-top: -32px; 
  opacity: .15; 
  background: var(--primary);
}


/* ══════════════════════════════════════════════
   4. BACK TO TOP
══════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 52px;
  height: 52px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.23,1,0.32,1), background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(190, 242, 100, 0.35);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: #d4ff5c;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 8px 32px rgba(190, 242, 100, 0.55), 0 0 0 6px rgba(190, 242, 100, 0.12);
}

.back-to-top:active {
  transform: translateY(-2px) scale(0.97);
}

.back-to-top i {
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}

.back-to-top:hover i {
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   5. OFFCANVAS / SIDEBAR
══════════════════════════════════════════════ */
.fix-area {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100vh;
  z-index: 99990;
  transition: right .45s cubic-bezier(.77,0,.18,1);
}

.fix-area.open { right: 0; }

.offcanvas__info {
  background: var(--white);
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-shadow: -10px 0 50px rgba(0,0,0,.12);
}

.offcanvas__wrapper { padding: 40px 36px; }

.offcanvas__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.offcanvas__logo img { height: 40px; }

.offcanvas__close button {
  background: none;
  border: 2px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
}

.offcanvas__close button:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.offcanvas__contact h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.offcanvas__contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.offcanvas__contact-icon {
  width: 40px;
  height: 40px;
  background: var(--section-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.offcanvas__contact-text a {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.offcanvas__contact-text a:hover { color: var(--primary); }

.offcanvas__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99989;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr);
}

.offcanvas__overlay.show { opacity: 1; visibility: visible; }

.offcanvas__contact .social-icon {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.offcanvas__contact .social-icon a {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.85rem;
  transition: var(--tr);
}

.offcanvas__contact .social-icon a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Mobile Menu (inside offcanvas) */
.mobile-menu ul { padding: 0; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li a {
  display: block;
  padding: 13px 0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.mobile-menu ul li a:hover { color: var(--primary); padding-left: 8px; }
.mobile-menu ul li ul { padding-left: 16px; }
.mobile-menu ul li ul li { border-bottom: none; }
.mobile-menu ul li ul li a { font-size: 0.875rem; font-weight: 400; padding: 8px 0; }

/* ══════════════════════════════════════════════
   6. HEADER / NAVIGATION
══════════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  background: transparent;
  transition: var(--tr);
  padding: 20px 0;
}

header.sticky {
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
  padding: 12px 0;
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

.header-main .logo {
  display: flex;
  justify-content: flex-start;
}

.header-main .mean__menu-wrapper {
  display: flex;
  justify-content: center;
}

.header-main .header-right {
  display: flex;
  justify-content: flex-end;
}


.logo img { height: 44px; }

.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

header.sticky .logo-text { color: #ffffff; }

.main-menu nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-menu nav ul li a {
  font-weight: 600;
  font-size: 0.92rem;
  color: #ffffff !important;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 4px;
}

header.sticky .main-menu nav ul li a { color: #ffffff !important; }

.main-menu nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--tr);
}

.main-menu nav ul li a:hover { color: var(--primary); }
.main-menu nav ul li a:hover::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }

.submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--tr);
}

.has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text) !important;
  font-size: 0.875rem !important;
}

.submenu li a:hover { color: var(--primary) !important; padding-left: 28px; }

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #000 !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: var(--tr);
  cursor: pointer;
}

.theme-btn:hover {
  background: transparent;
  color: var(--primary) !important;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,.25);
}

.theme-btn.btn-outline {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
}

.theme-btn.btn-outline:hover {
  background: var(--primary);
  color: #000000 !important;
  border-color: var(--primary);
}

/* Hamburger */
.header__hamburger {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 8px;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--tr);
}

header.sticky .header__hamburger { border-color: var(--border); color: var(--text); }
.header__hamburger:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ══════════════════════════════════════════════
   7. HERO SECTION (UZOR-STYLE)
══════════════════════════════════════════════ */
.hero-section {
  height: 100vh;
  background: #000000;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-section > .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 960px;
  padding: 0 20px;
  z-index: 10;
  text-align: center;
}

/* Topographic Waves Background */
.hero-waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.wave {
  position: absolute;
  width: 150%;
  height: 150%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10 Q 50 150 200 100 T 400 150 T 600 100 T 800 150 T 1000 100' fill='none' stroke='rgba(190, 242, 100, 0.08)' stroke-width='2'/%3E%3Cpath d='M10 110 Q 50 250 200 200 T 400 250 T 600 200 T 800 250 T 1000 200' fill='none' stroke='rgba(190, 242, 100, 0.08)' stroke-width='2'/%3E%3Cpath d='M10 210 Q 50 350 200 300 T 400 350 T 600 300 T 800 350 T 1000 300' fill='none' stroke='rgba(190, 242, 100, 0.08)' stroke-width='2'/%3E%3Cpath d='M10 310 Q 50 450 200 400 T 400 450 T 600 400 T 800 450 T 1000 400' fill='none' stroke='rgba(190, 242, 100, 0.08)' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 800px 800px;
  opacity: 0.8;
}

.wave-1 { top: -20%; right: -20%; transform: rotate(15deg); }
.wave-2 { bottom: -20%; left: -20%; transform: rotate(-15deg); }

/* Vertical Social Sidebar */
.hero-info {
  position: absolute;
  left: 80px; /* Moved inward from 40px */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 10;
}

.hero-info a {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--tr);
}

.hero-info a:hover { color: var(--primary); }

.social-line {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
  position: relative;
}

.social-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -1px;
  width: 3px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}

/* Typography (Inter Tight) */

.hero-content h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(1.2rem, 8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-align: center;
}



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



.hero-content .main-title { 
  display: block; 
  color: #ffffff; 
  margin-bottom: 5px;
}


.title-row-2 {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


.hero-content .outline-text {
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.35);
}

.hero-content .color-primary {
  display: block;
  color: var(--primary);
}

.hero-content .text-2 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}



/* Decorative Arrows */
.swirl-wrapper {
  position: relative;
  display: inline-block;
  transform: translateY(-20px);
}

.swirl-arrow {
  animation: floatArrow 4s infinite ease-in-out;
}

@keyframes floatArrow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -10px) rotate(10deg); }
}

.btn-arrow {
  position: absolute;
  left: -60px;
  top: -40px;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.1);
  transform: rotate(-10deg);
  pointer-events: none;
}

.hero-btn-wrapper {
  position: relative;
  display: inline-block;
}

.hero-bottom p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto 50px;


}


/* Star/badge shape */
.star-badge {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--primary);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  flex-shrink: 0;
}

/* Float animation */
@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.float-bob-y { animation: floatBob 3s ease-in-out infinite; will-change: transform; transform: translateZ(0); }

@keyframes floatBobX {
  0%,100% { transform: translateX(0); }
  50%      { transform: translateX(12px); }
}
.float-bob-x { animation: floatBobX 3.5s ease-in-out infinite; will-change: transform; transform: translateZ(0); }

/* ══════════════════════════════════════════════
   8. MARQUEE SECTION
══════════════════════════════════════════════ */
.marquee-section {
  background: #050505;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  align-items: center;
  animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-text {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 60px;
}

.marquee-text h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-star {
  width: 15px;
  height: 15px;
  background: var(--primary);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ══════════════════════════════════════════════
   9. SECTION TITLES
══════════════════════════════════════════════ */
.section-title {
  margin-bottom: 60px;
}

.section-title span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.section-title h2 span { color: var(--primary); }

/* ══════════════════════════════════════════════
   10. ABOUT SECTION
══════════════════════════════════════════════ */
.about-box-item {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 60px 40px;
  transition: var(--tr);
  position: relative;
  z-index: 1;
}

.about-box-item:hover {
  border-color: var(--primary);
  transform: translateY(-10px);
  background: #080808;
}

.about-box-item h2 {
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 20px;
}

.about-box-item h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
}

.about-box-item h3 span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ══════════════════════════════════════════════
   11. SERVICES SECTION
══════════════════════════════════════════════ */
.services-item {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--tr);
  position: relative;
  z-index: 1;
}

.services-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.services-item:hover {
  background: rgba(190, 242, 100, 0.02);
  padding-left: 30px;
}

.services-item .num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.3;
  font-weight: 800;
}

.services-item h3 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  flex: 1;
  margin-left: 40px;
}

.services-item .icon-btn {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  transition: var(--tr);
}

.services-item:hover .icon-btn {
  background: var(--primary);
  color: #000000;
  transform: rotate(-45deg);
  border-color: var(--primary);
}

/* ══════════════════════════════════════════════
   12. PORTFOLIO / PROJECTS
══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════
   12. PORTFOLIO / PROJECTS (PREMIUM FUTURISTIC UPGRADE)
   ============================================================ */
.project-items {
  background: rgba(5, 5, 5, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Glassmorphism reflection highlight */
.project-items::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 2;
}

.project-items:hover {
  transform: translateY(-8px);
}

.project-items .image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Base icon styled inside dynamic cards */
.project-items .image i {
  font-size: 4.5rem;
  z-index: 3;
  filter: drop-shadow(0 0 15px currentColor);
  transition: all 0.5s ease;
}

.project-items:hover .image i {
  transform: scale(1.1) translateZ(0);
}

.project-items .content {
  padding: 30px;
  background: rgba(0, 0, 0, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  z-index: 3;
}

.project-items .text {
  flex: 1;
}

.project-items .text span {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.project-items .text h4 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* Custom indicator lab/work badges */
.lab-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

/* Active badges on hover */
.project-items:hover .lab-badge {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(190, 242, 100, 0.4);
}


/* ══════════════════════════════════════════════
   SPECIFIC CYBER CARD THEMES
   ============================================================ */

/* 1. Emerald green */
.cyber-card-emerald {
  border-color: rgba(16, 185, 129, 0.15);
}
.cyber-card-emerald .image {
  background: linear-gradient(135deg, #020617 0%, #022c22 100%);
}
.cyber-card-emerald .image i {
  color: #10b981;
}
.cyber-card-emerald .text span {
  color: #10b981;
}
.cyber-card-emerald:hover {
  border-color: #10b981;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.18), inset 0 0 20px rgba(16, 185, 129, 0.08);
}

/* 2. Navy/Terminal Blue */
.cyber-card-blue {
  border-color: rgba(59, 130, 246, 0.15);
}
.cyber-card-blue .image {
  background: linear-gradient(135deg, #020617 0%, #0a2540 100%);
}
.cyber-card-blue .image i {
  color: #3b82f6;
}
.cyber-card-blue .text span {
  color: #3b82f6;
}
.cyber-card-blue:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.18), inset 0 0 20px rgba(59, 130, 246, 0.08);
}

/* 3. Deep Purple */
.cyber-card-purple {
  border-color: rgba(139, 92, 246, 0.15);
}
.cyber-card-purple .image {
  background: linear-gradient(135deg, #020617 0%, #2e1065 100%);
}
.cyber-card-purple .image i {
  color: #8b5cf6;
}
.cyber-card-purple .text span {
  color: #8b5cf6;
}
.cyber-card-purple:hover {
  border-color: #8b5cf6;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.18), inset 0 0 20px rgba(139, 92, 246, 0.08);
}

/* 4. Crimson Red */
.cyber-card-red {
  border-color: rgba(239, 68, 68, 0.15);
}
.cyber-card-red .image {
  background: linear-gradient(135deg, #020617 0%, #450a0a 100%);
}
.cyber-card-red .image i {
  color: #ef4444;
}
.cyber-card-red .text span {
  color: #ef4444;
}
.cyber-card-red:hover {
  border-color: #ef4444;
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.18), inset 0 0 20px rgba(239, 68, 68, 0.08);
}

/* 5. Electric Cyan */
.cyber-card-cyan {
  border-color: rgba(6, 182, 212, 0.15);
}
.cyber-card-cyan .image {
  background: linear-gradient(135deg, #020617 0%, #083344 100%);
}
.cyber-card-cyan .image i {
  color: #06b6d4;
}
.cyber-card-cyan .text span {
  color: #06b6d4;
}
.cyber-card-cyan:hover {
  border-color: #06b6d4;
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.18), inset 0 0 20px rgba(6, 182, 212, 0.08);
}


/* ══════════════════════════════════════════════
   HUD ANIMATED DECORATION OVERLAYS
   ============================================================ */

/* Emerald Scanning Overlay Line */
.hud-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  box-shadow: 0 0 8px #10b981;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.project-items:hover .hud-scan-line {
  animation: scanningSweep 3s linear infinite;
  opacity: 0.8;
}

@keyframes scanningSweep {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Terminal Monospace text layer (Blue Card) */
.terminal-overlay {
  position: absolute;
  inset: 15px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.65rem;
  color: rgba(59, 130, 246, 0.18);
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
  text-align: left;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.project-items:hover .terminal-overlay {
  color: rgba(59, 130, 246, 0.35);
}

/* Floating Particles (Purple Card) */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.particle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8b5cf6;
  opacity: 0.3;
  animation: floatParticle 6s infinite linear;
}

.particle-dot:nth-child(1) { left: 20%; bottom: -10px; animation-delay: 0s; animation-duration: 5s; }
.particle-dot:nth-child(2) { left: 50%; bottom: -10px; animation-delay: 1.5s; animation-duration: 7s; }
.particle-dot:nth-child(3) { left: 80%; bottom: -10px; animation-delay: 3s; animation-duration: 6s; }

@keyframes floatParticle {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-160px) scale(0.5); opacity: 0; }
}

/* Circular crosshair overlay (Cyan Card) */
.crosshair-container {
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px dashed rgba(6, 182, 212, 0.12);
  border-radius: 50%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.5s ease;
}

.crosshair-inner {
  width: 90px;
  height: 90px;
  border: 1px solid rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  position: relative;
  animation: spinRadar 12s linear infinite;
}

.crosshair-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  right: -10px;
  height: 1px;
  background: rgba(6, 182, 212, 0.1);
}

.crosshair-inner::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -10px;
  bottom: -10px;
  width: 1px;
  background: rgba(6, 182, 212, 0.1);
}

.project-items:hover .crosshair-container {
  border-color: rgba(6, 182, 212, 0.3);
  transform: scale(1.1);
}
.project-items:hover .crosshair-inner {
  border-color: rgba(6, 182, 212, 0.2);
}

@keyframes spinRadar {
  to { transform: rotate(360deg); }
}

/* Graphite Red Dashboard Outlines */
.dashboard-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(239, 68, 68, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(239, 68, 68, 0.03) 1px, transparent 1px);
  background-size: 15px 15px;
  pointer-events: none;
  z-index: 1;
  transition: all 0.4s ease;
}

.project-items:hover .dashboard-grid {
  background-image: linear-gradient(rgba(239, 68, 68, 0.07) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(239, 68, 68, 0.07) 1px, transparent 1px);
}

/* ══════════════════════════════════════════════
   13. EXPERIENCE SECTION
══════════════════════════════════════════════ */
.experience-items {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  transition: var(--tr);
}

.experience-items:first-child { border-top: 1px solid rgba(255, 255, 255, 0.05); }

.experience-items:hover { padding-left: 20px; background: rgba(255, 255, 255, 0.01); }

.experience-items span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
}

.experience-items h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.experience-items h6 {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: right;
}


/* Skills grid */
.client-wrapper { }

.client-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.client-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--tr);
}

.client-item:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.client-item .icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-bg);
  border-radius: 12px;
}




.client-item h4.number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
}

.client-item h4.number .text {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════
   14. AWARDS / CERTIFICATES SECTION
══════════════════════════════════════════════ */
.awards-section { background: var(--white); position: relative; }

.awards-wrapper { }

.awards-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--section-bg);
  border: 1px solid transparent;
  transition: var(--tr);
  margin-bottom: 16px;
}

.awards-item:last-child { margin-bottom: 0; }

.awards-item:hover {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.awards-item .content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.awards-item .content .icon {
  width: 52px;
  height: 52px;
  background: rgba(34,197,94,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.awards-item .content .text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.awards-item .content .text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.awards-item > .icon {
  color: var(--primary);
  font-size: 1.2rem;
  opacity: .5;
  transition: var(--tr);
}

.awards-item:hover > .icon { opacity: 1; transform: rotate(45deg); }

/* ══════════════════════════════════════════════
   15. TESTIMONIALS / CERTIFICATIONS SECTION
══════════════════════════════════════════════ */
.testimonials-section { background: #000000; position: relative; overflow: hidden; }

.testimonials-section .section-title span { color: var(--primary); }
.testimonials-section .section-title h2 { color: #ffffff; }
.testimonials-section .section-title h2 span { color: var(--primary); }

.reviews {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
}

/* ══════════════════════════════════════════════
   15. TESTIMONIALS - PREMIUM DESIGN
══════════════════════════════════════════════ */
.testimonials-section { 
  background: #000000; 
  position: relative;
  overflow: hidden;
  background-image: 
    linear-gradient(rgba(190, 242, 100, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 242, 100, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}


.testimonials-section .section-title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonials-section .section-title span i { font-size: 1.2rem; }

.testimonials-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #ffffff;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.testimonials-section h2 span { color: var(--primary); }

.header-ring {
  position: absolute;
  top: -20px;
  right: -50px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(190, 242, 100, 0.3);
  border-radius: 50%;
}

.header-ring .dot {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}

/* Rating Box */
.rating-box {
  background: #111111;
  border-radius: 16px;
  padding: 40px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,.05);
}

.rating-box h2 { font-size: 4rem; font-weight: 800; color: #ffffff; margin: 0; line-height: 1; }

.rating-box .info span {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.rating-box .stars { color: #fbbf24; font-size: 1.1rem; display: flex; gap: 4px; }

/* Testimonial Stacked Cards */
.testimonial-card-stack {
  position: relative;
  padding: 0;
  max-width: 100%;
}

.testimonial-box-items {
  background: #111111;
  border: 1.5px solid rgba(190, 242, 100, 0.15);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  transition: var(--tr);
}


.testimonial-box-items::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-box-items::after {
  content: '';
  position: absolute;
  top: 36px;
  right: 36px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.client-info .pfp {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  overflow: hidden;
}

.client-info h5 { color: #ffffff; font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.client-info p { color: rgba(255,255,255,.5); font-size: 0.9rem; }

.testi-content { position: relative; }

.testi-content .quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: block;
}

.testi-content p {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 400;
}

/* Custom Swiper Pagination */
.testimonial-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.2);
  opacity: 1;
  transition: var(--tr);
  margin: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(190, 242, 100, 0.2);
  transform: scale(1.2);
}


/* ══════════════════════════════════════════════
   16. FOOTER
══════════════════════════════════════════════ */
footer {
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

/* Footer marquee */



/* ══════════════════════════════════════════════
   FOOTER MARQUEE
══════════════════════════════════════════════ */
.mycustom-marque {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #000000;
  overflow: hidden;
  display: flex;
}

.scrolling-wrap {
  display: flex;
  white-space: nowrap;
}

.scrolling-wrap.style-2 {
  animation: scroll-footer 40s linear infinite;
}

.comm {
  display: flex;
  align-items: center;
}

.cmn-textslide {
  font-family: var(--font-head);
  font-size: clamp(2rem, 7vw, 5.5rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  transition: var(--tr);
  margin-right: 40px;
}

.comm:hover .cmn-textslide {
  color: var(--primary);
  -webkit-text-stroke: 1px var(--primary);
}

@keyframes scroll-footer {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}



/* Footer content */
.footer-widget-wrapper { padding: 40px 0 24px; }

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

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo-text span { color: var(--primary); }

.footer-list-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin-bottom: 24px;
}

.footer-list-items li a,
.footer-list-items li span {
  color: rgba(255,255,255,.55);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--tr);
  cursor: pointer;
}

.footer-list-items li a:hover,
.footer-list-items li span:hover { color: var(--primary); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  border: 1.5px solid rgba(255,255,255,.1);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--tr);
}

.footer-social a i { font-size: 0.85rem; }

.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}

.footer-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-wrapper p {
  color: rgba(255,255,255,.4);
  font-size: 0.875rem;
}

.footer-bottom-wrapper p span { color: var(--primary); font-weight: 600; }

.footer-list {
  display: flex;
  gap: 24px;
}

.footer-list li a {
  color: rgba(255,255,255,.4);
  font-size: 0.875rem;
  transition: var(--tr);
}

.footer-list li a:hover { color: var(--primary); }

/* ══════════════════════════════════════════════
   17. BLOG SECTION
══════════════════════════════════════════════ */
.blog-section { background: #000000; }

.blog-card {
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--tr);
}

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

.blog-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.blog-card:hover .blog-image img { transform: scale(1.1); }

.blog-content {
  padding: 30px;
}

.blog-content .meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-content .meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-content h4 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
}

/* ══════════════════════════════════════════════
   18. FOOTER
══════════════════════════════════════════════ */
footer {
  background: #000000;
  padding: 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.footer-social a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  transition: var(--tr);
}

.footer-social a:hover { color: var(--primary); }

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom p span { color: #ffffff; }

/* ══════════════════════════════════════════════
   19. SECTION-BG ALTERNATION
══════════════════════════════════════════════ */
.section-bg   { background: #000000 !important; }
.section-bg-2 { background: #050505 !important; }
.body-color   { background: #000000; }


/* ══════════════════════════════════════════════
   18. WOW / ANIMATE.CSS OVERRIDES
══════════════════════════════════════════════ */
.wow { visibility: hidden; }

/* ══════════════════════════════════════════════
   19. RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1199px) {
  .main-menu { display: none; }
  .header-right .theme-btn { display: none; }
  .hero-info { display: none; }
}

@media (max-width: 991px) {
  .hero-info { display: none !important; }
  .section-padding { padding: 72px 0; }
  .services-item { grid-template-columns: auto 1fr; gap: 20px; }
  .services-item .text { display: none; }
  .section-title-area { flex-direction: column; align-items: flex-start; }
  .experience-items { grid-template-columns: 60px 1fr; }
  .experience-items h6 { display: none; }
}

@media (max-width: 767px) {
  .section-padding { padding: 56px 0; }
  .hero-content h1 { font-size: 2.2rem; }
  .about-box-item { padding: 32px 24px; }
  .about-box-item h2 { font-size: 2.5rem; }
  .services-item { grid-template-columns: 1fr; gap: 12px; }
  .services-item .link-btn { display: none; }
  .client-items { grid-template-columns: repeat(2, 1fr); }
  .awards-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-wrapper { justify-content: center; text-align: center; }
  .sub-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .client-items { grid-template-columns: 1fr; }
  .reviews { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════
   20. SCROLLBAR STYLING
══════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--section-bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ══════════════════════════════════════════════
   21. SELECTION COLOR
══════════════════════════════════════════════ */
::selection { background: var(--primary); color: var(--dark); }

/* ══════════════════════════════════════════════
   22. MISSING UTILITY CLASSES
══════════════════════════════════════════════ */

/* Section title area — two-column flex used in About & Portfolio */
.section-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.section-title-area .section-title { margin-bottom: 0; }

.section-title-area .content {
  max-width: 420px;
  flex-shrink: 0;
}

.section-title-area .content p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Wrapper elements */
.about-wrapper-1 { margin-top: 60px; }

.service-wrapper {
  position: relative;
  z-index: 1;
}

.project-wrapper { margin-top: 20px; }

.experience-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 0;
}

.awards-wrapper { position: relative; z-index: 1; }

/* Large background sub-title text (Services section) */
.sub-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: -30px;
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

/* Blog read-more link */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  margin-top: 20px;
  transition: var(--tr);
}

.read-more:hover {
  gap: 14px;
  color: var(--primary-light);
}

.read-more i { font-size: 0.75rem; transition: transform 0.3s ease; }
.read-more:hover i { transform: translateX(4px); }

