body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #111;
  color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 60px 0 60px;
  background: transparent;
}

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

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #aaa;
}

.cta {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cta:hover {
  background: #eee;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60vh;
  padding: 0 60px;
}

.hero h1 {
  font-size: 6vw;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
}

.expanding-video {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s;
}

.expanding-video-img {
  width: 600px;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: width 0.5s, height 0.5s, border-radius 0.5s;
}

.expanding-video.active {
  opacity: 1;
}

.expanding-video.active .expanding-video-img {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
}

/* Section Styles */
.section {
  z-index: 1;
  position: relative;
  /* min-height: 100vh; */
  background: #0e0e0e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 78px 0 48px 0;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center-text {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.big-text-on-homepage {
  font-size: 3.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 48px 0;
  letter-spacing: -0.02em;
}

.button,
.white-button,
.w-button {
  display: inline-block;
  padding: 18px 48px;
  font-size: 1.25rem;
  font-weight: 400;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #0e0e0e;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
}

.button.white-button:hover,
.white-button:hover,
.w-button:hover {
  background: #f1f1f1;
  color: #0e0e0e;
}

.black-section-background {
  display: none;
}

@media (max-width: 767px) {
  .big-text-on-homepage {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .button,
  .white-button,
  .w-button {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

.portfolio-section {
  background: #111;
  padding: 80px 0;
}

.portfolio-category {
  margin-bottom: 64px;
}

.portfolio-heading {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 500;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.portfolio-item {
  background: #222;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  width: 340px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9/16;
  opacity: 0;
  transform: translateY(40px);
}

.portfolio-category[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(60px);
}

.portfolio-item[data-animate="fade-in"] {
  opacity: 0;
  transform: scale(0.95);
}

.portfolio-item img,
.portfolio-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

@media (max-width: 767px) {
  .portfolio-section {
    padding: 40px 0;
  }
  .portfolio-grid {
    gap: 16px;
  }
  .portfolio-item {
    width: 100%;
    min-width: 0;
  }
}

/* Reels grid: 5 per row, smaller size, card style */
.portfolio-category:first-of-type .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 32px 0;
}
.reel-item {
  aspect-ratio: 9/16;
  width: 100%;
  max-width: 140px;
  min-width: 0;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.16);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.reel-item:hover {
  box-shadow: 0 16px 48px 0 rgba(0,0,0,0.24);
  transform: translateY(-6px) scale(1.04);
}
.reel-item img,
.reel-item video,
.reel-item iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

/* YouTube grid: 3 per row */
.portfolio-category:nth-of-type(2) .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.youtube-item {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 340px;
  min-width: 0;
}

/* Photography and Graphic Design: keep flex, 1:1, responsive */
.square-item {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 340px;
  min-width: 0;
}

@media (max-width: 1200px) {
  .portfolio-category:first-of-type .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .portfolio-category:nth-of-type(2) .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .portfolio-category:first-of-type .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-category:nth-of-type(2) .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .portfolio-category:first-of-type .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reel-item, .youtube-item, .square-item {
    max-width: 100%;
  }
}

.showcase {
  background: #111;
  padding: 48px 0 80px 0;
}

.showcase .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-title {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.accent-text {
  color: #7cffb7;
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
  background: #fff;
  color: #111;
}

.showcase-content {
  width: 100%;
}

.tab-content {
  display: none;
  animation: fadeIn 0.7s;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: none;}
}

/* Reels Grid */
#reels .showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#reels .showcase-item.reel {
  width: 180px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.16);
  overflow: hidden;
  background: #fff;
  opacity: 0;
  transform: translateY(40px) rotate(-6deg);
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
#reels .showcase-item.reel:nth-child(even) {
  transform: translateY(40px) rotate(6deg);
}
#reels .showcase-item.reel:hover {
  transform: scale(1.08) rotate(0deg);
  box-shadow: 0 16px 48px 0 rgba(0,0,0,0.24);
  z-index: 2;
}
#reels .showcase-item.reel video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  aspect-ratio: 9/16;
  background: #000;
}

.showcase-item .overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.0) 100%);
  color: #fff;
  padding: 24px 16px 16px 16px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

/* Only show overlay for video items */
.showcase-item.video:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}

.showcase-item .overlay h3 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.showcase-item .overlay p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Photography: Pinterest-like grid with 3:4 ratio */
#photography .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 20px;
}

.showcase-item.photo {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  overflow: hidden;
  aspect-ratio: 3/4;
  width: 100%;
  max-width: 240px;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: box-shadow 0.2s, transform 0.2s;
}

/* Graphics: Square grid with 1:1 ratio */
#designs .showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 20px;
}

.showcase-item.design {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  overflow: hidden;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 240px;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: box-shadow 0.2s, transform 0.2s;
}

.showcase-item.photo:hover,
.showcase-item.design:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px 0 rgba(0,0,0,0.15);
}

.showcase-item.photo img,
.showcase-item.design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  background: #000;
}

/* Responsive adjustments for photography grid */
@media (max-width: 1200px) {
  #photography .showcase-grid,
  #designs .showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (max-width: 900px) {
  #photography .showcase-grid,
  #designs .showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 600px) {
  #photography .showcase-grid,
  #designs .showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
}

/* YouTube: 3 per row, 16:9 */
#videos .showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}
.showcase-item.video {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 340px;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: box-shadow 0.2s, transform 0.2s;
}
.showcase-item.video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  background: #000;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  #reels .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  #photography .showcase-grid,
  #designs .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #videos .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  #reels .showcase-grid {
    gap: 16px;
  }
  #photography .showcase-grid,
  #designs .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #videos .showcase-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  #reels .showcase-grid {
    gap: 8px;
  }
  #photography .showcase-grid,
  #designs .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-item.reel,
  .showcase-item.photo,
  .showcase-item.design,
  .showcase-item.video {
    max-width: 100%;
  }
}

.tab-content,
.showcase-content,
.showcase-grid {
  height: auto !important;
  overflow: visible !important;
  min-height: 0;
  max-height: none;
}

.services-section {
  background: #111;
  padding: 80px 0 80px 0;
}
.services-title {
  color: #fff;
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 40px;
  font-weight: 600;
  margin-left: 2vw;
}
.services-draggable-row {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 16px;
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.service-card {
  background: #181818;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  min-width: 340px;
  max-width: 340px;
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border: none;
  background: #000;
}
.service-info {
  padding: 24px 20px 20px 20px;
  color: #fff;
}
.service-subtitle {
  font-size: 1rem;
  color: #7cffb7;
  margin: 0 0 8px 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.service-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: #fff;
}
.service-desc {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}
.service-card:hover {
  box-shadow: 0 12px 32px 0 rgba(0,0,0,0.18);
  transform: translateY(-4px) scale(1.03);
}
@media (max-width: 600px) {
  .service-card, .service-card img {
    min-width: 240px;
    max-width: 240px;
    height: 160px;
  }
  .services-title {
    font-size: 1.5rem;
    margin-left: 0;
  }
}

.software-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.software-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.software-title {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.software-title .accent-text {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.software-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.software-feature {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.software-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.software-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.software-feature:hover::before {
  opacity: 1;
}

.feature-content {
  flex: 1;
  padding-right: 40px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  color: #4facfe;
  opacity: 0.9;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

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

.feature-list li {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #4facfe;
  opacity: 0.8;
}

.feature-preview {
  flex: 1;
  position: relative;
}

.preview-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.software-feature:hover .preview-frame {
  transform: perspective(1000px) rotateY(0deg);
}

.preview-frame img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.software-feature:hover .preview-frame img {
  transform: scale(1.05);
}

.preview-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.software-feature:hover .preview-overlay {
  opacity: 1;
  transform: translateY(0);
}

.tech-stack {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .software-feature {
    flex-direction: column;
    gap: 40px;
    padding: 30px;
  }

  .feature-content {
    padding-right: 0;
  }

  .preview-frame img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .software-title {
    font-size: 3rem;
    margin-bottom: 60px;
  }

  .feature-content h3 {
    font-size: 2rem;
  }

  .software-feature {
    padding: 20px;
  }

  .preview-frame img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .software-title {
    font-size: 2.5rem;
  }

  .feature-content h3 {
    font-size: 1.8rem;
  }

  .preview-frame img {
    height: 200px;
  }
}

.services-wheel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 48px;
  position: relative;
}
.services-wheel {
  position: relative;
  width: 800px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  transition: width 0.3s, height 0.3s;
}
.service-wheel-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 400px;
  background: #181818;
  border-radius: 32px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 1;
  transition: all 0.5s cubic-bezier(.4,2,.6,1);
  pointer-events: none;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.service-wheel-item.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 3;
  box-shadow: 0 16px 48px 0 rgba(0,0,0,0.25);
  pointer-events: auto;
  border: 1px solid rgba(124,255,183,0.3);
}
.service-wheel-item:hover {
  box-shadow: 0 20px 56px 0 rgba(0,0,0,0.3);
  transform: translate(-50%, -50%) scale(1.15);
}
.services-wheel .service-wheel-item:nth-child(1) { transform: translate(-50%, -50%) scale(0.8) rotate(-20deg) translateX(-320px); z-index: 2; }
.services-wheel .service-wheel-item:nth-child(2) { transform: translate(-50%, -50%) scale(0.9) rotate(-10deg) translateX(-160px); z-index: 2; }
.services-wheel .service-wheel-item:nth-child(3).active { transform: translate(-50%, -50%) scale(1.1) rotate(0deg) translateX(0); z-index: 3; }
.services-wheel .service-wheel-item:nth-child(4) { transform: translate(-50%, -50%) scale(0.9) rotate(10deg) translateX(160px); z-index: 2; }
.services-wheel .service-wheel-item:nth-child(5) { transform: translate(-50%, -50%) scale(0.8) rotate(20deg) translateX(320px); z-index: 2; }
.service-wheel-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 24px;
  margin: 24px 24px 0 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.service-wheel-item h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 24px 24px 12px 24px;
  text-align: center;
  line-height: 1.3;
}
.service-wheel-item p {
  color: #ccc;
  font-size: 1.1rem;
  margin: 0 24px;
  text-align: center;
  line-height: 1.5;
}
.wheel-arrow {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  cursor: pointer;
  margin: 0 24px;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(8px);
}
.wheel-arrow:hover {
  background: #7cffb7;
  color: #111;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(124,255,183,0.3);
}
@media (max-width: 900px) {
  .services-wheel {
    width: 98vw;
    height: 360px;
  }
  .service-wheel-item {
    width: 240px;
    height: 320px;
  }
  .service-wheel-item img {
    height: 160px;
    margin: 16px 16px 0 16px;
  }
  .service-wheel-item h3 {
    font-size: 1.2rem;
    margin: 16px 16px 8px 16px;
  }
  .service-wheel-item p {
    font-size: 1rem;
    margin: 0 16px;
  }
}
@media (max-width: 600px) {
  .services-wheel {
    width: 100vw;
    height: 280px;
  }
  .service-wheel-item {
    width: 200px;
    height: 260px;
  }
  .service-wheel-item img {
    height: 120px;
    margin: 12px 12px 0 12px;
  }
  .service-wheel-item h3 {
    font-size: 1.1rem;
    margin: 12px 12px 6px 12px;
  }
  .service-wheel-item p {
    font-size: 0.9rem;
    margin: 0 12px;
  }
  .wheel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    margin: 0 12px;
  }
}

.clients-section {
  padding: 60px 0 100px 0;
  background: linear-gradient(180deg, #181a1b 0%, #232526 100%);
  position: relative;
  overflow: hidden;
}

.clients-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  background: linear-gradient(135deg, #fff 0%, #7cffb7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clients-logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px 64px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.client-logo {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
  overflow: visible;
}

.client-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.9) contrast(1.1);
  transition: filter 0.3s, transform 0.3s;
}

.client-logo:hover {
  background: rgba(124,255,183,0.08);
  box-shadow: 0 12px 32px 0 rgba(124,255,183,0.18);
  transform: translateY(-10px) scale(1.08);
  z-index: 2;
}

.client-logo:hover img {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 12px #7cffb7cc);
  transform: scale(1.12) rotate(-3deg);
}

.client-hover-card {
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  background: rgba(30,40,40,0.98);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(124,255,183,0.18);
  padding: 18px 24px;
  opacity: 0;
  pointer-events: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 10;
  white-space: nowrap;
}

.client-logo:hover .client-hover-card {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .clients-logo-cloud {
    gap: 32px 24px;
  }
  .client-logo {
    width: 90px;
    height: 90px;
  }
  .client-logo img {
    width: 48px;
    height: 48px;
  }
  .client-hover-card {
    min-width: 120px;
    font-size: 0.95rem;
    padding: 12px 16px;
  }
}

@media (max-width: 600px) {
  .clients-section {
    padding: 60px 0 60px 0;
  }
  .clients-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .clients-logo-cloud {
    gap: 18px 8px;
  }
  .client-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }
  .client-logo img {
    width: 32px;
    height: 32px;
  }
  .client-hover-card {
    min-width: 80px;
    font-size: 0.8rem;
    padding: 8px 10px;
    border-radius: 8px;
  }
}

.brand-journey-section {
  padding: 120px 0 80px 0;
  background: linear-gradient(90deg, #181a1b 0%, #232526 100%);
  position: relative;
  overflow-x: hidden;
}

.brand-journey-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  background: linear-gradient(135deg, #fff 0%, #7cffb7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-journey-flow {
  display: flex;
  flex-direction: row;
  gap: 56px;
  justify-content: flex-start;
  align-items: stretch;
  overflow-x: auto;
  padding: 24px 0 8px 0;
  scroll-behavior: smooth;
  position: relative;
}

.brand-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(124,255,183,0.08);
  border-radius: 24px;
  min-width: 260px;
  max-width: 320px;
  flex: 0 0 280px;
  padding: 36px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.10);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
  z-index: 1;
}

.brand-step:hover {
  box-shadow: 0 16px 48px 0 rgba(124,255,183,0.18);
  border: 1.5px solid #7cffb7;
  transform: translateY(-10px) scale(1.04);
  z-index: 2;
}

.brand-step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124,255,183,0.08);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(124,255,183,0.10);
}

.brand-step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand-step h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 12px 0;
  text-align: center;
  background: linear-gradient(135deg, #fff 0%, #7cffb7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-step p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.brand-journey-flow::-webkit-scrollbar {
  height: 8px;
  background: transparent;
}
.brand-journey-flow::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .brand-journey-section {
    padding: 60px 0 40px 0;
  }
  .brand-journey-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .brand-journey-flow {
    gap: 24px;
    padding: 12px 0 4px 0;
  }
  .brand-step {
    min-width: 180px;
    max-width: 220px;
    flex: 0 0 180px;
    padding: 20px 12px 18px 12px;
    border-radius: 14px;
  }
  .brand-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  .brand-step-icon img {
    width: 24px;
    height: 24px;
  }
  .brand-step h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .brand-step p {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .brand-journey-section {
    padding: 32px 0 24px 0;
  }
  .brand-journey-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .brand-journey-flow {
    gap: 12px;
    padding: 4px 0 2px 0;
  }
  .brand-step {
    min-width: 120px;
    max-width: 140px;
    flex: 0 0 120px;
    padding: 10px 4px 8px 4px;
    border-radius: 8px;
  }
  .brand-step-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    margin-bottom: 4px;
  }
  .brand-step-icon img {
    width: 14px;
    height: 14px;
  }
  .brand-step h3 {
    font-size: 0.7rem;
    margin-bottom: 2px;
  }
  .brand-step p {
    font-size: 0.7rem;
  }
}

/* Footer Styles */
.footer {
  background: #0a0a0a;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  flex: 1;
  max-width: 300px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-column h4 {
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 20px 0;
  font-weight: 600;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #7cffb7;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 0 30px 0;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-logo {
    height: 40px;
  }
  
  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .footer-column ul li {
    margin-bottom: 8px;
  }
  
  .footer-column ul li a {
    font-size: 0.9rem;
  }
} 