* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --gold: #1d7fda;
  --dark: #ffffff;
  --dark2: #f8f9fb;
  --light: #ffffff;
  --gray: #6b7280;

  --nav-blue: #1d7fda;
  --nav-blue-dark: #1565c0;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #111;
  overflow-x: hidden;
}
/* =========================
NAVBAR
========================= */
/* =========================
ACTIVE LINK STYLE - ADD THIS CODE
========================= */

/* Active link state */
.nav-links a.active {
  color: yellow;
}

.nav-links a.active::after {
  width: 100%;
}

/* Mobile active link */
@media (max-width: 991px) {
  .nav-links a.active {
    color: yellow;
    font-weight: 700;
  }
}
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1400px;
  height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 30px;

  background: rgba(8, 28, 47, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 60px;

  box-shadow:
    0 10px 40px rgba(29, 127, 218, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);

  z-index: 9999;
  transition: all 0.4s ease;
}

/* Scroll Effect */

.navbar.scrolled {
  background: rgbargba(29, 127, 218, 0.25);
  box-shadow: 0 15px 50px rgba(29, 127, 218, 0.35);
}

/* =========================
LOGO
========================= */

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 408px;
  width: auto;
  object-fit: contain;
}

/* =========================
CENTER MENU
========================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);

  width: 0;
  height: 2px;

  background: yellow;
  transition: 0.35s ease;
}

.nav-links a:hover {
  color: yellow;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================
RIGHT AREA
========================= */

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* =========================
BOOK BUTTON
========================= */

.book-btn {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;

  text-decoration: none;

  color: black;
  font-weight: 700;
  font-size: 14px;

  border-radius: 50px;

  background: yellow;

  transition: 0.4s ease;
}

.book-btn span {
  transition: 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

.book-btn:hover span {
  transform: translateX(5px);
}

/* Shine Effect */

.book-btn::before {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );

  transition: 0.8s;
}

.book-btn:hover::before {
  left: 120%;
}

/* =========================
HAMBURGER
========================= */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  transition: 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .navbar {
    padding: 0 20px;
    height: 72px;
  }

  .hamburger {
    display: flex;
  }

  .book-btn {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 95px;
    left: 0%;
    transform: translateX(-50%) translateY(-30px);

    width: 90%;
    max-width: 400px;

    border-radius: 25px;

    padding: 30px;

    flex-direction: column;
    gap: 25px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all 0.4s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0%) translateY(0);
  }

  .nav-links a {
    color: #000;
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .logo img {
    position: absolute;
    left: -50px;
  }

  .navbar {
    width: 95%;
    top: 12px;
  }
}

/* =========================
SECTIONS
========================= */

section {
  min-height: 50vh;
  padding: 120px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-content {
  max-width: 1200px;
  width: 100%;
}

/* =========================
HOME
========================= */

#home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 8%;
}

/* Video Background Container */
#home .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

#home .video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Video Overlay */
#home .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

/* Keep content above video */
#home .hero-container {
  position: relative;
  z-index: 2;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-tag {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  margin-bottom: 25px;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.hero-title span {
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: white;

  opacity: 0;
  transform: translateY(60px);

  animation: wordReveal 0.8s forwards;
}

.hero-title span:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-title span:nth-child(2) {
  animation-delay: 0.3s;
}
.hero-title span:nth-child(3) {
  animation-delay: 0.5s;
}
.hero-title span:nth-child(4) {
  animation-delay: 0.7s;
}
.hero-title span:nth-child(5) {
  animation-delay: 0.9s;
  color: red;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-desc {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 10px;
}
.hero-desc2 {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 15px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
  position: relative;
  overflow: hidden;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s;
}

.btn-primary {
  background: yellow;
  color: black;
}

.btn-secondary {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-primary::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );

  transition: 0.8s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  left: 120%;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-8px);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  perspective: 1400px;
}

.logo-3d {
  position: relative;
  width: 550px;
  height: 550px;

  display: flex;
  justify-content: center;
  align-items: center;

  transform-style: preserve-3d;

  animation: sceneRotate 18s linear infinite;
}

/* Main rotating frame */

.diamond-frame {
  position: absolute;

  width: 280px;
  height: 280px;

  border: 3px solid rgba(33, 80, 221, 0.8);

  transform: rotateZ(45deg) rotateX(70deg);

  box-shadow:
    0 0 40px rgba(29, 127, 218, 0.8),
    inset 0 0 40px rgba(29, 127, 218, 0.5);

  animation: diamondSpin 12s linear infinite;
}

/* Floating glass cards */

.floating-box {
  position: absolute;

  width: 120px;
  height: 120px;

  border-radius: 24px;

  backdrop-filter: blur(12px);

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);

  transform-style: preserve-3d;
}

.box-1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateZ(80px);

  animation: float1 6s ease-in-out infinite;
}

.box-2 {
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateZ(100px);

  animation: float2 7s ease-in-out infinite;
}

.box-3 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateZ(70px);

  animation: float3 8s ease-in-out infinite;
}

.box-4 {
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateZ(100px);

  animation: float4 6s ease-in-out infinite;
}

/* Center logo */

.logo-center {
  position: absolute;

  width: 42%;
  aspect-ratio: 1;

  border-radius: 50%;

  overflow: hidden;

  background: #081428;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 60px rgba(29, 127, 218, 0.8);

  animation: pulse 3s ease infinite;

  z-index: 10;
}

.logo-center img {
  width: 95%;
  height: 95%;
  object-fit: contain;
}
/* Animations */

@keyframes sceneRotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@keyframes diamondSpin {
  from {
    transform: rotateZ(45deg) rotateX(70deg) rotateY(0deg);
  }

  to {
    transform: rotateZ(45deg) rotateX(70deg) rotateY(360deg);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.08);
  }
}

@keyframes float1 {
  50% {
    transform: translateX(-50%) translateY(-20px) translateZ(120px);
  }
}

@keyframes float2 {
  50% {
    transform: translateY(-50%) translateX(20px) translateZ(130px);
  }
}

@keyframes float3 {
  50% {
    transform: translateX(-50%) translateY(20px) translateZ(120px);
  }
}

@keyframes float4 {
  50% {
    transform: translateY(-50%) translateX(-20px) translateZ(130px);
  }
}

/* Tablet */

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content {
    text-align: center;
    order: 2;
  }

  .hero-visual {
    order: 1;
    margin-top: 0;
    margin-bottom: 30px;
    min-height: 420px;
    margin-top: 20px;
  }

  .hero-title {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-desc,
  .hero-desc2 {
    margin-left: auto;
    margin-right: auto;
  }

  .logo-3d {
    width: 280px;
    height: 280px;
  }

  .logo-center {
    width: 130px;
    height: 130px;
  }

  .diamond-frame {
    width: 220px;
    height: 220px;
  }

  .floating-box {
    width: 80px;
    height: 80px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #home {
    padding: 100px 20px 60px;
  }

  .hero-container {
    gap: 10px;
  }

  .hero-visual {
    min-height: 280px;
    overflow: hidden;
  }

  .logo-3d {
    width: 220px;
    height: 220px;
  }

  .logo-center {
    width: 110px;
    height: 110px;
  }

  .diamond-frame {
    width: 150px;
    height: 150px;
  }

  .floating-box {
    width: 45px;
    height: 45px;
  }

  .hero-title span {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* =========================
COMMON
========================= */

.section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subtitle {
  color: var(--gray);
  margin-bottom: 50px;
}

.grid {
  display: grid;
  gap: 30px;
}

.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}

/* ==========================
ABOUT SECTION
========================== */

.about-premium {
  padding: 100px 8%;
  background: #fff;
}

.container {
  max-width: 1400px;
  margin: auto;
}

.about-heading {
  margin-bottom: 50px;
}

.about-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  max-width: 800px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
}

.about-images {
  display: flex;
  gap: 20px;
  height: 520px;
}

.big-image {
  flex: 7;
  overflow: hidden;
  border-radius: 24px;
}

.small-image {
  flex: 3;
  overflow: hidden;
  border-radius: 24px;
}

.big-image img,
.small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.big-image:hover img,
.small-image:hover img {
  transform: scale(1.08);
}

.big-image,
.small-image {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-images {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .about-premium {
    padding: 70px 5%;
  }

  .about-heading {
    margin-bottom: 35px;
  }

  .about-heading h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-images {
    height: 350px;
    gap: 12px;
  }
}

/* ==========================
SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .about-images {
    flex-direction: column;
    height: auto;
  }

  .big-image,
  .small-image {
    width: 100%;
    height: 280px;
  }

  .about-heading h2 {
    font-size: 1.7rem;
  }
}
/* Smooth Reveal Animation */

.about-heading,
.about-text,
.big-image,
.small-image {
  opacity: 0;
  will-change: transform, opacity;
}

/* Initial States */
.about-heading.hidden {
  transform: translateY(40px);
}

.about-text.hidden {
  transform: translateY(50px);
}

.big-image.hidden {
  transform: translateX(60px);
}

.small-image.hidden {
  transform: translateX(80px);
}

.about-heading.show,
.about-text.show,
.big-image.show,
.small-image.show {
  opacity: 1;
  transform: translate(0, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-text.show {
  transition-delay: 0.15s;
}

.big-image.show {
  transition-delay: 0.25s;
}

.small-image.show {
  transition-delay: 0.4s;
}
.big-image img,
.small-image img {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.about-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: red;
  margin-bottom: 12px;
}

.about-heading h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #111;
  max-width: 800px;
}

.about-heading h2 span {
  color: red;
}

@media (max-width: 768px) {
  .about-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .about-heading h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .about-subtitle {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .about-heading h2 {
    font-size: 1.7rem;
    line-height: 1.35;
  }
}
/* about end */

/* ======================


/* ==========================
WHAT WE DO SECTION
========================== */

.wedo-area {
  padding: 60px 8%;
  background: #ffffff;
  overflow: hidden;
}

.wedo-area .container {
  max-width: 1400px;
  margin: auto;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title p {
  color: var(--text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  /* background: var(--gold); */
  display: block;
  margin: 18px auto 0;
  border-radius: 50px;
}

.wedo-grid {
  display: grid;
  grid-template-columns: 1fr 500px 1fr;
  gap: 35px;
  align-items: center;
}

.wedo-wrap {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;

  padding: 25px;
  margin-bottom: 25px;

  background: #0f0f0f;
  border-radius: 22px;

  overflow: hidden;

  transition: all 0.4s ease;
}

.wedo-wrap::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;

  width: 180px;
  height: 180px;

  background: radial-gradient(
    circle,
    rgba(0, 140, 255, 0.35) 0%,
    rgba(0, 140, 255, 0) 70%
  );

  pointer-events: none;
}

.wedo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;

  pointer-events: none;
}

.wedo-wrap:hover {
  transform: translateY(-10px);

  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 0 35px rgba(0, 140, 255, 0.18);
}

.wedo-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.06);
}

.wedo-icon span,
.wedo-icon i {
  font-size: 30px;
  color: var(--gold);
}

.wedo-info h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wedo-info p {
  color: #d6d6d6;
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

.wedo-img {
  text-align: center;
}

.wedo-img img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: auto;
}

.hidden {
  opacity: 0;
  transform: translateY(60px);
}

.show {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 1100px) {
  .wedo-grid {
    grid-template-columns: 1fr;
  }

  .wedo-img {
    order: -1;
  }

  .wedo-img img {
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .wedo-area {
    padding: 70px 5%;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .wedo-wrap {
    padding: 20px;
  }

  .wedo-icon {
    width: 60px;
    height: 60px;
  }

  .wedo-icon span,
  .wedo-icon i {
    font-size: 24px;
  }

  .wedo-info h3 {
    font-size: 18px;
  }

  .wedo-info p {
    font-size: 14px;
  }

  .wedo-img img {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .wedo-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .wedo-info {
    text-align: center;
  }

  .section-title h2 {
    font-size: 1.7rem;
  }

  .wedo-img img {
    max-width: 260px;
  }
}

.section-title.hidden {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.section-title.show {
  opacity: 1;
  clip-path: inset(0 0 0 0);

  transition:
    clip-path 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;
}

.wedo-left .wedo-wrap.hidden {
  opacity: 0;
  transform: translateX(-80px);
}

.wedo-left .wedo-wrap.show {
  opacity: 1;
  transform: translateX(0);

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
}

.wedo-right .wedo-wrap.hidden {
  opacity: 0;
  transform: translateX(80px);
}

.wedo-right .wedo-wrap.show {
  opacity: 1;
  transform: translateX(0);

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease;
}

.wedo-img.hidden {
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
}

.wedo-img.show {
  opacity: 1;
  transform: scale(1) rotate(0);

  transition:
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;
}

.wedo-wrap:nth-child(1).show {
  transition-delay: 0.1s;
}

.wedo-wrap:nth-child(2).show {
  transition-delay: 0.25s;
}

.wedo-wrap:nth-child(3).show {
  transition-delay: 0.4s;
}

.wedo-wrap,
.wedo-img,
.section-title {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
/* services end */

/* ==========================
   TATTOO TEAM SECTION
========================== */

.tattoo-team-section {
  padding: 60px 8%;
  background: #fff;
}

.tattoo-team-container {
  max-width: 1400px;
  margin: auto;
}

.tattoo-team-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 70px;
}

.tattoo-team-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tattoo-team-header h2 span {
  color: red;
  position: relative;
}

.tattoo-team-header p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
}

/* GRID */

.tattoo-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* CARD */

.tattoo-team-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  cursor: pointer;
  min-height: 500px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}

.tattoo-team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* IMAGE */

.tattoo-team-image {
  width: 100%;
  height: 500px;
}

.tattoo-team-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tattoo-team-card:hover .tattoo-team-image img {
  transform: scale(1.1);
}

/* DARK OVERLAY */

.tattoo-team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  z-index: 1;
}

.tattoo-team-info {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 25px;
  z-index: 2;

  transform: translateY(60px);
  transition: all 0.5s ease;
}

.tattoo-team-card:hover .tattoo-team-info {
  transform: translateY(0);
}

.tattoo-team-info h3 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.tattoo-team-info span {
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
}

/* ANIMATED GOLD LINE */

.tattoo-team-info::before {
  content: "";
  width: 60px;
  height: 3px;
  background: red;
  display: block;
  margin-bottom: 15px;
  transition: width 0.4s ease;
}

.tattoo-team-card:hover .tattoo-team-info::before {
  width: 120px;
}

/* TABLET */

@media (max-width: 991px) {
  .tattoo-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tattoo-team-card,
  .tattoo-team-image {
    height: 450px;
    min-height: 450px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .tattoo-team-section {
    padding: 4px 5%;
  }

  .tattoo-team-grid {
    grid-template-columns: 1fr;
  }

  .tattoo-team-card,
  .tattoo-team-image {
    height: 420px;
    min-height: 420px;
  }

  .tattoo-team-info {
    transform: translateY(0);
  }

  .tattoo-team-header p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .tattoo-team-card,
  .tattoo-team-image {
    height: 350px;
    min-height: 350px;
  }

  .tattoo-team-info h3 {
    font-size: 1.4rem;
  }

  .tattoo-team-header h2 {
    font-size: 1.6rem;
  }
}
/* artist css */
/* =========================
GALLERY
========================= */

/* =========================
CONTACT
========================= */

/* =========================


/* =========================
BACK TO TOP
========================= */

.top-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 999;
}

.top-btn.show {
  opacity: 1;
  visibility: visible;
}

.hidden {
  opacity: 0;
  transition: 1s;
}

.fade-up {
  transform: translateY(80px);
}

.slide-left {
  transform: translateX(-100px);
}

.slide-right {
  transform: translateX(100px);
}

.zoom {
  transform: scale(0.8);
}

.show {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
  }

  .nav-links.active {
    max-height: 400px;
    padding: 25px;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

.video-section {
  padding: 60px 0 70px; /* comfortable vertical breathing room */
  overflow: hidden;
  background: #ffffff;
}

/* container2 exactly as you used */
.container2 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 45px; /* lateral padding keeps cards from touching edges */
}

/* ----- Subtitle & heading (same classes) ----- */
.video-subtitle {
  display: block;
  text-align: center;
  color: red;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.video-heading {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3.5rem);
  margin-bottom: 45px; /* slightly increased for better separation */
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
}

.video-heading span {
  color: red; /* vibrant red as requested */
  font-weight: 600;
}

/* ----- Infinite marquee track ----- */
.video-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: marquee 35s linear infinite; /* smooth & readable speed */
}

.video-track:hover {
  animation-play-state: paused;
}

/* ----- Individual card (exact class) ----- */
.video-card {
  width: 420px;
  border-radius: 24px; /* slightly softer curves */
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #0f172a; /* deep neutral, matches dark theme */
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.2);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.video-card:hover {
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

/* wrapper keeps 16/9 ratio */
.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  width: 100%;
}

.video-wrapper img,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

/* Play button (central, rounded) */
.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border: none;
  border-radius: 50%;
  background: #1d7fda;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transition:
    background 0.2s,
    transform 0.2s;
  line-height: 1;
  padding-left: 4px; /* optical centering for play triangle */
}

.play-btn:hover {
  background: #0f5bb5;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Hide play button when video is playing */
.video-card.playing .play-btn {
  display: none;
}

/* ----- marquee animation (moves exactly half of the duplicated set) ----- */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ----- Responsive adjustments ----- */
@media (max-width: 768px) {
  .video-card {
    width: 300px;
    border-radius: 18px;
  }

  .video-section {
    padding: 40px 0 50px;
  }

  .container2 {
    padding: 0 18px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .video-heading {
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {
  .video-card {
    width: 270px;
  }

  .video-subtitle {
    font-size: 0.9rem;
  }

  .video-heading {
    font-size: 1.8rem;
  }
}
/* google review */

/* FAQ SECTION */

.faq-section {
  background: #ffffff;
  padding: 10px 10px;
}

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.faq-subtitle {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #111111;
  margin-bottom: 15px;
  line-height: 1.2;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;

  font-size: 18px;
  font-weight: 600;
  color: #111111;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ff4d00;
}

.faq-icon {
  font-size: 26px;
  color: #ff4d00;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 15px;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 25px 25px;
}

.faq-answer-content p {
  margin: 0;
  color: #666666;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}

/* Active States */
.faq-item.active {
  border-color: #ff4d00;
  box-shadow: 0 8px 30px rgba(255, 77, 0, 0.1);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Fallback, will be overridden by JS */
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer-content p {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.active .faq-question {
  color: #ff4d00;
}

/* Tablet */
@media (max-width: 768px) {
  .faq-section {
    padding: 70px 15px;
  }

  .faq-heading h2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px;
  }

  .faq-answer-content {
    padding: 0 20px 20px;
  }

  .faq-answer-content p {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .faq-heading h2 {
    font-size: 25px;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px;
  }

  .faq-icon {
    font-size: 22px;
  }

  .faq-answer-content {
    padding: 0 18px 18px;
  }
}
/* review */
.wwe-review-section {
  background: #ffffff;
  padding: 30px 10px;
}

.wwe-review-container {
  max-width: 1400px;
  margin: 0 auto;
}

.wwe-review-heading {
  text-align: center;
  margin-bottom: 60px;
}

.wwe-review-heading h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
  line-height: 1.2;
}

.wwe-review-heading p {
  max-width: 700px;
  margin: auto;
  color: #666;
  line-height: 1.8;
  font-size: 17px;
}

/* GRID */

.wwe-review-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
}

/* CARDS */

.wwe-review-card {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.wwe-review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

/* USER */

.wwe-review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.wwe-review-user h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

/* STAR RATING */

.wwe-review-stars {
  color: #fbbc04;
  font-size: 15px;
  letter-spacing: 2px;
  margin-top: 4px;
  line-height: 1;
  font-weight: 700;
}

/* CONTENT */

.wwe-review-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

.wwe-review-content p {
  line-height: 1.8;
  font-size: 15px;
  opacity: 0.95;
  margin: 0;
}

/* GRID LAYOUT */

.wwe-review-card1 {
  background: #7c3aed;
  color: #fff;
  grid-column: 1 / 3;
}

.wwe-review-card2 {
  background: #374151;
  color: #fff;
}

.wwe-review-card3 {
  background: #ffffff;
  color: #111;
  grid-column: 4;
  grid-row: 1 / 3;
}

.wwe-review-card4 {
  background: #ffffff;
  color: #111;
}

.wwe-review-card5 {
  background: #111827;
  color: #fff;
  grid-column: 2 / 4;
}

/* TABLET */

@media (max-width: 1200px) {
  .wwe-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwe-review-card1,
  .wwe-review-card2,
  .wwe-review-card3,
  .wwe-review-card4,
  .wwe-review-card5 {
    grid-column: auto;
    grid-row: auto;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .wwe-review-section {
    padding: 60px 15px;
  }

  .wwe-review-heading {
    margin-bottom: 40px;
  }

  .wwe-review-heading h2 {
    font-size: 34px;
  }

  .wwe-review-heading p {
    font-size: 15px;
  }

  .wwe-review-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wwe-review-card {
    padding: 25px;
  }

  .wwe-review-user {
    gap: 12px;
    margin-bottom: 18px;
  }

  .wwe-review-user img {
    width: 48px;
    height: 48px;
  }

  .wwe-review-user h4 {
    font-size: 15px;
  }

  .wwe-review-stars {
    font-size: 13px;
    letter-spacing: 1px;
  }

  .wwe-review-content h3 {
    font-size: 18px;
  }

  .wwe-review-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* SMALL MOBILE */

@media (max-width: 480px) {
  .wwe-review-section {
    padding: 50px 12px;
  }

  .wwe-review-heading h2 {
    font-size: 28px;
  }

  .wwe-review-heading p {
    font-size: 14px;
  }

  .wwe-review-card {
    padding: 20px;
    border-radius: 16px;
  }

  .wwe-review-user img {
    width: 42px;
    height: 42px;
  }

  .wwe-review-user h4 {
    font-size: 14px;
  }

  .wwe-review-stars {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .wwe-review-content h3 {
    font-size: 17px;
  }

  .wwe-review-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* ==========================
   WWE HOME WHY CHOOSE US
========================== */

.wwehomewhy-section {
  padding: 100px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.wwehomewhy-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 50%;
  top: -120px;
  left: -120px;
  filter: blur(120px);
}

.wwehomewhy-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 170, 100, 0.1);
  border-radius: 50%;
  right: -100px;
  bottom: -100px;
  filter: blur(120px);
}

.wwehomewhy-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.wwehomewhy-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwehomewhy-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: #fff3ee;
  color: #ff6b35;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.wwehomewhy-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #111;
  line-height: 1.2;
  max-width: 850px;
  margin: auto;
}

.wwehomewhy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wwehomewhy-card {
  background: rgba(255, 255, 255, 0.75);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(0, 0, 0, 0.05);

  border-radius: 24px;

  padding: 35px;

  transition: 0.4s ease;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.wwehomewhy-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.wwehomewhy-icon {
  width: 75px;
  height: 75px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  border-radius: 20px;

  background: #fff3ee;

  margin-bottom: 22px;
}

.wwehomewhy-card h3 {
  font-size: 22px;
  color: #111;
  font-weight: 700;
  margin-bottom: 12px;
}

.wwehomewhy-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Tablet */

@media (max-width: 991px) {
  .wwehomewhy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .wwehomewhy-section {
    padding: 70px 15px;
  }

  .wwehomewhy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wwehomewhy-card {
    padding: 25px;
  }

  .wwehomewhy-header h2 {
    font-size: 1.6rem;
  }
}

/* map */
/* ==========================
   HOME GOOGLE MAP SECTION
========================== */

.homewwemap-section {
  padding: 100px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* Background Glow Effects */

.homewwemap-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 50%;
  top: -180px;
  left: -180px;
  filter: blur(120px);
}

.homewwemap-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 180, 100, 0.12);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  filter: blur(120px);
}

.homewwemap-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ==========================
   HEADING
========================== */

.homewwemap-heading {
  text-align: center;
  margin-bottom: 50px;
}

.homewwemap-heading .wwemap-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: #fff3ee;
  color: #ff6b35;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.homewwemap-heading h2 {
  font-size: clamp(2rem, 3vw, 3.5rem);
  color: #111;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

/* ==========================
   MAP CARD
========================== */

.homewwemap-card {
  position: relative;

  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border: 1px solid rgba(255, 255, 255, 0.9);

  border-radius: 32px;

  padding: 20px;

  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  transition: all 0.4s ease;
}

.homewwemap-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Orange Border Glow */

.homewwemap-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.3),
    rgba(255, 180, 100, 0.1)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* ==========================
   MAP FRAME
========================== */

.homewwemap-frame {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}

.homewwemap-frame iframe {
  width: 100%;
  height: 550px;
  border: none;
  display: block;
  transition: transform 0.7s ease;
}

.homewwemap-card:hover iframe {
  transform: scale(1.03);
}

/* Optional Overlay */

.homewwemap-frame::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.08), transparent);

  pointer-events: none;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .homewwemap-section {
    padding: 80px 20px;
  }

  .homewwemap-frame iframe {
    height: 450px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .homewwemap-section {
    padding: 70px 15px;
  }

  .homewwemap-heading {
    margin-bottom: 35px;
  }

  .homewwemap-heading h2 {
    font-size: 1.6rem;
  }

  .homewwemap-card {
    padding: 12px;
    border-radius: 22px;
  }

  .homewwemap-frame {
    border-radius: 16px;
  }

  .homewwemap-frame iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .homewwemap-frame iframe {
    height: 280px;
  }
}
/* ==========================
   WWE HOME CTA SECTION
========================== */

.wwehomecta-section {
  padding: 100px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.wwehomecta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  filter: blur(120px);
}

.wwehomecta-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 180, 100, 0.12);
  border-radius: 50%;
  bottom: -120px;
  right: -120px;
  filter: blur(120px);
}

.wwehomecta-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.wwehomecta-card {
  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255, 255, 255, 0.9);

  border-radius: 32px;

  padding: 70px 50px;

  text-align: center;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wwehomecta-tag {
  display: inline-block;

  padding: 10px 18px;

  background: #fff3ee;

  color: red;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 700;

  margin-bottom: 20px;
}

.wwehomecta-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  font-weight: 800;

  color: #111;

  line-height: 1.2;

  margin-bottom: 20px;
}

.wwehomecta-content p {
  max-width: 800px;

  margin: 0 auto 40px;

  color: #666;

  font-size: 18px;

  line-height: 1.8;
}

.wwehomecta-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;
}

.wwehomecta-btn {
  text-decoration: none;

  padding: 16px 30px;

  border-radius: 14px;

  font-size: 16px;

  font-weight: 700;

  transition: 0.35s ease;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;
}

/* Primary */

.wwehomecta-primary {
  background: yellow;

  color: black;

  /* box-shadow: 0 12px 25px rgba(255, 107, 53, 0.25); */
}

.wwehomecta-primary:hover {
  transform: translateY(-4px);

  /* box-shadow: 0 18px 35px rgba(255, 107, 53, 0.35); */
}

/* Secondary */

.wwehomecta-secondary {
  background: #111;

  color: #fff;
}

.wwehomecta-secondary:hover {
  transform: translateY(-4px);
}

/* Outline */

.wwehomecta-outline {
  color: black;

  background: #fff;
}

.wwehomecta-outline:hover {
  background: yellow;

  color: black;

  transform: translateY(-4px);
}

/* Tablet */

@media (max-width: 991px) {
  .wwehomecta-card {
    padding: 50px 35px;
  }
}

/* Mobile */

@media (max-width: 768px) {
  .wwehomecta-section {
    padding: 70px 15px;
  }

  .wwehomecta-card {
    padding: 35px 20px;

    border-radius: 24px;
  }

  .wwehomecta-content h2 {
    font-size: 2rem;
  }

  .wwehomecta-content p {
    font-size: 16px;
  }

  .wwehomecta-buttons {
    flex-direction: column;
  }

  .wwehomecta-btn {
    width: 100%;
  }
}

/* ==========================
   WWE FLOATING BUTTONS
========================== */

.wwefloat-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wwefloat-btn {
  width: 60px;
  height: 60px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  color: #fff;

  font-size: 28px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  transition: 0.3s ease;

  animation: wwefloatPulse 2s infinite;
}

/* WhatsApp */

.wwefloat-whatsapp {
  background: #25d366;
}

.wwefloat-whatsapp svg {
  width: 30px;
  height: 30px;
}

/* Call */

.wwefloat-call {
  background: #fff;
}

/* Hover */

.wwefloat-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

/* Pulse Animation */

@keyframes wwefloatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobile */

@media (max-width: 768px) {
  .wwefloat-container {
    right: 15px;
    bottom: 15px;
  }

  .wwefloat-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
  }

  .wwefloat-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

/* =========================
GALLERY WRAPPER
========================= */
/* =========================
GALLERY WRAPPER
========================= */
.twg-gallery-wrapper {
  padding: 50px 20px 70px;
  background: #ffffff;
}

/* =========================
GALLERY HEADER
========================= */
.twg-gallery-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  padding-bottom: 20px;
}

.twg-main-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.twg-subtitle {
  color: #ff0000;
  display: inline;
}

.twg-heading-text {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
GRID CONTAINER - Masonry Layout
========================= */
.twg-grid-container {
  columns: 5 200px;
  column-gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 10px;
}

/* =========================
GRID ITEMS
========================= */
.twg-grid-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 100%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  padding: 8px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: all 0.35s ease-in-out;
  position: relative;
  z-index: 1;
}

.twg-grid-item:hover {
  border-color: #ff4d00;
  box-shadow: 8px 8px 25px rgba(255, 77, 0, 0.2);
  transform: translateY(-5px);
  z-index: 10;
}

/* =========================
IMAGE LINK - Make entire image clickable
========================= */
.twg-image-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  z-index: 2;
}

/* Overlay effect on hover */
.twg-image-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 3;
  transition: all 0.35s ease-in-out;
  border-radius: 4px;
  pointer-events: none;
}

.twg-image-link:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

/* View icon on hover */
.twg-image-link::after {
  content: "🔍";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 30px;
  z-index: 4;
  transition: all 0.35s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

.twg-image-link:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* =========================
IMAGE BOX
========================= */
.twg-image-box {
  overflow: hidden;
  border-radius: 4px;
  line-height: 0;
  position: relative;
}

.twg-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: grayscale(0%);
  transition: all 0.35s ease-in-out;
}

/* Zoom effect on hover */
.twg-image-link:hover .twg-img {
  transform: scale(1.05);
}

/* =========================
CAPTION
========================= */
.twg-caption {
  margin: 10px 0 5px;
  padding: 0;
  text-align: center;
  font-style: italic;
  font-size: 14px;
  color: #555555;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.twg-grid-item:hover .twg-caption {
  color: #ff4d00;
}

/* =====================
   TABLET (1024px)
===================== */
@media (max-width: 1024px) {
  .twg-grid-container {
    columns: 4 180px;
    column-gap: 1.2rem;
  }

  .twg-gallery-wrapper {
    padding: 40px 15px 60px;
  }

  .twg-gallery-header {
    margin-bottom: 40px;
  }

  .twg-heading-text {
    font-size: 15px;
  }

  .twg-image-link::after {
    font-size: 25px;
  }
}

/* =====================
   TABLET SMALL (768px)
===================== */
@media (max-width: 768px) {
  .twg-grid-container {
    columns: 3 160px;
    column-gap: 1rem;
  }

  .twg-gallery-wrapper {
    padding: 35px 15px 50px;
  }

  .twg-gallery-header {
    margin-bottom: 35px;
    padding-bottom: 15px;
  }

  .twg-main-heading {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .twg-heading-text {
    font-size: 14px;
    padding: 0 10px;
  }

  .twg-grid-item {
    margin-bottom: 1rem;
    padding: 6px;
  }

  .twg-caption {
    font-size: 13px;
    margin: 8px 0 4px;
  }

  .twg-image-link::after {
    font-size: 22px;
  }
}

/* =====================
   MOBILE (480px)
===================== */
@media (max-width: 480px) {
  .twg-grid-container {
    columns: 2 150px;
    column-gap: 0.8rem;
  }

  .twg-gallery-wrapper {
    padding: 30px 10px 40px;
  }

  .twg-gallery-header {
    margin-bottom: 30px;
    padding-bottom: 10px;
  }

  .twg-main-heading {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .twg-heading-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .twg-grid-item {
    margin-bottom: 0.8rem;
    padding: 5px;
    border-width: 1.5px;
  }

  .twg-caption {
    font-size: 12px;
    margin: 6px 0 3px;
  }

  .twg-image-link::after {
    font-size: 20px;
  }
}

/* =====================
   SMALL MOBILE (380px)
===================== */
@media (max-width: 380px) {
  .twg-grid-container {
    columns: 2 130px;
    column-gap: 0.6rem;
  }

  .twg-gallery-wrapper {
    padding: 25px 8px 35px;
  }

  .twg-main-heading {
    font-size: 1.5rem;
  }

  .twg-heading-text {
    font-size: 12px;
  }

  .twg-grid-item {
    padding: 4px;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
  }

  .twg-image-link::after {
    font-size: 18px;
  }
}
