/* =============================================
   JIVIKA DESIGNS — style.css
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --gold: #EDB617;
  --gold-light: #F0C842;
  --gold-dark: #a07a2a;
  --bg-dark: #0a0a0f;
  --bg-card: #10111a;
  --bg-card2: #141520;
  --bg-section: #0d0e18;
  --border: rgba(201, 168, 76, 0.18);
  --border-card: rgba(255, 255, 255, 0.07);
  --text-white: #ffffff;
  --text-muted: #9a9ab0;
  --text-light: #c8c8d8;
  --blue-glow: #1144cc;
  --orange-glow: #e07020;
  --radius-card: 14px;
  --radius-btn: 20px;
  --transition: 0.25s ease;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 24px rgba(201, 168, 76, 0.22);

  /* Typography */
  --ff-head: 'Montserrat', sans-serif;
  --ff-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  display: block;
  max-width: 100%;
  border-radius: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  /* max-width: 1260px; */
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 60px);
}

/* ---- Utility ---- */
.gold {
  color: var(--gold);
}

.section-pad {
  padding: clamp(60px, 8vw, 100px) 0;
}

/* ---- Colorful Font Awesome Icons ---- */
.fa-color-gold {
  color: #ffd700;
  border-color: rgba(255, 215, 0, 0.25) !important;
  background: rgba(255, 215, 0, 0.08) !important;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.12);
}

.fa-color-blue {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.25) !important;
  background: rgba(56, 189, 248, 0.08) !important;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.12);
}

.fa-color-orange {
  color: #f97316;
  border-color: rgba(249, 115, 22, 0.25) !important;
  background: rgba(249, 115, 22, 0.08) !important;
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.12);
}

.fa-color-green {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.25) !important;
  background: rgba(34, 197, 94, 0.08) !important;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.12);
}

.fa-color-red {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.25) !important;
  background: rgba(239, 68, 68, 0.08) !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.12);
}

.why-icon.icon-cyan i {
  color: #06b6d4;
  text-shadow: 0 0 12px rgba(6, 182, 212, 0.35);
}

.why-icon.icon-yellow i {
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}

.why-icon.icon-purple-light i {
  color: #c084fc;
  text-shadow: 0 0 12px rgba(192, 132, 252, 0.35);
}

.why-icon.icon-green i {
  color: #34d399;
  text-shadow: 0 0 12px rgba(52, 211, 153, 0.35);
}

.service-icon i {
  font-size: 26px;
  color: #fff;
}

.step-circle i {
  font-size: 22px;
  color: var(--gold);
}


.cta-trophy-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-trophy-img {
  width: clamp(60px, 8vw, 100px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.45));
  animation: trophy-float 3s ease-in-out infinite;
}

@keyframes trophy-float {

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

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


.section-eyebrow {
  text-align: center;
  font-family: var(--ff-head);
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: clamp(20px, 5vw, 26px);
  line-height: 1.2;
}

.section-title .gold,
.section-title span {
  font-weight: 800;
}

.grow {
  font-weight: 600 !important;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(13px, 1.3vw, 15px);
  letter-spacing: 0.5px;
  padding: 13px 26px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-arrow,
.btn-arrow-out {
  font-size: 16px;
}

/* Custom WhatsApp Button (Pill Capsule Design) */
.btn-whatsapp-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #005a18;
  padding: 6px 8px;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-whatsapp-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 90, 24, 0.5);
}

.btn-whatsapp-now-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #1ebd50 0%, #158b38 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  padding: 4px 16px 4px 6px;
  border-radius: 9999px;
  width: 100%;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5);
  position: relative;
}

.btn-whatsapp-now-icon {
  width: 28px;
  height: 28px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.btn-whatsapp-now-text {
  color: #ffffff;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Larger button variant */
.btn-whatsapp-now.btn-lg {
  padding: 8px 12px;
}

.btn-whatsapp-now.btn-lg .btn-whatsapp-now-inner {
  gap: 12px;
  padding: 6px 24px 6px 8px;
}

.btn-whatsapp-now.btn-lg .btn-whatsapp-now-icon {
  width: 36px;
  height: 36px;
  font-size: 20px;
}

.btn-whatsapp-now.btn-lg .btn-whatsapp-now-text {
  font-size: 16px;
}


/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
  transition: opacity var(--transition);
}

.logo-img:hover {
  opacity: 0.88;
}

.footer-logo-img {
  height: 100px;
}

.logo-icon {
  display: flex;
  align-items: center;
}

.logo-icon.small svg {
  width: 28px;
  height: 28px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text-white);
}

.logo-sub {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  margin: 0 auto;
}

.nav-links a {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.3px;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-whatsapp-now.nav-cta {
  padding: 4px 6px;
}

.btn-whatsapp-now.nav-cta .btn-whatsapp-now-inner {
  padding: 3px 12px 3px 4px;
  gap: 6px;
}

.btn-whatsapp-now.nav-cta .btn-whatsapp-now-icon {
  width: 24px;
  height: 24px;
  font-size: 14px;
}

.btn-whatsapp-now.nav-cta .btn-whatsapp-now-text {
  font-size: 12px;
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.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
   ============================================= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #07080f 0%, #0d1020 40%, #060a14 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  padding-top: 70px;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(17, 68, 204, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(224, 112, 32, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 42% 58%;
  /* align-items: center; */
  gap: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
  min-height: calc(100vh - 70px);
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  border: 1px solid rgba(49, 168, 255, 0.45);
  background: rgba(10, 10, 15, 0.65);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 4px;
  margin-bottom: 22px;
  box-shadow: 0 0 15px rgba(49, 168, 255, 0.15);
}

.hero-heading {
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.white-line {
  color: var(--text-white);
}

.gold-line {
  color: #fbbf24;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.35);
}

.hero-desc {
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero .btn-primary {
  background: #ffb703;
  color: #000000;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 5px 25px rgba(255, 183, 3, 0.3);
  padding: 14px 30px;
}

.hero .btn-primary:hover {
  background: #ffa200;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 183, 3, 0.5);
}

.hero .btn-outline {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(5px);
  padding: 14px 30px;
}

.hero .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: clamp(8px, 1.8vw, 24px);
  flex-wrap: nowrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  width: clamp(34px, 4vw, 42px);
  height: clamp(34px, 4vw, 42px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 1.5vw, 15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}

.stat:hover .stat-icon {
  transform: scale(1.08);
}

.stat-icon.stat-icon--gold {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.08) !important;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15) !important;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(13px, 1.6vw, 20px);
  color: var(--text-white);
  line-height: 1.1;
  white-space: nowrap;
}

.stat-label {
  font-size: clamp(9px, 1vw, 11px);
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  min-height: 340px;
  z-index: 2;
}

.hero-player-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-player-wrap img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
  display: block;
  filter: drop-shadow(0 0 40px rgba(17, 68, 204, 0.4));
}

.hero-glow-blue {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(17, 68, 204, 0.5) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-orange {
  position: absolute;
  top: 20%;
  right: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(224, 112, 32, 0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Floating Badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.float-badge:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Adobe badges (Square with dark bg & glowing border) */
.badge-ps,
.badge-ae,
.badge-pr {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #060814;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 14px;
  border: 1.5px solid;
}

.badge-ps {
  top: 15%;
  left: -20px;
  color: #31a8ff;
  border-color: rgba(49, 168, 255, 0.5);
  box-shadow: 0 0 20px rgba(49, 168, 255, 0.25);
  animation: float-ps 4s ease-in-out infinite;
}

.badge-ae {
  top: 50%;
  left: -35px;
  color: #cf99ff;
  border-color: rgba(207, 153, 255, 0.5);
  box-shadow: 0 0 20px rgba(207, 153, 255, 0.25);
  animation: float-ae 4.5s ease-in-out infinite;
}

.badge-pr {
  top: 80%;
  left: 10px;
  color: #ff99f8;
  border-color: rgba(255, 153, 248, 0.5);
  box-shadow: 0 0 20px rgba(255, 153, 248, 0.25);
  animation: float-pr 5s ease-in-out infinite;
}

/* Social badges (Circle with gradient background) */
.badge-insta,
.badge-reels {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
}

.badge-insta {
  top: 30%;
  right: -15px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 0 25px rgba(220, 39, 67, 0.35);
  animation: float-insta 4.2s ease-in-out infinite;
}

.badge-reels {
  top: 60%;
  right: -30px;
  background: linear-gradient(135deg, #bc1888 0%, #cc2366 50%, #e52d27 100%);
  box-shadow: 0 0 25px rgba(204, 35, 102, 0.35);
  animation: float-reels 4.8s ease-in-out infinite;
}

/* Floating Animations */
@keyframes float-ps {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-4px, -8px) rotate(2deg);
  }
}

@keyframes float-ae {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(6px, -6px) rotate(-3deg);
  }
}

@keyframes float-pr {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-3px, -10px) rotate(4deg);
  }
}

@keyframes float-insta {

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

  50% {
    transform: translate(5px, -7px);
  }
}

@keyframes float-reels {

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

  50% {
    transform: translate(-5px, -9px);
  }
}


/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--bg-section);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: clamp(14px, 1.8vw, 20px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), var(--shadow-gold);
}

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

.offerDiv {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-icon {
  width: 60px;
  height: 60px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.icon-blue {
  background: linear-gradient(135deg, #1565c0, #1e88e5);
}

.icon-purple {
  background: linear-gradient(135deg, #6a1b9a, #9c27b0);
}

.icon-orange {
  background: linear-gradient(135deg, #e65100, #f57c00);
}

.icon-red {
  background: linear-gradient(135deg, #b71c1c, #e53935);
}

.service-card h3 {
  font-family: var(--ff-head);
  font-size: clamp(14px, 1.25vw, 15px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
  margin: 0;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.service-card ul li {
  font-size: clamp(12px, 1.1vw, 13.5px);
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.service-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why {
  background: var(--bg-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.why-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-item:hover .why-icon-wrap {
  transform: translateY(-3px);
}

/* Icon specific coloring & glow */
.why-icon-wrap.icon-cyan {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.2);
  color: #00d2ff;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

.why-icon-wrap.icon-cyan:hover {
  box-shadow: 0 0 25px rgba(6, 182, 212, 0.35);
}

.why-icon-wrap.icon-yellow {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.15);
}

.why-icon-wrap.icon-yellow:hover {
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.35);
}

.why-icon-wrap.icon-green {
  background: rgba(52, 211, 153, 0.08);
  border-color: rgba(52, 211, 153, 0.2);
  color: #34d399;
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.15);
}

.why-icon-wrap.icon-green:hover {
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.35);
}

.why-icon-wrap.icon-gold {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.2);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
}

.why-icon-wrap.icon-gold:hover {
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.35);
}

.why-content {
  flex: 1;
}

.why-content h4 {
  font-family: var(--ff-head);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  color: var(--text-white);
  margin-top: 4px;
  margin-bottom: 6px;
}

.why-content p {
  font-size: clamp(12px, 1.05vw, 13px);
  color: var(--text-muted);
  line-height: 1.5;
}

/* =============================================
   PORTFOLIO
   ============================================= */
.portfolio {
  background: var(--bg-section);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: #0a0a0f;
  border-color: var(--gold);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.port-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.port-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.35s ease;
}

.port-card:hover img {
  transform: scale(1.06);
}

.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 10px;
}

.port-card:hover .port-overlay {
  opacity: 1;
}

.port-overlay span {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-white);
}

.port-card.hidden {
  display: none;
}

.portfolio-cta-wrap {
  display: flex;
  justify-content: center;
}

/* --- Portfolio Marquee (3-Row Showcase) --- */
.portfolio-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 10px 0;
}

/* Side gradient shadows for professional smooth edge-fading */
.portfolio-marquee-container::before,
.portfolio-marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15vw;
  z-index: 10;
  pointer-events: none;
}

.portfolio-marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-section) 0%, transparent 100%);
}

.portfolio-marquee-container::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-section) 0%, transparent 100%);
}

.portfolio-marquee-row {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  position: relative;
  user-select: none;
  -webkit-user-drag: none;
}

.portfolio-marquee-row::-webkit-scrollbar {
  display: none;
}

.portfolio-marquee-row.grabbing {
  cursor: grabbing;
  scroll-behavior: auto;
}

.portfolio-marquee-track {
  display: flex;
  gap: 20px;
  padding: 10px 80px;
  width: max-content;
}

.portfolio-marquee-track .port-card {
  width: clamp(220px, 20vw, 290px);
  height: clamp(220px, 20vw, 290px);
  flex-shrink: 0;
  aspect-ratio: 1/1;
  scroll-snap-align: center;
}



/* =============================================
   PROCESS
   ============================================= */
.process {
  background: var(--bg-dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  position: relative;
}

/* Horizontal connecting line running behind circles */
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  /* Center of the 70px step-circle */
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.6) 50%, rgba(201, 168, 76, 0.1) 100%);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  transition: transform var(--transition);
}

.process-step:hover {
  transform: translateY(-5px);
}

/* Outer concentric ring + inner circle icon container */
.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: var(--bg-dark);
  /* Masks the line behind it */
  position: relative;
  z-index: 2;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
  transition: all var(--transition);
}

.step-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  /* Concentric outer ring spacing */
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50%;
  transition: all var(--transition);
  pointer-events: none;
}

.process-step:hover .step-circle {
  border-color: var(--gold-light);
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.35);
}

.process-step:hover .step-circle::after {
  inset: -12px;
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
}

.step-circle i {
  font-size: 22px;
  color: var(--gold);
  transition: transform var(--transition);
}

.process-step:hover .step-circle i {
  transform: scale(1.1);
}

.step-num {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.process-step h4 {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* Hide connecting line on tablet/mobile screens */
@media (max-width: 900px) {
  .process-steps::before {
    display: none;
  }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--bg-section);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 36px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-gold);
}

.testi-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 18px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testi-author div {
  display: flex;
  flex-direction: column;
}

.testi-author strong {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
}

.testi-author span {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(120deg, #0d1020 0%, #111430 50%, #0d1020 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: clamp(36px, 5vw, 56px) 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  flex-wrap: wrap;
}

.cta-trophy {
  font-size: clamp(2.5rem, 5vw, 4rem);
  flex-shrink: 0;
}

.cta-text {
  flex: 1;
  min-width: 200px;
}

.cta-text h2 {
  font-family: var(--ff-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 6px;
}

.cta-text h2 .gold {
  font-weight: 900;
}

.cta-text p {
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cta-whatsapp {
  font-size: 40px;
  color: #25D366;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 4px 20px rgba(37,211,102,0.35); */
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.cta-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.offerDiv {
  display: flex;
  gap: 10px;
}

/* .ourRecent{
  margin-bottom: 20px !important;
} */

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #07080d;
  padding-top: clamp(50px, 7vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  margin-bottom: 0px;
}

.footer-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), opacity var(--transition);
}

.fsoc:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.fsoc.insta {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.fsoc.wa {
  background: #25D366;
}

.fsoc.tg {
  background: #229ED9;
}

.fsoc.yt {
  background: #FF0000;
}

.footer-heading {
  font-family: var(--ff-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact strong {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
}

.footer-contact a,
.footer-contact span {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--gold);
}

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

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

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

/* =============================================
   RESPONSIVE — desktop untouched, small screens fixed
   ============================================= */

/* =============================================
   RESPONSIVE — desktop (1200px+) untouched
   ============================================= */

/* ── 1100px: large tablet ── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* ── 900px: tablet portrait ── */
@media (max-width: 900px) {

  /* ── Navbar ── */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 4px;
    z-index: 999;
  }

  .nav-links.open a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* ── Hero — single column, image on top ── */
  .hero {
    min-height: 100svh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    padding-top: 30px;
    padding-bottom: 40px;
    min-height: unset;
  }

  .hero-content {
    order: 2;
    padding-top: 20px;
  }

  .hero-visual {
    order: 1;
    min-height: unset;
    height: auto;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-player-wrap img {
    width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
  }

  .hero-heading {
    font-size: clamp(2rem, 6vw, 3rem);
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 24px;
    max-width: 540px;
    text-align: center;
  }

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

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
  }

  .float-badge {
    display: none;
  }

  /* ── Sections ── */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

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

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

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

  /* ── CTA ── */
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-actions {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ── 640px: mobile ── */
@media (max-width: 640px) {

  .container {
    padding: 0 16px;
  }

  .section-pad {
    padding: 48px 0;
  }

  /* ── Hero ── */
  .hero-inner {
    padding-top: 20px;
    padding-bottom: 36px;
    gap: 0;
  }

  .hero-visual {
    max-width: 320px;
  }

  .hero-player-wrap img {
    max-height: 42vh;
  }

  .hero-heading {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    text-align: center;
  }

  .hero-badge {
    font-size: 9px;
    padding: 6px 14px;
  }

  .hero-desc {
    font-size: 13px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 12px 16px;
    padding-top: 20px;
  }

  .stat {
    width: 100%;
  }

  .stat-icon {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .stat-num {
    font-size: 13px;
  }

  .stat-label {
    font-size: 9px;
  }

  /* ── Grids ── */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  /* ── Section titles ── */
  .section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  /* ── CTA ── */
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-trophy-img {
    width: 60px;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── 480px: small phone ── */
@media (max-width: 480px) {

  .container {
    padding: 0 14px;
  }

  .section-pad {
    padding: 40px 0;
  }

  /* ── Hero ── */
  .hero-visual {
    max-width: 280px;
  }

  .hero-player-wrap img {
    margin-top: 20px;
    max-height: 38vh;
  }

  .hero-heading {
    font-size: clamp(1.5rem, 9vw, 2rem);
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

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

  .hero-stats {
    grid-template-columns: repeat(2, auto);
    gap: 10px 12px;
  }

  .stat-icon {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }

  /* ── Portfolio ── */
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  /* ── Navbar ── */
  .nav-links.open {
    padding: 16px;
  }

  .stat {
    text-align: start;
  }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* SweetAlert Jivika Designs customizations */
.swal2-jivika-popup {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-card) !important;
  font-family: var(--ff-body) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
}

.swal2-jivika-title {
  font-family: var(--ff-head) !important;
  font-weight: 800 !important;
  color: var(--gold) !important;
  font-size: clamp(16px, 1.8vw, 22px) !important;
  text-transform: uppercase;
}

.swal2-jivika-confirm {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--ff-head) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 12px 24px !important;
  background: linear-gradient(180deg, #1ebd50 0%, #158b38 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.5) !important;
}

.swal2-image {
  border-radius: 10px !important;
  border: 1px solid var(--border-card) !important;
  max-width: 90% !important;
  object-fit: contain !important;
}

/* Gallery Lightbox Styles */
.swal-gallery-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  gap: 15px;
}

.swal-gallery-img {
  max-width: 75% !important;
  max-height: 55vh !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  border: 1px solid var(--border-card) !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5) !important;
}

.swal-gallery-arrow {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: var(--text-white) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  cursor: pointer !important;
  transition: background var(--transition), transform var(--transition) !important;
  flex-shrink: 0 !important;
}

.swal-gallery-arrow:hover {
  background: var(--gold) !important;
  color: #0a0a0f !important;
  border-color: var(--gold) !important;
  transform: scale(1.1) !important;
}

.swal2-gallery-popup {
  width: 700px !important;
  max-width: 95vw !important;
}

/* =============================================
   OWL CAROUSEL CUSTOM THEME STYLES
   ============================================= */
.portfolio-carousel-wrapper {
  position: relative;
  padding: 0 50px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .portfolio-carousel-wrapper {
    padding: 0 30px;
  }
}

.portfolio-carousel-wrapper .owl-carousel {
  position: static;
}

/* Custom Navigation Arrows */
.portfolio-carousel-wrapper .owl-nav {
  margin: 0;
}

.portfolio-carousel-wrapper .owl-prev,
.portfolio-carousel-wrapper .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: rgba(16, 17, 26, 0.75) !important;
  border: 1.5px solid var(--border) !important;
  color: var(--gold) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  cursor: pointer;
  transition: all var(--transition) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.portfolio-carousel-wrapper .owl-prev {
  left: 0px;
}

.portfolio-carousel-wrapper .owl-next {
  right: 0px;
}

.portfolio-carousel-wrapper .owl-prev:hover,
.portfolio-carousel-wrapper .owl-next:hover {
  background: var(--gold) !important;
  color: #0a0a0f !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 20px rgba(237, 182, 23, 0.45);
  transform: translateY(-50%) scale(1.08);
}

.portfolio-carousel-wrapper .owl-prev.disabled,
.portfolio-carousel-wrapper .owl-next.disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* Custom Dots styling */
.portfolio-carousel-wrapper .owl-dots {
  text-align: center;
  margin-top: 25px;
}

.portfolio-carousel-wrapper .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 5px 6px !important;
  background: rgba(255, 255, 255, 0.25) !important;
  border-radius: 50% !important;
  display: block;
  transition: all var(--transition) !important;
}

.portfolio-carousel-wrapper .owl-dot.active span,
.portfolio-carousel-wrapper .owl-dot:hover span {
  background: var(--gold) !important;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(237, 182, 23, 0.6);
}

/* 3-Row Layout vertical stack of carousels */
.tab-carousel-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}