/* ============================================================
   Verona Design Company — Premium Portfolio Stylesheet
   Brand Colors: Green #22c55e / #16a34a, Red #ef4444 / #dc2626, White
   ============================================================ */

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #080d14;
  color: #f0f0f0;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-glow: rgba(34, 197, 94, 0.25);
  --red: #ef4444;
  --red-dark: #dc2626;
  --red-glow: rgba(239, 68, 68, 0.25);
  --bg: #080d14;
  --bg2: #0d1420;
  --bg3: #111827;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.07);
  --text: #f0f0f0;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center {
  text-align: center;
}

.text-gradient {
  background: linear-gradient(90deg, #22c55e 0%, #4ade80 40%, #ef4444 70%, #f87171 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(70px, 13vw, 200px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.022);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -5px;
  z-index: 0;
}

.section-header {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 16px 0 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Badges */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.green-badge {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.red-badge {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--green-dark);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid var(--green-dark);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 0 30px var(--green-glow);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 13, 20, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(8, 13, 20, 0.97);
  border-bottom-color: rgba(34, 197, 94, 0.15);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0f2a18, #1a0808);
  border: 1.5px solid rgba(34, 197, 94, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.1);
}

.logo-v {
  color: var(--green);
}

.logo-d {
  color: var(--red);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-verona {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.logo-design {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

/* Mobile full-screen panel — always hidden by default */
.nav-links-mobile {
  display: none !important;
}

.nav-a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}

.nav-a:hover,
.nav-a.active {
  color: #fff;
}

.nav-a:hover::after,
.nav-a.active::after {
  width: 100%;
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border-color: rgba(34, 197, 94, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

/* Typewriter cursor blink */
@keyframes blink-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Text hidden by default, JS will reveal character by character */
.typewriter-text {
  display: inline-block;
}

/* Cursor after active typed word */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--green);
  vertical-align: middle;
  margin-left: 2px;
  animation: blink-cursor 0.7s steps(1) infinite;
  border-radius: 2px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: 72px;
}

/* Animated orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.18) 0%, transparent 70%);
  top: -20%;
  left: -10%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  top: 10%;
  right: -15%;
  animation: orbFloat2 14s ease-in-out infinite;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  bottom: 5%;
  right: 20%;
  animation: orbFloat3 10s ease-in-out infinite;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  bottom: 15%;
  left: 10%;
  animation: orbFloat1 16s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(60px, -40px) scale(1.1);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, 60px) scale(1.08);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -60px) scale(1.05);
  }
}

/* Hero shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape-ring-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: slowSpin 30s linear infinite;
}

.shape-ring-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(239, 68, 68, 0.07);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: slowSpin 20s linear infinite reverse;
}

.shape-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
}

@keyframes slowSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulseDot 2s ease infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-title-main {
  font-size: clamp(72px, 14vw, 170px);
  font-weight: 900;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.9;
}

.hero-title-sub {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* Hero: the first button is a dark-bg style matching Figma */
.hero-btns .btn-primary {
  background: rgba(100, 20, 20, 0.7);
  border-color: rgba(239, 68, 68, 0.5);
  color: #fff;
}

.hero-btns .btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 30px var(--red-glow);
}

.hero-btns .btn-outline {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.hero-btns .btn-outline:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 0 30px var(--green-glow);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  background: linear-gradient(180deg, #080d14 0%, var(--bg2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}



.about-left .section-title {
  text-align: left;
}

.about-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #e5e7eb;
}

.value-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.green-icon {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.red-icon {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.green-card {
  background: linear-gradient(145deg, rgba(0, 50, 20, 0.7), rgba(0, 25, 10, 0.9));
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.green-card::before {
  background: linear-gradient(90deg, var(--green), transparent);
}

.red-card {
  background: linear-gradient(145deg, rgba(60, 0, 0, 0.7), rgba(30, 0, 0, 0.9));
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.red-card::before {
  background: linear-gradient(90deg, var(--red), transparent);
}

.about-stat-card .stat-num {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  display: inline;
}

.about-stat-card .stat-suf {
  font-size: 30px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
}

.about-stat-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}


/* Administrative Structure — Option 2: Horizontal Sleek Cards */
.team-container {
  margin-top: 120px;
  position: relative;
  z-index: 10;
}

.team-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 48px auto 0;
}

.team-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px 40px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.team-card:nth-child(even)::before {
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.05), transparent);
}

.team-card:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px var(--green-glow);
}

.team-card:nth-child(even):hover {
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px var(--red-glow);
}

.team-card:hover::before {
  transform: translateX(100%);
}

.team-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.team-info-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.team-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.team-card:nth-child(even) .team-icon-box {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

.team-card:hover .team-icon-box {
  transform: rotate(10deg) scale(1.1);
  background: var(--green);
  color: #fff;
}

.team-card:nth-child(even):hover .team-icon-box {
  background: var(--red);
  color: #fff;
}

.team-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 0;
}

.team-role-wrap {
  text-align: right;
}

.team-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(34, 197, 94, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(34, 197, 94, 0.15);
  transition: all 0.3s ease;
}

.team-card:nth-child(even) .team-role {
  color: var(--red);
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.15);
}

.team-card:hover .team-role {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 15px var(--green-glow);
}

.team-card:nth-child(even):hover .team-role {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 15px var(--red-glow);
}

/* Background watermark icon */
.team-card-bg-icon {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s ease;
}

.team-card:hover .team-card-bg-icon {
  color: rgba(255, 255, 255, 0.04);
  transform: translateY(-50%) scale(1.2) rotate(-10deg);
}

@media (max-width: 768px) {
  .team-card-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .team-info-left {
    flex-direction: column;
    gap: 12px;
  }

  .team-role-wrap {
    text-align: center;
  }

  .team-card {
    padding: 32px 20px;
  }

  .team-card-bg-icon {
    display: none;
  }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.svc-wide {
  grid-column: span 1;
}

/* Service Card */
.svc-card {
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

.svc-card:hover {
  transform: translateY(-6px);
}

.svc-green {
  background: #091913;
  /* Dark green hue */
  border: 1.5px solid rgba(34, 197, 94, 0.12);
}

.svc-green:hover {
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.35);
}

.svc-red {
  background: #19090c;
  /* Dark red hue */
  border: 1.5px solid rgba(239, 68, 68, 0.12);
}

.svc-red:hover {
  box-shadow: 0 10px 40px rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.35);
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.svc-icon-green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
}

.svc-icon-red {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
}

.svc-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.svc-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* New fixed Image Box */
.svc-img-box {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.svc-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-img-box img {
  transform: scale(1.05);
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
  /* Pushes button to bottom */
}

.svc-list li {
  font-size: 13.5px;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.3;
}

.svc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-green .svc-list li::before {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

.svc-red .svc-list li::before {
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

/* Solid Buttons */
.svc-btn-solid {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.green-btn {
  background: var(--green);
}

.green-btn:hover {
  background: var(--green-dark);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}

.red-btn {
  background: var(--red);
}

.red-btn:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

/* ============================================================
   FEATURED WORK SECTION
   ============================================================ */
.work-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.work-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.work-slide {
  display: none;
  animation: fadeSlide 0.5s ease;
}

.work-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.work-slide-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 56px;
}

.work-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.work-img-wrap>img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.work-phone-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 35%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.work-phone-overlay img {
  width: 100%;
  display: block;
}



.work-tag {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.green-tag {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.red-tag {
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.work-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.work-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.work-result {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
}

.result-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.result-value {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 0 4px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--green);
  width: 48px;
}

.slider-arrows {
  display: flex;
  gap: 10px;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.arrow-btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 0 16px var(--green-glow);
}

/* ============================================================
   CLIENT SUCCESS SECTION
   ============================================================ */
.success-section {
  background: var(--bg);
}

.success-section .container {
  position: relative;
  z-index: 1;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.kpi-card {
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.kpi-card:hover {
  transform: translateY(-4px);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.kpi-green {
  background: linear-gradient(145deg, rgba(0, 40, 18, 0.8), rgba(0, 18, 8, 0.95));
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.kpi-green::before {
  background: linear-gradient(90deg, var(--green), transparent);
}

.kpi-red {
  background: linear-gradient(145deg, rgba(55, 5, 5, 0.8), rgba(22, 0, 0, 0.95));
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.kpi-red::before {
  background: linear-gradient(90deg, var(--red), transparent);
}

.kpi-icon {
  color: inherit;
  margin-bottom: 16px;
}

.kpi-green .kpi-icon {
  color: var(--green);
}

.kpi-red .kpi-icon {
  color: var(--red);
}

.kpi-number {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-number .stat-num {
  display: inline;
}

.kpi-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.tcard:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.2);
}

.tcard-quote {
  font-size: 80px;
  line-height: 0.5;
  color: rgba(34, 197, 94, 0.2);
  font-family: Georgia, serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.tcard>p {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.3);
  flex-shrink: 0;
}

.av1 {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.av2 {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.av3 {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.tcard-author strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.tcard-author span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============================================================
   WHY VERONA SECTION
   ============================================================ */
.why-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s;
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.why-green:hover {
  border-color: rgba(34, 197, 94, 0.3);
}

.why-card:has(.why-green):hover {
  border-color: rgba(34, 197, 94, 0.25);
}

.why-red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.contact-section {
  background: var(--bg);
  position: relative;
}

.contact-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.c-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.c-orb1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  top: -10%;
  left: -15%;
}

.c-orb2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
  bottom: 0;
  right: -10%;
}

.contact-section .container {
  position: relative;
  z-index: 1;
}

.cta-star {
  color: var(--green);
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  animation: starSpin 6s ease-in-out infinite;
}

@keyframes starSpin {

  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(15deg) scale(1.1);
  }
}

.cta-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.cta-body {
  font-size: 15px;
  color: var(--text-dim);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* CTA section buttons use standard colors */
.contact-section .btn-primary {
  background: var(--green);
  border-color: var(--green);
}

.contact-section .btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 0 30px var(--green-glow);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  border-radius: 20px;
  padding: 32px 24px;
  text-align: left;
  transition: transform 0.3s;
}

.contact-card:hover {
  transform: translateY(-4px);
}

.cc-green {
  background: linear-gradient(145deg, rgba(0, 40, 18, 0.6), rgba(0, 15, 8, 0.9));
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.cc-red {
  background: linear-gradient(145deg, rgba(55, 5, 5, 0.6), rgba(18, 0, 0, 0.9));
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.cc-icon-green {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.cc-icon-red {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.contact-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-link:hover {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border-color: rgba(34, 197, 94, 0.3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-left .section-title {
    text-align: center;
  }

  .about-left .section-badge {
    display: block;
    text-align: center;
  }

  .about-desc {
    text-align: center;
  }

  .about-values {
    align-items: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-slide-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px;
  }

  .work-phone-overlay {
    display: none;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .container {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(8, 13, 20, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open {
    max-height: 300px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 16px;
  }

  .nav-a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .hero-title-main {
    font-size: clamp(56px, 16vw, 120px);
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    justify-content: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ============================================================
   LOGO — Isolated LOGO.jpeg with transparent rendering
   ============================================================ */
.logo-img-wrap {
  width: 56px;
  height: 56px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 'screen' removes black background, keeping light colors */
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.1);
  transition: opacity 0.3s ease;
}

.logo-img:hover {
  opacity: 0.88;
}

/* Footer logo */
.footer-logo-wrap {
  width: 68px;
  height: 68px;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.2) contrast(1.1);
}

/* ============================================================
   ARABIC — bilingual support (no RTL layout flip)
   ============================================================ */
[lang="ar"] body,
body.lang-ar {
  font-family: 'Cairo', 'Tajawal', 'Inter', sans-serif;
}

/* ============================================================
   3D HERO OBJECTS  
   ============================================================ */
.hero-3d {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 1200px;
  overflow: hidden;
}

.obj3d {
  position: absolute;
}

/* === CSS 3D Rotating Cube === */
.cube-3d {
  width: 60px;
  height: 60px;
  top: 18%;
  right: 12%;
  transform-style: preserve-3d;
  animation: rotateCube 12s linear infinite;
}

@keyframes rotateCube {
  0% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg);
  }
}

.cube-face {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.06);
  backdrop-filter: blur(2px);
}

.face-front {
  transform: translateZ(30px);
}

.face-back {
  transform: rotateY(180deg) translateZ(30px);
}

.face-left {
  transform: rotateY(-90deg) translateZ(30px);
}

.face-right {
  transform: rotateY(90deg) translateZ(30px);
}

.face-top {
  transform: rotateX(90deg) translateZ(30px);
}

.face-bottom {
  transform: rotateX(-90deg) translateZ(30px);
}

/* === Glowing Sphere === */
.sphere-3d {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
      rgba(239, 68, 68, 0.55) 0%,
      rgba(239, 68, 68, 0.1) 50%,
      transparent 70%);
  border: 1.5px solid rgba(239, 68, 68, 0.3);
  box-shadow:
    inset -8px -8px 20px rgba(0, 0, 0, 0.4),
    inset 4px 4px 12px rgba(255, 255, 255, 0.08),
    0 0 30px rgba(239, 68, 68, 0.2);
  animation: sphereFloat 8s ease-in-out infinite;
}

@keyframes sphereFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* === Pyramid / Triangle === */
.pyramid-3d {
  top: 55%;
  right: 6%;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid rgba(34, 197, 94, 0.18);
  filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.4));
  animation: pyramidFloat 10s ease-in-out infinite reverse;
}

.pyramid-3d::after {
  content: '';
  position: absolute;
  top: 16px;
  left: -24px;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 41px solid rgba(34, 197, 94, 0.08);
}

@keyframes pyramidFloat {

  0%,
  100% {
    transform: translateY(0) rotateZ(0deg);
  }

  50% {
    transform: translateY(-16px) rotateZ(5deg);
  }
}

/* === Torus Ring === */
.torus-3d {
  bottom: 30%;
  right: 18%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top-color: rgba(239, 68, 68, 0.5);
  border-right-color: rgba(239, 68, 68, 0.3);
  border-bottom-color: rgba(239, 68, 68, 0.15);
  border-left-color: transparent;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25), inset 0 0 12px rgba(239, 68, 68, 0.1);
  animation: torusSpin 6s linear infinite;
}

@keyframes torusSpin {
  to {
    transform: rotate(360deg);
  }
}

/* === Gem Diamond === */
.gem-3d {
  top: 30%;
  left: 6%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,
      rgba(34, 197, 94, 0.6) 0%,
      rgba(34, 197, 94, 0.15) 50%,
      rgba(34, 197, 94, 0.4) 100%);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
  animation: gemFloat 7s ease-in-out infinite, gemPulse 3s ease-in-out infinite;
}

@keyframes gemFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(10deg);
  }
}

@keyframes gemPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
  }

  50% {
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.8));
  }
}

/* === Particle Field === */
.particle-field {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleDrift linear infinite;
  pointer-events: none;
}

@keyframes particleDrift {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-120px) translateX(var(--dx, 20px));
    opacity: 0;
  }
}

/* ============================================================
   SERVICE CARDS — 3D tilt effect (applied via JS)
   ============================================================ */
.svc-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.svc-card .card-shine {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s;
}

.svc-card:hover .card-shine {
  opacity: 1;
}

/* ============================================================
   SOCIAL ICONS — Brand Colors
   ============================================================ */
.social-wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.4);
}

.social-fb:hover {
  background: #1877F2;
  border-color: #1877F2;
  color: #fff;
  box-shadow: 0 0 16px rgba(24, 119, 242, 0.4);
}

.social-ig:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: #dc2743;
  color: #fff;
  box-shadow: 0 0 16px rgba(220, 39, 67, 0.4);
}

.social-sc:hover {
  background: #FFFC00;
  border-color: #FFFC00;
  color: #000;
  box-shadow: 0 0 16px rgba(255, 252, 0, 0.4);
}

/* Footer social links bigger */
.footer-socials .social-link {
  width: 44px;
  height: 44px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-socials .social-link:hover {
  transform: translateY(-4px) scale(1.1);
}

/* ============================================================
   ENHANCED 3D CARD HOVER ANIMATIONS
   ============================================================ */
.svc-card,
.tcard,
.kpi-card,
.why-card,
.contact-card,
.about-stat-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.svc-card:hover::before {
  opacity: 1;
}

/* Pulsing glow on service icons */
.svc-icon-wrap {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
  transform: scale(1.12) rotate(5deg);
}

.svc-green:hover .svc-icon-wrap {
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
}

.svc-red:hover .svc-icon-wrap {
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.35);
}

/* ============================================================
   FLOATING ANIMATION for hero badge
   ============================================================ */
.hero-badge {
  animation: fadeInDown 0.8s ease both, heroBadgeFloat 4s ease-in-out 0.8s infinite;
}

@keyframes heroBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Logo text in navbar */
.logo {
  position: relative;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-verona {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.logo-design {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hover glow on logo */
.logo:hover .logo-img {
  filter: brightness(1.3) contrast(1.1);
}

/* Footer logo layout */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================================
   RESPONSIVE — Full overhaul for all screens
   ============================================================ */

/* ---- Tablet (≤ 991px) ---- */
@media (max-width: 991px) {

  /* Hamburger - Ensure it's above the menu */
  .hamburger {
    display: flex;
    z-index: 10000;
    /* Higher than menu links */
  }

  /* On mobile: hide the desktop nav, show hamburger only */
  .nav-links-desktop {
    display: none !important;
  }

  /* Mobile Full-Screen Panel — DIRECT CHILD OF BODY so position:fixed works from viewport */
  .nav-links-mobile {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #080d14;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 9999;
  }

  /* Show when .open added by JS */
  .nav-links-mobile.open {
    display: flex !important;
  }

  /* Hide the generic .nav-links rule (desktop class) on mobile */
  .nav-links {
    display: none !important;
  }

  /* Mobile nav link items */
  .nav-links-mobile li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links-mobile li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links-mobile .nav-a {
    display: block;
    width: 100%;
    padding: 22px 20px;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    letter-spacing: 0.5px;
    text-align: center;
  }

  .nav-links-mobile .nav-a:hover,
  .nav-links-mobile .nav-a.active {
    color: var(--green) !important;
    background: rgba(34, 197, 94, 0.05);
  }

  /* Nav link items inside mobile panel */
  .nav-links li {
    width: 100%;
    text-align: center;
    list-style: none;
  }

  .nav-a {
    font-size: 28px !important;
    font-weight: 700 !important;
    display: inline-block;
    padding: 12px 24px;
    color: #fff !important;
    transition: all 0.3s ease;
  }

  .nav-a:hover {
    color: var(--green) !important;
  }

  .nav-inner {
    padding: 0 20px;
  }

  /* Hero */
  .hero-title-main {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-title-sub {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  /* Show all 3D objects on tablet, slightly smaller */
  .obj3d.cube-3d {
    top: 12%;
    right: 3%;
    transform: scale(0.55);
  }

  .obj3d.pyramid-3d {
    top: auto;
    bottom: 12%;
    left: 4%;
    transform: scale(0.55);
  }

  /* Keep sphere/torus/gem at reduced scale */
  .obj3d.sphere-3d {
    transform: scale(0.5);
  }

  .obj3d.torus-3d {
    transform: scale(0.5);
  }

  .obj3d.gem-3d {
    transform: scale(0.5);
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Services grid */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Works grid - 2 columns on tablet */
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  /* Stats grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Mobile (≤ 768px) ---- */
@media (max-width: 768px) {

  .section {
    padding: 70px 0;
  }

  /* Hero 3D — show on mobile with full opacity, just scaled down */
  .hero-3d {
    opacity: 0.9;
  }

  /* All 3D objects visible on mobile, scaled down */
  .obj3d.cube-3d {
    top: 8%;
    right: 2%;
    transform: scale(0.35);
  }

  .obj3d.pyramid-3d {
    bottom: 10%;
    left: 2%;
    top: auto;
    transform: scale(0.35);
  }

  .obj3d.sphere-3d {
    transform: scale(0.35);
  }

  .obj3d.torus-3d {
    transform: scale(0.35);
  }

  .obj3d.gem-3d {
    transform: scale(0.35);
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Hero orbs - reduce size on mobile */
  .orb-1 {
    width: 300px;
    height: 300px;
  }

  .orb-2 {
    width: 250px;
    height: 250px;
  }

  .orb-3,
  .orb-4 {
    width: 200px;
    height: 200px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    padding: 30px 20px;
  }

  /* Works - 1 column on mobile */
  .works-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Works filter tabs */
  .works-tabs {
    gap: 8px;
  }

  .works-tab {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Work card image height */
  .work-card-inner {
    height: 200px;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Portfolio / Slider */
  .work-slide-inner {
    flex-direction: column;
  }

  .slide-image {
    width: 100%;
    height: 220px;
  }

  /* CTA section */
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  /* Why grid */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Contact section */
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {

  .nav-inner {
    padding: 0 16px;
  }

  .hero-title-main {
    font-size: clamp(2.5rem, 14vw, 3.5rem);
  }

  .hero-title-sub {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 8vw, 2rem);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Shrink badge */
  .section-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  /* Hero sub text */
  .hero-sub {
    font-size: 14px;
  }

  /* Works card adjusted */
  .work-card-inner {
    height: 180px;
  }

  /* Services card */
  .svc-card {
    padding: 24px 16px;
  }
}