/* ====================================================
   PATEL PUBLICITY - MAIN STYLESHEET
   Modern Branding Agency | Premium Light Design System
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #ef772f;
  /* Logo Orange */
  --primary-dark: #bd5c20;
  --primary-light: #ff9c65;
  --secondary: #2b2b2a;
  /* Logo Charcoal */
  --accent: #119dc4;
  /* Logo Teal */
  --accent2: #119dc4;
  --bg-dark: #FFFFFF;
  /* Pure White Canvas */
  --bg-card: #F8FAFC;
  /* Slate 50 */
  --bg-card2: #F1F5F9;
  /* Slate 100 */
  --text-primary: #2b2b2a;
  /* Logo Charcoal for primary text */
  --text-secondary: #575756;
  --text-muted: #8d8d8c;
  --border: rgba(43, 43, 42, 0.08);
  --gradient-primary: linear-gradient(135deg, #ef772f 0%, #119dc4 100%);
  --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F5F8FA 50%, #FFFFFF 100%);
  --gradient-card: linear-gradient(145deg, #FFFFFF, #F8FAFC);
  --shadow-glow: 0 10px 40px rgba(239, 119, 47, 0.15);
  --shadow-card: 0 20px 40px rgba(43, 43, 42, 0.04), 0 1px 3px rgba(43, 43, 42, 0.02);
  --shadow-hover: 0 30px 60px rgba(43, 43, 42, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-mono: 'Space Grotesk', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--primary);
  color: white;
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}



/* ---- PRELOADER ---- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-text 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 3px;
  margin: 20px auto 0;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: preload-fill 2s ease-in-out forwards;
}

@keyframes preload-fill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes pulse-text {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-logo:hover {
  opacity: 0.8;
}

/* On white scrolled navbar — remove glass bg so it looks clean */
.navbar.scrolled .nav-logo {
  padding: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  filter: drop-shadow(0 2px 8px rgba(43, 43, 42, 0.08));
}

.nav-logo-img:hover {
  transform: scale(1.03) translateY(-1px);
  filter: drop-shadow(0 4px 12px rgba(239, 119, 47, 0.15));
}

.navbar.scrolled .nav-logo-img {
  height: 40px;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.footer-logo-img:hover {
  transform: scale(1.02);
}

.preloader-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  animation: preloader-logo-glow 2s infinite ease-in-out;
}

@keyframes preloader-logo-glow {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0px rgba(239, 119, 47, 0)) drop-shadow(0 0 0px rgba(17, 157, 196, 0));
  }

  50% {
    transform: scale(1.04);
    filter: drop-shadow(0 0 15px rgba(239, 119, 47, 0.25)) drop-shadow(0 0 15px rgba(17, 157, 196, 0.15));
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

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

/* On scrolled state (white bg), revert to dark text */
.navbar.scrolled .nav-links a {
  color: var(--text-secondary);
  text-shadow: none;
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--secondary);
}

.nav-cta {
  background: var(--gradient-primary);
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(255, 107, 43, 0.3);
  transition: var(--transition) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 43, 0.5) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO SECTION ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0F172A;
  padding: 140px 0 100px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  padding: 160px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: orb-float 12s ease-in-out infinite;
  pointer-events: none;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 450px;
  height: 450px;
  background: var(--accent2);
  bottom: -150px;
  left: -150px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  top: 40%;
  left: 45%;
  animation-delay: -2s;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -40px) scale(1.08);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.92);
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, transparent 20%, black 100%);
  opacity: 0.85;
}

.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 40px 0;
  text-align: center;
  max-width: 850px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 43, 0.06);
  border: 1px solid rgba(255, 107, 43, 0.18);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 107, 43, 0.04);
  animation: fade-up 0.8s ease both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #FF3D71;
  border-radius: 50%;
  position: relative;
}

.hero-badge .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255, 61, 113, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fade-up 0.8s 0.15s ease both;
}

.hero-title-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 8px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ef772f 0%, #119dc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
  transition: opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: 50% 100%;
}

.hero-title .gradient-text.slide-out {
  opacity: 0;
  transform: translateY(-15px) scale(0.95);
}

.hero-title .gradient-text.slide-in {
  opacity: 0;
  transform: translateY(15px) scale(0.95);
}

.hero-title .gradient-text::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(255, 107, 43, 0.15);
  z-index: -1;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0 auto 40px auto;
  max-width: 600px;
  animation: fade-up 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fade-up 0.8s 0.4s ease both;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gradient-primary);
  color: white;
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(255, 107, 43, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-primary-modern:hover::before {
  left: 100%;
}

.btn-primary-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 107, 43, 0.4);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-primary-modern:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: var(--text-primary);
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.btn-secondary-modern:hover {
  background: var(--bg-card2);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.btn-secondary-modern:hover .btn-arrow {
  transform: translate(3px, -3px);
}

/* Hero stat pills row */
.hero-stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  animation: fade-up 0.8s 0.55s ease both;
}

.hero-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.hero-image-banner {
  width: 100%;
  max-width: 1100px;
  height: 500px;
  margin: 40px auto 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  animation: fade-up 1s 0.6s ease both;
  position: relative;
}

.hero-image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stats-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  animation: fade-up 0.8s 0.5s ease both;
}

.stat-glass-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 20px 24px;
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.stat-glass-card:hover {
  transform: translateY(-5px);
  background: #FFFFFF;
  border-color: rgba(255, 107, 43, 0.2);
  box-shadow: 0 15px 35px rgba(255, 107, 43, 0.08);
}

.stat-glass-card .number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}

.stat-glass-card .plus-sign {
  color: var(--primary);
}

.stat-glass-card .label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

.stat-icon-bg {
  font-size: 1.8rem;
  opacity: 0.15;
  transition: var(--transition);
}

.stat-glass-card:hover .stat-icon-bg {
  transform: scale(1.2) rotate(10deg);
  opacity: 0.95;
}

/* Hero Visual — Cinematic Background Image */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-left 1s 0.3s ease both;
}

.hero-img-frame {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 107, 43, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

.hero-img-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow:
    0 60px 120px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 107, 43, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-img-frame:hover .hero-bg-img {
  transform: scale(1.04);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.0) 40%, rgba(15, 23, 42, 0.55) 100%),
    linear-gradient(90deg, rgba(255, 107, 43, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Floating badges over image */
.hero-img-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  white-space: nowrap;
  animation: float-badge-anim 6s ease-in-out infinite;
}

.badge-top-left {
  top: 20px;
  left: 20px;
  animation-delay: 0s;
}

.badge-bottom-right {
  bottom: 76px;
  right: 20px;
  animation-delay: -3s;
}

.hib-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.hib-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.45;
  animation: pulse 1.8s infinite;
}

.hib-dot-green { background: #00E676; }
.hib-dot-orange { background: var(--primary); }

.hib-text { font-size: 0.78rem; }

/* Bottom caption bar */
.hero-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hic-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hic-icon {
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 43, 0.15);
  border: 1px solid rgba(255, 107, 43, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hic-tag {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  display: block;
}

.hic-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  margin: 2px 0 0;
}

.hic-live {
  font-size: 0.65rem;
  font-weight: 750;
  color: #00E676;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Decorative corner accents */
.img-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 6;
  pointer-events: none;
}

.img-corner-tl {
  top: 12px;
  left: 12px;
  border-top: 2.5px solid rgba(255, 107, 43, 0.6);
  border-left: 2.5px solid rgba(255, 107, 43, 0.6);
  border-radius: 4px 0 0 0;
}

.img-corner-br {
  bottom: 56px;
  right: 12px;
  border-bottom: 2.5px solid rgba(255, 107, 43, 0.6);
  border-right: 2.5px solid rgba(255, 107, 43, 0.6);
  border-radius: 0 0 4px 0;
}

.mockup-card {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.mockup-card:hover {
  z-index: 20 !important;
  transform: translateY(-15px) scale(1.03) rotate(0deg) !important;
}

/* 1. Hoarding Card */
.card-hoarding {
  width: 74%;
  top: 4%;
  left: -2%;
  z-index: 1;
  transform: rotate(-6deg);
}

.card-hoarding:hover {
  box-shadow: 0 40px 80px rgba(255, 107, 43, 0.18);
  border-color: rgba(255, 107, 43, 0.25);
}

.billboard-top {
  background: #1E293B;
  padding: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.billboard-lights {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.light-fixture {
  width: 8px;
  height: 8px;
  background: #94A3B8;
  border-radius: 50%;
  position: relative;
}

.light-fixture::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card-hoarding:hover .light-fixture::after {
  opacity: 1;
}

.billboard-board {
  border: 4px solid #0F172A;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.billboard-poster {
  height: 180px;
  background: linear-gradient(135deg, #1E1B4B 0%, #311042 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  overflow: hidden;
}

.billboard-poster::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(255, 107, 43, 0.15), rgba(0, 229, 118, 0.08));
  z-index: 0;
}

.poster-inner {
  position: relative;
  z-index: 1;
}

.poster-logo {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.poster-text {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.poster-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
  letter-spacing: 0.25em;
}

.billboard-footer {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
}

/* 2. Neon Card */
.card-neon {
  width: 80%;
  top: 26%;
  left: 10%;
  z-index: 3;
  transform: rotate(2deg);
}

.card-neon:hover {
  box-shadow: 0 40px 80px rgba(255, 61, 113, 0.18);
  border-color: rgba(255, 61, 113, 0.25);
}

.neon-board-frame {
  background: radial-gradient(circle at center, #1E293B 0%, #0F172A 100%);
  height: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.corner-stud {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle at 30% 30%, #E2E8F0, #475569);
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.corner-stud.tl {
  top: 12px;
  left: 12px;
}

.corner-stud.tr {
  top: 12px;
  right: 12px;
}

.corner-stud.bl {
  bottom: 12px;
  left: 12px;
}

.corner-stud.br {
  bottom: 12px;
  right: 12px;
}

.neon-logo-text {
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.neon-letter {
  display: inline-block;
  animation: neon-flicker 4s infinite alternate;
}

.neon-orange {
  color: #FFF;
  text-shadow: 0 0 4px #FFF, 0 0 10px #FF6B2B, 0 0 20px #FF6B2B, 0 0 40px #FF6B2B;
}

.neon-pink {
  color: #FFF;
  text-shadow: 0 0 4px #FFF, 0 0 10px #FF3D71, 0 0 20px #FF3D71, 0 0 40px #FF3D71;
  animation-delay: 0.3s;
}

.neon-cyan {
  color: #FFF;
  text-shadow: 0 0 4px #FFF, 0 0 10px #00E676, 0 0 20px #00E676, 0 0 40px #00E676;
  animation-delay: 0.7s;
}

@keyframes neon-flicker {

  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
  }

  20%,
  24%,
  55% {
    opacity: 0.75;
    filter: none;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.2);
  }
}

.neon-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.neon-card-footer {
  padding: 16px 20px;
  background: #FFFFFF;
}

/* 3. Transit Card */
.card-transit {
  width: 66%;
  bottom: 6%;
  right: -4%;
  z-index: 2;
  transform: rotate(5deg);
}

.card-transit:hover {
  box-shadow: 0 40px 80px rgba(2, 132, 199, 0.18);
  border-color: rgba(2, 132, 199, 0.25);
}

.transit-banner {
  height: 130px;
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.transit-cab {
  width: 140px;
  height: 60px;
  background: #F8FAFC;
  border-radius: 12px 24px 8px 8px;
  position: relative;
  border: 2px solid #0F172A;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cab-window {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 44px;
  height: 20px;
  background: #38BDF8;
  border: 2px solid #0F172A;
  border-radius: 4px 12px 4px 4px;
}

.cab-wheel {
  position: absolute;
  bottom: -10px;
  width: 24px;
  height: 24px;
  background: #0F172A;
  border: 4px solid #E2E8F0;
  border-radius: 50%;
}

.left-wheel {
  left: 20px;
}

.right-wheel {
  right: 20px;
}

.cab-wrap {
  position: absolute;
  bottom: 6px;
  left: 8px;
  width: 76px;
  height: 26px;
  background: var(--gradient-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wrap-brand {
  font-size: 0.5rem;
  font-weight: 900;
  color: white;
  letter-spacing: 0.05em;
}

.transit-card-footer {
  padding: 16px 20px;
  background: #FFFFFF;
}

/* Card details structures */
.card-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.details-icon {
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  background: #F1F5F9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.details-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
  display: block;
}

.details-title {
  font-size: 0.82rem;
  font-weight: 850;
  color: var(--secondary);
}

.details-status {
  font-size: 0.65rem;
  font-weight: 750;
  color: #00E676;
  background: rgba(0, 230, 118, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Floating Badges */
.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary);
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float-badge-anim 6s ease-in-out infinite;
  white-space: nowrap;
}

.float-badge-top {
  top: -2%;
  left: 5%;
  animation-delay: 0s;
}

.float-badge-bottom {
  bottom: -2%;
  right: 5%;
  animation-delay: -3s;
}

.badge-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.badge-dot-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.5;
  animation: pulse 1.5s infinite;
}

@keyframes float-badge-anim {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ---- SECTION COMMONS ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  /* background: var(--primary); */
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
}

/* ---- SERVICES SECTION ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 107, 43, 0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  border-color: rgba(255, 107, 43, 0.2);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  color: var(--secondary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.service-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.02);
  line-height: 1;
  transition: color 0.4s ease;
}

.service-card:hover .service-number {
  color: rgba(255, 107, 43, 0.05);
}

/* Icon colors */
.icon-orange {
  background: rgba(255, 107, 43, 0.1);
  color: var(--primary);
}

.icon-blue {
  background: rgba(0, 163, 196, 0.1);
  color: var(--accent2);
}

.icon-yellow {
  background: rgba(245, 200, 66, 0.1);
  color: var(--accent);
}

.icon-pink {
  background: rgba(255, 61, 113, 0.1);
  color: #FF3D71;
}

.icon-green {
  background: rgba(0, 200, 83, 0.1);
  color: #00C853;
}

.icon-purple {
  background: rgba(149, 117, 205, 0.1);
  color: #9575CD;
}

.icon-teal {
  background: rgba(0, 191, 165, 0.1);
  color: #00BFA5;
}

.icon-red {
  background: rgba(255, 82, 82, 0.1);
  color: #FF5252;
}

/* ---- WHY US / FEATURES ---- */
.features-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-visual {
  position: relative;
}

.features-blob {
  width: 100%;
  aspect-ratio: 1;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 50% 30% 60% 40% / 40% 60% 30% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: blob-morph 8s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
  max-width: 450px;
  max-height: 450px;
}

@keyframes blob-morph {

  0%,
  100% {
    border-radius: 50% 30% 60% 40% / 40% 60% 30% 50%;
  }

  25% {
    border-radius: 30% 60% 40% 50% / 60% 30% 50% 40%;
  }

  50% {
    border-radius: 60% 40% 30% 50% / 30% 50% 60% 40%;
  }

  75% {
    border-radius: 40% 50% 60% 30% / 50% 40% 30% 60%;
  }
}

.features-blob-inner {
  text-align: center;
  padding: 20px;
}

.features-blob-number {
  font-size: 5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.features-blob-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.feature-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.feature-dot {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: dot-float 5s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.feature-dot:nth-child(1) {
  top: 5%;
  right: -10%;
  animation-delay: 0s;
}

.feature-dot:nth-child(2) {
  bottom: 20%;
  right: -15%;
  animation-delay: -2s;
}

.feature-dot:nth-child(3) {
  bottom: 5%;
  left: -5%;
  animation-delay: -4s;
}

.feature-dot:nth-child(4) {
  top: 20%;
  left: -15%;
  animation-delay: -1s;
}

@keyframes dot-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(255, 107, 43, 0.2);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.feature-item-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 107, 43, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.feature-item-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--secondary);
}

.feature-item-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- PORTFOLIO SECTION ---- */
.portfolio-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-primary);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.portfolio-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 2;
  border-color: rgba(255, 107, 43, 0.2);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

/* Portfolio Hover Custom Arrow & Overlay styling */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--secondary);
}

.portfolio-overlay p {
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}

/* Custom premium arrow circle button */
.portfolio-overlay-icon,
.port-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-size: 1rem;
  transition: var(--transition);
  transform: scale(0.9) rotate(-45deg);
}

.portfolio-overlay-icon svg,
.port-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.portfolio-item:hover .portfolio-overlay-icon {
  background: var(--primary);
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
}

/* ---- ABOUT PAGE SPECIFIC ---- */
.about-hero {
  background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 43, 0.2);
  box-shadow: var(--shadow-hover);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.team-card-body {
  padding: 24px;
}

.team-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--secondary);
}

.team-card-body p {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 40px 0;
  margin-top: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--primary), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(255, 107, 43, 0.3);
}

.timeline-content {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(255, 107, 43, 0.2);
  transform: scale(1.02);
  box-shadow: var(--shadow-card);
}

.timeline-item:nth-child(even) .timeline-content:first-child {
  grid-column: 2;
}

.timeline-year {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
}

.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 160px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--secondary);
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: rgba(255, 107, 43, 0.2);
  transform: translateX(8px);
  box-shadow: var(--shadow-card);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 43, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method-info h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-method-info p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--secondary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: #FFFFFF;
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background: var(--gradient-primary);
  border-radius: 32px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 107, 43, 0.25);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  color: white;
}

.cta-inner p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
  position: relative;
  color: white;
}

.cta-inner .btn-light {
  background: white;
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-inner .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(255, 107, 43, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--primary);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars span {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ---- COUNTER SECTION ---- */
.counter-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 43, 0.03), transparent);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.counter-item .counter-number {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.counter-item .counter-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 8px;
  display: block;
}

.counter-divider {
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  margin: 12px auto;
  border-radius: 2px;
}

/* ---- FOOTER ---- */
.footer {
  background: #090D16;
  /* Maintain deep dark slate footer for professional styling block */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 300px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  color: #94A3B8;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: #94A3B8;
  font-size: 0.88rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

/* Custom premium hover arrow effect on footer links */
.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--primary);
  display: inline-block;
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #64748B;
}

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

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.4s;
}

/* ---- ANIMATIONS ---- */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ---- NOISE TEXTURE OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.015;
  /* Subtler noise on light mode */
  pointer-events: none;
  z-index: 9997;
}

/* ---- MARQUEE ---- */
.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.01);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marquee-item .marker {
  color: var(--primary);
  font-size: 1.2rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---- PAGE HERO (subpages) ---- */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero .hero-orb {
  opacity: 0.04;
}

.page-hero .hero-orb-1 {
  opacity: 0.08 !important;
}

.page-hero .hero-orb-2 {
  opacity: 0.06 !important;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.page-hero .breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.page-hero .breadcrumb span {
  color: var(--text-muted);
}

/* ---- ALERT / MESSAGES ---- */
.messages-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
}

.alert {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  animation: alert-slide-in 0.4s ease;
  border-left: 3px solid var(--primary);
}

.alert.success {
  border-left-color: #00C853;
}

.alert.error {
  border-left-color: #FF5252;
}

@keyframes alert-slide-in {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.alert-check-icon {
  color: #00E676;
}

.footer-links i {
  margin-right: 8px;
  color: var(--primary);
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.mobile-close:hover {
  color: var(--primary);
}

/* ---- ARROW ANIMATIONS ---- */
.animated-arrow-wrap {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 24px;
  height: 24px;
}

.arrow-line-custom {
  stroke-dasharray: 20;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s ease;
}

a:hover .arrow-line-custom {
  animation: arrow-slide 0.6s ease forwards;
}

@keyframes arrow-slide {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -20;
  }

  50.1% {
    stroke-dashoffset: 20;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-desc {
    margin: 0 auto 40px;
  }

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

  .hero-stats-panel {
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-showcase-stack {
    margin-top: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title .gradient-text {
    display: inline-block;
  }

  .features-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-item:nth-child(1) {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 0 20px;
  }

  .section-container {
    padding: 0 20px;
  }

  .hero-container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-item:nth-child(1) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .cta-inner {
    padding: 40px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 50px;
  }

  .timeline-item::after {
    left: 20px;
  }

  .hero-stats-panel {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-showcase-stack {
    height: 380px;
    transform: scale(0.8);
    transform-origin: center top;
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .hero-showcase-stack {
    height: 290px;
    transform: scale(0.6);
    transform-origin: center top;
    margin-top: 20px;
  }
}

/* ====================================================
   PATEL PUBLICITY - UTILITY & COMMON STYLES
   ==================================================== */

.pt-0 {
  padding-top: 0 !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.ws-nowrap {
  white-space: nowrap !important;
}

.color-primary {
  color: var(--primary) !important;
}

.color-white {
  color: #FFFFFF !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.text-center {
  text-align: center !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.pos-relative {
  position: relative !important;
}

.z-1 {
  z-index: 1 !important;
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header.max-700 {
  max-width: 700px;
}

.section-header.mb-20 {
  margin-bottom: 20px;
}

.section-header .section-tag {
  display: block;
  text-align: center;
  padding-left: 0;
}

.section-header .section-tag::before {
  display: none;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* Badge Dot Pulse Colors */
.badge-dot-red {
  background: #FF3D71 !important;
}

.badge-dot-green {
  background: #00E676 !important;
}

/* Premium Arrow Svg Styles */
.svg-arrow-diag {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.svg-arrow-custom {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

/* Avatar Gradients */
.avatar-grad-blue {
  background: linear-gradient(135deg, #00D4FF, #0080FF) !important;
}

.avatar-grad-orange {
  background: linear-gradient(135deg, #F5C842, #FF6B2B) !important;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-grad-subtle {
  background: linear-gradient(180deg, transparent, rgba(255, 107, 43, 0.03), transparent) !important;
}

.contact-top .hero-orb-1 {
  opacity: 0.08 !important;
}

.contact-top .hero-orb-2 {
  opacity: 0.06 !important;
}

.page-hero-title,
.contact-top .section-title {
  text-align: center;
  font-size: clamp(2.5rem, 4vw, 4rem) !important;
  max-width: 700px;
  margin: 0 auto 20px !important;
}

.page-hero-desc,
.contact-top .section-desc {
  text-align: center;
  margin: 0 auto !important;
  max-width: 600px;
}

/* ---- LIGHTBOX MODAL ---- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img-wrapper {
  width: 100%;
  max-height: 70vh;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  background: #0D0D1A;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  max-width: 600px;
}

.lightbox-caption h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: white;
}

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

/* Close & Nav buttons */
.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  z-index: 10002;
}

.lightbox-btn:hover {
  background: var(--gradient-primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 107, 43, 0.4);
  transform: scale(1.1);
}

.lightbox-close {
  top: 40px;
  right: 40px;
}

.lightbox-prev {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .lightbox-prev {
    left: 20px;
  }
  .lightbox-next {
    right: 20px;
  }
  .lightbox-close {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 15px;
    right: 15px;
  }
}

/* ==========================================================================
   360 BRANDING SOLUTION GRID
   ========================================================================== */
.branding-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.branding-card {
  flex: 0 0 calc(25% - 20px);
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  text-decoration: none;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.branding-icon {
  width: 56px;
  height: 56px;
  background: rgba(239, 119, 47, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 1.4rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.branding-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.branding-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover and Active State */
.branding-card:hover,
.branding-card.active {
  background: var(--gradient-primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(239, 119, 47, 0.25);
  border-color: transparent;
}

.branding-card:hover .branding-icon,
.branding-card.active .branding-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.1);
}

.branding-card:hover h4,
.branding-card.active h4,
.branding-card:hover p,
.branding-card.active p {
  color: #ffffff;
}

@media (max-width: 992px) {
  .branding-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}
@media (max-width: 768px) {
  .branding-card {
    flex: 0 0 calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .branding-card {
    flex: 0 0 100%;
  }
}

.branding-card-full {
  flex: 0 0 100%;
}